  :root {
    --blue:        #14318C;
    --blue-deep:   #0A1F4A;
    --blue-mid:    #1B3FA8;
    --blue-light:  #6EA8FF;
    --cream:       #F4EEDF;
    --cream-warm:  #EBE3CE;
    --orange:      #E89058;
    --orange-deep: #C4703A;
    --ink:         #0B1530;
    --white:       #FFFFFF;
    --shadow:      0 30px 60px -20px rgba(10, 31, 74, 0.35);
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: "Outfit", system-ui, sans-serif;
    background: var(--cream);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* ---------- shared utilities ---------- */
  .wrap { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
  .display { font-family: "Anton", sans-serif; font-weight: 400; letter-spacing: -0.005em; line-height: 0.88; text-transform: uppercase; }
  .eyebrow {
    font-family: "Outfit", sans-serif; font-size: 12px; font-weight: 600;
    letter-spacing: 0.22em; text-transform: uppercase;
  }
  .serif-italic { font-family: "Fraunces", serif; font-style: italic; font-weight: 400; }

  /* subtle paper grain on cream sections */
  .grain::before {
    content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.07 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    mix-blend-mode: multiply; opacity: 0.55;
  }

  /* ---------- nav ---------- */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    padding: 18px 32px;
    background: rgba(244, 238, 223, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(11, 21, 48, 0.08);
  }
  nav .inner {
    max-width: 1320px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
  }
  .logo { font-family: "Anton", sans-serif; font-size: 26px; letter-spacing: 0.02em; color: var(--blue); text-decoration: none; }
  .logo sup { font-size: 10px; vertical-align: super; margin-left: 2px; color: var(--blue-light); }
  .nav-links { display: flex; gap: 28px; align-items: center; }
  .nav-links a { font-size: 13px; font-weight: 500; color: var(--ink); text-decoration: none; opacity: 0.7; transition: opacity .2s; }
  .nav-links a:hover { opacity: 1; }
  .nav-links a.nav-amazon-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--ink); color: var(--white); opacity: 1;
    padding: 10px 14px 10px 18px; border-radius: 999px;
    font-family: "Outfit", sans-serif; font-size: 14px; font-weight: 600;
    text-decoration: none; cursor: pointer;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
    box-shadow: 0 6px 16px -6px rgba(11, 21, 48, 0.45);
  }
  .nav-amazon-btn:hover { background: var(--blue-deep); transform: translateY(-1px); box-shadow: 0 10px 22px -8px rgba(11, 21, 48, 0.55); }
  .nav-amazon-btn .amazon-logo {
    background: var(--cream); color: var(--ink);
    font-family: "Outfit", sans-serif; font-weight: 700; font-size: 12px;
    padding: 4px 9px 5px; border-radius: 5px; letter-spacing: -0.02em;
    position: relative; display: inline-flex; align-items: center;
  }
  .nav-amazon-btn .amazon-logo::after {
    content: ""; position: absolute; bottom: 3px; left: 7px; right: 7px; height: 4px;
    border-bottom: 1.5px solid var(--orange-deep);
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
  }
  .nav-amazon-btn .arrow {
    display: inline-flex; align-items: center; justify-content: center;
    transition: transform .2s ease;
  }
  .nav-amazon-btn:hover .arrow { transform: translateX(3px); }
  @media (max-width: 720px) {
    .nav-links a:not(.nav-amazon-btn) { display: none; }
    .nav-amazon-btn { padding: 8px 12px 8px 14px; font-size: 12px; gap: 7px; }
    .nav-amazon-btn .amazon-logo { font-size: 11px; padding: 3px 7px 4px; }
    .nav-amazon-btn .amazon-logo::after { bottom: 2px; left: 6px; right: 6px; height: 3px; }
    .nav-amazon-btn .arrow svg { width: 14px; height: 14px; }
  }

  /* ---------- hero ---------- */
  .hero {
    position: relative; padding: 140px 32px 80px; overflow: hidden;
    background: var(--cream);
  }
  .hero-grid {
    max-width: 1320px; margin: 0 auto;
    display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center;
    position: relative; z-index: 2;
  }
  .hero h1 {
    font-size: clamp(72px, 11vw, 168px);
    color: var(--blue-deep);
  }
  .hero h1 .accent { color: var(--orange-deep); display: inline-block; }
  .hero h1 .stroke {
    -webkit-text-stroke: 2px var(--blue-deep);
    color: transparent;
  }
  .hero-tagline {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 32px;
  }
  .hero-tagline .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); animation: pulse 2s ease-in-out infinite; }
  @keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
  .hero-tagline span { font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blue); }
  .hero-lede {
    font-size: clamp(17px, 1.4vw, 20px);
    color: var(--ink); max-width: 520px; margin-top: 32px; line-height: 1.55;
  }
  .hero-lede em { font-family: "Fraunces", serif; font-style: italic; font-weight: 400; color: var(--blue); }

  .hero-meta {
    display: flex; align-items: center; gap: 28px; margin-top: 40px;
    flex-wrap: wrap;
  }
  .price-tag {
    display: flex; align-items: baseline; gap: 8px;
  }
  .price-tag .amount {
    font-family: "Anton", sans-serif; font-size: 56px; color: var(--blue-deep); line-height: 1;
  }
  .price-tag .unit {
    font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink); opacity: 0.6;
  }
  .price-tag .pack {
    font-size: 13px; color: var(--ink); opacity: 0.7; padding-left: 16px; border-left: 1px solid rgba(11, 21, 48, 0.15);
  }

  .cta-row { display: flex; gap: 14px; align-items: center; margin-top: 28px; flex-wrap: wrap; }
  .amazon-btn {
    display: inline-flex; align-items: center; gap: 14px;
    background: var(--ink); color: var(--white);
    padding: 18px 28px; border-radius: 999px; border: none;
    font-family: "Outfit", sans-serif; font-size: 15px; font-weight: 600;
    text-decoration: none; cursor: pointer;
    transition: transform .2s ease, background .2s ease, box-shadow .3s ease;
    box-shadow: 0 12px 28px -10px rgba(11, 21, 48, 0.5);
  }
  .amazon-btn:hover { background: var(--blue-deep); transform: translateY(-2px); box-shadow: 0 18px 38px -10px rgba(11, 21, 48, 0.55); }
  .amazon-btn .amazon-logo {
    background: var(--cream); color: var(--ink);
    font-family: "Outfit", sans-serif; font-weight: 700; font-size: 13px;
    padding: 5px 10px 6px; border-radius: 6px; letter-spacing: -0.02em;
    position: relative; display: inline-flex; align-items: center;
  }
  .amazon-btn .amazon-logo::after {
    content: ""; position: absolute; bottom: 3px; left: 8px; right: 8px; height: 5px;
    border-bottom: 1.5px solid var(--orange-deep);
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
  }
  .amazon-btn .arrow {
    width: 18px; height: 18px;
    display: inline-flex; align-items: center; justify-content: center;
    transition: transform .2s ease;
  }
  .amazon-btn:hover .arrow { transform: translateX(4px); }
  .ghost-btn {
    font-size: 13px; color: var(--ink); text-decoration: none; padding: 14px 20px;
    border-bottom: 1px solid var(--ink); opacity: 0.7; transition: opacity .2s;
  }
  .ghost-btn:hover { opacity: 1; }

  /* product image side */
  .hero-product {
    position: relative; display: flex; justify-content: center; align-items: center;
  }
  .hero-product::before {
    display: none;
  }
  @keyframes float-bg { 0%,100% { transform: scale(1) translateY(0); } 50% { transform: scale(1.05) translateY(-10px); } }
  .hero-product img {
    position: relative; z-index: 2;
    max-width: 100%; height: auto; max-height: 720px;
    filter: drop-shadow(0 40px 60px rgba(10, 31, 74, 0.5));
    animation: bob 6s ease-in-out infinite;
  }
  @keyframes bob { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-14px) rotate(-2deg); } }

  /* hero decorative numbers ghosting */
  .hero-bg-num {
    position: absolute; font-family: "Anton", sans-serif; font-size: 28vw;
    color: var(--cream-warm); z-index: 0; pointer-events: none;
    bottom: -8vw; right: -3vw; line-height: 1; opacity: 0.45;
  }

  @media (max-width: 920px) {
    .hero-grid { grid-template-columns: 1fr; gap: 20px; }
    .hero-product { order: -1; max-width: 380px; margin: 0 auto; }
    .hero-bg-num { display: none; }
  }

  /* ---------- ticker ---------- */
  .ticker {
    background: var(--blue);
    color: var(--cream);
    padding: 22px 0; overflow: hidden;
    border-top: 1px solid var(--blue-mid); border-bottom: 1px solid var(--blue-deep);
  }
  .ticker-track {
    display: flex; gap: 60px; white-space: nowrap;
    animation: scroll 35s linear infinite;
  }
  .ticker-item {
    font-family: "Anton", sans-serif; font-size: 38px; letter-spacing: 0.02em;
    display: inline-flex; align-items: center; gap: 60px;
  }
  .ticker-item .dot { width: 10px; height: 10px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }
  @keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ---------- stats ---------- */
  .stats {
    background: var(--blue-deep);
    color: var(--cream);
    padding: 120px 32px;
    position: relative; overflow: hidden;
  }
  .stats-inner {
    max-width: 1320px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    gap: 0; position: relative; z-index: 2;
  }
  .stat {
    padding: 20px 30px;
    border-right: 1px solid rgba(244, 238, 223, 0.15);
    position: relative;
  }
  .stat:last-child { border-right: none; }
  .stat .num {
    font-family: "Anton", sans-serif;
    font-size: clamp(90px, 14vw, 220px);
    line-height: 0.85; color: var(--cream);
    display: flex; align-items: flex-end; gap: 8px;
  }
  .stat .num span.unit {
    font-size: 0.3em; color: var(--blue-light); padding-bottom: 0.4em;
  }
  .stat .label {
    margin-top: 24px; font-size: 13px; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue-light);
  }
  .stat .num.zero { color: var(--orange); }
  .stats-header {
    max-width: 1320px; margin: 0 auto 80px;
    display: flex; justify-content: space-between; align-items: flex-end; gap: 40px;
    position: relative; z-index: 2;
  }
  .stats-header h2 {
    font-size: clamp(40px, 5vw, 72px);
    color: var(--cream);
    max-width: 720px;
  }
  .stats-header h2 em { color: var(--orange); font-family: "Fraunces", serif; font-style: italic; font-weight: 400; }
  .stats-header .meta { font-size: 13px; opacity: 0.6; max-width: 220px; text-align: right; line-height: 1.5; }

  @media (max-width: 820px) {
    .stats { padding: 80px 28px 90px; }
    .stats-inner { grid-template-columns: 1fr; gap: 0; }
    .stat {
      border-right: none;
      padding: 38px 0 42px;
      position: relative;
      display: flex;
      align-items: flex-end;
      gap: 28px;
    }
    .stat + .stat::before {
      content: ""; position: absolute; top: 0; left: 0; right: 0;
      height: 1px; background: rgba(244, 238, 223, 0.18);
    }
    .stat:first-child { padding-top: 8px; }
    .stat:last-child { padding-bottom: 0; }
    .stat .num {
      font-size: clamp(110px, 32vw, 170px);
      align-items: flex-start;
      flex-shrink: 0;
    }
    .stat .num span.unit { font-size: 0.32em; padding-bottom: 0; padding-top: 0.25em; }
    .stat .label {
      margin-top: 0;
      padding-bottom: 18px;
      font-family: "Anton", sans-serif;
      font-size: clamp(24px, 7vw, 38px);
      font-weight: 400;
      letter-spacing: 0.04em;
      line-height: 0.95;
      text-transform: uppercase;
      color: var(--blue-light);
    }
    .stats-header { margin-bottom: 50px; flex-direction: column; align-items: flex-start; gap: 18px; }
    .stats-header .meta { text-align: left; max-width: none; }
  }

  /* ---------- story ---------- */
  .story { padding: 140px 32px; position: relative; }
  .story-inner {
    max-width: 1320px; margin: 0 auto;
    display: grid; grid-template-columns: 0.4fr 0.6fr; gap: 80px; align-items: start;
    position: relative; z-index: 2;
  }
  .story-eyebrow { color: var(--blue); }
  .story h2 {
    font-size: clamp(48px, 6vw, 96px);
    color: var(--blue-deep); margin-top: 20px;
  }
  .story h2 em {
    font-family: "Fraunces", serif; font-style: italic; font-weight: 300;
    color: var(--orange-deep); text-transform: none; letter-spacing: -0.02em;
  }
  .story-body p {
    font-size: 19px; line-height: 1.65; color: var(--ink); margin-bottom: 24px;
  }
  .story-body p:first-child::first-letter {
    font-family: "Fraunces", serif; font-weight: 500;
    float: left; font-size: 78px; line-height: 0.85; padding: 8px 12px 0 0;
    color: var(--blue);
  }
  .story-pull {
    margin: 60px 0; padding: 40px;
    border-top: 1px solid rgba(11, 21, 48, 0.15);
    border-bottom: 1px solid rgba(11, 21, 48, 0.15);
    font-family: "Fraunces", serif; font-style: italic; font-weight: 400;
    font-size: 28px; line-height: 1.4; color: var(--blue-deep);
  }
  .story-pull::before { content: "“"; color: var(--orange); font-size: 80px; line-height: 0; vertical-align: -30px; margin-right: 6px; }

  @media (max-width: 880px) {
    .story-inner { grid-template-columns: 1fr; gap: 30px; }
  }

  /* ---------- benefits ---------- */
  .benefits {
    background: var(--blue);
    color: var(--cream);
    padding: 140px 32px; position: relative; overflow: hidden;
  }
  .benefits-header {
    max-width: 1320px; margin: 0 auto 80px;
    text-align: left; position: relative; z-index: 2;
  }
  .benefits-header .eyebrow { color: var(--blue-light); }
  .benefits-header h2 {
    font-size: clamp(48px, 6vw, 96px);
    margin-top: 20px; color: var(--cream); max-width: 900px;
  }
  .benefits-grid {
    max-width: 1320px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    position: relative; z-index: 2;
  }
  .benefit {
    background: rgba(244, 238, 223, 0.06);
    border: 1px solid rgba(244, 238, 223, 0.12);
    padding: 36px 28px 32px;
    border-radius: 4px;
    transition: background .3s, transform .3s, border-color .3s;
    position: relative;
  }
  .benefit:hover {
    background: rgba(244, 238, 223, 0.1);
    border-color: var(--orange);
    transform: translateY(-6px);
  }
  .benefit-num {
    font-family: "Anton", sans-serif; font-size: 14px;
    color: var(--orange); margin-bottom: 32px;
  }
  .benefit-icon {
    width: 48px; height: 48px; margin-bottom: 24px;
    display: flex; align-items: center; justify-content: center;
    color: var(--orange);
  }
  .benefit h3 {
    font-family: "Anton", sans-serif; font-size: 28px;
    color: var(--cream); margin-bottom: 12px; line-height: 1;
    text-transform: uppercase; letter-spacing: 0.01em;
  }
  .benefit p { font-size: 14px; line-height: 1.55; opacity: 0.8; }

  @media (max-width: 980px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 540px) { .benefits-grid { grid-template-columns: 1fr; } }

  /* ---------- buy ---------- */
  .buy {
    padding: 160px 32px;
    background: var(--cream);
    position: relative; overflow: hidden;
  }
  .buy-inner {
    max-width: 1320px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    position: relative; z-index: 2;
  }
  .buy-card {
    background: var(--white);
    border: 1px solid rgba(11, 21, 48, 0.08);
    padding: 50px;
    box-shadow: var(--shadow);
  }
  .buy-card .eyebrow { color: var(--blue); margin-bottom: 16px; }
  .buy-card h2 {
    font-size: clamp(40px, 4.5vw, 64px);
    color: var(--blue-deep); margin-bottom: 30px;
  }
  .buy-card .row {
    display: flex; justify-content: space-between; padding: 18px 0;
    border-bottom: 1px solid rgba(11, 21, 48, 0.1);
    font-size: 14px;
  }
  .buy-card .row span:first-child { opacity: 0.6; }
  .buy-card .row span:last-child { font-weight: 600; }
  .buy-price {
    display: flex; align-items: baseline; gap: 10px;
    margin: 36px 0 30px;
  }
  .buy-price .amount { font-family: "Anton", sans-serif; font-size: 84px; color: var(--blue-deep); line-height: 1; }
  .buy-price .unit { font-size: 14px; opacity: 0.6; }
  .buy-card .amazon-btn { width: 100%; justify-content: center; }
  .buy-card .secure-note {
    margin-top: 16px; font-size: 12px; text-align: center; opacity: 0.55;
    display: flex; align-items: center; justify-content: center; gap: 6px;
  }
  .buy-visual {
    text-align: center;
    position: relative;
  }
  .buy-visual img {
    max-width: 90%; max-height: 600px;
    filter: drop-shadow(0 30px 50px rgba(10, 31, 74, 0.3));
    transform: rotate(3deg);
  }

  @media (max-width: 880px) {
    .buy-inner { grid-template-columns: 1fr; }
    .buy-visual { order: -1; max-width: 320px; margin: 0 auto; }
  }

  /* ---------- footer ---------- */
  footer {
    background: var(--blue-deep);
    color: var(--cream);
    padding: 100px 32px 40px;
  }
  .footer-inner { max-width: 1320px; margin: 0 auto; }
  .footer-top {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(244, 238, 223, 0.15);
  }
  .footer-top .logo {
    font-size: 56px; color: var(--cream); display: block; margin-bottom: 20px;
  }
  .footer-top .tagline { font-size: 14px; opacity: 0.7; max-width: 320px; line-height: 1.6; }
  .footer-col h4 { font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 18px; color: var(--blue-light); }
  .footer-col p, .footer-col a { font-size: 14px; opacity: 0.8; line-height: 1.65; color: var(--cream); text-decoration: none; display: block; }
  .footer-col a:hover { opacity: 1; color: var(--orange); }
  .footer-deny-btn {
    font: inherit;
    font-size: 14px;
    line-height: 1.65;
    color: var(--cream);
    opacity: 0.8;
    background: none;
    border: none;
    padding: 0;
    margin-top: 14px;
    cursor: pointer;
    text-align: left;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity .2s ease, color .2s ease;
  }
  .footer-deny-btn:hover:not(:disabled) { opacity: 1; color: var(--orange); }
  .footer-deny-btn.denied,
  .footer-deny-btn:disabled {
    opacity: 0.5;
    color: var(--blue-light);
    cursor: default;
    text-decoration: none;
  }
  .footer-bottom {
    padding-top: 30px;
    display: flex; justify-content: space-between; align-items: center; gap: 20px;
    font-size: 12px; opacity: 0.6; flex-wrap: wrap;
  }
  @media (max-width: 760px) {
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
  }

  /* ---------- modal ---------- */
  .modal-backdrop {
    position: fixed; inset: 0; background: rgba(10, 31, 74, 0.85);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    display: none; align-items: center; justify-content: center; z-index: 100;
    padding: 24px;
    animation: fadeIn 0.25s ease;
  }
  .modal-backdrop.open { display: flex; }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  .modal {
    background: var(--cream);
    max-width: 560px; width: 100%;
    padding: 56px 48px 48px;
    position: relative;
    border: 1px solid rgba(11, 21, 48, 0.1);
    box-shadow: 0 50px 80px rgba(10, 31, 74, 0.4);
    animation: pop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  @keyframes pop { from { transform: scale(0.92) translateY(20px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; } }
  .modal-close {
    position: absolute; top: 18px; right: 18px;
    background: none; border: none; cursor: pointer;
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--ink); opacity: 0.5; transition: opacity .2s, background .2s;
  }
  .modal-close:hover { opacity: 1; background: rgba(11, 21, 48, 0.08); }
  .modal .badge {
    display: inline-block; background: var(--orange); color: var(--cream);
    font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
    padding: 7px 14px; text-transform: uppercase; margin-bottom: 24px;
  }
  .modal h3 {
    font-family: "Anton", sans-serif; font-size: 48px;
    color: var(--blue-deep); line-height: 0.95; margin-bottom: 18px;
    text-transform: uppercase;
  }
  .modal p { font-size: 16px; line-height: 1.55; color: var(--ink); margin-bottom: 28px; }
  .modal p .offer { background: linear-gradient(180deg, transparent 60%, rgba(232, 144, 88, 0.4) 60%); padding: 0 2px; font-weight: 600; }
  .modal .form-row { display: flex; gap: 10px; flex-wrap: wrap; }
  .modal input[type="email"] {
    flex: 1; min-width: 200px;
    padding: 18px 20px;
    border: 1.5px solid rgba(11, 21, 48, 0.2);
    background: var(--white);
    font-family: "Outfit", sans-serif; font-size: 15px;
    color: var(--ink); outline: none;
    transition: border-color .2s;
  }
  .modal input[type="email"]:focus { border-color: var(--blue); }
  .modal button[type="submit"] {
    padding: 18px 28px; background: var(--blue-deep); color: var(--cream);
    border: none; cursor: pointer;
    font-family: "Outfit", sans-serif; font-size: 14px; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    transition: background .2s, transform .2s;
  }
  .modal button[type="submit"]:hover { background: var(--blue); transform: translateY(-1px); }
  .modal .form-msg {
    margin-top: 14px; font-size: 13px; min-height: 18px;
  }
  .modal .form-msg.error { color: #C0392B; }
  .modal .form-msg.success { color: #1F6B3A; }
  .modal .privacy {
    margin-top: 18px; font-size: 11px; opacity: 0.55; line-height: 1.5;
  }
  .modal-success { display: none; text-align: center; }
  .modal-success.show { display: block; }
  .modal-success svg { color: var(--orange); margin-bottom: 20px; }
  .modal-success h3 { color: var(--blue-deep); }
  .modal-success .promo-code {
    display: inline-block; margin-top: 8px; padding: 14px 24px;
    border: 2px dashed var(--blue); color: var(--blue-deep);
    font-family: "Anton", sans-serif; font-size: 24px; letter-spacing: 0.1em;
  }

  /* ---------- scroll reveal helpers ---------- */
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
  .reveal.in { opacity: 1; transform: translateY(0); }

  /* ---------- comprehensive mobile polish ---------- */
  @media (max-width: 720px) {
    .wrap { padding: 0 20px; }
    nav { padding: 14px 20px; }

    /* HERO */
    .hero { padding: 110px 20px 60px; }
    .hero-grid { gap: 28px; }
    .hero h1 { font-size: clamp(54px, 14vw, 88px); line-height: 0.92; }
    .hero-lede { font-size: 16px; line-height: 1.6; margin-top: 24px; }
    .hero-meta { gap: 18px; margin-top: 28px; }
    .price-tag .amount { font-size: 44px; }
    .price-tag .pack { padding-left: 14px; font-size: 12px; }
    .price-tag .unit { font-size: 11px; }

    /* hero buttons stack and go full-width */
    .cta-row { flex-direction: column; align-items: stretch; gap: 12px; margin-top: 24px; }
    .cta-row .amazon-btn { justify-content: center; padding: 18px 22px; font-size: 14px; width: 100%; }
    .cta-row .ghost-btn { text-align: center; padding: 12px 0; }

    .hero-product { max-width: 300px; }
    .hero-product img { animation: bob 6s ease-in-out infinite; }

    /* TICKER — smaller, calmer on mobile */
    .ticker { padding: 16px 0; }
    .ticker-track { gap: 30px; animation-duration: 25s; }
    .ticker-item { font-size: 22px; gap: 30px; }
    .ticker-item .dot { width: 7px; height: 7px; }

    /* STORY */
    .story { padding: 80px 20px; }
    .story-inner { gap: 24px; }
    .story h2 { font-size: clamp(40px, 11vw, 60px); }
    .story-body p { font-size: 16px; line-height: 1.6; margin-bottom: 18px; }
    .story-body p:first-child::first-letter { font-size: 56px; padding: 6px 10px 0 0; }
    .story-pull { margin: 40px 0; padding: 28px 0; font-size: 20px; line-height: 1.45; }
    .story-pull::before { font-size: 60px; vertical-align: -22px; }

    /* BENEFITS */
    .benefits { padding: 80px 20px; }
    .benefits-header { margin-bottom: 40px; }
    .benefits-header h2 { font-size: clamp(40px, 11vw, 60px); }
    .benefits-grid { grid-template-columns: 1fr; gap: 14px; }
    .benefit { padding: 28px 24px 26px; }
    .benefit-num { margin-bottom: 20px; }
    .benefit-icon { width: 36px; height: 36px; margin-bottom: 16px; }
    .benefit-icon svg { width: 32px; height: 32px; }
    .benefit h3 { font-size: 24px; }

    /* BUY */
    .buy { padding: 80px 20px; }
    .buy-inner { gap: 36px; }
    .buy-card { padding: 32px 24px; }
    .buy-card h2 { font-size: clamp(36px, 9vw, 48px); margin-bottom: 20px; }
    .buy-card .row { padding: 14px 0; font-size: 13px; }
    .buy-price { margin: 26px 0 22px; }
    .buy-price .amount { font-size: 64px; }
    .buy-visual { max-width: 260px; }

    /* FOOTER */
    footer { padding: 70px 20px 32px; }
    .footer-top { padding-bottom: 40px; gap: 32px; }
    .footer-top .logo { font-size: 42px; margin-bottom: 14px; }
    .footer-top .tagline { font-size: 13px; }
    .footer-col h4 { margin-bottom: 14px; }
    .footer-col p, .footer-col a { font-size: 13px; }
    .footer-deny-btn { font-size: 13px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; padding-top: 24px; }

    /* MODAL */
    .modal { padding: 48px 28px 36px; }
    .modal h3 { font-size: 32px; }
    .modal p { font-size: 15px; }
    .modal input[type="email"] { padding: 16px 18px; font-size: 14px; }
    .modal button[type="submit"] { padding: 16px 22px; font-size: 13px; }
    .modal .form-row { flex-direction: column; }
    .modal .form-row button { width: 100%; }
    .modal-success .promo-code { font-size: 20px; padding: 12px 20px; }

    /* SECTION HEADERS in general */
    .stats-header h2 { font-size: clamp(36px, 9vw, 52px); }
  }

  /* very small phones */
  @media (max-width: 380px) {
    .hero h1 { font-size: 48px; }
    .stat .num { font-size: 100px; }
    .ticker-item { font-size: 19px; }
  }
