﻿:root {
    --cream: #F5F8F2;
    --parchment: #E4ECDF;
    --ink: #203127;
    --navy: #2F5D50;
    --navy-dark: #1F4036;
    --sage: #A9BFA3;
    --sage-dark: #5F7F68;
    --amber: #5E8F5A;
    --amber-light: #8FBA6A;
    --red-alert: #7A6A38;
    --mid-gray: #64766D;
    --border: #C9D8C4;
    --highlight-bg: #F1F7EA;
    --white: #FFFFFF;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  [hidden] { display: none !important; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--cream);
    color: var(--ink);
    font-family: "Source Serif 4", Georgia, serif;
    font-size: 18px;
    line-height: 1.72;
  }
  img, video, picture { max-width: 100%; display: block; }
  button { font: inherit; }

  .masthead {
    background: linear-gradient(135deg, var(--sage-dark) 0%, #5A7F63 100%);
    border-bottom: 2px solid var(--amber);
  }
  .masthead-top {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 10px clamp(18px, 4vw, 44px);
    border-bottom: 1px solid var(--border);
    background: var(--sage-dark);
    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.7px;
    color: #FFFFFF;
    text-transform: uppercase;
  }
  .masthead-main {
    text-align: center;
    padding: 18px 20px 14px;
  }
  .pub-name {
    font-family: "Playfair Display", serif;
    font-size: clamp(30px, 4.6vw, 48px);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
    letter-spacing: -0.8px;
    text-shadow: 0 2px 8px rgba(31, 64, 54, 0.35);
  }
  .pub-tagline {
    margin-top: 6px;
    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    letter-spacing: 2.6px;
    text-transform: uppercase;
    color: var(--sage-dark);
  }
  .nav-bar {
    background: linear-gradient(135deg, #CFE0C7 0%, #BFD6B7 100%);
    display: flex;
    justify-content: center;
    gap: clamp(14px, 4vw, 32px);
    padding: 9px 18px;
    flex-wrap: wrap;
  }
  .nav-bar a {
    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #405847;
    text-decoration: none;
    font-weight: 700;
  }

  .notice {
    background: var(--highlight-bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 10px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: "DM Sans", sans-serif;
  }
  .notice-tag {
    background: var(--sage-dark);
    color: #fff;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .notice-text { font-size: 13px; color: var(--ink); font-weight: 600; }

  .wrap {
    max-width: 1110px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 46px;
    padding: 44px 0 64px;
    align-items: start;
  }
  main { min-width: 0; }
  .layout > .disclaimer {
    grid-column: 1 / -1;
    width: min(100%, 820px);
    justify-self: start;
  }

  .article-section {
    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.6px;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 10px;
  }
  h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(30px, 4.2vw, 50px);
    line-height: 1.05;
    color: var(--navy-dark);
    letter-spacing: -1.3px;
    margin-bottom: 18px;
  }
  h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(26px, 3.2vw, 34px);
    line-height: 1.18;
    color: var(--navy);
    margin: 42px 0 14px;
  }
  .question-heading {
    margin-top: 18px;
  }
  .video-page {
    min-height: 100vh;
  }
  .video-wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 42px 24px 64px;
  }
  .video-shell {
    text-align: center;
  }
  .video-kicker {
    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 10px;
  }
  .video-shell h1 {
    max-width: 780px;
    margin: 0 auto 14px;
  }
  .video-shell .subhead {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  .player-frame {
    background: var(--parchment);
    border: 1px solid var(--border);
    border-top: 3px solid var(--amber);
    border-radius: 8px;
    padding: clamp(18px, 4vw, 32px);
    margin: 30px auto 24px;
    box-shadow: 0 18px 38px rgba(38, 70, 92, 0.08);
  }
  .video-player {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
  }
  .video-note {
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    line-height: 1.58;
    color: var(--mid-gray);
    max-width: 620px;
    margin: 0 auto;
  }
  .back-link {
    display: inline-block;
    margin-top: 28px;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--navy);
    text-decoration: none;
  }
  .legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 44px 24px 70px;
  }
  .legal-document {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: clamp(26px, 5vw, 46px);
    box-shadow: 0 14px 34px rgba(38, 70, 92, 0.08);
  }
  .legal-document h1 {
    margin-bottom: 8px;
  }
  .legal-document h2 {
    margin-top: 32px;
  }
  .legal-document p {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.72;
    color: #294964;
  }
  .legal-updated {
    color: var(--mid-gray) !important;
    font-size: 13px !important;
    margin-bottom: 24px !important;
  }
  .dtc-page {
    background:
      radial-gradient(circle at top, rgba(47, 93, 80, 0.1), transparent 35%),
      linear-gradient(180deg, #E4ECDF 0%, #F5F8F2 100%);
    min-height: 100vh;
  }
  .dtc-shell {
    max-width: 860px;
    margin: 0 auto;
    padding: 28px 16px 40px;
  }
  .dtc-hero-card,
  .dtc-offer-section,
  .dtc-legal-footer {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(32, 49, 39, 0.08);
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(31, 64, 54, 0.14);
  }
  .dtc-hero-card {
    padding: 28px 18px 32px;
    overflow: hidden;
  }
  .dtc-hero-card.is-hidden-after-offer {
    display: block;
  }
  .dtc-eyebrow,
  .dtc-sound-note,
  .dtc-offer-kicker {
    font-family: "DM Sans", sans-serif;
    text-align: center;
    font-weight: 800;
  }
  .dtc-eyebrow {
    margin: 0 0 16px;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--amber);
  }
  .dtc-headline {
    margin: 0 0 16px;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.14;
    text-align: center;
    color: var(--navy-dark);
  }
  .dtc-headline span {
    color: var(--amber);
  }
  .dtc-subheadline {
    max-width: 680px;
    margin: 0 auto 22px;
    text-align: center;
    font-family: "DM Sans", sans-serif;
    font-size: clamp(17px, 2.3vw, 22px);
    line-height: 1.55;
    color: var(--mid-gray);
  }
  .dtc-sound-note {
    margin: 0 auto 24px;
    font-size: 14px;
    color: var(--amber);
  }
  .dtc-video-shell {
    max-width: 425px;
    margin: 0 auto;
    padding: 8px;
    border-radius: 16px;
    background: linear-gradient(180deg, var(--sage-dark) 0%, var(--navy-dark) 100%);
    box-shadow: 0 18px 42px rgba(31, 64, 54, 0.22);
  }
  .dtc-video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 405 / 625;
    border-radius: 12px;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(95, 127, 104, 0.35), rgba(31, 64, 54, 0.96));
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .dtc-video-player {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 405px;
  }
  .dtc-video-logo-mask {
    position: absolute;
    top: 86px;
    right: 78px;
    width: 132px;
    height: 46px;
    border-radius: 12px;
    background:
      linear-gradient(90deg, rgba(7, 18, 15, .12) 0%, rgba(7, 18, 15, .86) 28%, rgba(7, 18, 15, .94) 100%);
    box-shadow: 0 10px 22px rgba(0,0,0,.28);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 20;
  }
  .dtc-video-logo-mask svg {
    width: 92px;
    height: 26px;
    opacity: .92;
  }
  .dtc-form-update {
    display: block;
    max-width: 560px;
    margin: 16px auto 0;
    padding: 12px 16px;
    border: 1px solid rgba(31, 64, 54, .14);
    border-radius: 8px;
    background: #eef7ea;
    text-align: center;
    font-family: "DM Sans", sans-serif;
    box-shadow: 0 10px 24px rgba(31, 64, 54, .08);
  }
  .dtc-form-update span {
    display: inline-block;
    margin-bottom: 5px;
    color: var(--navy);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    line-height: 1;
    text-transform: uppercase;
  }
  .dtc-form-update strong {
    display: block;
    color: var(--navy-dark);
    font-size: 16px;
    line-height: 1.35;
    font-weight: 800;
  }
  .dtc-form-update-offer {
    max-width: 760px;
    margin: 0 auto 24px;
    background: #eef7ea;
  }
  .dtc-offer-section {
    display: none;
    margin-top: 34px;
    margin-left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    padding: 56px 18px 76px;
    background: #f4f5f6;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .dtc-offer-section.show {
    display: block;
  }
  .dtc-offer-kicker {
    display: none;
  }
  .dtc-method-callout {
    display: block;
    max-width: 760px;
    margin: 0 auto 18px;
    padding: 14px 18px;
    border: 1px solid rgba(31, 64, 54, .14);
    border-radius: 8px;
    background: #e8f3ef;
    text-align: center;
    box-shadow: 0 10px 24px rgba(31, 64, 54, .08);
  }
  .dtc-method-callout span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    background: var(--navy-dark);
    color: #fff;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1;
    text-transform: uppercase;
  }
  .dtc-method-callout strong {
    display: block;
    color: var(--navy-dark);
    font-family: "DM Sans", sans-serif;
    font-size: clamp(17px, 2.2vw, 22px);
    line-height: 1.25;
    font-weight: 900;
  }
  .dtc-offer-title {
    margin: 0 0 10px;
    text-align: center;
    font-family: "DM Sans", sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
    color: #1c232b;
    font-weight: 800;
  }
  .dtc-offer-title sup {
    font-size: .55em;
    vertical-align: super;
  }
  .dtc-offer-title span {
    display: block;
    margin-top: 8px;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.15;
  }
  .dtc-offer-text {
    display: none;
  }
  .dtc-offer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 22px;
    max-width: 1160px;
    margin: 46px auto 0;
  }
  .dtc-offer-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid #d7dde2;
    border-radius: 8px;
    padding: 102px 26px 30px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.13);
    overflow: hidden;
    min-height: 780px;
  }
  .dtc-offer-card.best {
    border: 2px solid #d8b843;
    padding-top: 102px;
    background: linear-gradient(180deg, #7ca8a3 0%, #4e7d78 100%);
    box-shadow: 0 10px 24px rgba(47, 93, 80, 0.28);
  }
  .dtc-offer-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #2f6668;
    color: #fff;
    padding: 18px 12px;
    text-align: center;
    font-family: "DM Sans", sans-serif;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
  }
  .dtc-offer-plan {
    margin: 0 0 4px;
    text-align: center;
    font-family: "DM Sans", sans-serif;
    font-size: 34px;
    line-height: 1.1;
    color: #171922;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
  }
  .dtc-offer-card.best .dtc-offer-plan,
  .dtc-offer-card.best .dtc-offer-price,
  .dtc-offer-card.best .dtc-offer-price span,
  .dtc-offer-card.best .dtc-offer-total,
  .dtc-offer-card.best .dtc-offer-total strong {
    color: #fff;
  }
  .dtc-offer-supply {
    margin: 0 -26px 28px;
    padding: 0 26px 16px;
    border-bottom: 1px solid #dfe3e7;
    text-align: center;
    color: #687185;
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
  }
  .dtc-offer-card.best .dtc-offer-supply {
    color: rgba(255, 255, 255, .92);
    border-bottom: 0;
  }
  .dtc-offer-product {
    width: 100%;
    max-width: 252px;
    height: 220px;
    margin: 0 auto 38px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .dtc-offer-product img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .dtc-offer-price {
    text-align: center;
    color: #171922;
    margin-bottom: 26px;
    font-family: "DM Sans", sans-serif;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
  }
  .dtc-offer-price strong {
    display: block;
    font-size: 76px;
    line-height: 1;
    font-weight: 800;
  }
  .dtc-offer-price span {
    display: inline-block;
    margin-top: 0;
    margin-left: 0;
    font-size: 18px;
    line-height: 1.1;
    color: #687185;
    text-transform: uppercase;
  }
  .dtc-offer-points {
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
  }
  .dtc-offer-points li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 0;
    padding: 14px 0;
    border-top: 1px solid #e1e5e8;
    color: #3f4a5d;
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    line-height: 1.35;
    text-transform: uppercase;
  }
  .dtc-offer-card.best .dtc-offer-points {
    border-top: 1px solid rgba(255, 255, 255, .24);
    border-bottom: 1px solid rgba(255, 255, 255, .24);
    padding: 12px 0;
  }
  .dtc-offer-card.best .dtc-offer-points li {
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, .18);
    border-bottom: 0;
  }
  .dtc-offer-card.best .dtc-offer-points li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .dtc-offer-points li::before {
    content: "";
    content: "✓";
    width: 18px;
    height: 18px;
    margin-top: 2px;
    border: 0;
    border-radius: 50%;
    background: #0b9d24;
    color: #fff;
    font-size: 13px;
    line-height: 18px;
    text-align: center;
    transform: none;
    flex: 0 0 auto;
  }
  .dtc-offer-card.best .dtc-offer-points li::before {
    background: #fff;
    color: var(--navy-dark);
  }
  .dtc-offer-points .save {
    color: #078b0e;
    font-weight: 700;
  }
  .dtc-offer-points .emphasis {
    color: #fff0a6;
    font-weight: 800;
  }
  .dtc-offer-buy,
  .dtc-primary-cta {
    display: block;
    width: 100%;
    margin-top: auto;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    padding: 17px 18px;
    font-family: "DM Sans", sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(180deg, var(--amber-light) 0%, var(--amber) 100%);
    box-shadow: 0 12px 24px rgba(94, 143, 90, .28);
    text-transform: uppercase;
  }
  .dtc-offer-buy {
    color: #1f2b18;
    background: linear-gradient(180deg, #ffd861 0%, #f0b429 100%);
    box-shadow: 0 12px 24px rgba(240, 180, 41, .28);
  }
  .dtc-primary-cta {
    color: #fff;
    background: linear-gradient(180deg, var(--amber-light) 0%, var(--amber) 100%);
    box-shadow: 0 12px 24px rgba(94, 143, 90, .28);
  }
  .dtc-exit-overlay.retention-exit .dtc-primary-cta {
    color: #fff !important;
    background: linear-gradient(180deg, var(--amber-light) 0%, var(--amber) 100%) !important;
    box-shadow: 0 12px 24px rgba(94, 143, 90, .28) !important;
  }
  .dtc-exit-overlay.offer-exit .dtc-primary-cta {
    color: #fff;
    background: linear-gradient(180deg, var(--amber-light) 0%, var(--amber) 100%);
    box-shadow: 0 12px 24px rgba(94, 143, 90, .28);
  }
  .dtc-offer-payments {
    width: 100%;
    max-width: 318px;
    margin: 22px auto 0;
  }
  .dtc-offer-total {
    margin: 22px 0 0;
    text-align: center;
    font-family: "DM Sans", sans-serif;
    font-size: 22px;
    line-height: 1.55;
    color: #1f2933;
    text-transform: uppercase;
  }
  .dtc-offer-total strong {
    color: #3f4a5d;
  }
  .strike {
    text-decoration: line-through;
    opacity: .75;
  }
  .free-shipping {
    display: inline-block;
    margin-top: 7px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #e8f8ef;
    color: #0f9d4f;
    font-weight: 800;
    text-transform: uppercase;
  }
  .dtc-offer-card.best .free-shipping {
    background: rgba(255, 255, 255, .16);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .28);
  }
  .dtc-offer-note {
    display: none;
    margin: 22px auto 0;
    padding: 10px 18px;
    border-radius: 999px;
    background: #fff4d8;
    text-align: center;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #b97700;
  }
  .dtc-offer-guarantee {
    display: none;
  }
  .dtc-disclaimer {
    display: none !important;
  }
  .dtc-disclaimer.show {
    display: block !important;
  }
  .dtc-legal-footer {
    display: none;
    margin-top: 0;
    margin-left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    padding: 30px 18px 28px;
    background: #202528;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .dtc-legal-footer.show {
    display: block;
  }
  .dtc-footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-bottom: 22px;
  }
  .dtc-footer-links a {
    color: #fff;
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    text-decoration: none;
  }
  .dtc-legal-footer p {
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    line-height: 1.35;
    color: rgba(255, 255, 255, .78);
  }
  .dtc-buygoods-box {
    max-width: 1160px;
    margin: 0 auto 14px;
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    background: #000;
    padding: 28px 28px;
  }
  .dtc-buygoods-logo {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 42px;
    font-weight: 900;
    font-style: italic;
    color: #fff;
    letter-spacing: -2px;
  }
  .dtc-buygoods-box p {
    margin: 0;
    text-align: left;
    color: #fff;
  }
  .dtc-copyright {
    margin: 0 auto;
    text-align: center;
    font-size: 18px !important;
    color: #fff !important;
  }
  .dtc-exit-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(6, 18, 23, .82);
    padding: 18px;
    align-items: center;
    justify-content: center;
  }
  .dtc-exit-overlay.show {
    display: flex;
  }
  .dtc-exit-box {
    position: relative;
    width: min(100%, 540px);
    border-radius: 20px;
    padding: 28px 22px 26px;
    background: linear-gradient(180deg, #fff 0%, #F1F7EA 100%);
    box-shadow: 0 26px 60px rgba(0, 0, 0, .3);
    text-align: center;
  }
  .dtc-exit-overlay.offer-exit .dtc-exit-box {
    width: min(100%, 980px);
    padding: 34px 28px 24px;
    border: 1px solid rgba(31, 64, 54, .14);
    border-radius: 10px;
    background: #f3f8f1;
    box-shadow: 0 30px 70px rgba(31, 64, 54, .34);
  }
  .dtc-exit-close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: 0;
    background: transparent;
    color: #7d9198;
    font-size: 24px;
    cursor: pointer;
  }
  .dtc-exit-box h2 {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.2;
    color: var(--navy-dark);
  }
  .dtc-exit-overlay.offer-exit .dtc-exit-box h2 {
    margin: 0 0 8px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.04;
    color: var(--navy-dark);
  }
  .dtc-exit-overlay.offer-exit .dtc-exit-box h2::before {
    content: "Special Offer Unlocked";
    display: table;
    margin: 0 auto 12px;
    padding: 7px 18px 6px;
    border-radius: 999px;
    background: var(--navy-dark);
    color: #fff;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
  }
  .dtc-exit-box p {
    margin: 0 0 18px;
    color: var(--mid-gray);
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    line-height: 1.6;
  }
  .dtc-exit-overlay.offer-exit .dtc-exit-box p {
    max-width: 720px;
    margin: 0 auto 20px;
    color: #3b5648;
    font-size: 15px;
    line-height: 1.45;
  }
  .dtc-exit-offer {
    border: 1px solid rgba(32, 49, 39, .12);
    border-radius: 16px;
    padding: 18px 16px;
    margin-bottom: 18px;
    background: rgba(255, 255, 255, .9);
  }
  .dtc-exit-offer strong {
    display: block;
    margin-bottom: 6px;
    color: var(--amber);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
  }
  .dtc-exit-offer span {
    display: block;
    color: var(--mid-gray);
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    line-height: 1.55;
  }
  .dtc-exit-overlay.offer-exit .dtc-exit-offer,
  .dtc-exit-overlay.offer-exit .dtc-primary-cta {
    display: none !important;
  }
  .dtc-exit-packages {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 22px 0 16px;
  }
  .dtc-exit-overlay.offer-exit .dtc-exit-packages {
    display: grid !important;
  }
  .dtc-exit-package {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
    min-height: 320px;
    padding: 26px 18px 18px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fbfdf8;
    color: var(--navy-dark);
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .dtc-exit-package:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(31, 64, 54, .16);
  }
  .dtc-exit-package.best {
    border-color: var(--navy-dark);
    background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: #fff;
  }
  .dtc-exit-package img {
    width: 104px;
    height: 92px;
    object-fit: contain;
    margin: 8px 0 10px;
  }
  .dtc-exit-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 6px 13px;
    border-radius: 999px;
    background: var(--navy);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: .4px;
    text-transform: uppercase;
  }
  .dtc-exit-package.best .dtc-exit-badge {
    background: #f3f8f1;
    color: var(--navy-dark);
  }
  .dtc-exit-package strong {
    font-size: 26px;
    line-height: 1.05;
    font-weight: 900;
  }
  .dtc-exit-package small {
    color: #52677a;
    font-size: 14px;
    font-weight: 500;
  }
  .dtc-exit-package.best small {
    color: rgba(255, 255, 255, .78);
  }
  .dtc-exit-package b {
    margin-top: 8px;
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
  }
  .dtc-exit-select {
    width: 100%;
    max-width: 190px;
    margin-top: auto;
    padding: 11px 14px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
  }
  .dtc-exit-package.best .dtc-exit-select {
    background: #f3f8f1;
    color: var(--navy-dark);
  }
  .dtc-primary-cta {
    margin-top: 0;
    min-width: min(100%, 420px);
  }
  h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--amber);
    margin: 26px 0 12px;
  }
  p { color: #2D4336; margin-bottom: 21px; }
  .subhead {
    font-size: 18px;
    line-height: 1.5;
    color: #4F6658;
    margin-bottom: 18px;
  }
  .method-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: #fff;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 8px;
    margin: 2px 0 16px;
    box-shadow: 0 12px 28px rgba(31, 64, 54, .22);
    text-decoration: none;
  }
  .method-badge span {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    font-size: 11px;
    flex: 0 0 auto;
  }
  .method-badge strong {
    font: inherit;
    color: inherit;
  }
  .author-card {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px 0 14px;
    padding: 12px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    font-family: "DM Sans", sans-serif;
  }
  .author-mark {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--parchment);
    background: var(--navy);
    color: white;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    flex: 0 0 auto;
  }
  .author-name {
    color: var(--navy);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
  }
  .author-role {
    margin-top: 3px;
    color: var(--mid-gray);
    font-size: 12px;
    line-height: 1.35;
  }
  .highlight {
    background: linear-gradient(to bottom, transparent 60%, rgba(94, 143, 90, 0.22) 60%);
    font-weight: 700;
  }
  .byline {
    font-family: "DM Sans", sans-serif;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    font-size: 13px;
    color: var(--mid-gray);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    margin-bottom: 26px;
  }
  .byline strong { color: var(--navy); }

  .hero-media {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    isolation: isolate;
    background: #DDE8D6;
    border: 1px solid var(--border);
    box-shadow: 0 18px 44px rgba(38, 70, 92, 0.10);
    aspect-ratio: 16/9;
    margin: 8px 0 4px;
    text-decoration: none;
  }
  main .hero-media.hero-media-link {
    position: relative !important;
    display: block !important;
    overflow: hidden !important;
    aspect-ratio: 16 / 9;
  }
  .hero-media-link {
    cursor: pointer;
    transition: transform .16s ease, box-shadow .16s ease;
  }
  .hero-media-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(38, 70, 92, 0.14);
  }
  .hero-media video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }
  main .hero-media.hero-media-link video {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }
  .play-btn-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 30;
    transform: translateZ(0);
    will-change: transform;
  }
  main .hero-media.hero-media-link .play-btn-overlay {
    position: absolute !important;
    inset: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 40 !important;
    pointer-events: none !important;
  }
  .play-btn-circle {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: rgba(8, 20, 16, 0.76);
    border: 4px solid rgba(255,255,255,0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .2s;
    box-shadow:
      0 0 0 8px rgba(255,255,255,0.16),
      0 18px 36px rgba(0,0,0,0.32);
  }
  .play-btn-circle svg {
    width: 38px;
    height: 38px;
    margin-left: 5px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,.35));
  }
  main .hero-media.hero-media-link .play-btn-circle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .hero-media-link:hover .play-btn-circle {
    background: rgba(0,0,0,0.65);
    transform: scale(1.08);
  }
  .hero-media::after {
    content: '';
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 190px;
    height: 52px;
    border-radius: 14px;
    background:
      linear-gradient(90deg, rgba(7, 18, 15, .18) 0%, rgba(7, 18, 15, .88) 34%, rgba(7, 18, 15, .94) 100%);
    box-shadow: 0 12px 28px rgba(0,0,0,.32);
    backdrop-filter: blur(7px);
    pointer-events: none;
    z-index: 20;
    transform: translateZ(0);
  }
  .hero-media .veo-mask {
    position: absolute;
    bottom: 8px;
    right: 8px;
    transform: translateZ(0);
    width: 190px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 21;
    gap: 3px;
  }
  main .hero-media.hero-media-link .veo-mask {
    position: absolute !important;
    bottom: 8px !important;
    right: 8px !important;
    width: 190px !important;
    height: 52px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 41 !important;
    pointer-events: none !important;
  }
  .hero-media .veo-mask svg {
    width: 132px;
    height: 34px;
    opacity: 0.94;
  }
  .media-caption {
    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    color: rgba(82, 109, 134, .76);
    border-left: 0;
    padding-left: 0;
    margin: 4px 0 22px;
    font-style: italic;
    text-align: center;
  }

  .cta-box, .hero-cta {
    padding: 8px 0;
    text-align: center;
    margin: 30px 0 36px;
  }
  .hero-cta-first {
    margin: 2px 0 6px;
    padding-top: 0;
  }
  .hero-cta-first .cta-title {
    margin-bottom: 5px;
  }
  .hero-cta-first .cta-copy {
    max-width: 560px;
    margin: 0 auto 12px;
    line-height: 1.35;
  }
  #final .cta-box {
    background: linear-gradient(135deg, #EAF3E5 0%, #DDEBDA 100%);
    border: 1px solid var(--border);
    border-top: 3px solid var(--amber);
    border-radius: 8px;
    padding: 28px;
    box-shadow: 0 12px 26px rgba(38, 70, 92, 0.06);
  }
  .cta-eyebrow {
    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sage-dark);
    margin-bottom: 10px;
  }
  .cta-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(22px, 3vw, 30px);
    line-height: 1.25;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
  }
  .cta-copy {
    font-size: 16px;
    color: #4F6658;
    font-style: italic;
    margin-bottom: 22px;
  }
  .cta-btn, .side-btn {
    appearance: none;
    border: none;
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 100%);
    color: #FFFFFF;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 31px;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(94, 143, 90, 0.22);
    transition: transform .16s ease, box-shadow .16s ease;
  }
  .cta-btn:hover, .side-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(94, 143, 90, 0.28); }
  .microcopy {
    margin-top: 8px;
    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    color: var(--mid-gray);
  }

  .pull-quote {
    background: linear-gradient(135deg, #EAF3E5 0%, #DDEBDA 100%);
    border: 1px solid var(--border);
    border-left: 4px solid var(--amber);
    padding: 24px 28px;
    border-radius: 6px;
    margin: 30px 0;
  }
  .pull-label {
    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--sage-dark);
    margin-bottom: 10px;
  }
  .pull-quote p {
    font-style: italic;
    font-size: 18px;
    color: #2D4336;
    margin-bottom: 10px;
  }
  .pull-quote cite {
    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    color: var(--mid-gray);
    font-style: normal;
  }

  .symptom-checklist {
    background: var(--highlight-bg);
    border: 1px solid #BDD4E8;
    padding: 24px 28px;
    margin: 0;
    border-radius: 8px;
  }
  .signs-split {
    display: grid;
    grid-template-columns: minmax(230px, .86fr) minmax(0, 1fr);
    gap: 22px;
    align-items: stretch;
    margin: 28px 0 22px;
  }
  .signs-split .section-image {
    margin: 0;
  }
  .signs-image img {
    height: 100%;
    min-height: 390px;
    object-fit: cover;
  }
  .checklist-title {
    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 14px;
  }
  .checklist-title::after {
    content: " Select 3 or more to reveal the pattern.";
    display: block;
    margin-top: 6px;
    color: var(--sage-dark);
    font-size: 10px;
    letter-spacing: .08em;
  }
  .checklist-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #C9DBEC;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    color: #2D4336;
    cursor: pointer;
    user-select: none;
    transition: color .18s ease, transform .18s ease;
  }
  .checklist-item:hover {
    color: var(--navy);
    transform: translateX(2px);
  }
  .checklist-item:last-child { border-bottom: none; }
  .checklist-item input { position: absolute; opacity: 0; pointer-events: none; }
  .check-box {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    background: #fff;
    flex: 0 0 auto;
    margin-top: 2px;
    border-radius: 4px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
  }
  .checklist-item input:checked + .check-box {
    background: var(--amber);
    border-color: var(--amber);
  }
  .checklist-item input:checked + .check-box::after { content: "✓"; }

  .result-box {
    display: none;
    background: #EAF4E8;
    border: 1px solid #CFE0C8;
    border-left: 4px solid var(--navy);
    padding: 22px 24px;
    margin: 18px 0 30px;
    border-radius: 0 8px 8px 0;
  }
  .result-box.is-visible { display: block; animation: fade .28s ease both; }
  .result-box h3 { margin-top: 0; color: var(--navy); }
  .result-box p {
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    line-height: 1.62;
    margin-bottom: 14px;
  }
  @keyframes fade { from {opacity:0; transform: translateY(8px);} to {opacity:1; transform: translateY(0);} }

  .section-image {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #DDEBDA;
    box-shadow: 0 14px 34px rgba(38, 70, 92, 0.08);
    margin: 34px 0 10px;
  }
  .section-image picture,
  .section-image img {
    width: 100%;
  }
  .section-image img {
    aspect-ratio: 16/9;
    object-fit: cover;
  }
  .split-section {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(230px, .8fr);
    gap: 24px;
    align-items: center;
    margin: 28px 0 18px;
  }
  .split-section--mechanism {
    align-items: start;
    grid-template-columns: minmax(0, 1.18fr) minmax(240px, .82fr);
  }
  .split-section--mechanism .split-visual {
    order: 2;
  }
  .split-section--mechanism .split-copy {
    order: 1;
    max-width: none;
  }
  .split-section--mechanism .split-copy p {
    max-width: none;
  }
  .split-section--mechanism .section-image img {
    aspect-ratio: 4 / 3;
  }
  .mechanism-points {
    margin: 12px 0 16px;
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-left: 4px solid var(--amber);
    border-radius: 0 8px 8px 0;
    background: var(--parchment);
    list-style: none;
  }
  .mechanism-points li {
    position: relative;
    padding: 8px 0 8px 24px;
    border-bottom: 1px solid rgba(32,49,39,.08);
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    line-height: 1.45;
    color: #2D4336;
  }
  .mechanism-points li:last-child {
    border-bottom: 0;
  }
  .mechanism-points li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--amber);
    font-weight: 800;
  }
  .split-section--benefits {
    align-items: stretch;
    grid-template-columns: minmax(0, 1fr) minmax(260px, .86fr);
  }
  .split-section--benefits .benefit-list {
    height: 100%;
    margin: 0;
  }
  .split-section--benefits .split-visual {
    display: flex;
    align-items: stretch;
  }
  .split-section--benefits .section-image {
    width: 100%;
    min-height: 100%;
  }
  .split-section--benefits .section-image img {
    height: 100%;
    min-height: 0;
  }
  .split-section .section-image {
    margin: 0;
  }
  .split-section .section-image img {
    aspect-ratio: 4 / 3;
  }
  .split-copy h2:first-child {
    margin-top: 0;
  }
  .split-copy p:last-child,
  .split-copy .benefit-list:last-child {
    margin-bottom: 0;
  }

  .benefit-list {
    background: var(--parchment);
    border: 1px solid var(--border);
    padding: 22px 26px;
    border-radius: 8px;
    margin: 24px 0 10px;
  }
  .benefit-list ul { list-style: none; }
  .benefit-list li {
    position: relative;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    padding: 10px 0 10px 28px;
    border-bottom: 1px solid rgba(32,49,39,.08);
  }
  .benefit-list li:last-child { border-bottom: none; }
  .benefit-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--amber);
    font-weight: 800;
  }

  .research-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 18px 0 26px;
  }
  .research-section {
    margin: -28px 0 38px;
  }
  .research-section h2 {
    max-width: 820px;
  }
  .research-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 18px;
    box-shadow: 0 8px 24px rgba(38,70,92,.05);
  }
  .research-label {
    margin-bottom: 9px;
    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--amber);
    text-transform: uppercase;
  }
  .research-card p {
    margin-bottom: 12px;
    font-family: "DM Sans", sans-serif;
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--mid-gray);
  }
  .research-card a {
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 800;
    color: var(--navy);
    text-decoration: none;
  }
  .research-actions {
    display: grid;
    gap: 7px;
  }
  .research-source-link {
    color: var(--mid-gray) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
  }

  .testimonial-intro {
    background: var(--parchment);
    border-left: 3px solid var(--amber);
    padding: 18px 22px;
    border-radius: 0 8px 8px 0;
    margin: 18px 0 24px;
  }
  .testimonial-intro p {
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
  }
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
  }
  .testimonial-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(38,70,92,.06);
  }
  .testimonial-person {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 13px;
  }
  .testimonial-photo {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    overflow: hidden;
    flex: 0 0 auto;
    border: 2px solid var(--parchment);
    background: linear-gradient(135deg, #D2E0CC, #F2ECDC);
  }
  .testimonial-photo picture,
  .testimonial-photo img {
    width: 100%;
    height: 100%;
  }
  .testimonial-photo img {
    object-fit: cover;
  }
  .side-image picture,
  .side-image img {
    width: 100%;
  }
  .avatar-placeholder {
    width: 100%; height: 100%;
    display: grid; place-items: center;
    font-family: "DM Sans", sans-serif;
    font-weight: 800;
    color: var(--navy);
    font-size: 18px;
  }
  .testimonial-name {
    font-family: "DM Sans", sans-serif;
    font-weight: 800;
    font-size: 14px;
    color: var(--navy);
  }
  .testimonial-location {
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    color: var(--mid-gray);
  }
  .testimonial-meta {
    display: grid;
    gap: 2px;
    margin: 0 0 12px;
    padding: 9px 11px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #EFF6E8;
    color: var(--navy);
    font-family: "DM Sans", sans-serif;
  }
  .testimonial-meta span {
    color: var(--amber);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
  }
  .testimonial-meta strong {
    color: var(--navy-dark);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.2;
  }
  .testimonial-text {
    font-family: "DM Sans", sans-serif;
    font-size: 15.5px;
    font-style: italic;
    color: #2D4336;
    line-height: 1.56;
    margin: 0;
  }
  .short-story {
    display: none;
  }
  .editorial-note {
    margin: 18px 0 0;
    padding: 14px 16px;
    border-left: 3px solid var(--amber);
    background: var(--parchment);
    border-radius: 0 8px 8px 0;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    line-height: 1.55;
    color: var(--mid-gray);
  }
  .editorial-note strong {
    color: var(--navy);
  }

  .sidebar { position: sticky; top: 22px; }
  .side-card {
    background: var(--parchment);
    border: 1px solid var(--border);
    padding: 22px;
    border-radius: 10px;
    margin-bottom: 22px;
  }
  .side-title {
    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 10px;
  }
  .side-headline {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
  }
  .side-text {
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    line-height: 1.58;
    color: var(--mid-gray);
    margin-bottom: 16px;
  }
  .side-image {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 14px;
    border: 1px solid var(--border);
  }
  .side-btn {
    width: 100%;
    padding: 13px 16px;
    text-align: center;
    font-size: 12px;
    box-shadow: none;
  }
  .side-list { list-style: none; }
  .side-list li {
    border-bottom: 1px solid rgba(32,49,39,.09);
  }
  .side-list a {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    color: var(--mid-gray);
    line-height: 1.42;
    text-decoration: none;
    transition: color .16s ease;
  }
  .side-list a:hover {
    color: var(--navy);
  }
  .side-list li:last-child { border-bottom: none; }
  .num {
    font-family: "Playfair Display", serif;
    color: var(--navy);
    font-weight: 800;
    font-size: 20px;
    min-width: 34px;
    line-height: 1;
  }

  .time-sensitive {
    background: #EFF6E8;
    border: 1px solid #D4E3CB;
    border-left: 4px solid var(--amber);
    padding: 18px;
    border-radius: 0 8px 8px 0;
  }
  .mobile-method-slot {
    display: none;
  }
  .ts-label {
    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--amber);
    text-transform: uppercase;
    margin-bottom: 7px;
  }
  .ts-text {
    font-family: "DM Sans", sans-serif;
    font-size: 12.5px;
    color: #435B4D;
    line-height: 1.52;
  }

  .disclaimer {
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    line-height: 1.6;
    color: var(--mid-gray);
    border-top: 1px solid var(--border);
    padding-top: 16px;
    margin: -28px 0 36px;
    max-width: 820px;
  }

  footer {
    background: var(--navy);
    padding: 34px 24px 32px;
  }
  .footer-inner {
    max-width: 1110px;
    margin: 0 auto;
    display: grid;
    gap: 24px;
    text-align: center;
  }
  .footer-pub {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    color: #fff;
    font-size: 22px;
  }
  .footer-legal {
    display: grid;
    gap: 14px;
  }
  .footer-legal p {
    max-width: 980px;
    margin: 0 auto !important;
    font-family: "DM Sans", sans-serif !important;
    font-size: 12px !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, .78) !important;
  }
  .footer-legal strong {
    color: #fff;
  }
  .footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px 28px;
    flex-wrap: wrap;
    padding-top: 0;
  }
  .footer-links a {
    font-family: "DM Sans", sans-serif !important;
    color: rgba(255,255,255,.82) !important;
    font-size: 11px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .footer-copyright {
    margin: 0 !important;
    font-family: "DM Sans", sans-serif !important;
    font-size: 12px !important;
    line-height: 1.4 !important;
    color: rgba(255, 255, 255, .48) !important;
    letter-spacing: .03em;
  }

  @media (max-width: 900px) {
    .layout { grid-template-columns: 1fr; gap: 28px; padding-top: 30px; }
    .sidebar { position: static; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .research-grid { grid-template-columns: 1fr; }
    .footer-inner {
      grid-template-columns: 1fr;
      text-align: center;
    }
    .footer-links {
      flex-direction: row;
      justify-content: center;
      align-items: center;
    }
    .footer-legal p {
      margin-left: auto !important;
      margin-right: auto !important;
    }
    .split-section,
    .split-section--mechanism {
      grid-template-columns: 1fr;
      gap: 14px;
      margin: 20px 0 14px;
    }
    .split-section--mechanism .split-visual,
    .split-section--mechanism .split-copy {
      order: initial;
    }
    .split-section--benefits {
      align-items: center;
    }
    .split-section--benefits .split-visual {
      display: block;
    }
    .split-section .section-image img {
      aspect-ratio: 16 / 9;
      height: auto;
      min-height: 0;
    }
    .signs-split {
      grid-template-columns: 1fr;
      gap: 14px;
      margin: 20px 0 16px;
    }
    .signs-image img {
      height: auto;
      min-height: 0;
      aspect-ratio: 16 / 9;
    }
    .masthead-top { flex-direction: column; text-align: center; }
    .dtc-offer-grid { grid-template-columns: 1fr; gap: 16px; }
    .dtc-offer-card.best { order: -1; }
    .dtc-offer-card.popular { order: 0; }
    .dtc-offer-card:not(.best):not(.popular) { order: 1; }
    .dtc-exit-overlay.offer-exit .dtc-exit-box {
      width: min(100%, 720px);
    }
    .dtc-exit-overlay.offer-exit .dtc-exit-packages {
      grid-template-columns: 1fr;
    }
    .dtc-exit-package {
      min-height: 0;
    }
  }
  @media (max-width: 560px) {
    body { font-size: 17px; line-height: 1.58; }
    .masthead-top { display: none; }
    .masthead-main { padding: 5px 12px 5px; }
    .pub-name { font-size: 18px; line-height: 1; letter-spacing: -0.2px; }
    .pub-tagline { display: none; }
    .nav-bar { display: none; }
    .wrap { padding: 0 14px; }
    .layout {
      display: flex;
      flex-direction: column;
      gap: 0;
      padding: 6px 0 36px;
    }
    .layout main {
      display: block;
      order: 0;
      width: 100%;
    }
    .mobile-method-slot {
      display: block;
      margin: 18px 0 24px;
    }
    .mobile-method-slot .featured-method-card {
      margin: 0;
    }
    .sidebar { order: 90; }
    .layout > .disclaimer {
      order: 100;
      width: 100%;
    }
    .article-section { font-size: 9px; letter-spacing: 2px; margin-bottom: 3px; }
    h1 { font-size: 22px; line-height: 1.04; letter-spacing: -0.2px; margin-bottom: 6px; }
    h2 { font-size: 24px; margin: 22px 0 10px; }
    main p,
    .benefit-list li,
    .checklist-item,
    .testimonial-text,
    .testimonial-intro p,
    .side-text,
    .side-list a,
    .ts-text {
      font-size: 17px;
      line-height: 1.56;
    }
    .method-badge {
      display: flex !important;
      width: 100%;
      justify-content: center;
      align-items: center;
      gap: 8px;
      margin: 10px 0 12px;
      padding: 12px 12px;
      border: 1px solid rgba(255, 255, 255, .34);
      border-radius: 8px;
      background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%) !important;
      color: #fff !important;
      box-shadow: 0 10px 22px rgba(31, 64, 54, .24);
      font-size: 12.5px;
      line-height: 1.15;
      letter-spacing: .07em;
      text-align: center;
    }
    .method-badge span {
      display: grid;
      place-items: center;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .18);
      flex: 0 0 auto;
      font-size: 10px;
    }
    .method-badge strong {
      display: block;
    }
    .subhead { font-size: 14px; line-height: 1.34; margin-bottom: 6px; }
    .hero-media {
      display: block !important;
      width: 100% !important;
      min-height: 190px;
      height: auto;
      margin: 4px 0 2px;
      border-radius: 8px;
      aspect-ratio: 16 / 9;
    }
    .play-btn-circle {
      width: 72px;
      height: 72px;
      background: rgba(8,20,16,0.78);
      border: 4px solid rgba(255,255,255,0.96);
      box-shadow: 0 0 0 6px rgba(255,255,255,0.16), 0 14px 28px rgba(0,0,0,0.32);
    }
    .play-btn-circle svg { width: 32px; height: 32px; }
    .hero-media::after {
      bottom: 6px;
      right: 6px;
      width: 150px;
      height: 42px;
      border-radius: 12px;
    }
    .hero-media .veo-mask {
      bottom: 6px;
      right: 6px;
      width: 150px;
      height: 42px;
    }
    .hero-media .veo-mask svg {
      width: 110px;
      height: 28px;
    }
    .byline { font-size: 11px; gap: 7px; padding: 10px 0; margin: 12px 0 18px; }
    .media-caption { display: none; }
    .hero-cta, .cta-box { padding: 6px 0; }
    .hero-cta-first { margin: 2px 0 4px; padding-top: 0; }
    .hero-cta-first .cta-title { font-size: 20px; margin-bottom: 4px; }
    .hero-cta-first .cta-copy { display: none; }
    .hero-cta-first .microcopy { display: none; }
    .hero-cta-first .cta-btn { width: 100%; padding: 13px 18px; font-size: 13px; }
    main > p + p { margin-top: -6px; }
    .section-image { margin: 18px 0 8px; border-radius: 8px; }
    .symptom-checklist,
    .benefit-list,
    .testimonial-intro,
    .pull-quote {
      margin: 16px 0;
      padding: 18px 16px;
    }
    .cta-box { margin: 20px 0 22px; }
    section { margin: 0; }
    .disclaimer {
      margin-top: 24px;
      font-size: 12px;
      line-height: 1.5;
    }
    footer {
      padding: 24px 18px 22px;
    }
    .footer-inner {
      gap: 16px;
    }
    .footer-legal {
      gap: 9px;
    }
    .footer-legal p,
    .footer-copyright {
      font-size: 10.5px !important;
      line-height: 1.45 !important;
    }
    .footer-links {
      gap: 10px 16px;
    }
    .footer-links a {
      font-size: 10px;
      letter-spacing: .8px;
    }
    #final .cta-box { padding: 24px 18px; }
    .notice { align-items: flex-start; }
    .notice-text { font-size: 12px; }
    .dtc-shell { padding: 6px 8px 28px; }
    .dtc-hero-card { padding: 10px 9px 12px; border-radius: 12px; }
    .dtc-eyebrow { font-size: 9px; letter-spacing: .08em; margin-bottom: 6px; }
    .dtc-headline { font-size: 20px; line-height: 1.08; margin-bottom: 7px; }
    .dtc-subheadline { display: none; }
    .dtc-sound-note { font-size: 11px; margin-bottom: 8px; }
    .dtc-video-shell { max-width: calc(100vw - 18px); padding: 6px; border-radius: 12px; }
    .dtc-video-frame { aspect-ratio: 405 / 620; border-radius: 9px; }
    .dtc-video-logo-mask {
      top: 82px;
      right: 62px;
      width: 112px;
      height: 38px;
      border-radius: 10px;
    }
    .dtc-video-logo-mask svg {
      width: 78px;
      height: 22px;
    }
    .dtc-form-update {
      margin-top: 10px;
      padding: 10px 11px;
    }
    .dtc-form-update span {
      font-size: 9px;
      margin-bottom: 4px;
    }
    .dtc-form-update strong {
      font-size: 13px;
      line-height: 1.3;
    }
    .dtc-form-update-offer {
      margin-bottom: 14px;
    }
    .dtc-offer-section {
      width: 100vw;
      padding: 34px 12px 42px;
      border-radius: 0;
    }
    .dtc-method-callout {
      margin-bottom: 14px;
      padding: 12px 10px;
    }
    .dtc-method-callout span {
      font-size: 10px;
      padding: 7px 10px;
    }
    .dtc-method-callout strong {
      font-size: 16px;
    }
    .dtc-offer-card { padding: 92px 18px 24px; min-height: auto; }
    .dtc-offer-card.best { padding-top: 92px; }
    .dtc-offer-badge { font-size: 22px; padding: 17px 10px; }
    .dtc-offer-supply { margin-left: -18px; margin-right: -18px; padding-left: 18px; padding-right: 18px; }
    .dtc-offer-product { height: 170px; margin-bottom: 24px; }
    .dtc-offer-plan { font-size: 24px; }
    .dtc-offer-price strong { font-size: 54px; }
    .dtc-offer-price span { font-size: 14px; }
    .dtc-offer-payments { max-width: 100%; }
    .dtc-offer-total { font-size: 19px; }
    .dtc-buygoods-box {
      grid-template-columns: 1fr;
      gap: 12px;
      padding: 22px 18px;
      text-align: center;
    }
    .dtc-buygoods-box p { text-align: center; }
    .dtc-exit-overlay { padding: 12px; }
    .dtc-exit-box {
      width: 100%;
      max-height: calc(100vh - 24px);
      overflow-y: auto;
      padding: 20px 14px 16px;
      border-radius: 16px;
    }
    .dtc-exit-close { top: 7px; right: 10px; font-size: 22px; }
    .dtc-exit-box h2 { font-size: 22px; margin-bottom: 8px; }
    .dtc-exit-box p { font-size: 13px; line-height: 1.45; margin-bottom: 12px; }
    .dtc-exit-offer { padding: 14px 12px; margin-bottom: 12px; border-radius: 12px; }
    .dtc-exit-offer strong { font-size: 14px; margin-bottom: 6px; }
    .dtc-exit-offer span { font-size: 12.5px; line-height: 1.42; }
    .dtc-primary-cta { font-size: 18px; padding: 14px 14px; min-width: 0; }
    .dtc-exit-packages { gap: 8px; }
    .dtc-exit-overlay.offer-exit .dtc-exit-box {
      padding: 26px 12px 14px;
      border-radius: 12px;
    }
    .dtc-exit-overlay.offer-exit .dtc-exit-box h2 {
      font-size: 24px;
    }
    .dtc-exit-overlay.offer-exit .dtc-exit-box h2::before {
      margin-bottom: 10px;
      font-size: 10px;
    }
    .dtc-exit-package {
      padding: 18px 14px 14px;
    }
    .dtc-exit-package img { width: 86px; height: 72px; }
    .dtc-exit-package strong { font-size: 22px; }
    .dtc-exit-package b { font-size: 20px; }
  }
  @media (max-width: 430px) {
    .masthead-main { padding: 5px 12px; }
    .pub-name { font-size: 18px; }
    h1 { font-size: 22px; }
    .subhead { font-size: 14px; }
    .dtc-headline { font-size: 19px; }
    .dtc-subheadline { font-size: 15.5px; }
  }
  @media (max-width: 390px) {
    .masthead-main { padding: 5px 10px; }
    .pub-name { font-size: 17px; }
    h1 { font-size: 21px; }
    .subhead { font-size: 13.5px; }
    .hero-cta-first .cta-title { font-size: 19px; }
    .dtc-headline { font-size: 18px; }
    .dtc-subheadline { font-size: 15px; }
    .dtc-video-frame { aspect-ratio: 405 / 560; }
  }

  @media (max-width: 900px) {
    footer {
      padding: 24px 18px 22px !important;
    }
    footer .footer-inner {
      display: grid !important;
      grid-template-columns: 1fr !important;
      gap: 16px !important;
      text-align: center !important;
    }
    footer .footer-legal {
      gap: 9px !important;
    }
    footer .footer-legal p,
    footer .footer-copyright {
      max-width: 360px !important;
      margin: 0 auto !important;
      font-family: "DM Sans", sans-serif !important;
      font-size: 10.5px !important;
      line-height: 1.45 !important;
      color: rgba(255, 255, 255, .78) !important;
    }
    footer .footer-legal strong {
      color: #fff !important;
    }
    footer .footer-links {
      display: flex !important;
      flex-direction: row !important;
      justify-content: center !important;
      align-items: center !important;
      gap: 10px 16px !important;
      padding-top: 0 !important;
    }
    footer .footer-links a {
      color: rgba(255, 255, 255, .84) !important;
      font-size: 10px !important;
      letter-spacing: .8px !important;
    }
  }
