*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --ink:        #0F0F12;
    --ink-soft:   #1A1A1F;
    --ink-line:   #2A2A30;
    --cream:      #F7F2E4;
    --cream-soft: #EFE8D4;
    --cream-line: #D9D1BB;
    --paper:      #FFFCF3;
    --text-dark:  #26241F;
    --text-muted-dark: #6B6559;
    --text-light: #F4EEE0;
    --text-muted-light: #928C7F;
    --money:      #10B981;
    --money-soft: #34D399;
    --amber:      #F59E0B;
    --amber-deep: #D97706;
    --red:        #DC2626;
  }

  html { scroll-behavior: smooth; }
  body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }

  .wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
  .wrap-sm { max-width: 780px; margin: 0 auto; padding: 0 28px; }
  .wrap-md { max-width: 960px; margin: 0 auto; padding: 0 28px; }

  /* ═════ TYPOGRAPHY ═════ */
  .serif { font-family: 'Fraunces', Georgia, serif; letter-spacing: -0.02em; }
  .mono  { font-family: 'JetBrains Mono', monospace; letter-spacing: 0.05em; }
  .eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--amber-deep);
    font-weight: 500;
    margin-bottom: 18px;
    display: inline-block;
  }
  .eyebrow-light { color: var(--money-soft); }

  h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; letter-spacing: -0.025em; line-height: 1.05; }
  h2 { font-size: clamp(34px, 4.6vw, 52px); font-weight: 600; }
  h3 { font-size: clamp(22px, 2.6vw, 28px); font-weight: 600; line-height: 1.2; }

  /* ═════ NAV ═════ */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(247,242,228,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--cream-line);
  }
  .nav-inner {
    max-width: 1180px; margin: 0 auto;
    padding: 14px 28px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
  }
  .brand {
    font-family: 'Fraunces', serif;
    font-size: 18px; font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-dark);
  }
  .brand span { color: var(--amber-deep); }
  .brand-logo { display: flex; align-items: center; text-decoration: none; }
  .brand-logo img { display: block; }
  .nav-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--text-muted-dark);
    display: flex; align-items: center; gap: 8px;
  }
  .dot-pulse {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--money);
    box-shadow: 0 0 0 0 rgba(16,185,129,0.7);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(16,185,129,0.7); }
    70%  { box-shadow: 0 0 0 10px rgba(16,185,129,0); }
    100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
  }
  .nav-cta {
    background: var(--ink);
    color: var(--cream);
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: transform .15s, background .15s;
    white-space: nowrap;
  }
  .nav-cta:hover { background: var(--ink-soft); transform: translateY(-1px); }

  @media (max-width: 720px) {
    .nav-tag { display: none; }
    .nav-inner { padding: 12px 18px; }
  }

  /* ═════ HERO ═════ */
  .hero {
    padding: 130px 0 90px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; top: 10%; right: -8%;
    width: 540px; height: 540px;
    background: radial-gradient(circle, rgba(245,158,11,0.16), transparent 65%);
    filter: blur(50px);
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute; bottom: -20%; left: -10%;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(16,185,129,0.12), transparent 65%);
    filter: blur(50px);
    pointer-events: none;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .hero-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: white;
    border: 1px solid var(--cream-line);
    padding: 8px 14px;
    border-radius: 100px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 24px;
  }
  .hero-pill .free-tag {
    background: var(--money);
    color: white;
    padding: 3px 8px;
    border-radius: 100px;
    font-weight: 600;
    letter-spacing: 0.08em;
  }
  .hero h1 {
    font-size: clamp(38px, 6vw, 68px);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 24px;
    color: var(--text-dark);
    letter-spacing: -0.03em;
  }
  .hero h1 em {
    font-style: italic;
    font-weight: 500;
    color: var(--amber-deep);
  }
  .hero-sub {
    font-size: clamp(16px, 1.6vw, 19px);
    color: var(--text-muted-dark);
    max-width: 560px;
    margin-bottom: 28px;
    line-height: 1.55;
  }
  .hero-bullets {
    list-style: none;
    margin: 0 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
    max-width: 560px;
  }
  .hero-bullets li {
    font-size: 14px;
    color: var(--text-dark);
    padding-left: 22px;
    position: relative;
    line-height: 1.45;
    font-weight: 500;
  }
  .hero-bullets li::before {
    content: '';
    position: absolute;
    left: 0; top: 7px;
    width: 12px; height: 12px;
    background: var(--money);
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / contain no-repeat;
  }

  .cta-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
  .cta {
    background: var(--ink);
    color: var(--cream);
    padding: 18px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex; align-items: center; gap: 10px;
    transition: transform .15s, box-shadow .15s, background .15s;
    box-shadow: 0 12px 28px -10px rgba(15,15,18,0.4);
  }
  .cta:hover {
    background: var(--ink-soft);
    transform: translateY(-2px);
    box-shadow: 0 18px 32px -10px rgba(15,15,18,0.5);
  }
  .cta-arrow { transition: transform .2s; }
  .cta:hover .cta-arrow { transform: translateX(4px); }

  .cta-amber {
    background: var(--amber);
    color: var(--ink);
    box-shadow: 0 12px 28px -10px rgba(245,158,11,0.5);
  }
  .cta-amber:hover {
    background: var(--amber-deep);
    box-shadow: 0 18px 32px -10px rgba(245,158,11,0.6);
  }
  .cta-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--text-muted-dark);
  }
  .cta-meta strong { color: var(--money); font-weight: 600; }

  /* ═════ HERO ROADMAP CARD ═════ */
  .roadmap {
    position: relative;
    background: var(--paper);
    border: 1px solid var(--cream-line);
    border-radius: 18px;
    padding: 28px 26px 26px;
    box-shadow:
      0 30px 60px -20px rgba(0,0,0,0.18),
      0 8px 18px -8px rgba(0,0,0,0.08);
    transform: rotate(1deg);
    transition: transform .3s;
  }
  .roadmap:hover { transform: rotate(0deg) translateY(-3px); }
  .roadmap::before {
    content: '';
    position: absolute;
    top: -10px; left: 24px;
    width: 80px; height: 22px;
    background: rgba(245,158,11,0.4);
    border-radius: 2px;
    transform: rotate(-3deg);
    z-index: 0;
  }
  .roadmap-tag {
    position: relative; z-index: 1;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted-dark);
    display: flex; justify-content: space-between;
    padding-bottom: 10px;
    margin-bottom: 14px;
    border-bottom: 1px dashed var(--cream-line);
  }
  .roadmap-tag strong { color: var(--money); font-weight: 600; }
  .roadmap-title {
    font-family: 'Fraunces', serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
  }
  .roadmap-title em {
    font-style: italic;
    color: var(--amber-deep);
    font-weight: 500;
  }
  .roadmap-day {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 11px 0;
    border-bottom: 1px dashed var(--cream-line);
  }
  .roadmap-day:last-child { border-bottom: none; padding-bottom: 4px; }
  .roadmap-day-num {
    flex-shrink: 0;
    font-family: 'Fraunces', serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted-dark);
    background: var(--cream);
    border: 1px solid var(--cream-line);
    border-radius: 6px;
    padding: 4px 8px;
    min-width: 50px;
    text-align: center;
    margin-top: 2px;
  }
  .roadmap-day-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.35;
  }
  .roadmap-day-title small {
    display: block;
    font-weight: 400;
    color: var(--text-muted-dark);
    font-size: 12px;
    margin-top: 2px;
    line-height: 1.4;
  }

  .roadmap-stamp {
    position: absolute;
    bottom: -16px; right: -12px;
    background: var(--money);
    color: white;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 600;
    transform: rotate(4deg);
    box-shadow: 0 8px 20px -6px rgba(16,185,129,0.5);
  }
  .roadmap-stamp::before { content: '✓ '; }

  @media (max-width: 920px) {
    .hero { padding: 110px 0 60px; }
    .hero-grid { grid-template-columns: 1fr; gap: 50px; }
    .hero-bullets { grid-template-columns: 1fr; }
    .roadmap { max-width: 460px; margin: 0 auto; }
  }
  @media (max-width: 540px) {
    .hero { padding: 100px 0 50px; }
    .roadmap { padding: 22px 18px 20px; transform: rotate(0deg); }
    .roadmap::before { display: none; }
    .roadmap-stamp { right: 10px; bottom: -14px; }
  }

  /* ═════ TRUST STRIP ═════ */
  .trust-strip {
    background: white;
    border-top: 1px solid var(--cream-line);
    border-bottom: 1px solid var(--cream-line);
    padding: 24px 0;
  }
  .trust-grid {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-around;
    gap: 18px 32px;
    text-align: center;
  }
  .trust-item {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted-dark);
    display: inline-flex; align-items: center; gap: 8px;
  }
  .trust-item svg { width: 14px; height: 14px; color: var(--money); flex-shrink: 0; }

  /* ═════ SECTIONS ═════ */
  .section { padding: 100px 0; }
  .section-tight { padding: 80px 0; }
  .section-cream-soft { background: var(--cream-soft); }
  .section-paper { background: var(--paper); }
  .section-ink { background: var(--ink); color: var(--text-light); }
  .section-ink h2, .section-ink h3 { color: var(--text-light); }
  .section-ink .eyebrow { color: var(--money-soft); }
  @media (max-width: 720px) {
    .section { padding: 70px 0; }
  }

  /* ═════ PROBLEM SECTION ═════ */
  .problem-wrap { max-width: 820px; margin: 0 auto; }
  .problem-wrap > .eyebrow { display: block; text-align: center; }
  .problem-wrap h2 {
    text-align: center;
    margin-bottom: 26px;
    max-width: 760px;
    margin-left: auto; margin-right: auto;
  }
  .problem-wrap h2 em { font-style: italic; color: var(--amber-deep); font-weight: 500; }
  .problem-lead {
    font-size: 17px;
    color: var(--text-muted-dark);
    text-align: center;
    margin: 0 auto 30px;
    max-width: 640px;
    line-height: 1.65;
  }
  .problem-lead strong { color: var(--text-dark); font-weight: 600; }
  .problem-questions {
    background: white;
    border: 1px solid var(--cream-line);
    border-radius: 14px;
    padding: 28px 32px;
    list-style: none;
  }
  .problem-questions li {
    padding: 12px 0 12px 30px;
    border-bottom: 1px dashed var(--cream-line);
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.55;
    position: relative;
  }
  .problem-questions li:last-child { border-bottom: none; }
  .problem-questions li::before {
    content: '?';
    position: absolute;
    left: 0; top: 12px;
    width: 22px; height: 22px;
    background: var(--cream);
    color: var(--amber-deep);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 13px;
  }
  @media (max-width: 540px) {
    .problem-questions { padding: 22px 22px; }
  }

  /* ═════ PROMISE SECTION ═════ */
  .promise { text-align: center; }
  .promise h2 { max-width: 800px; margin: 0 auto 22px; }
  .promise h2 em { font-style: italic; color: var(--money-soft); font-weight: 500; }
  .promise-sub {
    font-size: 17px;
    color: var(--text-muted-light);
    max-width: 600px;
    margin: 0 auto 56px;
    line-height: 1.65;
  }
  .promise-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    max-width: 1080px;
    margin: 0 auto;
  }
  .promise-card {
    background: var(--ink-soft);
    border: 1px solid var(--ink-line);
    border-radius: 14px;
    padding: 28px 22px;
    text-align: left;
    transition: border-color .2s, transform .2s;
  }
  .promise-card:hover { border-color: var(--money); transform: translateY(-3px); }
  .promise-card-day {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--money-soft);
    margin-bottom: 12px;
    display: flex; align-items: center; gap: 8px;
  }
  .promise-card-day .num {
    font-family: 'Fraunces', serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: -0.04em;
    line-height: 0.9;
  }
  .promise-card h3 {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.3;
    margin-bottom: 10px;
  }
  .promise-card p {
    font-size: 13px;
    color: var(--text-muted-light);
    line-height: 1.5;
  }
  @media (max-width: 980px) { .promise-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 520px) { .promise-grid { grid-template-columns: 1fr; } }

  /* ── BY THE END callout (in the dark Promise section) ── */
  .end-result {
    margin-top: 60px;
    background: rgba(245,158,11,0.08);
    border: 1px solid rgba(245,158,11,0.30);
    border-radius: 22px;
    padding: 38px 42px 34px;
  }
  .end-result-head { margin-bottom: 18px; }
  .end-result-head .eyebrow { color: var(--money-soft); margin-bottom: 0; }
  .end-result-list {
    list-style: none; padding: 0; margin: 0;
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 36px;
  }
  .end-result-list li {
    color: var(--text-light);
    font-size: 17px; line-height: 1.55;
    padding-left: 28px; position: relative;
  }
  .end-result-list li::before {
    content: ''; position: absolute; left: 0; top: 7px;
    width: 16px; height: 16px; border-radius: 50%;
    background: var(--money);
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 70% no-repeat;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 70% no-repeat;
  }
  .end-result-list li strong { color: var(--text-light); font-weight: 700; }
  @media (max-width: 720px) {
    .end-result { padding: 26px 24px; }
    .end-result-list { grid-template-columns: 1fr; gap: 12px; }
  }

  /* ═════ BONUS / WORKSHEET SECTION ═════ */
  .bonus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .bonus-text h2 {
    margin-bottom: 22px;
  }
  .bonus-text h2 em { font-style: italic; color: var(--amber-deep); font-weight: 500; }
  .bonus-text p {
    font-size: 17px;
    color: var(--text-muted-dark);
    margin-bottom: 18px;
    line-height: 1.65;
  }
  .bonus-text p strong { color: var(--text-dark); font-weight: 600; }
  .bonus-list {
    list-style: none;
    margin-top: 18px;
  }
  .bonus-list li {
    font-size: 15px;
    color: var(--text-dark);
    padding: 8px 0 8px 28px;
    position: relative;
    line-height: 1.45;
  }
  .bonus-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 12px;
    width: 14px; height: 14px;
    background: var(--money);
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / contain no-repeat;
  }

  .worksheet {
    position: relative;
    background: var(--paper);
    border: 1px solid var(--cream-line);
    border-radius: 14px;
    padding: 30px 28px 30px;
    box-shadow:
      0 20px 50px -16px rgba(0,0,0,0.15),
      0 6px 14px -6px rgba(0,0,0,0.06);
    transform: rotate(-1.5deg);
    transition: transform .3s;
  }
  .worksheet:hover { transform: rotate(0deg) translateY(-2px); }
  .worksheet-head {
    text-align: center;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--ink);
  }
  .worksheet-head h4 {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
    letter-spacing: -0.02em;
    line-height: 1.15;
  }
  .worksheet-head p {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted-dark);
    margin-bottom: 0 !important;
  }
  .worksheet-field {
    margin-bottom: 16px;
  }
  .worksheet-field-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber-deep);
    margin-bottom: 6px;
  }
  .worksheet-line {
    height: 14px;
    border-bottom: 1.5px dashed var(--cream-line);
    margin-bottom: 5px;
  }
  .worksheet-line.short { width: 70%; }
  .worksheet-line.medium { width: 85%; }
  .worksheet-stamp {
    position: absolute;
    top: -14px; right: -14px;
    background: var(--amber-deep);
    color: white;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 100px;
    font-weight: 600;
    transform: rotate(6deg);
    box-shadow: 0 8px 18px -6px rgba(217,119,6,0.5);
  }
  .worksheet-stamp::before { content: '★ '; }

  @media (max-width: 920px) {
    .bonus-grid { grid-template-columns: 1fr; gap: 50px; }
    .worksheet { max-width: 440px; margin: 0 auto; }
  }
  @media (max-width: 540px) {
    .worksheet { transform: rotate(0deg); padding: 24px 20px; }
  }

  /* ═════ WHO IT'S FOR ═════ */
  .who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
  }
  .who-col {
    background: white;
    border: 1px solid var(--cream-line);
    border-radius: 14px;
    padding: 36px;
  }
  .who-col.bad { background: transparent; }
  .who-col h3 {
    font-size: 22px;
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 18px;
    color: var(--text-dark);
  }
  .who-col.good h3 .badge { background: var(--money); }
  .who-col.bad h3 .badge { background: var(--red); }
  .badge {
    width: 28px; height: 28px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: white;
    font-size: 14px; font-weight: 700;
    flex-shrink: 0;
  }
  .who-col ul { list-style: none; }
  .who-col li {
    padding: 12px 0;
    border-bottom: 1px solid var(--cream-line);
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-dark);
  }
  .who-col li:last-child { border-bottom: none; }
  .who-col strong { font-weight: 700; color: var(--ink); }
  @media (max-width: 720px) {
    .who-grid { grid-template-columns: 1fr; gap: 18px; }
    .who-col { padding: 28px; }
  }

  /* ═════ HOST / AUTHORITY ═════ */
  .host-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 56px;
    align-items: center;
  }
  .host-photo {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--ink-soft);
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
  }
  .host-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 20%;
  }
  .host-badge {
    position: absolute; bottom: 20px; left: 20px;
    background: rgba(15,15,18,0.85);
    backdrop-filter: blur(8px);
    color: var(--cream);
    padding: 10px 14px;
    border-radius: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .host-badge span { color: var(--money-soft); }
  .host-text h2 {
    margin-bottom: 22px;
    font-size: clamp(30px, 4vw, 44px);
  }
  .host-text h2 em { font-style: italic; color: var(--money-soft); font-weight: 500; }
  .host-text p {
    font-size: 16px;
    color: var(--text-muted-light);
    line-height: 1.7;
    margin-bottom: 16px;
  }
  .host-text p:last-child { margin-bottom: 0; }
  .host-text strong { color: var(--text-light); font-weight: 600; }
  .host-proof {
    list-style: none; padding: 0; margin: 0 0 22px;
    display: grid; gap: 10px;
  }
  .host-proof li {
    color: var(--text-muted-light);
    font-size: 17px; line-height: 1.5;
    padding-left: 28px; position: relative;
  }
  .host-proof li strong { color: var(--text-light); font-weight: 700; }
  .host-proof li::before {
    content: ''; position: absolute; left: 0; top: 7px;
    width: 16px; height: 16px; border-radius: 50%;
    background: var(--money);
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 70% no-repeat;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 70% no-repeat;
  }
  .host-text .signature {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid var(--ink-line);
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: var(--text-light);
    font-size: 18px;
  }
  .host-numbers {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--ink-line);
  }
  .host-num-cell {
    padding: 18px 0 4px;
    border-right: 1px solid var(--ink-line);
    padding-right: 20px;
  }
  .host-num-cell:last-child { border-right: none; padding-right: 0; }
  .host-num-cell:not(:first-child) { padding-left: 20px; }
  .host-num-val {
    font-family: 'Fraunces', serif;
    font-size: 26px; font-weight: 700;
    color: var(--money-soft);
    line-height: 1;
    margin-bottom: 6px;
  }
  .host-num-lbl {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted-light);
  }
  @media (max-width: 900px) {
    .host-grid { grid-template-columns: 1fr; gap: 40px; }
    .host-photo { max-width: 360px; margin: 0 auto; }
  }
  @media (max-width: 540px) {
    .host-numbers { grid-template-columns: 1fr; }
    .host-num-cell { border-right: none; border-bottom: 1px solid var(--ink-line); padding: 16px 0; }
    .host-num-cell:not(:first-child) { padding-left: 0; }
    .host-num-cell:last-child { border-bottom: none; }
  }

  /* ═════ REGISTER FORM SECTION ═════ */
  .register-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-soft) 100%);
  }
  .register-card {
    max-width: 620px;
    margin: 0 auto;
    background: white;
    border: 1px solid var(--cream-line);
    border-radius: 18px;
    padding: 44px 40px;
    box-shadow: 0 30px 60px -22px rgba(0,0,0,0.10);
  }
  .register-head { text-align: center; margin-bottom: 28px; }
  .register-head .eyebrow { color: var(--money); margin-bottom: 14px; }
  .register-head h2 {
    font-size: clamp(26px, 3.6vw, 36px);
    margin-bottom: 10px;
  }
  .register-head h2 em { font-style: italic; color: var(--amber-deep); font-weight: 500; }
  .register-head p {
    font-size: 15px;
    color: var(--text-muted-dark);
    max-width: 460px;
    margin: 0 auto;
  }

  .form-group { margin-bottom: 16px; }
  .form-group label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted-dark);
    margin-bottom: 7px;
    font-weight: 500;
  }
  .form-group label .opt { color: var(--text-muted-dark); opacity: 0.6; text-transform: none; letter-spacing: 0.05em; font-weight: 400; margin-left: 6px; }
  .form-group input,
  .form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--cream-line);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    background: var(--cream);
    transition: border-color .15s, background .15s;
    appearance: none;
    -webkit-appearance: none;
  }
  .form-group select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236B6559' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
  }
  .form-group input::placeholder { color: var(--text-muted-dark); opacity: 0.55; }
  .form-group input:focus,
  .form-group select:focus {
    outline: none;
    border-color: var(--amber-deep);
    background: white;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  @media (max-width: 540px) {
    .form-row { grid-template-columns: 1fr; }
    .register-card { padding: 32px 24px; }
  }

  .register-btn {
    width: 100%;
    background: var(--amber);
    color: var(--ink);
    padding: 18px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    margin-top: 10px;
    transition: transform .15s, box-shadow .15s, background .15s;
    box-shadow: 0 12px 28px -10px rgba(245,158,11,0.55);
  }
  .register-btn:hover {
    background: var(--amber-deep);
    transform: translateY(-2px);
    box-shadow: 0 18px 32px -10px rgba(245,158,11,0.6);
  }
  .register-btn[disabled] { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }
  .register-btn-arrow { transition: transform .2s; }
  .register-btn:hover .register-btn-arrow { transform: translateX(4px); }

  .privacy-note {
    text-align: center;
    margin-top: 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--text-muted-dark);
    letter-spacing: 0.05em;
    line-height: 1.5;
  }

  /* ═════ FAQ ═════ */
  .faq-header { text-align: center; margin-bottom: 50px; }
  .faq-list { max-width: 800px; margin: 0 auto; }
  .faq-item {
    border-bottom: 1px solid var(--cream-line);
    padding: 26px 0;
  }
  .faq-q {
    font-family: 'Fraunces', serif;
    font-size: 21px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 12px;
  }
  .faq-q::before {
    content: 'Q.';
    color: var(--amber-deep);
    font-weight: 700;
    margin-right: 10px;
  }
  .faq-a {
    color: var(--text-muted-dark);
    font-size: 15px;
    line-height: 1.7;
  }
  .faq-a strong { color: var(--text-dark); font-weight: 600; }

  /* ═════ FINAL CTA ═════ */
  .final {
    background: var(--ink);
    color: var(--text-light);
    padding: 110px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .final::before {
    content: '';
    position: absolute; top: -10%; left: 50%; transform: translateX(-50%);
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(245,158,11,0.18), transparent 60%);
    filter: blur(60px);
    pointer-events: none;
  }
  .final-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
  .final h2 {
    font-size: clamp(34px, 5vw, 56px);
    color: var(--text-light);
    margin-bottom: 22px;
  }
  .final h2 em { font-style: italic; color: var(--amber); font-weight: 500; }
  .final p {
    font-size: 17px;
    color: var(--text-muted-light);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.65;
  }
  .final .cta-meta { color: var(--text-muted-light); margin-top: 16px; }
  .alb-bridge {
    margin-top: 56px;
    padding: 22px 28px;
    border-top: 1px solid var(--ink-line);
    border-bottom: 1px solid var(--ink-line);
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }
  .alb-bridge p {
    font-size: 15px;
    color: var(--text-muted-light);
    margin: 0;
    max-width: none;
    line-height: 1.6;
  }
  .alb-bridge strong { color: var(--amber); font-weight: 700; }

  /* ═════ FOOTER ═════ */
  .footer {
    background: #06060a;
    padding: 56px 0 36px;
    border-top: 1px solid var(--ink-line);
    color: var(--text-muted-light);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  .footer-block h4 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted-light);
    margin-bottom: 14px;
  }
  .footer-block p, .footer-block li { font-size: 13px; line-height: 1.7; }
  .footer-block ul { list-style: none; }
  .footer-brand-name {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
  }
  .footer-brand-name span { color: var(--amber); }
  .footer-brand p { max-width: 320px; }
  .footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--ink-line);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
  }
  @media (max-width: 720px) {
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  }

  /* ═════ MOBILE STICKY ═════ */
  .mobile-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 95;
    background: white;
    border-top: 1px solid var(--cream-line);
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    box-shadow: 0 -8px 20px -10px rgba(0,0,0,0.1);
  }
  .mobile-bar-text {
    font-size: 12px;
    color: var(--text-muted-dark);
    line-height: 1.3;
  }
  .mobile-bar-text strong { color: var(--text-dark); font-weight: 700; font-size: 14px; display: block; }
  .mobile-bar .cta { padding: 12px 18px; font-size: 14px; }
  @media (max-width: 640px) {
    .mobile-bar { display: flex; }
    body { padding-bottom: 72px; }
  }

  /* ═════ SUCCESS OVERLAY ═════ */
  .success-overlay {
    position: fixed; inset: 0;
    background: rgba(15,15,18,0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    align-items: center; justify-content: center;
    z-index: 200;
    padding: 20px;
  }
  .success-overlay.is-open { display: flex; }
  .success-card {
    background: white;
    border-radius: 18px;
    max-width: 480px;
    width: 100%;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 40px 80px -20px rgba(0,0,0,0.4);
    animation: pop .3s ease-out;
  }
  @keyframes pop {
    from { opacity: 0; transform: scale(0.94); }
    to   { opacity: 1; transform: scale(1); }
  }
  .success-icon {
    width: 64px; height: 64px;
    background: var(--money);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: white;
    margin-bottom: 18px;
  }
  .success-icon svg { width: 32px; height: 32px; }
  .success-card h3 {
    font-size: 26px;
    color: var(--text-dark);
    margin-bottom: 10px;
  }
  .success-card p {
    color: var(--text-muted-dark);
    font-size: 15px;
    margin-bottom: 22px;
    line-height: 1.55;
  }
  .success-back {
    background: var(--money);
    color: white;
    padding: 14px 22px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    transition: background .15s;
  }
  .success-back:hover { background: #0fa372; }

  /* ═════ BONUS SECTION ═════ */
  .bonuses-section { padding: 100px 0; }

  .bonus-list-stack {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 56px;
  }

  .bonus-row {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: start;
    padding: 40px 0;
    border-bottom: 1px solid var(--ink-line);
    transition: background .2s;
  }
  .bonus-row:first-child { border-top: 1px solid var(--ink-line); }
  .bonus-row-flip {
    grid-template-columns: 1fr 260px;
  }
  .bonus-row-flip .bonus-cover { order: 2; }
  .bonus-row-flip .bonus-body  { order: 1; }

  .bonus-cover svg {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  }

  .bonus-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 4px;
  }

  .bonus-row-header {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .bonus-num-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amber);
    background: rgba(245,158,11,0.1);
    border: 1px solid rgba(245,158,11,0.2);
    padding: 4px 10px;
    border-radius: 5px;
  }
  .bonus-num-green {
    color: var(--money-soft);
    background: rgba(16,185,129,0.08);
    border-color: rgba(16,185,129,0.2);
  }
  .bonus-num-red {
    color: #f87171;
    background: rgba(220,38,38,0.08);
    border-color: rgba(220,38,38,0.2);
  }
  .bonus-num-purple {
    color: #c084fc;
    background: rgba(168,85,247,0.08);
    border-color: rgba(168,85,247,0.2);
  }
  .bonus-val-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--text-muted-light);
    letter-spacing: 0.08em;
  }

  .bonus-row-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0;
  }

  .bonus-row-copy {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted-light);
    margin: 0;
  }
  .bonus-row-copy em {
    color: var(--cream-soft);
    font-style: normal;
    font-weight: 500;
  }

  .bonus-row-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
  }
  .bonus-row-tags span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    letter-spacing: 0.06em;
    color: var(--text-muted-light);
    background: var(--ink-line);
    padding: 4px 9px;
    border-radius: 4px;
  }

  .bonus-total-bar {
    background: linear-gradient(135deg, rgba(245,158,11,0.1), rgba(16,185,129,0.06));
    border: 1px solid rgba(245,158,11,0.2);
    border-radius: 14px;
    padding: 36px 40px;
    text-align: center;
  }
  .bonus-total-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted-light);
    margin-bottom: 10px;
  }
  .bonus-total-value {
    font-family: 'Fraunces', serif;
    font-size: clamp(44px, 5.5vw, 64px);
    font-weight: 700;
    color: var(--amber);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 10px;
  }
  .bonus-total-note {
    font-size: 14px;
    color: var(--text-muted-light);
  }

  @media (max-width: 860px) {
    .bonus-row,
    .bonus-row-flip {
      grid-template-columns: 1fr;
      gap: 24px;
    }
    .bonus-row-flip .bonus-cover { order: 0; }
    .bonus-row-flip .bonus-body  { order: 1; }
    .bonus-cover svg { max-width: 320px; }
    .bonuses-section { padding: 70px 0; }
    .bonus-total-bar { padding: 28px 20px; }
  }
