/* base styles */
/* --- TOKENS --- */
    :root {
      --navy:     #0C1A2E;
      --gold:     #F2C84B;
      --gold-15:  rgba(242, 200, 75, 0.15);
      --gold-30:  rgba(242, 200, 75, 0.30);
      --cream:    #F4F1E9;
      --cream-70: rgba(244, 241, 233, 0.70);
      --cream-40: rgba(244, 241, 233, 0.40);
      --cream-15: rgba(244, 241, 233, 0.15);
      --cream-08: rgba(244, 241, 233, 0.08);
    }

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

    html { scroll-behavior: smooth; }

    body {
      background-color: var(--navy);
      color: var(--cream);
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background: radial-gradient(ellipse 90% 50% at 50% 0%, rgba(20, 50, 100, 0.55) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }

    /* --- LAYOUT --- */
    .page { position: relative; z-index: 1; }

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

    .divider {
      width: 52px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--cream-40), transparent);
      margin: 0 auto;
    }

    /* --- TOP NAV / MENU --- */
    .site-nav {
      border-bottom: 1px solid var(--cream-08);
      position: relative;
      z-index: 2;
    }

    .nav-inner {
      max-width: 900px;
      margin: 0 auto;
      padding: 12px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }

    .nav-brand-block {
      display: flex;
      flex-direction: column;
      gap: 2px;
      text-decoration: none;
    }

    /* Discreet company mark, top corner */
    .nav-brand {
      font-family: 'JetBrains Mono', monospace;
      font-size: 9.5px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--cream-40);
    }

    .nav-logo {
      font-family: 'Source Serif 4', serif;
      font-size: 15px;
      font-weight: 700;
      color: var(--cream);
      text-decoration: none;
      white-space: nowrap;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .nav-links a {
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--cream-40);
      text-decoration: none;
      transition: color 0.15s;
    }

    .nav-links a:hover { color: var(--gold); }

    /* --- HERO --- */
    .hero {
      padding: 52px 0 44px;
      text-align: center;
    }

    .hero-label {
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--cream-40);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-bottom: 22px;
    }

    .hero-label::before,
    .hero-label::after {
      content: '';
      display: block;
      width: 20px;
      height: 1px;
      background: var(--cream-40);
    }

    .hero-headline {
      font-family: 'Source Serif 4', serif;
      font-size: clamp(26px, 6vw, 44px);
      font-weight: 700;
      line-height: 1.2;
      color: var(--cream);
      margin-bottom: 18px;
    }

    .hero-headline .accent {
      color: var(--gold);
      font-style: italic;
    }

    .hero-sub {
      font-size: clamp(14px, 2.8vw, 16px);
      color: var(--cream-70);
      max-width: 480px;
      margin: 0 auto;
      line-height: 1.72;
    }

    .hero-sub strong { color: var(--cream); font-weight: 600; }

    /* --- HERO APP IMAGE (first fold) --- */
    .hero-app {
      margin: 30px auto 0;
      text-align: center;
    }

    /* --- DOCTOR PHOTO (unused - kept for reference) --- */
    .doctor-block {
      margin: 34px auto 0;
      text-align: center;
    }

    .doctor-photo-ring {
      width: 148px;
      height: 148px;
      border-radius: 50%;
      overflow: hidden;
      margin: 0 auto 13px;
      border: 3px solid var(--gold);
      box-shadow:
        0 0 0 7px rgba(242, 200, 75, 0.12),
        0 16px 48px rgba(0, 0, 0, 0.50);
      background-color: #12233b;
      background-image: url("https://getmaha.us/dtcmemo20/dr.webp");
      background-size: 260%;
      background-position: 50% 20%;
      background-repeat: no-repeat;
    }

    .doctor-name {
      font-family: 'Source Serif 4', serif;
      font-size: 14px;
      font-weight: 600;
      color: var(--cream);
      margin-bottom: 5px;
    }

    .doctor-cred {
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px;
      letter-spacing: 0.13em;
      color: var(--cream-40);
      text-transform: uppercase;
    }

    /* --- SECTION LABELS --- */
    .section-eyebrow {
      display: block;
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 14px;
    }

    .section-title {
      font-family: 'Source Serif 4', serif;
      font-size: clamp(19px, 4vw, 26px);
      font-weight: 700;
      color: var(--cream);
      margin-bottom: 24px;
      line-height: 1.3;
    }

    /* --- PRODUCT DESCRIPTION --- */
    .about { padding: 44px 0 8px; }

    .about-text {
      font-size: 15px;
      color: var(--cream-70);
      line-height: 1.78;
    }

    .about-text strong { color: var(--cream); font-weight: 600; }

    /* --- WHAT'S INCLUDED --- */
    .included { padding: 40px 0 48px; }

    .included-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .included-item {
      background: var(--cream-08);
      border: 1px solid rgba(244, 241, 233, 0.07);
      border-left: 3px solid var(--gold);
      border-radius: 8px;
      padding: 18px 18px 18px 16px;
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }

    .included-check {
      color: var(--gold);
      font-size: 16px;
      font-weight: 700;
      flex-shrink: 0;
      line-height: 1.5;
    }

    .included-name {
      font-weight: 600;
      font-size: 14px;
      color: var(--cream);
      margin-bottom: 4px;
    }

    .included-desc {
      font-size: 13px;
      color: var(--cream-70);
      line-height: 1.6;
    }

    .value-badge {
      display: inline-block;
      margin-top: 8px;
      background: var(--gold-15);
      border: 1px solid var(--gold-30);
      color: var(--gold);
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.04em;
      padding: 2px 8px;
      border-radius: 4px;
    }

    /* --- APP SCREENSHOT --- */
    .phone-section {
      padding: 36px 0 44px;
      text-align: center;
    }

    .app-img {
      max-width: 420px;
      width: 100%;
      display: block;
      margin: 0 auto;
    }

    @media (max-width: 480px) {
      .app-img { max-width: 320px; }
    }

    /* --- PRICING + CTA --- */
    .pricing { padding: 48px 0 40px; text-align: center; }

    .price-was {
      font-family: 'JetBrains Mono', monospace;
      font-size: 14px;
      color: var(--cream-40);
      text-decoration: line-through;
      letter-spacing: 0.06em;
      margin-bottom: 6px;
    }

    .price-now {
      font-family: 'Source Serif 4', serif;
      font-size: clamp(52px, 13vw, 76px);
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 2px;
    }

    .price-currency {
      font-family: 'JetBrains Mono', monospace;
      font-size: 13px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--cream-70);
      margin-bottom: 10px;
    }

    .price-note {
      font-size: 14px;
      font-style: italic;
      color: var(--cream-70);
      margin-bottom: 30px;
    }

    .cta-btn {
      display: block;
      width: 100%;
      max-width: 480px;
      margin: 0 auto;
      background: var(--gold);
      color: var(--navy);
      font-family: 'Inter', sans-serif;
      font-size: clamp(15px, 3vw, 17px);
      font-weight: 700;
      text-decoration: none;
      padding: 19px 32px;
      border-radius: 6px;
      text-align: center;
      box-shadow: 0 6px 32px rgba(242, 200, 75, 0.30);
      transition: filter 0.15s ease, transform 0.1s ease;
      -webkit-tap-highlight-color: transparent;
    }

    .cta-btn:hover { filter: brightness(1.08); transform: translateY(-2px); }
    .cta-btn:active { transform: translateY(0); filter: brightness(0.97); }

    .cta-trust {
      margin-top: 12px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.08em;
      color: var(--cream-40);
    }

    .cta-guarantee-link {
      margin-top: 10px;
      font-size: 13px;
      color: var(--cream-70);
    }
    .cta-guarantee-link a { color: var(--gold); text-decoration: none; }
    .cta-guarantee-link a:hover { text-decoration: underline; }

    /* --- OPT-IN (SMS/email consent gate) --- */
    .cta-btn { cursor: pointer; border: none; }
    .cta-btn.is-locked { opacity: 0.4; filter: grayscale(0.45); box-shadow: none; cursor: not-allowed; }
    .optin-hint {
      max-width: 480px; margin: 12px auto 0; text-align: center;
      font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.04em; color: var(--gold);
    }
    .optin-hint.is-hidden { display: none; }
    .optin { max-width: 480px; margin: 14px auto 4px; text-align: left; }
    .optin label {
      display: flex; gap: 11px; align-items: flex-start; font-size: 12px; line-height: 1.55;
      color: var(--cream-70); cursor: pointer; margin-bottom: 13px;
    }
    .optin input[type="checkbox"] {
      margin-top: 2px; width: 18px; height: 18px; accent-color: var(--gold); flex-shrink: 0; cursor: pointer;
    }
    .optin a { color: var(--gold); text-decoration: underline; }

    /* --- PRE-CHECKOUT MODAL --- */
    .modal-overlay { position: fixed; inset: 0; background: rgba(5,12,22,0.82); display: none; align-items: flex-start; justify-content: center; z-index: 999; padding: 24px 16px; overflow-y: auto; }
    .modal-overlay.is-open { display: flex; }
    .modal { background: #0F2240; border: 1px solid rgba(242,200,75,0.22); border-radius: 12px; max-width: 460px; width: 100%; margin: auto; padding: 30px 26px 28px; position: relative; box-shadow: 0 24px 80px rgba(0,0,0,0.6); }
    .modal-close { position: absolute; top: 10px; right: 14px; background: none; border: none; color: var(--cream-40); font-size: 30px; line-height: 1; cursor: pointer; }
    .modal-close:hover { color: var(--cream); }
    .modal-title { font-family: 'Source Serif 4', serif; font-size: 22px; color: var(--cream); margin-bottom: 6px; }
    .modal-sub { font-size: 13px; color: var(--cream-70); margin-bottom: 20px; line-height: 1.5; }
    .mfield { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
    .mfield label { font-size: 12px; color: var(--cream-70); font-weight: 500; }
    .mfield input { background: var(--cream-08); border: 1px solid rgba(244,241,233,0.14); border-radius: 6px; color: var(--cream); font-family: 'Inter',sans-serif; font-size: 15px; padding: 12px 14px; width: 100%; outline: none; -webkit-appearance: none; appearance: none; }
    .mfield input:focus { border-color: rgba(242,200,75,0.5); }
    .mfield input::placeholder { color: var(--cream-40); }
    .moptin { margin: 16px 0 18px; }
    .moptin label { display: flex; gap: 10px; align-items: flex-start; font-size: 11.5px; line-height: 1.5; color: var(--cream-70); cursor: pointer; margin-bottom: 11px; }
    .moptin input { margin-top: 2px; width: 17px; height: 17px; accent-color: var(--gold); flex-shrink: 0; cursor: pointer; }
    .moptin a { color: var(--gold); text-decoration: underline; }
    .modal .cta-btn { max-width: none; }
    .modal-note { margin-top: 12px; font-size: 11px; color: var(--cream-40); text-align: center; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.03em; }

    /* --- MASTERCLASS BANNER --- */
    .masterclass {
      margin: 0 0 48px;
      background: linear-gradient(135deg, rgba(242, 200, 75, 0.11) 0%, rgba(242, 200, 75, 0.04) 100%);
      border: 1px solid rgba(242, 200, 75, 0.32);
      border-radius: 10px;
      padding: 30px 22px;
      text-align: center;
    }

    .masterclass-eyebrow {
      font-family: 'JetBrains Mono', monospace;
      font-size: 10px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      display: block;
      margin-bottom: 12px;
    }

    .masterclass-title {
      font-family: 'Source Serif 4', serif;
      font-size: clamp(17px, 4vw, 22px);
      font-weight: 700;
      color: var(--cream);
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .masterclass-desc {
      font-size: 14px;
      color: var(--cream-70);
      line-height: 1.65;
      max-width: 420px;
      margin: 0 auto;
    }

    /* --- GUARANTEE --- */
    .guarantee { padding: 48px 0; text-align: center; }
    .shield { display: block; margin: 0 auto 18px; }

    .guarantee-title {
      font-family: 'Source Serif 4', serif;
      font-size: clamp(18px, 4vw, 23px);
      font-weight: 700;
      color: var(--cream);
      margin-bottom: 12px;
    }

    .guarantee-desc {
      font-size: 14px;
      color: var(--cream-70);
      line-height: 1.72;
      max-width: 400px;
      margin: 0 auto 14px;
    }

    .guarantee-link {
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--gold);
      text-decoration: none;
    }
    .guarantee-link:hover { text-decoration: underline; }

    /* --- REPEAT CTA --- */
    .repeat-cta { padding: 44px 0 56px; text-align: center; }

    /* --- DISCLAIMER STRIP --- */
    .disclaimer-strip {
      max-width: 620px;
      margin: 0 auto;
      padding: 22px 20px 8px;
      text-align: center;
    }

    .disclaimer-strip p {
      font-size: 12px;
      color: var(--cream-40);
      line-height: 1.7;
    }

    /* --- FOOTER (simple - modeled on approved page) --- */
    footer {
      border-top: 1px solid var(--cream-08);
      padding: 44px 20px 52px;
      text-align: center;
    }

    .footer-brand-title {
      font-family: 'Source Serif 4', serif;
      font-size: 21px;
      font-weight: 700;
      color: var(--cream);
    }
    .footer-brand-title .accent { color: var(--gold); }

    .footer-brand-by {
      font-size: 13px;
      color: var(--cream-40);
      margin-top: 4px;
    }

    .footer-nav {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 22px;
    }

    .footer-nav a { font-size: 13px; color: var(--cream-70); text-decoration: none; }
    .footer-nav a:hover { color: var(--gold); }
    .footer-nav-sep { font-size: 13px; color: var(--cream-15); user-select: none; }

    .footer-disclaimer {
      font-size: 11.5px;
      font-style: italic;
      color: var(--cream-40);
      line-height: 1.72;
      max-width: 560px;
      margin: 0 auto 18px;
      opacity: 0.9;
    }

    .footer-copy { font-size: 12px; color: var(--cream-40); margin-bottom: 6px; line-height: 1.55; }
    .footer-billing { font-size: 11px; color: var(--cream-40); opacity: 0.7; }

    /* --- MOBILE OPTIMIZATION --- */
    @media (max-width: 480px) {
      .container { padding: 0 16px; }

      .nav-inner { padding: 10px 16px; gap: 8px; }
      .nav-links { gap: 12px; }
      .nav-links a { font-size: 10px; letter-spacing: 0.05em; }

      .hero { padding: 38px 0 32px; }
      .hero-label { letter-spacing: 0.16em; gap: 8px; }
      .hero-headline { font-size: clamp(24px, 7.5vw, 32px); }

      .doctor-block { margin-top: 28px; }
      .doctor-photo-ring { width: 124px; height: 124px; }
      .doctor-cred { font-size: 9px; letter-spacing: 0.10em; }

      .included { padding: 36px 0; }
      .included-item { padding: 14px 14px; gap: 11px; }

      .pricing { padding: 36px 0 32px; }

      .masterclass { padding: 22px 16px; margin-bottom: 36px; }

      .guarantee { padding: 36px 0; }

      .repeat-cta { padding: 36px 0 44px; }

      footer { padding: 36px 16px 44px; }
    }

    @media (max-width: 360px) {
      .hero-headline { font-size: 22px; }
      .cta-btn { font-size: 15px; padding: 17px 20px; }
    }
html body { background-color: var(--navy); color: var(--cream); font-family: 'Inter', sans-serif; }
/* end base styles */
*{box-sizing:border-box;}body{margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;}#in2y4k{margin:22px auto;}#irvlvy{color:inherit;text-decoration:underline;}#i2jw7w{color:inherit;text-decoration:underline;}#ib69i2{color:inherit;text-decoration:underline;}
[data-delay-vturb] {
  display: none !important;
}
  