    /* ============================
       CSS VARIABLES / DESIGN TOKENS
       ============================ */
    :root {
      /* Brand Colors */
      --background: #FAFAF7;
      --foreground: #1C1917;
      --card: #FFFFFF;
      --card-foreground: #1C1917;
      --primary: #0D9488;
      --primary-foreground: #FFFFFF;
      --secondary: #F5F2ED;
      --secondary-foreground: #44403C;
      --muted: #F5F2ED;
      --muted-foreground: #78716C;
      --accent: #FEF3C7;
      --accent-foreground: #92400E;
      --border: #E7E5E4;
      --input: #E7E5E4;
      --ring: #0D9488;

      /* Extended palette */
      --teal-50: #F0FDFA;
      --teal-100: #CCFBF1;
      --teal-200: #99F6E4;
      --teal-500: #14B8A6;
      --teal-600: #0D9488;
      --teal-700: #0F766E;
      --teal-800: #115E59;
      --teal-900: #134E4A;

      --amber-50: #FFFBEB;
      --amber-100: #FEF3C7;
      --amber-200: #FDE68A;
      --amber-300: #FCD34D;
      --amber-400: #FBBF24;
      --amber-500: #F59E0B;
      --amber-600: #D97706;
      --amber-700: #B45309;
      --amber-800: #92400E;
      --amber-900: #78350F;

      --stone-50: #FAFAF9;
      --stone-100: #F5F5F4;
      --stone-200: #E7E5E4;
      --stone-300: #D6D3D1;
      --stone-400: #A8A29E;
      --stone-500: #78716C;
      --stone-600: #57534E;
      --stone-700: #44403C;
      --stone-800: #292524;
      --stone-900: #1C1917;

      --red-100: #FEE2E2;
      --red-400: #F87171;
      --red-500: #EF4444;
      --red-600: #DC2626;

      --orange-50: #FFF7ED;
      --orange-100: #FFEDD5;
      --orange-400: #FB923C;
      --orange-600: #EA580C;
      --orange-700: #C2410C;

      --green-100: #DCFCE7;
      --green-400: #4ADE80;

      --blue-100: #DBEAFE;
      --blue-700: #1D4ED8;

      --violet-50: #F5F3FF;
      --violet-600: #7C3AED;

      --purple-100: #F3E8FF;
      --purple-700: #7E22CE;

      --rose-100: #FFE4E6;
      --rose-700: #BE123C;

      /* Radius */
      --radius-sm: 0.5rem;
      --radius: 0.75rem;
      --radius-lg: 1rem;
      --radius-xl: 1.25rem;
      --radius-2xl: 1.5rem;
      --radius-3xl: 1.875rem;
      --radius-full: 9999px;

      /* Typography */
      --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
      --font-serif: 'Playfair Display', Georgia, serif;
      --font-mono: 'Courier New', monospace;
    }

    /* ============================
       RESET & BASE STYLES
       ============================ */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: clip;
    }

    body {
      font-family: var(--font-sans);
      font-size: 16px;
      line-height: 1.6;
      color: var(--foreground);
      background-color: var(--background);
      overflow-x: clip;
    }

    img, svg {
      display: block;
      max-width: 100%;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button {
      font-family: inherit;
      cursor: pointer;
      border: none;
      background: none;
    }

    ul {
      list-style: none;
    }

    /* ============================
       UTILITY CLASSES
       ============================ */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .container-sm {
      max-width: 768px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .container-md {
      max-width: 896px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .container-lg {
      max-width: 1024px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .text-center { text-align: center; }
    .text-left { text-align: left; }
    .text-balance { text-wrap: balance; }
    .text-pretty { text-wrap: pretty; }

    .font-serif { font-family: var(--font-serif); }
    .font-sans { font-family: var(--font-sans); }
    .font-mono { font-family: var(--font-mono); }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    /* Flexbox utilities */
    .flex { display: flex; }
    .flex-col { flex-direction: column; }
    .flex-wrap { flex-wrap: wrap; }
    .items-center { align-items: center; }
    .items-start { align-items: flex-start; }
    .justify-center { justify-content: center; }
    .justify-between { justify-content: space-between; }
    .gap-1 { gap: 4px; }
    .gap-2 { gap: 8px; }
    .gap-3 { gap: 12px; }
    .gap-4 { gap: 16px; }
    .gap-6 { gap: 24px; }
    .gap-8 { gap: 32px; }

    /* Grid utilities */
    .grid { display: grid; }

    /* Animation base */
    .fade-up {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ============================
       TYPOGRAPHY
       ============================ */
    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-serif);
      font-weight: 700;
      line-height: 1.1;
      color: var(--stone-900);
    }

    h1 {
      font-size: clamp(2.5rem, 5vw, 3.25rem);
    }

    h2 {
      font-size: clamp(1.875rem, 4vw, 2.5rem);
    }

    h3 {
      font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    }

    .section-label {
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--teal-600);
      margin-bottom: 12px;
    }

    /* ============================
       BUTTONS
       ============================ */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      font-size: 1rem;
      color: white;
      background-color: var(--violet-600);
      border-radius: var(--radius-full);
      padding: 14px 32px;
      transition: all 0.2s ease;
      box-shadow: 0 4px 20px rgba(124, 58, 237, 0.28);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      background-color: var(--stone-500);
      box-shadow: 0 4px 16px rgba(120, 113, 108, 0.22);
      filter: none;
    }

    .btn-primary:active {
      transform: scale(0.98);
    }

    a.gumroad-button.btn-primary {
      color: white !important;
      background-color: #7A5AF8 !important;
      box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.18), 0 1px 0 rgba(255, 255, 255, 0.08) inset !important;
    }

    a.gumroad-button.btn-primary:hover {
      color: white !important;
      background-color: #6B7280 !important;
      box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.16), 0 1px 0 rgba(255, 255, 255, 0.08) inset !important;
      filter: none !important;
    }

    a.gumroad-button.header-cta {
      color: white !important;
      background-color: #7A5AF8 !important;
      box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.18), 0 1px 0 rgba(255, 255, 255, 0.08) inset !important;
    }

    a.gumroad-button.header-cta:hover {
      color: white !important;
      background-color: #6B7280 !important;
      box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.16), 0 1px 0 rgba(255, 255, 255, 0.08) inset !important;
      filter: none !important;
    }

    .btn-primary-lg {
      font-size: 17px;
      padding: 16px 40px;
    }

    /* ============================
       CARDS
       ============================ */
    .card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius-2xl);
      padding: 24px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }

    /* ============================
       HEADER
       ============================ */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--stone-100);
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }

    .site-header .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 14px;
      padding-bottom: 14px;
    }

    .site-logo {
      font-family: var(--font-serif);
      font-weight: 700;
      font-size: 1.125rem;
      color: var(--teal-700);
      letter-spacing: -0.02em;
    }

    .header-cta {
      font-size: 0.875rem;
      font-weight: 600;
      color: white;
      background-color: var(--violet-600);
      padding: 8px 20px;
      border-radius: var(--radius-full);
      transition: all 0.2s ease;
      box-shadow: 0 2px 12px rgba(124, 58, 237, 0.24);
    }

    .header-cta:hover {
      transform: translateY(-2px);
      background-color: var(--stone-500);
      box-shadow: 0 2px 10px rgba(120, 113, 108, 0.22);
      filter: none;
    }

    /* ============================
       SECTION: HERO
       ============================ */
    .hero {
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, var(--teal-50) 0%, var(--background) 50%, #FAF9F6 100%);
      padding: 48px 0 80px;
    }

    @media (min-width: 768px) {
      .hero {
        padding: 80px 0;
      }
    }

    .hero .container {
      display: flex;
      flex-direction: column-reverse;
      align-items: center;
      gap: 40px;
    }

    @media (min-width: 768px) {
      .hero .container {
        flex-direction: row;
        gap: 64px;
      }
    }

    .hero-content {
      flex: 1;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--teal-50);
      border: 1px solid var(--teal-200);
      color: var(--teal-700);
      font-size: 0.875rem;
      font-weight: 500;
      padding: 6px 16px;
      border-radius: var(--radius-full);
      margin-bottom: 20px;
    }

    .hero-badge-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--teal-500);
      flex-shrink: 0;
    }

    .hero h1 {
      margin-bottom: 16px;
    }

    .hero-subtitle {
      font-size: 1.125rem;
      color: var(--stone-600);
      line-height: 1.6;
      margin-bottom: 12px;
    }

    .hero-tagline {
      font-size: 0.9375rem;
      font-style: italic;
      color: var(--stone-500);
      margin-bottom: 8px;
    }

    .hero-tagline:last-of-type {
      margin-bottom: 24px;
    }

    .hero-promo {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--amber-50);
      border: 1px dashed var(--amber-300);
      color: var(--amber-800);
      font-size: 0.875rem;
      font-weight: 600;
      padding: 10px 16px;
      border-radius: var(--radius-xl);
      margin-bottom: 20px;
    }

    .hero-promo s {
      color: var(--stone-400);
    }

    .hero-promo .price {
      font-weight: 700;
      color: var(--amber-900);
    }

    .hero-promo .code {
      font-family: var(--font-mono);
      font-weight: 700;
      letter-spacing: 0.05em;
    }

    .hero-cta-group {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
    }

    .trust-bar {
      font-size: 0.875rem;
      color: var(--stone-500);
    }

    .trust-bar s {
      color: var(--stone-400);
    }

    .trust-bar .highlight {
      font-weight: 500;
      color: var(--stone-600);
    }

    .guarantee-badge-wrap {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 8px;
    }

    .guarantee-badge-wrap img {
      width: 88px;
      height: auto;
      flex-shrink: 0;
    }

    .guarantee-badge-copy {
      font-size: 0.875rem;
      color: var(--stone-600);
      line-height: 1.5;
    }

    .final-guarantee {
      display: flex;
      justify-content: center;
      margin-top: 18px;
    }

    .final-guarantee img {
      width: 104px;
      height: auto;
    }

    @media (max-width: 767px) {
      .guarantee-badge-wrap {
        align-items: flex-start;
      }

      .guarantee-badge-wrap img {
        width: 74px;
      }

      .guarantee-badge-copy {
        font-size: 0.8125rem;
      }

      .final-guarantee img {
        width: 92px;
      }
    }

    /* Hero Mockup */
    .hero-mockup {
      flex: 1;
      width: 100%;
      max-width: 512px;
      margin: 0 auto;
    }

    @media (min-width: 768px) {
      .hero-mockup {
        margin: 0;
      }
    }

    .mockup-window {
      background: white;
      border-radius: var(--radius-2xl);
      border: 1px solid var(--stone-200);
      box-shadow: 0 25px 50px -12px rgba(13, 148, 136, 0.1);
      overflow: hidden;
    }

    .mockup-bar {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 12px 16px;
      border-bottom: 1px solid var(--stone-100);
      background: var(--stone-50);
    }

    .mockup-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
    }

    .mockup-dot.red { background: #F87171; }
    .mockup-dot.yellow { background: #FBBF24; }
    .mockup-dot.green { background: #4ADE80; }

    .mockup-title {
      margin-left: 16px;
      font-family: var(--font-mono);
      font-size: 0.75rem;
      color: var(--stone-400);
    }

    .mockup-content {
      padding: 20px;
    }

    .mockup-header {
      margin-bottom: 20px;
    }

    .mockup-header h3 {
      font-family: var(--font-sans);
      font-size: 1rem;
      font-weight: 600;
      color: var(--stone-800);
      margin-bottom: 4px;
    }

    .mockup-header p {
      font-size: 0.75rem;
      color: var(--stone-500);
    }

    .quick-log-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 20px;
    }

    .quick-log-btn {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.75rem;
      font-weight: 500;
      padding: 6px 12px;
      border-radius: var(--radius);
      border: 1px solid;
    }

    .quick-log-btn.meal {
      background: var(--teal-50);
      border-color: var(--teal-200);
      color: var(--teal-700);
    }

    .quick-log-btn.symptom {
      background: var(--orange-50);
      border-color: var(--orange-200, #FED7AA);
      color: var(--orange-700);
    }

    .quick-log-btn.bm {
      background: var(--blue-100);
      border-color: #BFDBFE;
      color: var(--blue-700);
    }

    .mockup-table-header {
      display: grid;
      grid-template-columns: 1fr auto auto;
      gap: 8px;
      padding: 0 4px;
      margin-bottom: 8px;
    }

    .mockup-table-header span {
      font-size: 0.6875rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--stone-400);
    }

    .mockup-row {
      display: grid;
      grid-template-columns: 1fr auto auto;
      gap: 8px;
      align-items: center;
      padding: 8px 4px;
      border-top: 1px solid var(--stone-100);
    }

    .mockup-row .meal-name {
      font-size: 0.75rem;
      color: var(--stone-700);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .mockup-row .time {
      font-size: 0.6875rem;
      color: var(--stone-400);
      white-space: nowrap;
    }

    .mockup-tags {
      display: flex;
      gap: 4px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .mockup-tag {
      font-size: 0.625rem;
      font-weight: 500;
      padding: 2px 6px;
      border-radius: var(--radius-full);
    }

    .mockup-tag.teal { background: var(--teal-100); color: var(--teal-700); }
    .mockup-tag.red { background: var(--red-100); color: var(--red-600); }
    .mockup-tag.orange { background: var(--orange-100); color: var(--orange-700); }
    .mockup-tag.purple { background: var(--purple-100); color: var(--purple-700); }
    .mockup-tag.blue { background: var(--blue-100); color: var(--blue-700); }
    .mockup-tag.rose { background: var(--rose-100); color: var(--rose-700); }

    .mockup-footer {
      margin-top: 16px;
      padding-top: 12px;
      border-top: 1px solid var(--stone-100);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .pulse-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--teal-400);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.5; }
    }

    .mockup-footer span {
      font-size: 0.6875rem;
      color: var(--stone-500);
    }

    /* ============================
       SECTION: VALUE STRIP
       ============================ */
    .lead-magnet-section {
      position: relative;
      margin-top: -28px;
      padding: 0 0 28px;
      z-index: 2;
    }

    .lead-magnet-card {
      display: grid;
      gap: 24px;
      background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, #F8FAFC 100%);
      border: 1px solid var(--teal-100);
      border-radius: 28px;
      padding: 24px;
      box-shadow: 0 20px 40px rgba(13, 148, 136, 0.08);
    }

    @media (min-width: 900px) {
      .lead-magnet-card {
        grid-template-columns: minmax(0, 1.1fr) minmax(320px, 420px);
        align-items: center;
        gap: 28px;
        padding: 28px 32px;
      }
    }

    .lead-magnet-copy .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--teal-50);
      border: 1px solid var(--teal-200);
      color: var(--teal-700);
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 6px 12px;
      border-radius: 999px;
      margin-bottom: 14px;
    }

    .lead-magnet-copy h3 {
      font-size: clamp(1.5rem, 3vw, 2rem);
      margin-bottom: 12px;
    }

    .lead-magnet-copy p {
      font-size: 1rem;
      color: var(--stone-600);
      line-height: 1.65;
      margin-bottom: 16px;
      max-width: 58ch;
    }

    .lead-magnet-points {
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .lead-magnet-points li {
      position: relative;
      padding-left: 20px;
      color: var(--stone-700);
      font-size: 0.95rem;
      line-height: 1.55;
      font-weight: 700;
    }

    .lead-magnet-points li::before {
      content: '✓';
      position: absolute;
      left: 0;
      top: 0;
      color: var(--teal-600);
      font-weight: 700;
    }

    .lead-magnet-form-wrap {
      background: white;
      border: 1px solid var(--stone-200);
      border-radius: 24px;
      padding: 20px;
      box-shadow: 0 10px 24px rgba(28, 25, 23, 0.06);
    }

    .lead-magnet-note strong {
      color: var(--stone-700);
    }

    .stats-bar {
      background: linear-gradient(180deg, var(--teal-50) 0%, #F8FAFC 100%);
      border-top: 1px solid var(--teal-100);
      border-bottom: 1px solid var(--teal-100);
      padding: 40px 0;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
    }

    @media (min-width: 768px) {
      .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (min-width: 1080px) {
      .stats-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }
    }

    .stat-item {
      background: rgba(255,255,255,0.88);
      border: 1px solid var(--stone-200);
      border-radius: var(--radius-2xl);
      padding: 20px 16px;
      text-align: center;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
      min-height: 100%;
    }

    .stat-icon {
      width: 52px;
      height: 52px;
      margin: 0 auto 14px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      font-size: 1.45rem;
      font-weight: 700;
      background: var(--teal-100);
      color: var(--teal-800);
    }

    .stat-icon.amber {
      background: var(--amber-100);
      color: var(--amber-800);
    }

    .stat-icon.violet {
      background: var(--violet-50);
      color: var(--violet-600);
    }

    .stat-icon.rose {
      background: var(--rose-100);
      color: var(--rose-700);
    }

    .stat-value {
      display: block;
      font-family: var(--font-serif);
      font-size: clamp(1.125rem, 2.2vw, 1.4rem);
      font-weight: 700;
      color: var(--stone-900);
      margin-bottom: 8px;
      line-height: 1.15;
    }

    .stat-label {
      font-size: 0.9375rem;
      color: var(--stone-600);
      line-height: 1.55;
      max-width: 210px;
      margin: 0 auto;
    }

    .stat-item.guarantee-card {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 18px;
    }

    .guarantee-card img {
      width: 94px;
      height: auto;
      margin-bottom: 12px;
    }

    /* ============================
       SECTION: PROBLEM
       ============================ */
    .problem-section {
      background: linear-gradient(180deg, #FCFBF8 0%, #F7F3EC 100%);
      padding: 72px 0 96px;
      border-top: 1px solid #F1ECE4;
      border-bottom: 1px solid #F1ECE4;
    }

    .problem-section .section-label {
      margin-bottom: 12px;
      text-align: center;
    }

    .problem-section h2 {
      max-width: 700px;
      margin: 0 auto 14px;
      text-align: center;
    }

    .problem-intro {
      max-width: 680px;
      margin: 0 auto 38px;
      text-align: center;
      font-size: 1.02rem;
      line-height: 1.65;
      color: var(--stone-600);
      text-wrap: pretty;
    }

    .problem-layout {
      display: grid;
      gap: 24px;
      margin-bottom: 28px;
    }

    .problem-visual {
      position: relative;
      background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.90) 100%);
      border: 1px solid #E8E0D5;
      border-radius: 30px;
      padding: 28px;
      box-shadow: 0 18px 40px rgba(28, 25, 23, 0.05);
      overflow: hidden;
      min-height: 360px;
    }

    .problem-visual::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 16% 20%, rgba(251, 191, 36, 0.12), transparent 24%),
                  radial-gradient(circle at 82% 22%, rgba(13, 148, 136, 0.10), transparent 22%);
      pointer-events: none;
    }

    .problem-visual-inner {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto minmax(0, 1.2fr);
      gap: 26px;
      align-items: center;
      min-height: 100%;
      z-index: 1;
    }

    .chaos-side,
    .clarity-side {
      display: flex;
      flex-direction: column;
      gap: 16px;
      min-width: 0;
    }

    .chaos-board,
    .tracker-card {
      border-radius: 22px;
      border: 1px solid var(--stone-200);
      background: white;
      box-shadow: 0 10px 24px rgba(28, 25, 23, 0.05);
      overflow: hidden;
    }

    .chaos-board {
      position: relative;
      min-height: 300px;
      background: linear-gradient(180deg, #FFFCF8 0%, #FFF7EE 100%);
    }

    .chaos-board::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 18% 22%, rgba(251,191,36,0.12), transparent 18%),
        radial-gradient(circle at 78% 26%, rgba(244,114,182,0.09), transparent 15%);
      pointer-events: none;
    }

    .chaos-svg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      pointer-events: none;
    }

    .mess-note {
      position: absolute;
      z-index: 2;
      width: 132px;
      min-height: 88px;
      padding: 14px 14px 12px;
      border-radius: 18px;
      background: rgba(255,255,255,0.96);
      border: 1px solid #E7E5E4;
      box-shadow: 0 10px 20px rgba(28,25,23,0.06);
    }

    .mess-note.n1 { top: 24px; left: 18px; transform: rotate(-7deg); }
    .mess-note.n2 { top: 44px; right: 30px; transform: rotate(8deg); }
    .mess-note.n3 { bottom: 34px; left: 82px; transform: rotate(-4deg); }

    .mess-line {
      display: block;
      height: 8px;
      border-radius: 999px;
      background: #D6D3D1;
      margin-bottom: 10px;
    }

    .mess-line.short { width: 56%; }
    .mess-line.mid { width: 74%; }
    .mess-line.long { width: 88%; }
    .mess-line.warn { background: #FDA4AF; }
    .mess-line.amber { background: #FCD34D; }

    .mess-dots {
      display: flex;
      gap: 7px;
      margin-top: 8px;
    }

    .mess-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #E7E5E4;
    }

    .mess-dot.warn { background: #FB7185; }
    .mess-dot.amber { background: #FBBF24; }

    .mess-chip {
      position: absolute;
      z-index: 2;
      padding: 8px 12px;
      border-radius: 999px;
      font-size: 0.78rem;
      font-weight: 700;
      line-height: 1;
      background: rgba(255,255,255,0.96);
      border: 1px solid #E7E5E4;
      color: var(--stone-600);
      box-shadow: 0 6px 16px rgba(28,25,23,0.06);
      white-space: nowrap;
    }

    .mess-chip.warn { background: #FFF1F2; border-color: #FDA4AF; color: #BE123C; }
    .mess-chip.amber { background: #FFFBEB; border-color: #FDE68A; color: #92400E; }
    .mess-chip.stone { background: #FAFAF9; border-color: #E7E5E4; color: #57534E; }

    .mess-chip.c1 { top: 126px; left: 38px; transform: rotate(-10deg); }
    .mess-chip.c2 { top: 144px; right: 46px; transform: rotate(6deg); }
    .mess-chip.c3 { bottom: 28px; right: 38px; transform: rotate(4deg); }

    .transform-arrow {
      width: 74px;
      height: 74px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      background: linear-gradient(180deg, #F0FDFA 0%, #FFFFFF 100%);
      border: 1px solid #CCFBF1;
      box-shadow: 0 8px 20px rgba(13, 148, 136, 0.08);
    }

    .tracker-card {
      background: linear-gradient(180deg, #FFFFFF 0%, #FAFAF9 100%);
      min-width: 0;
    }

    .tracker-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 16px 12px;
      border-bottom: 1px solid #F1F5F9;
    }

    .tracker-title {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .tracker-kicker,
    .tracker-mini {
      display: block;
      border-radius: 999px;
      background: var(--teal-100);
      width: fit-content;
    }

    .tracker-kicker {
      width: 92px;
      height: 10px;
    }

    .tracker-mini {
      width: 58px;
      height: 8px;
      background: #E7E5E4;
    }

    .tracker-badge {
      padding: 7px 11px;
      border-radius: 999px;
      background: #F0FDFA;
      color: #0F766E;
      font-size: 0.76rem;
      font-weight: 700;
      letter-spacing: 0.01em;
    }

    .tracker-rows {
      padding: 14px 14px 16px;
      display: grid;
      gap: 10px;
    }

    .tracker-row {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 12px;
      align-items: center;
      padding: 12px 12px;
      border-radius: 16px;
      background: #FCFCFB;
      border: 1px solid #F1F5F9;
    }

    .tracker-lines {
      display: grid;
      gap: 8px;
    }

    .tracker-line {
      height: 8px;
      border-radius: 999px;
      background: #D6D3D1;
    }

    .tracker-line.primary { width: 126px; background: #0D9488; opacity: 0.9; }
    .tracker-line.secondary { width: 92px; }
    .tracker-line.tertiary { width: 68px; background: #FDE68A; }

    .tracker-tags {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .tracker-tag {
      padding: 5px 9px;
      border-radius: 999px;
      font-size: 0.72rem;
      font-weight: 700;
      background: #E7E5E4;
      color: var(--stone-600);
    }

    .tracker-tag.good { background: #CCFBF1; color: #0F766E; }
    .tracker-tag.warn { background: #FEF3C7; color: #92400E; }
    .tracker-tag.alert { background: #FFE4E6; color: #BE123C; }

    .tracker-summary {
      margin-top: 2px;
      padding: 14px;
      border-radius: 18px;
      background: linear-gradient(180deg, #F0FDFA 0%, #ECFDF5 100%);
      border: 1px solid #CCFBF1;
    }

    .summary-title {
      width: 128px;
      height: 10px;
      border-radius: 999px;
      background: #0D9488;
      margin-bottom: 10px;
      opacity: 0.9;
    }

    .summary-bars {
      display: grid;
      gap: 8px;
    }

    .summary-bar {
      height: 9px;
      border-radius: 999px;
      background: #99F6E4;
    }

    .summary-bar.w1 { width: 92%; }
    .summary-bar.w2 { width: 72%; }
    .summary-bar.w3 { width: 58%; background: #FDE68A; }

    .problem-list {
      display: grid;
      gap: 14px;
      align-content: start;
      margin-top: 6px;
      max-width: 780px;
      margin-left: auto;
      margin-right: auto;
    }

    .problem-item,
    .problem-conclusion {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 14px;
      align-items: start;
      padding: 18px 20px;
      max-width: 780px;
      margin: 0 auto;
      width: 100%;
      background: rgba(255,255,255,0.96);
      border: 1px solid #ECE5DC;
      border-radius: 20px;
      box-shadow: 0 4px 14px rgba(28,25,23,0.04);
      text-align: left;
    }

    .problem-icon,
    .problem-check {
      flex-shrink: 0;
      width: 34px;
      height: 34px;
      border-radius: 999px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 2px;
      box-shadow: 0 1px 2px rgba(28,25,23,0.03);
    }

    .problem-icon {
      background: #FFF1F2;
      border: 1px solid #FFE4E6;
    }

    .problem-check {
      background: #F0FDF4;
      border: 1px solid #BBF7D0;
    }

    .problem-icon svg,
    .problem-check svg {
      width: 12px;
      height: 12px;
    }

    .problem-copy,
    .problem-solution-copy {
      min-width: 0;
    }

    .problem-title {
      display: block;
      font-size: 1.16rem;
      font-weight: 800;
      line-height: 1.32;
      color: var(--stone-900);
      margin-bottom: 5px;
      text-wrap: pretty;
      letter-spacing: -0.01em;
    }

    .problem-sub {
      font-size: 0.97rem;
      color: var(--stone-600);
      line-height: 1.55;
      text-wrap: pretty;
    }

    .problem-conclusion {
      margin-top: 12px;
      background: linear-gradient(180deg, #F8FFFB 0%, #F0FDF4 100%);
      border-color: #D1FAE5;
      box-shadow: 0 8px 18px rgba(22,163,74,0.05);
      align-items: center;
    }

    .problem-solution-title {
      display: block;
      font-size: 1.18rem;
      font-weight: 850;
      line-height: 1.35;
      color: var(--stone-900);
      text-wrap: pretty;
      letter-spacing: -0.01em;
    }

    .problem-solution-copy {
      display: flex;
      align-items: center;
      min-height: 100%;
    }

    @media (max-width: 979px) {
      .problem-visual {
        min-height: auto;
        padding: 22px;
      }

      .problem-visual-inner {
        grid-template-columns: 1fr;
        gap: 18px;
      }

      .transform-arrow {
        width: 56px;
        height: 56px;
        margin: 0 auto;
        transform: rotate(90deg);
      }
    }

    /* ============================
       SECTION: FEATURES
       ============================ */
    .features-section {
      background: white;
      padding: 64px 0 96px;
    }

    .features-section .section-header {
      text-align: center;
      margin-bottom: 28px;
    }

    .features-section .section-header p {
      font-size: 1.125rem;
      color: var(--stone-500);
      max-width: 576px;
      margin: 16px auto 0;
    }

    .features-grid {
      display: grid;
      gap: 24px;
    }

    @media (min-width: 768px) {
      .features-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .feature-card {
      background: var(--stone-50);
      border: 1px solid var(--stone-200);
      border-radius: var(--radius-2xl);
      padding: 22px 22px 20px;
      transition: all 0.3s ease;
    }

    .feature-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 32px rgba(0, 0, 0, 0.07);
    }

    .feature-icon {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
    }

    .feature-icon.teal { background: var(--teal-50); }
    .feature-icon.violet { background: var(--violet-50); }
    .feature-icon.amber { background: var(--amber-50); }

    .feature-card h3 {
      font-family: var(--font-sans);
      font-size: 1.125rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .feature-bullets {
      list-style: none;
      display: grid;
      gap: 9px;
      margin: 0;
      padding: 0;
    }

    .feature-bullets li {
      position: relative;
      padding-left: 16px;
      font-size: 0.95rem;
      color: var(--stone-600);
      line-height: 1.5;
      text-wrap: pretty;
    }

    .feature-bullets li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.62em;
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: currentColor;
      opacity: 0.24;
    }

    /* ============================
       SECTION: PRODUCT VISUAL
       ============================ */
    .product-visual-section {
      background: var(--secondary);
      padding: 64px 0 96px;
      overflow: hidden;
    }

    .features-visual-wrap {
      margin: 4px auto 24px;
      max-width: 860px;
      overflow: hidden;
    }

    .product-cards-container {
      position: relative;
      height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .product-cards-container {
        height: 340px;
      }
    }

    .product-card {
      position: absolute;
      background: white;
      border: 1px solid var(--stone-200);
      border-radius: var(--radius-2xl);
      padding: 16px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .product-card.fodmap {
      width: 260px;
      transform: rotate(-6deg) translateX(-120px) translateY(20px);
      z-index: 2;
    }

    @media (min-width: 768px) {
      .product-card.fodmap {
        width: 320px;
        transform: rotate(-6deg) translateX(-150px) translateY(18px);
      }
    }

    .product-card.report {
      width: 260px;
      transform: rotate(5deg) translateX(118px) translateY(-12px);
      z-index: 2;
    }

    @media (min-width: 768px) {
      .product-card.report {
        width: 300px;
        transform: rotate(5deg) translateX(148px) translateY(-10px);
      }
    }

    .product-card.main {
      width: 280px;
      z-index: 3;
      box-shadow: 0 25px 50px rgba(13, 148, 136, 0.15);
    }

    @media (min-width: 768px) {
      .product-card.main {
        width: 340px;
        padding: 20px;
      }
    }

    .product-card-header {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 12px;
    }

    .product-card-icon {
      width: 28px;
      height: 28px;
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.875rem;
    }

    .product-card-icon.green { background: var(--green-100); }
    .product-card-icon.amber { background: var(--amber-100); }
    .product-card-icon.teal { background: var(--teal-500); color: white; }

    .product-card-title {
      font-family: var(--font-sans);
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--stone-700);
    }

    .product-card-subtitle {
      font-size: 0.625rem;
      color: var(--stone-400);
    }

    /* FODMAP card specific */
    .fodmap-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 6px;
    }

    .fodmap-item {
      display: flex;
      align-items: flex-start;
      gap: 4px;
      font-size: 0.6875rem;
      color: var(--stone-600);
      background: var(--stone-50);
      border-radius: var(--radius);
      padding: 6px;
    }

    /* Report card specific */
    .report-bars {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-top: 8px;
    }

    .report-bar-item {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .report-bar-label {
      display: flex;
      justify-content: space-between;
      font-size: 0.625rem;
      color: var(--stone-600);
    }

    .report-bar-label span:last-child {
      font-weight: 500;
    }

    .report-bar-track {
      height: 6px;
      background: var(--stone-100);
      border-radius: var(--radius-full);
      overflow: hidden;
    }

    .report-bar-fill {
      height: 100%;
      border-radius: var(--radius-full);
    }

    .report-bar-fill.red { background: var(--red-400); }
    .report-bar-fill.orange { background: var(--orange-400); }
    .report-bar-fill.amber { background: var(--amber-400); }
    .report-bar-fill.yellow { background: #FACC15; }

    /* Main card specific */
    .main-card-entries {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .main-card-entry {
      display: flex;
      align-items: center;
      gap: 8px;
      border: 1px solid;
      border-radius: var(--radius-xl);
      padding: 8px 12px;
    }

    .main-card-entry.meal {
      background: var(--teal-50);
      border-color: var(--teal-100);
    }

    .main-card-entry.symptom {
      background: var(--orange-50);
      border-color: var(--orange-100);
    }

    .main-card-entry span:first-child {
      font-size: 0.875rem;
    }

    .main-card-entry .entry-text {
      flex: 1;
      font-size: 0.75rem;
      color: var(--stone-700);
    }

    .main-card-entry .severity {
      font-size: 0.625rem;
      font-weight: 700;
      color: var(--orange-600);
      background: var(--orange-100);
      padding: 2px 6px;
      border-radius: var(--radius-full);
    }

    .product-caption {
      text-align: center;
      font-size: 0.875rem;
      color: var(--stone-500);
      margin-top: 16px;
    }

    /* ============================
       SECTION: NOTION OR PAPER
       ============================ */
    .notion-paper-section {
      background: white;
      padding: 64px 0 96px;
    }

    .notion-paper-section .section-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .notion-paper-section .section-header p {
      font-size: 1.125rem;
      color: var(--stone-600);
      max-width: 640px;
      margin: 12px auto 0;
    }

    .paths-grid {
      display: grid;
      gap: 32px;
    }

    @media (min-width: 768px) {
      .paths-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    .path-card {
      border-radius: var(--radius-3xl);
      padding: 32px;
      border: 2px solid;
    }

    .path-card.digital {
      background: var(--teal-50);
      border-color: var(--teal-200);
    }

    .path-card.paper {
      background: #FFF8ED;
      border-color: #FCD9B6;
    }

    .path-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
    }

    .path-icon {
      width: 48px;
      height: 48px;
      border-radius: var(--radius-xl);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: white;
    }

    .path-icon.teal { background: var(--teal-500); }
    .path-icon.amber { background: #D97706; }

    .path-card h3 {
      font-size: 1.5rem;
    }

    .path-card.digital h3 { color: var(--teal-900); }
    .path-card.paper h3 { color: #92400E; }

    .path-subtitle {
      font-weight: 600;
      margin-bottom: 16px;
    }

    .path-card.digital .path-subtitle { color: var(--teal-800); }
    .path-card.paper .path-subtitle { color: #B45309; }

    .path-tagline {
      font-size: 0.875rem;
      font-style: italic;
      font-weight: 500;
      margin-bottom: 20px;
    }

    .path-card.digital .path-tagline { color: var(--teal-700); }
    .path-card.paper .path-tagline { color: #B45309; }

    .path-features {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 24px;
      padding: 0;
      list-style: none;
    }

    .path-feature {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 0.875rem;
    }

    .path-card.digital .path-feature { color: var(--teal-800); }
    .path-card.paper .path-feature { color: #92400E; }

    .path-feature .check {
      flex-shrink: 0;
      margin-top: 2px;
      font-weight: 700;
    }

    .path-card.digital .check { color: var(--teal-500); }
    .path-card.paper .check { color: #D97706; }

    .path-best-for {
      font-size: 0.75rem;
      padding: 8px 12px;
      border-radius: var(--radius);
    }

    .path-card.digital .path-best-for {
      background: var(--teal-100);
      color: var(--teal-700);
    }

    .path-card.paper .path-best-for {
      background: #FDEAD7;
      color: #B45309;
    }

    .paths-note {
      margin-top: 48px;
      padding: 24px;
      background: var(--stone-50);
      border: 1px solid var(--stone-200);
      border-radius: var(--radius-2xl);
      text-align: center;
    }

    .paths-note p {
      font-size: 0.875rem;
      color: var(--stone-700);
      line-height: 1.6;
    }

    .paths-note strong {
      font-weight: 600;
    }

    /* ============================
       SECTION: TRUST
       ============================ */
    .trust-section {
      background: var(--stone-50);
      border-top: 1px solid var(--stone-200);
      border-bottom: 1px solid var(--stone-200);
      padding: 40px 0;
    }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    @media (min-width: 768px) {
      .trust-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .trust-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      background: white;
      border: 1px solid var(--stone-200);
      border-radius: var(--radius-2xl);
      padding: 16px;
      gap: 8px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }

    .trust-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--teal-50);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .trust-title {
      font-weight: 600;
      font-size: 0.875rem;
      color: var(--stone-800);
      line-height: 1.3;
    }

    .trust-subtitle {
      font-size: 0.6875rem;
      color: var(--stone-500);
    }

    .payment-methods,
    .final-payments {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .payment-logos {
      display: block;
      width: min(100%, 320px);
      max-width: 100%;
      height: auto;
      border-radius: 10px;
    }

    /* ============================
       SECTION: PRICING
       ============================ */
    .pricing-section {
      background: var(--secondary);
      padding: 64px 0 96px;
    }

    .pricing-section h2 {
      margin-bottom: 40px;
    }

    /* Promo banner */
    .promo-banner {
      position: relative;
      display: grid;
      gap: 22px;
      margin: 28px 0 34px;
      padding: 24px;
      background: linear-gradient(180deg, #F8FCFB 0%, #F2F7F5 100%);
      border: 1px solid #DDE9E4;
      border-radius: 24px;
      box-shadow: 0 12px 28px rgba(28, 25, 23, 0.05);
    }

    @media (min-width: 800px) {
      .promo-banner {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
      }
    }

    .save-badge {
      position: static;
      justify-self: start;
      width: fit-content;
      background: #E6FFFB;
      color: #0F766E;
      font-weight: 800;
      font-size: 0.8rem;
      padding: 6px 10px;
      border-radius: 999px;
      border: 1px solid #B6EFE6;
      box-shadow: none;
      transform: none;
      letter-spacing: 0.01em;
    }

    @media (min-width: 800px) {
      .save-badge {
        justify-self: end;
        grid-column: 2;
        grid-row: 1;
      }
    }

    .price-hierarchy {
      display: grid;
      gap: 14px;
      min-width: 0;
    }

    @media (min-width: 800px) {
      .price-hierarchy {
        grid-template-columns: auto auto auto;
        align-items: end;
        gap: 18px;
      }
    }

    .price-row {
      display: grid;
      gap: 4px;
      min-width: 0;
    }

    .price-row .label {
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--stone-500);
      letter-spacing: 0.01em;
      text-transform: uppercase;
    }

    .price-row s {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--stone-400);
      line-height: 1.1;
    }

    .price-main {
      padding: 0;
      border: none;
      display: grid;
      gap: 4px;
    }

    .price-main .sublabel {
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--teal-700);
      margin-bottom: 0;
      letter-spacing: 0.01em;
      text-transform: uppercase;
    }

    .price-main .price-big {
      font-family: var(--font-serif);
      font-size: clamp(3rem, 7vw, 4rem);
      font-weight: 900;
      color: var(--stone-900);
      line-height: 0.95;
    }

    .coupon-row {
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: flex-start;
      margin: 0;
    }

    @media (min-width: 640px) {
      .coupon-row {
        flex-direction: row;
        align-items: center;
      }
    }

    .coupon-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: white;
      border: 1px dashed #B8D8D0;
      border-radius: 16px;
      padding: 12px 16px;
      font-family: var(--font-mono);
      font-weight: 900;
      font-size: 1.05rem;
      letter-spacing: 0.08em;
      color: var(--stone-900);
      cursor: pointer;
      transition: background 0.2s ease, border-color 0.2s ease;
      box-shadow: 0 4px 10px rgba(28, 25, 23, 0.05);
    }

    .coupon-btn:hover {
      background: #FCFFFE;
      border-color: #8FCFC2;
    }

    .coupon-btn .copy-hint {
      font-family: var(--font-sans);
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--teal-700);
    }

    .coupon-note {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--stone-600);
    }

    .promo-footnote {
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--stone-500);
    }

    /* Bundle list */
    .bundle-heading {
      font-family: var(--font-sans);
      font-size: 1.125rem;
      font-weight: 600;
      color: var(--stone-800);
      margin-bottom: 16px;
    }

    .bundle-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 32px;
    }

    .bundle-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      background: white;
      border: 1px solid var(--stone-200);
      border-radius: var(--radius-2xl);
      padding: 16px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }

    .bundle-thumb {
      flex-shrink: 0;
      width: 80px;
      height: 80px;
      border-radius: var(--radius);
      background: var(--stone-100);
      border: 1px solid var(--stone-200);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.875rem;
    }

    .bundle-content {
      flex: 1;
      min-width: 0;
    }

    .bundle-item-header {
      margin-bottom: 8px;
    }

    .bundle-item-name {
      font-weight: 600;
      font-size: 0.9375rem;
      color: var(--stone-800);
    }

    .bundle-item-type {
      margin-left: 8px;
      font-size: 0.75rem;
      font-weight: 500;
      color: var(--stone-400);
    }

    .bundle-item-desc {
      font-size: 0.875rem;
      color: var(--stone-600);
      line-height: 1.6;
      margin-bottom: 8px;
    }

    .bundle-item-value {
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--teal-600);
    }

    .bundle-item-value s {
      color: var(--stone-300);
    }

    /* Pricing CTA */
    .pricing-cta {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      padding-top: 24px;
      text-align: center;
    }

    .pricing-summary {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--stone-600);
    }

    .pricing-summary s {
      color: var(--stone-400);
    }

    .pricing-summary .now {
      font-weight: 700;
      color: var(--teal-700);
    }

    /* ============================
       SECTION: FAQ
       ============================ */
    .faq-section {
      background: white;
      padding: 64px 0 96px;
    }

    .faq-section h2 {
      text-align: center;
      margin-bottom: 40px;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .faq-item {
      border: 1px solid var(--stone-200);
      border-radius: var(--radius-2xl);
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .faq-item.open {
      border-color: var(--teal-200);
      background: var(--teal-50);
    }

    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 16px 20px;
      text-align: left;
      font-weight: 600;
      font-size: 0.9375rem;
      color: var(--stone-800);
      cursor: pointer;
    }

    .faq-item.open .faq-question {
      color: var(--teal-800);
    }

    .faq-toggle {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--stone-100);
      color: var(--stone-500);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.875rem;
      font-weight: 700;
      transition: all 0.2s ease;
    }

    .faq-item.open .faq-toggle {
      background: var(--teal-500);
      color: white;
      transform: rotate(180deg);
    }

    .faq-answer {
      display: none;
      padding: 0 20px 16px;
    }

    .faq-item.open .faq-answer {
      display: block;
    }

    .faq-answer p {
      font-size: 0.9375rem;
      color: var(--stone-700);
      line-height: 1.6;
    }

    /* ============================
       SECTION: FINAL CTA
       ============================ */
    .final-cta-section {
      background: linear-gradient(160deg, #FAF9F6 0%, var(--teal-50) 100%);
      padding: 80px 0 112px;
      text-align: center;
    }

    .final-cta-section h2 {
      margin-bottom: 20px;
    }

    .final-cta-section .subtitle {
      font-size: 1.125rem;
      color: var(--stone-600);
      line-height: 1.6;
      margin-bottom: 28px;
    }

    .final-coupon {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: var(--amber-50);
      border: 2px dashed var(--amber-300);
      border-radius: var(--radius-2xl);
      padding: 12px 20px;
      margin-bottom: 28px;
    }

    .final-coupon .label {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--amber-700);
    }

    .final-coupon .code {
      font-family: var(--font-mono);
      font-weight: 900;
      font-size: 1.25rem;
      letter-spacing: 0.1em;
      color: var(--amber-900);
      cursor: pointer;
      transition: color 0.2s ease;
    }

    .final-coupon .code:hover {
      color: var(--amber-700);
    }

    .final-coupon .hint {
      font-size: 0.75rem;
      font-weight: 500;
      color: var(--amber-600);
    }

    .final-includes-label {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--stone-600);
      margin-bottom: 8px;
    }

    .final-includes {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 6px;
      font-size: 0.8125rem;
      color: var(--stone-500);
      margin-bottom: 32px;
    }

    .final-includes .item {
      font-weight: 500;
      color: var(--stone-600);
    }

    .final-includes .sep {
      color: var(--stone-300);
    }

    .final-price-line {
      font-size: 0.875rem;
      color: var(--stone-600);
      margin-bottom: 24px;
    }

    .final-price-line s {
      color: var(--stone-400);
    }

    .final-price-line .highlight {
      font-weight: 700;
      color: var(--teal-700);
    }

    .final-cta-group {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
    }


    /* ============================
       FOOTER
       ============================ */
    .site-footer {
      background: white;
      border-top: 1px solid var(--stone-200);
      padding: 24px 0;
      text-align: center;
    }

    .site-footer p {
      color: var(--stone-500);
    }

    .site-footer .copyright {
      font-size: 0.875rem;
      margin-bottom: 6px;
    }

    .site-footer .disclaimer {
      font-size: 0.75rem;
      color: var(--stone-400);
    }

    /* ============================
       RESPONSIVE UTILITIES
       ============================ */
    @media (max-width: 767px) {
      .site-header .container {
        padding-top: 10px;
        padding-bottom: 10px;
        gap: 12px;
      }

      .site-logo {
        font-size: 0.98rem;
        line-height: 1.2;
        max-width: 150px;
      }

      .header-cta,
      a.gumroad-button.header-cta {
        font-size: 0.68rem !important;
        font-weight: 700 !important;
        padding: 5px 9px !important;
        border-radius: 12px !important;
        letter-spacing: -0.01em;
        box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.12), 0 1px 0 rgba(255, 255, 255, 0.08) inset !important;
      }

      .hero {
        padding: 40px 0 64px;
      }

      .hero .container {
        gap: 28px;
      }

      .hero-badge {
        margin-bottom: 16px;
        font-size: 0.8rem;
        padding: 6px 12px;
      }

      .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 10px;
      }

      .hero-tagline {
        margin-bottom: 12px;
      }

      .hero-promo {
        padding: 10px 14px;
        font-size: 0.84rem;
      }

      .features-section {
        padding: 56px 0 80px;
      }

      .features-section .section-header {
        margin-bottom: 20px;
      }

      .features-visual-wrap {
        margin: 0 auto 18px;
      }

      .notion-paper-section {
        padding: 56px 0 80px;
      }

      .notion-paper-section .section-header {
        margin-bottom: 28px;
      }

      .path-card {
        padding: 24px;
      }

      .pricing-section h2,
      .faq-section h2 {
        margin-bottom: 28px;
      }

      .md-hide {
        display: none;
      }
    }

    @media (min-width: 768px) {
      .md-show {
        display: block;
      }
    }
