
  /* ═══════════════════════════════════════════════════════
     TOULTRA — Complete UI/UX Overhaul
     Dark-native. Gold accent. Fraunces + Inter.
     Linear × Stripe DNA. Premium restraint.
     ═══════════════════════════════════════════════════════ */

  /* ─── DESIGN TOKENS ─── */
  :root {
    /* Surfaces — linear-inspired luminance stack */
    --surface-0:   #090909;  /* deepest canvas */
    --surface-1:   #111111;  /* panel bg */
    --surface-2:   #1A1A1A;  /* card bg */
    --surface-3:   #222222;  /* elevated card */
    --surface-4:   #2B2B2B;  /* hover surface */

    /* Ink — warm paper tones */
    --ink-primary:   #FFFFFF;
    --ink-secondary: #C8C2B5;
    --ink-tertiary:  #8C867A;
    --ink-quaternary:#635E54;

    /* Gold accent */
    --gold:          #D4AF37;
    --gold-bright:   #F0C440;
    --gold-deep:     #B8962F;
    --gold-subtle:   rgba(203,163,90,0.12);
    --gold-glow:     rgba(203,163,90,0.07);

    /* Borders — linear-style translucent whites */
    --border-hairline: rgba(243,239,230,0.04);
    --border-subtle:   rgba(243,239,230,0.07);
    --border-standard: rgba(243,239,230,0.10);
    --border-active:   rgba(203,163,90,0.28);
    --border-gold:     rgba(203,163,90,0.35);

    /* Status */
    --ok:       #8FB27A;
    --ok-bg:    rgba(143,178,122,0.12);
    --err:      #E07060;

    /* Radii */
    --r-xs:  6px;
    --r-sm:  8px;
    --r-md:  12px;
    --r-lg:  16px;
    --r-xl:  20px;
    --r-full: 9999px;

    /* Shadows — blue-tinted depth on dark */
    --shadow-card:  0 1px 0 rgba(243,239,230,0.03), 0 8px 32px rgba(0,0,0,0.35);
    --shadow-elevated: 0 0 0 1px rgba(243,239,230,0.06), 0 4px 24px rgba(0,0,0,0.45);
    --shadow-button: 0 2px 12px rgba(203,163,90,0.12);
    --shadow-button-hover: 0 4px 24px rgba(203,163,90,0.20);
    --shadow-fab: 0 12px 40px rgba(0,0,0,0.55);

    /* Layout */
    --maxw: 1080px;
    --pad-inline: 28px;
  }

  /* ─── RESET ─── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body {
    background: var(--surface-0);
    color: var(--ink-primary);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 400;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }

  /* ─── TYPOGRAPHY ─── */
  h1, h2, h3, .display {
    font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.02em;
    color: var(--ink-primary);
  }
  h4, h5, h6 {
    font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.01em;
  }
  a { color: inherit; text-decoration: none; }

  .wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--pad-inline);
  }

  .eyebrow {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-block;
    margin-bottom: 16px;
  }

  /* ─── BUTTONS ─── */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--r-sm);
    border: 1px solid transparent;
    transition: all 0.2s cubic-bezier(0.2, 0, 0, 1);
    white-space: nowrap;
    user-select: none;
  }
  .btn-gold {
    background: var(--gold);
    color: var(--surface-0);
    box-shadow: var(--shadow-button);
  }
  .btn-gold:hover {
    background: var(--gold-bright);
    box-shadow: var(--shadow-button-hover);
    transform: translateY(-1px);
  }
  .btn-gold:active { transform: translateY(0); }
  .btn-cream {
    background: var(--ink-primary);
    color: var(--surface-0);
  }
  .btn-cream:hover {
    background: #FFFFFF;
    transform: translateY(-1px);
  }
  .btn-cream:active { transform: translateY(0); }
  .btn-ghost {
    border: 1px solid var(--border-standard);
    color: var(--ink-primary);
    background: transparent;
  }
  .btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
  }
  :focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 2px;
  }

  /* ─── NAVIGATION ─── */
  /* ─── FIXED HEADER ─── */
  #site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    background: rgba(9,9,9,0.82);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border-bottom: 1px solid var(--border-hairline);
    transition: background 0.3s, box-shadow 0.3s;
  }
  #site-header.header-scrolled {
    background: rgba(9,9,9,0.94);
    box-shadow: 0 1px 20px rgba(0,0,0,0.25);
  }
  #site-header .header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
  }
  .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    font-size: 26px;
    letter-spacing: 0.02em;
    color: var(--ink-primary);
    flex-shrink: 0;
    text-decoration: none;
  }
  .brand svg.brand-icon { width: 34px; height: 34px; flex: none; color: var(--gold); }
  .brand b { color: var(--gold); font-weight: 700; }
  .wordmark {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.12;
  }
  .wordmark em {
    font-style: normal;
    font-family: 'Inter', sans-serif;
    font-size: 8.5px;
    font-weight: 500;
    letter-spacing: 4.5px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.5;
    white-space: nowrap;
    margin-top: 3px;
  }
  .navlinks {
    display: flex;
    gap: 28px;
    align-items: center;
    font-size: 13.5px;
    color: var(--ink-tertiary);
    font-weight: 500;
  }
  .navlinks a:not(.btn) {
    position: relative;
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    transition: color 0.22s;
  }
  .navlinks a:not(.btn)::after {
    content: '';
    position: absolute;
    left: 0; bottom: -5px;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.28s ease;
  }
  .navlinks a:not(.btn):hover { color: var(--ink-primary); }
  .navlinks a:not(.btn):hover::after { width: 100%; }
  .navlinks .btn { padding: 8px 20px; font-size: 13px; }
  /* ─── HAMBURGER ─── */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px 0 8px 8px;
    background: none;
    border: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--ink-primary);
    border-radius: 1px;
    transition: all 0.28s ease;
    transform-origin: center;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  /* ─── MOBILE MENU ─── */
  .mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    border-top: 1px solid transparent;
  }
  .mobile-menu.open {
    max-height: 320px;
    padding-top: 12px;
    padding-bottom: 16px;
    border-top-color: var(--border-hairline);
  }
  .mobile-menu a {
    display: block;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-secondary);
    text-decoration: none;
    transition: color 0.2s;
  }
  .mobile-menu a:hover { color: var(--ink-primary); }
  .mobile-menu .btn { display: inline-flex; margin-top: 8px; }
  @media (max-width: 760px) {
    .navlinks { display: none; }
    .hamburger { display: flex; }
    .mobile-cta { display: inline-flex; padding: 8px 16px; font-size: 13px; }
  }
  .mobile-cta { display: none; } /* hidden on desktop */

  /* ─── HERO ─── */
  .hero {
    position: relative;
    padding: 96px 0 120px;
    overflow: hidden;
    min-height: 100svh;
    background:
      radial-gradient(55% 45% at 25% 10%, rgba(203,163,90,0.06) 0%, transparent 60%),
      radial-gradient(45% 40% at 75% 85%, rgba(203,163,90,0.03) 0%, transparent 55%),
      var(--surface-0);
  }
  .hero .ghost21 {
    position: absolute;
    right: -4%;
    top: -8%;
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 200;
    font-size: min(38vw, 520px);
    line-height: 0.74;
    color: transparent;
    -webkit-text-stroke: 1px rgba(203,163,90,0.06);
    pointer-events: none;
    user-select: none;
    z-index: 0;
  }
  .hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: linear-gradient(transparent, var(--surface-0));
    pointer-events: none;
    z-index: 1;
  }
  .hero .inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
  }
  .hero h1 {
    font-size: clamp(36px, 6vw, 60px);
    margin: 8px 0 24px;
    font-weight: 600;
    line-height: 0.96;
    letter-spacing: -0.025em;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--gold);
  }
  .hero .sub {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--ink-secondary);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.6;
    font-weight: 400;
  }
  .hero .cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
  }
  .hero .note {
    font-size: 12px;
    color: var(--ink-tertiary);
    margin-top: 22px;
    font-weight: 400;
    letter-spacing: 0.04em;
  }
  .hero .note b {
    color: var(--gold);
    font-weight: 600;
  }

  /* ─── SECTIONS ─── */
  section {
    padding: 100px 0;
    border-top: 1px solid var(--border-hairline);
  }
  section.alt {
    background: var(--surface-1);
    border-top-color: transparent;
  }
  .sec-head {
    max-width: 600px;
    margin-bottom: 56px;
  }
  .sec-head h2 {
    font-size: clamp(24px, 3.8vw, 38px);
    margin: 8px 0 16px;
    letter-spacing: -0.02em;
  }
  .sec-head p {
    color: var(--ink-secondary);
    font-size: 16.5px;
    line-height: 1.6;
    font-weight: 400;
  }

  /* ─── TRUST ROW ─── */
  .trust-row {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 28px;
    align-items: center;
  }
  .trust-row .tb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--ink-tertiary);
    font-weight: 400;
  }
  .trust-row .tb svg {
    width: 15px;
    height: 15px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.6;
  }

  /* ─── PROBLEM SECTION ─── */
  .prob-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
  @media (max-width: 820px) { .prob-grid { grid-template-columns: 1fr; gap: 36px; } }
  .prob-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .prob-list li {
    padding-left: 22px;
    position: relative;
    color: var(--ink-secondary);
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
  }
  .prob-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--gold);
  }
  .prob-card {
    background: var(--surface-2);
    border: 1px solid var(--border-subtle);
    padding: 40px 36px;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-card);
  }
  .prob-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--ink-primary);
  }
  .prob-card p {
    color: var(--ink-secondary);
    font-size: 15px;
    line-height: 1.6;
  }

  /* ─── PHASES ─── */
  .phases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  @media (max-width: 820px) { .phases { grid-template-columns: 1fr; } }
  .phase {
    background: var(--surface-2);
    border: 1px solid var(--border-subtle);
    padding: 36px 30px;
    border-radius: var(--r-lg);
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s, box-shadow 0.25s;
  }
  .phase:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-card);
  }
  .phase .pn {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
  }
  .phase .rng {
    font-size: 12px;
    color: var(--ink-tertiary);
    margin: 6px 0 18px;
    letter-spacing: 0.04em;
    font-weight: 400;
  }
  .phase h3 {
    font-size: 23px;
    margin-bottom: 12px;
  }
  .phase p {
    color: var(--ink-secondary);
    font-size: 14.5px;
    line-height: 1.6;
  }
  .phase .bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, var(--gold), transparent);
  }

  /* ─── HOW IT WORKS ─── */
  .how {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  @media (max-width: 820px) { .how { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 520px) { .how { grid-template-columns: 1fr; } }
  .how .cell {
    border: 1px solid var(--border-subtle);
    padding: 32px 26px;
    border-radius: var(--r-md);
    background: var(--surface-1);
    transition: border-color 0.25s;
  }
  .how .cell:hover { border-color: var(--border-active); }
  .how .cell .k {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 34px;
    color: var(--gold);
    font-weight: 500;
    display: block;
    margin-bottom: 12px;
    line-height: 1;
  }
  .how .cell h4 {
    font-size: 15px;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
  }
  .how .cell p {
    font-size: 13px;
    color: var(--ink-tertiary);
    line-height: 1.55;
  }

  /* ─── TRACKER ─── */
  #program { background: var(--surface-1); border-top-color: transparent; }
  .tracker-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
  }
  .progress-wrap { flex: 1; min-width: 260px; }
  .progress-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--ink-tertiary);
    margin-bottom: 10px;
    letter-spacing: 0.04em;
    font-weight: 400;
  }
  .progress-meta b {
    color: var(--gold);
    font-family: 'Fraunces', Georgia, serif;
    font-size: 15px;
    font-weight: 600;
  }
  .track {
    height: 5px;
    background: rgba(243,239,230,0.06);
    border-radius: var(--r-full);
    overflow: hidden;
  }
  .track > i {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--gold), var(--gold-bright));
    border-radius: var(--r-full);
    transition: width 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .reset {
    background: none;
    border: 1px solid var(--border-subtle);
    color: var(--ink-tertiary);
    font-size: 12px;
    padding: 12px 18px;
    min-height: 44px;
    border-radius: var(--r-sm);
    cursor: pointer;
    letter-spacing: 0.05em;
    font-weight: 500;
    transition: all 0.2s;
    -webkit-tap-highlight-color: transparent;
  }
  .reset:hover { border-color: var(--gold); color: var(--gold); }

  .phase-label {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 52px 0 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .phase-label::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border-subtle);
  }

  /* ─── DAY CARDS ─── */
  .day {
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-sm);
    margin-bottom: 8px;
    background: var(--surface-0);
    overflow: hidden;
    transition: border-color 0.2s;
  }
  .day.done { border-color: rgba(143,178,122,0.25); }
  .day-head {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    cursor: pointer;
    user-select: none;
  }
  .day-num {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 20px;
    color: var(--gold);
    min-width: 40px;
    font-weight: 500;
    line-height: 1;
  }
  .day.done .day-num { color: var(--ok); }
  .day-title {
    flex: 1;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--ink-primary);
  }
  .day-status {
    font-size: 11px;
    color: var(--ink-quaternary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .day.done .day-status { color: var(--ok); }
  .chev {
    width: 9px;
    height: 9px;
    border-right: 1.5px solid var(--ink-tertiary);
    border-bottom: 1.5px solid var(--ink-tertiary);
    transform: rotate(45deg);
    transition: transform 0.25s;
  }
  .day.open .chev { transform: rotate(225deg); }
  .day-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
  .day-inner { padding: 2px 22px 28px 78px; }
  @media (max-width: 560px) { .day-inner { padding: 2px 20px 28px 20px; } }
  .field { margin-bottom: 16px; }
  .field .lab {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 6px;
  }
  .field p {
    font-size: 14px;
    color: var(--ink-primary);
    line-height: 1.6;
  }
  .field.why p, .field.idea p { color: var(--ink-secondary); }
  .field.scenario { border-left: 2px solid var(--gold); padding-left: 16px; opacity: 0.92; }
  .field.scripts p, .field.pitfalls p { font-size: 13px; line-height: 1.8; }
  .field.assessment p { font-size: 13px; line-height: 2.0; letter-spacing: 0.01em; }
  textarea {
    width: 100%;
    background: var(--surface-1);
    border: 1px solid var(--border-subtle);
    color: var(--ink-primary);
    border-radius: var(--r-sm);
    padding: 12px 14px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 14px;
    resize: vertical;
    min-height: 76px;
    margin-top: 6px;
    line-height: 1.55;
    transition: border-color 0.2s;
  }
  textarea:focus { border-color: var(--gold); outline: none; }
  textarea::placeholder { color: var(--ink-quaternary); }
  .day-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
  }
  .complete-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 1px solid var(--border-standard);
    color: var(--ink-primary);
    padding: 12px 18px;
    min-height: 44px;
    border-radius: var(--r-sm);
    cursor: pointer;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s;
    -webkit-tap-highlight-color: transparent;
  }
  .complete-btn:hover { border-color: var(--gold); }
  .day.done .complete-btn {
    background: var(--ok-bg);
    border-color: var(--ok);
    color: var(--ok);
  }
  .tick {
    width: 16px;
    height: 16px;
    border: 1.5px solid currentColor;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
  }

  /* ─── ASSESSMENT CARD ─── */
  .assessment-card {
    border: 1px solid var(--border-gold);
    border-radius: var(--r-lg);
    background: var(--surface-2);
    padding: 40px 36px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
  }
  .assessment-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--gold));
  }
  .assessment-card .as-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
  }
  .assessment-card .as-badge {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 52px;
    color: var(--gold);
    line-height: 0.8;
    font-weight: 200;
  }
  .assessment-card .as-head h3 { font-size: 22px; margin-bottom: 4px; }
  .assessment-card .as-head p { font-size: 13.5px; color: var(--ink-tertiary); }
  .as-dims {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 28px;
  }
  .as-dim .as-label {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-primary);
  }
  .as-dim .as-label b {
    color: var(--gold);
    font-size: 18px;
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
  }
  .as-range {
    -webkit-appearance: none;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--gold-subtle), var(--gold));
    border-radius: var(--r-full);
    outline: none;
    cursor: pointer;
  }
  .as-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    border: 2px solid var(--surface-2);
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  }
  .as-range::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    border: 2px solid var(--surface-2);
  }
  .as-save-row { display: flex; gap: 14px; align-items: center; }
  .as-saved {
    font-size: 13px;
    color: var(--ok);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .as-saved.show { opacity: 1; }
  .as-scorecard {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
  }
  .as-score-item {
    font-size: 12px;
    color: var(--ink-tertiary);
  }
  .as-score-item b {
    color: var(--gold);
    font-size: 15px;
    font-family: 'Fraunces', Georgia, serif;
    display: block;
    font-weight: 600;
  }
  .as-score-item .mini-bar {
    margin-top: 5px;
    height: 3px;
    background: rgba(243,239,230,0.06);
    border-radius: var(--r-full);
    overflow: hidden;
  }
  .as-score-item .mini-bar i {
    display: block;
    height: 100%;
    background: var(--gold);
    border-radius: var(--r-full);
  }
  .as-reassess {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
    font-size: 13.5px;
    color: var(--ink-tertiary);
    line-height: 1.6;
  }
  .as-reassess b { color: var(--gold); }

  /* ─── MORNING CHECK-IN ─── */
  .checkin-panel {
    border: 1px solid var(--border-gold);
    border-radius: var(--r-lg);
    background: var(--surface-2);
    padding: 32px 30px;
    margin-bottom: 36px;
    display: none;
    animation: ciSlide 0.4s ease;
  }
  @keyframes ciSlide { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
  .checkin-panel.open { display: block; }
  .checkin-panel .ci-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
  }
  .checkin-panel .ci-sun { width: 28px; height: 28px; color: var(--gold); }
  .checkin-panel h4 { font-size: 18px; font-weight: 600; }
  .checkin-panel .ci-body { display: flex; flex-direction: column; gap: 18px; }
  .checkin-panel .ci-q { font-size: 14px; color: var(--ink-secondary); font-weight: 500; }
  .ci-presence {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 4px;
  }
  .ci-presence button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-standard);
    background: transparent;
    color: var(--ink-tertiary);
    cursor: pointer;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.15s;
    -webkit-tap-highlight-color: transparent;
  }
  .ci-presence button:hover { border-color: var(--gold); color: var(--gold); }
  .ci-presence button.sel {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--surface-0);
  }
  .ci-intent { width: 100%; margin-bottom: 4px; }
  .checkin-panel .ci-done {
    font-size: 13.5px;
    color: var(--ok);
    text-align: center;
    display: none;
    font-weight: 500;
  }
  .checkin-panel.done .ci-body { display: none; }
  .checkin-panel.done .ci-done { display: block; }
  .checkin-panel .btn-gold { padding: 10px 22px; font-size: 14px; align-self: flex-start; }

  /* ─── ROLEPLAY SIMULATOR ─── */
  .rp-area {
    margin-top: 20px;
    border-top: 1px solid var(--border-gold);
    padding-top: 20px;
    display: none;
  }
  .rp-area.active { display: block; }
  .rp-area .rp-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
  }
  .rp-area .rp-badge {
    font-size: 11px;
    background: var(--gold-subtle);
    color: var(--gold);
    padding: 4px 12px;
    border-radius: var(--r-full);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .rp-scenario {
    background: var(--surface-1);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-sm);
    padding: 16px 18px;
    font-size: 13.5px;
    color: var(--ink-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
  }
  .rp-scenario .rp-who {
    font-size: 11px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
    font-weight: 600;
  }
  .rp-chat {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
    max-height: 320px;
    overflow-y: auto;
  }
  .rp-chat .rp-msg {
    max-width: 88%;
    padding: 10px 14px;
    border-radius: var(--r-lg);
    font-size: 13.5px;
    line-height: 1.55;
  }
  .rp-msg.rp-coach {
    align-self: flex-start;
    background: var(--surface-1);
    color: var(--ink-primary);
    border-bottom-left-radius: var(--r-sm);
  }
  .rp-msg.rp-you {
    align-self: flex-end;
    background: var(--gold);
    color: var(--surface-0);
    border-bottom-right-radius: var(--r-sm);
    font-weight: 500;
  }
  .rp-msg.rp-feedback {
    align-self: flex-start;
    background: var(--ok-bg);
    border: 1px solid rgba(143,178,122,0.2);
    color: var(--ink-primary);
    border-radius: var(--r-sm);
    font-size: 12.5px;
    line-height: 1.55;
  }
  .rp-input-row { display: flex; gap: 8px; }
  .rp-input {
    flex: 1;
    background: var(--surface-0);
    border: 1px solid var(--border-standard);
    color: var(--ink-primary);
    border-radius: var(--r-sm);
    padding: 10px 12px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 13.5px;
    transition: border-color 0.2s;
  }
  .rp-input:focus { border-color: var(--gold); outline: none; }
  .rp-input:disabled { opacity: 0.5; }
  .rp-input::placeholder { color: var(--ink-quaternary); }
  .rp-typing {
    display: flex;
    gap: 4px;
    padding: 14px 16px;
    align-self: flex-start;
    background: var(--surface-1);
    border-radius: var(--r-lg);
  }
  .rp-typing i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ink-tertiary);
    animation: blink 1.2s infinite;
  }
  .rp-typing i:nth-child(2) { animation-delay: 0.2s; }
  .rp-typing i:nth-child(3) { animation-delay: 0.4s; }
  .rp-start-btn {
    background: var(--gold);
    color: var(--surface-0);
    border: none;
    padding: 10px 20px;
    border-radius: var(--r-sm);
    cursor: pointer;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
  }
  .rp-start-btn:hover { background: var(--gold-bright); transform: translateY(-1px); }
  .rp-start-btn:disabled { opacity: 0.5; cursor: default; transform: none; }

  /* ─── DYNAMIC DIFFICULTY ─── */
  .diff-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 10px 16px;
    background: var(--surface-1);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-sm);
  }
  .diff-selector .diff-label {
    font-size: 11px;
    color: var(--ink-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 500;
    white-space: nowrap;
  }
  .diff-btn {
    background: none;
    border: 1px solid var(--border-standard);
    color: var(--ink-tertiary);
    padding: 8px 14px;
    min-height: 44px;
    border-radius: var(--r-full);
    font-size: 12px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.15s;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
  }
  .diff-btn:hover { border-color: var(--gold); color: var(--gold); }
  .diff-btn.active { background: var(--gold); border-color: var(--gold); color: var(--surface-0); }

  /* ─── PRICING ─── */
  #pricing { text-align: center; }
  .price-card {
    max-width: 460px;
    margin: 0 auto;
    background: var(--surface-2);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-xl);
    padding: 52px 48px;
    position: relative;
    box-shadow: var(--shadow-elevated);
  }
  .price-flag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--surface-0);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: var(--r-full);
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(203,163,90,0.25);
  }
  .price-old {
    color: var(--ink-quaternary);
    text-decoration: line-through;
    font-size: 18px;
    font-weight: 400;
  }
  .price-now {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 68px;
    font-weight: 600;
    color: var(--ink-primary);
    line-height: 0.94;
    margin: 4px 0 4px;
    letter-spacing: -0.035em;
  }
  .price-now span {
    font-size: 26px;
    color: var(--gold);
    vertical-align: super;
  }
  .price-sub {
    color: var(--ink-tertiary);
    font-size: 13.5px;
    margin-bottom: 28px;
    font-weight: 400;
  }
  .price-feats {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 30px 0 36px;
  }
  .price-feats li {
    font-size: 14.5px;
    color: var(--ink-secondary);
    padding-left: 28px;
    position: relative;
    line-height: 1.5;
  }
  .price-feats li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
  }
  .price-card .btn { width: 100%; justify-content: center; }
  .guarantee {
    font-size: 12.5px;
    color: var(--ink-quaternary);
    margin-top: 18px;
    font-weight: 400;
  }
  .pay-note {
    font-size: 11.5px;
    color: var(--ink-quaternary);
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 400;
  }
  .pay-note svg {
    width: 13px;
    height: 13px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.6;
  }

  /* ─── FAQ ─── */
  .faq-item {
    border-bottom: 1px solid var(--border-hairline);
    padding: 24px 0;
    cursor: pointer;
  }
  .faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--ink-primary);
    transition: color 0.2s;
  }
  .faq-item:hover .faq-q { color: var(--gold); }
  .faq-q .plus {
    color: var(--gold);
    font-size: 20px;
    transition: transform 0.25s;
    font-weight: 300;
    flex-shrink: 0;
  }
  .faq-item.open .plus { transform: rotate(45deg); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
  .faq-a p {
    color: var(--ink-secondary);
    font-size: 14.5px;
    padding-top: 14px;
    max-width: 620px;
    line-height: 1.65;
  }

  .final {
    text-align: center;
    border-top: 1px solid var(--border-hairline);
  }
  .final h2 {
    font-size: clamp(28px, 5vw, 46px);
    margin-bottom: 20px;
    letter-spacing: -0.025em;
  }
  .final h2 em { font-style: italic; color: var(--gold); }
  .final p {
    color: var(--ink-secondary);
    max-width: 500px;
    margin: 0 auto 32px;
    font-size: 16.5px;
    line-height: 1.6;
  }

  /* ─── FOOTER ─── */
  footer {
    border-top: 1px solid var(--border-hairline);
    padding: 40px 0;
    color: var(--ink-quaternary);
    font-size: 13px;
    font-weight: 400;
  }
  footer .wrap {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
  }
  footer .brand { font-size: 17px; display: flex; align-items: center; gap: 8px; }
  footer a { transition: color 0.2s; }
  footer a:hover { color: var(--ink-primary); }
  .trust-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--surface-2); border: 1px solid var(--border-hairline); border-radius: var(--r-full); padding: 6px 16px 6px 10px; }
  .trust-badge img { width: 28px; height: 28px; }
  .trust-badge span { font-size: 12px; color: var(--ink-tertiary); font-weight: 500; }

  /* ─── PAYWALL ─── */
  .unlock-banner {
    background: var(--surface-2);
    border: 1px solid var(--border-gold);
    border-radius: var(--r-lg);
    padding: 36px 30px;
    text-align: center;
    margin: 0 0 36px;
    box-shadow: var(--shadow-card);
  }
  .unlock-banner p {
    font-size: 15px;
    color: var(--ink-secondary);
    margin-bottom: 24px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.55;
  }
  .unlock-banner .lock-svg {
    width: 30px;
    height: 30px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
    margin-bottom: 14px;
  }
  .code-row {
    display: flex;
    gap: 10px;
    max-width: 440px;
    margin: 0 auto 10px;
  }
  .code-input {
    flex: 1;
    background: var(--surface-0);
    border: 1px solid var(--border-standard);
    color: var(--ink-primary);
    border-radius: var(--r-sm);
    padding: 12px 16px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 15px;
    letter-spacing: 0.05em;
    transition: border-color 0.2s;
  }
  .code-input:focus { border-color: var(--gold); outline: none; }
  .code-input::placeholder { color: var(--ink-quaternary); }
  .code-msg { font-size: 13px; margin-bottom: 16px; min-height: 22px; font-weight: 400; }
  .code-msg.error { color: var(--err); }
  .code-msg.success { color: var(--ok); }
  .already-link {
    display: inline-block;
    font-size: 12.5px;
    color: var(--ink-tertiary);
    text-decoration: underline;
    text-underline-offset: 4px;
    margin-bottom: 22px;
    cursor: pointer;
    font-weight: 400;
    transition: color 0.2s;
  }
  .already-link:hover { color: var(--gold); }
  .unlocked-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--ok-bg);
    border: 1px solid rgba(143,178,122,0.2);
    border-radius: var(--r-sm);
    padding: 12px 20px;
    margin-bottom: 36px;
    font-size: 13.5px;
  }
  .unlocked-badge {
    color: var(--ok);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .lockout-link {
    background: none;
    border: none;
    color: var(--ink-tertiary);
    font-size: 11.5px;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-family: 'Inter', system-ui, sans-serif;
    margin-left: auto;
    transition: color 0.2s;
  }
  .lockout-link:hover { color: var(--ink-primary); }
  .day.locked { opacity: 0.6; }
  .day.locked .day-head { cursor: default; }
  .day.locked .day-title { color: var(--ink-tertiary); }
  .day.locked .day-num { color: var(--ink-quaternary); }
  .lock-icon-svg {
    width: 15px;
    height: 15px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.6;
    flex: none;
    opacity: 0.7;
  }
  .day.locked .day-body { display: none; }
  /* Day 3 teaser */
  .teaser-fade { background: linear-gradient(to bottom, rgba(20,18,14,0.3) 0%, var(--surface-0) 70%); padding: 0 0 28px; text-align: center; border-top: 1px solid var(--border-subtle); margin-top: 20px; border-radius: 0 0 var(--r-md) var(--r-md); }
  .teaser-inner { padding: 32px 20px 20px; }
  .teaser-inner svg { stroke: var(--gold); fill: none; margin-bottom: 8px; }
  .teaser-inner p { margin: 4px 0; }
  .price-code-note {
    font-size: 11.5px;
    color: var(--ink-quaternary);
    margin-top: 12px;
    font-weight: 400;
    line-height: 1.55;
  }

  /* ─── AI COACH FAB ─── */
  .coach-fab {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 80;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--surface-0);
    border: none;
    cursor: pointer;
    border-radius: var(--r-full);
    padding: 14px 24px;
    min-height: 48px;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 700;
    font-size: 14px;
    box-shadow: var(--shadow-fab);
    transition: transform 0.2s, box-shadow 0.2s;
    -webkit-tap-highlight-color: transparent;
  }
  .coach-fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.6);
  }
  .coach-fab svg { width: 18px; height: 18px; }
  .coach-panel {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 81;
    width: 390px;
    max-width: calc(100vw - 32px);
    height: 580px;
    max-height: calc(100vh - 40px);
    background: var(--surface-2);
    border: 1px solid var(--border-subtle);
    border-radius: var(--r-lg);
    display: none;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 28px 64px rgba(0,0,0,0.65);
  }
  .coach-panel.open { display: flex; }
  .coach-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-hairline);
    background: var(--surface-1);
  }
  .coach-head .t { display: flex; align-items: center; gap: 12px; }
  .coach-head .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--ok);
    box-shadow: 0 0 8px var(--ok);
  }
  .coach-head h4 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.1;
  }
  .coach-head .sub {
    font-size: 10.5px;
    color: var(--ink-tertiary);
    letter-spacing: 0.04em;
    font-weight: 400;
  }
  .coach-close {
    background: none;
    border: none;
    color: var(--ink-tertiary);
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    padding: 8px 10px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
    border-radius: var(--r-sm);
  }
  .coach-close:hover { color: var(--ink-primary); background: rgba(243,239,230,0.04); }
  .coach-msgs {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .msg {
    max-width: 86%;
    padding: 10px 14px;
    border-radius: var(--r-lg);
    font-size: 13.5px;
    line-height: 1.55;
    white-space: pre-wrap;
  }
  .msg.bot {
    align-self: flex-start;
    background: var(--surface-1);
    color: var(--ink-primary);
    border-bottom-left-radius: var(--r-sm);
  }
  .msg.user {
    align-self: flex-end;
    background: var(--gold);
    color: var(--surface-0);
    border-bottom-right-radius: var(--r-sm);
    font-weight: 500;
  }
  .msg.typing {
    align-self: flex-start;
    background: var(--surface-1);
    display: flex;
    gap: 4px;
    padding: 16px 18px;
  }
  .msg.typing i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ink-tertiary);
    animation: blink 1.2s infinite;
  }
  .msg.typing i:nth-child(2) { animation-delay: 0.2s; }
  .msg.typing i:nth-child(3) { animation-delay: 0.4s; }
  @keyframes blink { 0%, 60%, 100% { opacity: 0.3; } 30% { opacity: 1; } }
  .coach-input {
    display: flex;
    gap: 8px;
    padding: 14px;
    border-top: 1px solid var(--border-hairline);
    background: var(--surface-2);
  }
  .coach-input textarea {
    flex: 1;
    background: var(--surface-0);
    border: 1px solid var(--border-subtle);
    color: var(--ink-primary);
    border-radius: var(--r-sm);
    padding: 10px 14px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 13.5px;
    resize: none;
    max-height: 80px;
    min-height: 20px;
    line-height: 1.45;
    transition: border-color 0.2s;
  }
  .coach-input textarea:focus { border-color: var(--gold); outline: none; }
  .coach-input textarea::placeholder { color: var(--ink-quaternary); }
  .coach-input button {
    background: var(--gold);
    color: var(--surface-0);
    border: none;
    border-radius: var(--r-sm);
    padding: 0 18px;
    min-height: 44px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 13.5px;
    transition: background 0.2s;
    -webkit-tap-highlight-color: transparent;
  }
  .coach-input button:hover { background: var(--gold-bright); }
  .coach-input button:disabled { opacity: 0.5; cursor: default; }
  .coach-disc {
    font-size: 10.5px;
    color: var(--ink-quaternary);
    text-align: center;
    padding: 0 16px 12px;
    line-height: 1.45;
    font-weight: 400;
  }
  @media (max-width: 480px) {
    .coach-panel {
      right: 8px;
      bottom: max(8px, env(safe-area-inset-bottom, 8px));
      width: calc(100vw - 16px);
      height: min(580px, calc(100dvh - 80px));
      border-radius: var(--r-lg) var(--r-lg) 0 0;
    }
    .coach-fab { right: 14px; bottom: max(14px, calc(env(safe-area-inset-bottom, 0px) + 14px)); }
    .coach-panel .coach-disc { padding-bottom: max(12px, calc(env(safe-area-inset-bottom, 0px) + 4px)); }
  }

  /* ─── ANIMATIONS ─── */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.2, 0, 0, 1),
                transform 0.7s cubic-bezier(0.2, 0, 0, 1);
  }
  .reveal.in { opacity: 1; transform: translateY(0); }
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      transition-duration: 0.01ms !important;
      animation-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 760px) {
    :root { --pad-inline: 20px; }
    section { padding: 72px 0; }
    .hero { padding: 72px 0 88px; }
    .hero h1 { font-size: 34px; }
    .sec-head { margin-bottom: 40px; }
    .sec-head h2 { font-size: 26px; }
    .price-card { padding: 40px 28px; }
    .price-now { font-size: 54px; }
    #site-header .header-row { height: 56px; }
    /* Mobile perf: reduce expensive backdrop-filter */
    #site-header { backdrop-filter: blur(8px) saturate(120%); -webkit-backdrop-filter: blur(8px) saturate(120%); }
    /* Off-screen day cards: skip rendering until visible */
    .day { content-visibility: auto; contain-intrinsic-size: auto 64px; }
    /* Less padding on mobile for cards */
    .prob-card { padding: 28px 24px; }
    .assessment-card { padding: 28px 24px; }
    .unlock-banner { padding: 28px 22px; }
    .checkin-panel { padding: 24px 22px; }
    section.final { padding: 72px 0; }
    section#pricing { padding: 72px 0; }
    .final h2 { font-size: 30px; }
    /* Simplify expensive hero background on mobile */
    .hero { background: var(--surface-0); }
    /* Disable scroll-reveal animations on mobile (save paint/layout) */
    .reveal { opacity: 1; transform: none; transition: none; }
  }
  @media (max-width: 520px) {
    .hero { padding: 56px 0 72px; }
    .hero h1 { font-size: 28px; }
    .hero .sub { font-size: 15px; }
    .hero .ghost21 { font-size: 42vw; right: -2%; top: -2%; -webkit-text-stroke: 0.5px rgba(203,163,90,0.04); }
    .prob-card { padding: 24px 20px; }
    .assessment-card { padding: 24px 20px; }
    .price-card { padding: 32px 18px; }
    .price-now { font-size: 48px; }
    .price-old { font-size: 16px; }
    section { padding: 56px 0; }
    section.final { padding: 56px 0; }
    section#pricing { padding: 56px 0; }
    .sec-head { margin-bottom: 32px; }
    .hero .cta-row { flex-direction: column; align-items: stretch; }
    .hero .cta-row .btn { justify-content: center; }
    /* Day card header overflow fix on narrow screens */
    .day-head { padding: 16px 14px; gap: 10px; }
    .day-num { font-size: 17px; min-width: 32px; }
    .day-title { font-size: 13.5px; }
    .day-status { font-size: 10px; }
    .tracker-top { flex-direction: column; align-items: stretch; }
    .reset { align-self: flex-start; }
  }
  @media (max-width: 375px) {
    .hero .ghost21 { font-size: 36vw; right: 0; top: 0; }
    .hero h1 { font-size: 26px; }
    .price-card { padding: 28px 14px; }
    .price-now { font-size: 42px; }
    .price-now span { font-size: 20px; }
    .price-feats li { font-size: 13px; }
    .code-row { flex-direction: column; gap: 8px; }
    .code-row .btn { width: 100%; }
    .phase { padding: 28px 20px; }
    footer .wrap { flex-direction: column; text-align: center; gap: 16px; }
    footer .wrap > div { justify-content: center; }
  }

  /* ═══════════════════════════════════════════════
     MOBILE OPTIMIZATIONS (375px–760px)
     ═══════════════════════════════════════════════ */
  @media (max-width: 760px) {
    /* Hero — tighter on mobile */
    .hero { padding: 72px 0 80px; min-height: auto; }
    .hero h1 { font-size: clamp(32px, 8vw, 44px); }
    .hero .sub { font-size: 15px; }
    .hero .ghost21 { font-size: min(50vw, 300px); right: -8%; top: -4%; }
    .hero .cta-row { flex-direction: column; gap: 10px; }
    .hero .cta-row .btn { width: 100%; text-align: center; }
    .hero .note { font-size: 13px; }
    .hero .trust-row { gap: 12px; flex-wrap: wrap; justify-content: center; }
    .hero .tb { font-size: 12px; }

    /* Header */
    #site-header .header-row { height: 56px; }
    .brand { font-size: 22px; }

    /* Sections — less padding */
    section { padding: 48px 0; }
    .sec-head h2 { font-size: clamp(24px, 6vw, 32px); }

    /* Pricing card — full width, less padding */
    .price-card { max-width: 100%; padding: 36px 24px; margin: 0 8px; }
    .price-flag { font-size: 11px; padding: 5px 14px; }
    .price-now { font-size: 52px; }
    .price-feats { text-align: left; font-size: 14px; }
    .guarantee-badge { font-size: 12px; padding: 8px 12px; }

    /* Final CTA */
    .final h2 { font-size: clamp(24px, 6vw, 36px); }
    .final .btn { width: 100%; }

    /* Coach FAB — compact pill on mobile */
    .coach-fab { width: auto; height: auto; padding: 10px 18px; bottom: 16px; right: 12px; border-radius: 28px; font-size: 13px; gap: 6px; min-height: 44px; }
    .coach-fab svg { width: 16px; height: 16px; }
    .coach-panel { width: calc(100vw - 16px); max-width: 400px; right: 8px; bottom: 76px; height: 70vh; max-height: 520px; border-radius: 16px 16px 0 0; }

    /* Tracker — full width cards */
    .tracker-top { flex-direction: column; gap: 12px; align-items: stretch; }
    .day-inner { padding: 2px 16px 24px 16px; }

    /* Forms + Unlock */
    .code-input { font-size: 14px; padding: 10px 14px; }
    .code-row { flex-direction: column; gap: 8px; }
    .code-row .btn { width: 100%; }
    .unlock-banner { padding: 24px 16px; margin: 0 0 24px; }
    .unlock-banner p { font-size: 14px; margin-bottom: 16px; max-width: 100%; }
    .unlock-banner .btn-cream { width: 100%; display: block; text-align: center; margin-top: 8px; }
    .unlock-banner .lock-svg { width: 24px; height: 24px; margin-bottom: 10px; }
    .unlocked-bar { flex-direction: column; gap: 10px; align-items: stretch; text-align: center; }

    /* Check-in */
    .checkin-panel { padding: 24px 20px; }
    .ci-presence button { width: 34px; height: 34px; font-size: 14px; }

    /* Assessment */
    .assessment-card { padding: 24px 20px; }
    .as-head { flex-direction: column; align-items: flex-start; gap: 12px; }
    .as-dim { flex-direction: column; gap: 6px; }
    .as-label { justify-content: space-between; width: 100%; }

    /* FAQ — tap-friendly */
    .faq-q { padding: 16px 0; font-size: 15px; }
    .faq-a p { font-size: 14px; line-height: 1.7; }
  }

  @media (max-width: 480px) {
    /* Extra small screens */
    .hero { padding: 56px 0 64px; }
    .hero h1 { font-size: 28px; }
    .hero .sub { font-size: 14px; }
    .hero .ghost21 { font-size: min(60vw, 220px); }
    .price-now { font-size: 44px; }
    .sec-head h2 { font-size: 24px; }
    .brand { font-size: 20px; }
    .story-body p { font-size: 15px; line-height: 1.7; }
  }

  /* ═══════════════════════════════════════════════
     UNLOCKED / MEMBER VIEW — hide sales, show dashboard
     ═══════════════════════════════════════════════ */
  body.unlocked .hero .cta-row,
  body.unlocked .hero .note,
  body.unlocked #pricing,
  body.unlocked section.final,
  body.unlocked .navlinks .btn-gold,
  body.unlocked .mobile-menu .btn-gold { display: none; }
  body.unlocked .course-nav-link { display: inline-flex !important; }

  body.unlocked #why { padding-top: 20px; }
  body.unlocked .unlock-banner p:first-of-type { display: none; }
  body.unlocked .unlock-banner .btn-cream { display: none; }
  body.unlocked .unlock-banner { background: var(--surface-1); border-color: var(--border-subtle); }
  body.unlocked .unlock-banner .lock-svg { display: none; }
  body.unlocked .hero h1 { font-size: clamp(28px, 5vw, 44px); }
  body.unlocked .hero .sub { display: none; }
  body.unlocked .hero { padding: 48px 0 60px; min-height: auto; }
  body.unlocked .hero .eyebrow { margin-bottom: 4px; }

  @media (max-width: 760px) {
    body.unlocked .hero { padding: 36px 0 48px; }
    body.unlocked .hero h1 { font-size: 24px; }
  }

  /* ═══════════════════════════════════════════════════════
     TOULTRA — V2 UX/UI & CRO Optimizations
     ═══════════════════════════════════════════════════════ */

  :root {
    --space-xs: clamp(0.5rem, 1vw + 0.25rem, 0.75rem);
    --space-sm: clamp(0.75rem, 1.5vw + 0.5rem, 1rem);
    --space-md: clamp(1.25rem, 2.5vw + 1rem, 1.5rem);
    --space-lg: clamp(2rem, 4vw + 1.5rem, 3rem);
    --space-xl: clamp(3rem, 6vw + 2rem, 5rem);
    --touch-min: 48px;
    
    /* Improve contrast for accessibility */
    --ink-tertiary: #9E988D; 
  }

  /* Fix iOS Zooming on Inputs */
  input, textarea, select {
    font-size: 16px !important;
  }

  /* Enforce Minimum Touch Targets */
  button, .btn, a.nav-link, .faq-q {
    min-height: var(--touch-min);
  }

  /* Optimize Paint Performance */
  .hero, .premium-card {
    transform: translateZ(0);
    will-change: transform, opacity;
  }

  /* Header Overrides */
  #site-header {
    height: 60px;
    background: rgba(9, 9, 9, 0.65);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: height 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
  }
  #site-header.header-scrolled {
    height: 52px;
    background: rgba(9, 9, 9, 0.85);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  }
  
  /* Mobile Menu Overrides */
  .mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1);
    padding: 0 var(--pad-inline);
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    max-height: none !important;
  }
  .mobile-menu.open {
    clip-path: inset(0 0 0 0);
    padding-bottom: var(--space-md);
  }

  /* Premium Card Overrides */
  .premium-card {
    background: linear-gradient(180deg, rgba(26,26,26,0.6) 0%, rgba(20,20,20,0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 8px 24px rgba(0,0,0,0.4);
    border-radius: var(--r-xl);
    padding: var(--space-md);
    position: relative;
    overflow: hidden;
  }
  .premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .premium-card:active::before {
    opacity: 1;
  }

  /* Price Card Overrides */
  .price-card {
    background: var(--surface-1);
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    position: relative;
    box-shadow: 0 0 120px rgba(212, 175, 55, 0.05), 0 24px 48px rgba(0,0,0,0.5) !important;
  }
  .price-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(180deg, rgba(212,175,55,0.5), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
  }

  /* FAQ Overrides */
  .faq-q {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    color: var(--ink-primary);
    font-family: inherit;
    font-size: 1.125rem;
    padding: var(--space-md) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }
  .faq-q:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
    border-radius: 4px;
  }
  .faq-q .plus {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    margin-left: 1rem;
    color: transparent !important;
  }
  .faq-q .plus::before,
  .faq-q .plus::after {
    content: '';
    position: absolute;
    background: var(--gold);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
  }
  .faq-q .plus::before {
    top: 11px; left: 4px; right: 4px; height: 2px;
  }
  .faq-q .plus::after {
    top: 4px; bottom: 4px; left: 11px; width: 2px;
  }
  .faq-item.open .plus::after {
    transform: rotate(90deg);
  }

  /* Mobile Specific Overrides */
  @media (max-width: 768px) {
    .hero {
      padding-top: calc(60px + var(--space-xl)) !important;
      padding-bottom: var(--space-xl) !important;
      text-align: left !important;
    }
    .hero h1 {
      font-size: clamp(2.5rem, 8vw, 3.5rem) !important;
      line-height: 1.05 !important;
      letter-spacing: -0.04em !important;
    }
    .hero .sub {
      font-size: 1.125rem !important;
      line-height: 1.6 !important;
      margin-bottom: var(--space-lg) !important;
    }
    .hero .ghost21 {
      opacity: 0.15 !important;
      font-size: 80vw !important;
      top: 10% !important;
      right: -10% !important;
    }
    .hero .cta-row {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: var(--space-sm) var(--space-md);
      background: linear-gradient(to top, rgba(9,9,9,1) 60%, rgba(9,9,9,0));
      z-index: 100;
      gap: 8px;
      flex-direction: row !important;
    }
    .hero .cta-row .btn {
      flex: 1;
      font-size: 0.9375rem !important;
      padding: 0 !important;
    }
    
    #problem .wrap > div {
      gap: var(--space-md) !important;
    }
    .premium-card h3 {
      font-size: 1.25rem !important;
    }

    .price-now {
      font-size: 3.5rem !important;
    }
    .price-feats li {
      font-size: 0.9375rem !important;
      padding-left: 2rem !important;
      margin-bottom: var(--space-xs) !important;
    }
    .price-feats li::before {
      content: '' !important;
      position: absolute;
      left: 0;
      top: 4px;
      width: 20px;
      height: 20px;
      background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23D4AF37" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>');
      background-size: contain;
      background-repeat: no-repeat;
    }
  }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .premium-card {
      background: rgba(26,26,26,0.4);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: var(--r-xl);
      padding: 48px;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .premium-card:hover {
      border-color: rgba(212,175,55,0.3);
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 40px rgba(212,175,55,0.05);
    }
  