/* ==========================================================================
   JellyBlue — jellybluue.com
   Concept: PREMIUM MEN'S WELLNESS EDITORIAL. Deep navy foundation used for
   feature bands, bright azure as the single working accent, and generous
   white/light sections carrying most of the reading. The reference leans navy
   + gold; gold is deliberately absent here, and the structure, cards, buttons
   and rhythm are built from scratch.
   Includes the mandatory fixed bottom order bar.
   ========================================================================== */

:root {
  --navy: #0C1B33;
  --navy-2: #14294C;
  --navy-3: #1D3A66;
  --navy-wash: #EAF0F9;

  --azure: #1E6FE0;
  --azure-2: #3E8BF5;
  --azure-3: #14539E;
  --azure-wash: #E9F1FE;
  --azure-wash-2: #CFE1FC;

  --teal: #12A0A8;

  --ink: #0C1B33;
  --text: #16233A;
  --body: #4A5771;
  --muted: #7B879C;
  --line: #E2E8F1;
  --line-2: #EFF3F8;

  --paper: #FAFCFE;
  --paper-2: #F2F6FB;
  --white: #FFFFFF;

  --on-dark: #E8EEF8;
  --on-dark-soft: #9EAEC8;
  --line-dark: rgba(232, 238, 248, .16);

  --f-head: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --pad: 114px;
  --bar: 76px;
  --bar-clear: 96px;
  --r-s: 10px;
  --r: 18px;
  --r-l: 28px;
  --sh: 0 22px 50px -28px rgba(12, 27, 51, .4);
  --sh-2: 0 8px 24px -14px rgba(12, 27, 51, .3);
  --sh-azure: 0 14px 30px -14px rgba(30, 111, 224, .55);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 130px; }

body {
  font-family: var(--f-body);
  font-size: 18px;
  line-height: 1.78;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: var(--bar-clear);
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--f-head);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -.032em;
  color: var(--ink);
  margin: 0 0 .5em;
  overflow-wrap: break-word;
}
h1 { font-size: clamp(36px, 5.2vw, 63px); letter-spacing: -.042em; }
h2 { font-size: clamp(28px, 3.5vw, 43px); letter-spacing: -.035em; }
h3 { font-size: clamp(20px, 1.9vw, 26px); }
h4 { font-size: 19px; }

p, li, dd, dt, td, th, figcaption, a, span, button { overflow-wrap: break-word; }
p { margin: 0 0 1.3em; }
p:last-child { margin-bottom: 0; }

a { color: var(--azure-3); text-underline-offset: 4px; }
a:hover { color: var(--azure); }
strong { font-weight: 650; color: var(--text); }

::selection { background: var(--azure); color: #fff; }
:focus-visible { outline: 3px solid var(--azure); outline-offset: 3px; border-radius: 5px; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 12px; z-index: 10000;
  background: var(--navy); color: #fff; padding: 14px 22px;
  border-radius: var(--r-s); font-weight: 700; font-size: 17px;
}
.skip-link:focus { left: 16px; color: #fff; }

.seo-link {
  color: inherit; text-decoration: underline;
  text-decoration-thickness: 1px; text-underline-offset: 4px;
  text-decoration-color: rgba(30, 111, 224, .55);
}
.seo-link:hover { color: inherit; text-decoration-color: currentColor; }
.on-navy .seo-link, .on-deep .seo-link { text-decoration-color: rgba(62, 139, 245, .95); }

/* ------------------------------------------------------------------ Layout */

.wrap { width: 100%; max-width: 1250px; margin: 0 auto; padding-inline: 32px; }
.wrap-mid { max-width: 1030px; }
.wrap-narrow { max-width: 790px; }

.sec { padding-block: var(--pad); position: relative; }
.sec-paper { background: var(--paper); }
.sec-paper-2 { background: var(--paper-2); }
.sec-wash { background: var(--azure-wash); }
.sec-tight { padding-block: 84px; }

.on-navy { background: var(--navy); color: var(--on-dark); position: relative; overflow: hidden; }
.on-navy h1, .on-navy h2, .on-navy h3, .on-navy h4 { color: #fff; }
.on-navy p { color: var(--on-dark-soft); }
.on-navy strong { color: #fff; }
.on-navy > * { position: relative; z-index: 1; }

.on-deep { background: var(--navy-2); color: var(--on-dark); position: relative; overflow: hidden; }
.on-deep h2, .on-deep h3, .on-deep h4 { color: #fff; }
.on-deep p { color: var(--on-dark-soft); }
.on-deep strong { color: #fff; }
.on-deep > * { position: relative; z-index: 1; }

.glow {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 84% 16%, rgba(30, 111, 224, .38) 0, transparent 46%),
    radial-gradient(circle at 6% 88%, rgba(18, 160, 168, .16) 0, transparent 42%);
}
.glow-soft {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 92% 6%, rgba(30, 111, 224, .06) 0, transparent 42%);
}

/* Signature device: azure bar + tracked label */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-head); font-size: 12.5px; font-weight: 800;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--azure-3); margin-bottom: 22px;
}
.eyebrow::before {
  content: ""; width: 30px; height: 3px; border-radius: 2px;
  background: var(--azure); flex: none;
}
.on-navy .eyebrow, .on-deep .eyebrow, .closer .eyebrow { color: var(--azure-2); }
.on-navy .eyebrow::before, .on-deep .eyebrow::before, .closer .eyebrow::before { background: var(--azure-2); }
.sec-head.mid .eyebrow { margin-inline: auto; }

.sec-head { max-width: 810px; margin-bottom: 56px; }
.sec-head.mid { margin-inline: auto; text-align: center; }
.sec-head p { font-size: 19px; color: var(--body); }
.on-navy .sec-head p, .on-deep .sec-head p { color: var(--on-dark-soft); }

/* ----------------------------------------------------------------- Buttons */

.btn-jb {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--f-head); font-size: 17px; font-weight: 800;
  padding: 18px 34px; min-height: 58px;
  border: 2px solid transparent; border-radius: var(--r-s);
  cursor: pointer; text-decoration: none;
  transition: transform .16s ease, box-shadow .18s ease, background .18s ease,
              border-color .18s ease, color .18s ease;
}
.btn-jb:hover { transform: translateY(-2px); }
.btn-jb:active { transform: translateY(0); }

.btn-azure { background: var(--azure); color: #fff; box-shadow: var(--sh-azure); }
.btn-azure:hover { background: var(--azure-2); color: #fff; box-shadow: 0 18px 38px -14px rgba(30, 111, 224, .7); }

.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-2); color: #fff; }

.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--azure-wash); color: var(--azure-3); }

.btn-line { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-line:hover { color: var(--azure-3); border-color: var(--azure); background: var(--azure-wash); }

.on-navy .btn-line, .on-deep .btn-line, .closer .btn-line,
.aside-card.dark .btn-line, .plan.lead .btn-line {
  color: #fff; border-color: rgba(232, 238, 248, .3);
}
.on-navy .btn-line:hover, .on-deep .btn-line:hover, .closer .btn-line:hover,
.aside-card.dark .btn-line:hover, .plan.lead .btn-line:hover {
  color: var(--navy); border-color: #fff; background: #fff;
}

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.arw { transition: transform .18s ease; }
.btn-jb:hover .arw { transform: translateX(4px); }

/* ------------------------------------------------------------- Top bar */

.topbar {
  background: var(--navy); color: var(--on-dark);
  font-size: 13.5px; position: fixed; top: 0; left: 0; right: 0; z-index: 101;
}
.topbar-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 4px 34px; min-height: 38px; padding-block: 7px;
}
.topbar span {
  font-family: var(--f-head); font-weight: 600; letter-spacing: .13em;
  text-transform: uppercase; color: var(--on-dark);
  display: inline-flex; align-items: center; gap: 10px;
}
.topbar span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--azure-2); flex: none; }

/* ------------------------------------------------------------------ Header */

.site-header {
  position: fixed; top: 38px; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: saturate(1.3) blur(12px);
  -webkit-backdrop-filter: saturate(1.3) blur(12px);
  border-bottom: 1px solid var(--line-2);
  transition: border-color .28s ease, box-shadow .28s ease;
}
.site-header.is-stuck {
  background: rgba(255, 255, 255, .99);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 18px -14px rgba(12, 27, 51, .42);
}

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 76px; transition: min-height .25s ease; }
.site-header.is-stuck .header-inner { min-height: 64px; }

.brand {
  font-family: var(--f-head); font-weight: 800; font-size: 24px;
  letter-spacing: -.045em; color: var(--navy); text-decoration: none;
  display: inline-flex; align-items: center; gap: 11px; flex: none;
}
.brand:hover { color: var(--navy); }
.brand-mark {
  width: 36px; height: 36px; border-radius: 9px; flex: none;
  background: linear-gradient(150deg, var(--navy-3), var(--azure));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; letter-spacing: -.03em;
}
.brand i { font-style: normal; color: var(--azure); }

.nav-main { display: flex; align-items: center; gap: 24px; }
.nav-list { display: flex; align-items: center; gap: 20px; list-style: none; margin: 0; padding: 0; }
.nav-list a {
  font-family: var(--f-head); font-size: 15px; font-weight: 700;
  color: var(--body); text-decoration: none; padding: 9px 0;
  position: relative; white-space: nowrap;
}
.nav-list a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 3px;
  border-radius: 2px; background: var(--azure);
  transform: scaleX(0); transform-origin: left; transition: transform .22s ease;
}
.nav-list a:hover, .nav-list a[aria-current="page"] { color: var(--navy); }
.nav-list a:hover::after, .nav-list a[aria-current="page"]::after { transform: scaleX(1); }

.nav-cta { flex: none; }
.nav-main > .nav-cta { display: none; }
.header-inner > .nav-cta .btn-jb { padding: 13px 22px; min-height: 48px; font-size: 15px; }

.nav-toggle {
  display: none; width: 48px; height: 48px; flex: none;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--line);
  border-radius: var(--r-s); cursor: pointer; padding: 0;
}
.nav-toggle span { display: block; width: 21px; height: 2px; background: var(--navy); position: relative; transition: background .2s ease; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 21px; height: 2px;
  background: var(--navy); transition: transform .24s ease, top .2s ease;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* ==================================================== FIXED BOTTOM ORDER BAR */

.order-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--navy);
  border-top: 1px solid rgba(30, 111, 224, .55);
  box-shadow: 0 -6px 26px -14px rgba(12, 27, 51, .85);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.order-bar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 22px;
  min-height: var(--bar); padding-block: 12px;
}
.ob-brand {
  font-family: var(--f-head); font-weight: 800; font-size: 19px;
  color: #fff; letter-spacing: -.035em; flex: none;
}
.ob-mid {
  font-size: 15px; color: var(--on-dark-soft); text-align: center;
  display: flex; align-items: center; gap: 14px; flex-wrap: nowrap;
  justify-content: center; white-space: nowrap; overflow: hidden;
}
.ob-mid strong { color: #fff; font-weight: 600; }
.ob-price {
  font-family: var(--f-head); font-weight: 800; font-size: 16px;
  color: var(--azure-2); white-space: nowrap;
}
.ob-cta {
  flex: none; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--azure); color: #fff; text-decoration: none;
  font-family: var(--f-head); font-weight: 800; font-size: 16px;
  min-height: 48px; padding: 12px 28px; border-radius: var(--r-s);
  transition: background .18s ease, transform .16s ease;
  white-space: nowrap;
}
.ob-cta:hover { background: var(--azure-2); color: #fff; transform: translateY(-1px); }
.ob-full { display: inline; }
.ob-short { display: none; }

/* -------------------------------------------------------------------- Hero */

.hero {
  padding-top: 164px; padding-bottom: 94px; position: relative; overflow: hidden;
  background: linear-gradient(168deg, var(--navy) 0%, var(--navy-2) 62%, var(--navy-3) 100%);
  color: var(--on-dark);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 78% 36%, rgba(30, 111, 224, .4) 0, transparent 50%),
    radial-gradient(circle at 4% 12%, rgba(18, 160, 168, .16) 0, transparent 40%);
}
.hero > .wrap { position: relative; z-index: 2; }
.hero-split { display: grid; grid-template-columns: 1.06fr .94fr; gap: 60px; align-items: center; }
.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; color: var(--azure-2); }
.hero-lede { font-size: 20px; line-height: 1.7; color: var(--on-dark-soft); max-width: 34em; }

.hero-stage { position: relative; display: flex; align-items: center; justify-content: center; padding: 20px; }
.hero-stage::before {
  content: ""; position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 111, 224, .38) 0%, rgba(30, 111, 224, .1) 48%, transparent 70%);
}
.hero-stage img {
  position: relative; z-index: 1; width: 100%; max-width: 400px; object-fit: contain;
  border-radius: var(--r-l);
  filter: drop-shadow(0 24px 44px rgba(0, 0, 0, .45));
}
.hero-float {
  position: absolute; z-index: 2; background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18); backdrop-filter: blur(6px);
  box-shadow: var(--sh); border-radius: 100px; padding: 10px 20px;
  font-family: var(--f-head); font-weight: 700; font-size: 14px; color: #fff;
  white-space: nowrap;
}
.hero-float.a { top: 3%; left: -1%; }
.hero-float.b { bottom: 5%; right: -1%; }
.hero-float em { font-style: normal; color: var(--azure-2); }

.hero-points { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 12px; }
.hero-points li {
  position: relative; padding-left: 34px; font-size: 18px; color: var(--on-dark); font-weight: 500;
}
.hero-points li::before {
  content: ""; position: absolute; left: 2px; top: 12px; width: 10px; height: 5px;
  border-left: 2px solid var(--azure-2); border-bottom: 2px solid var(--azure-2);
  transform: rotate(-45deg);
}

.hero-offer {
  margin-top: 28px; padding: 20px 24px;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--r);
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 24px;
}
.hero-offer .from {
  font-family: var(--f-head); font-weight: 800; font-size: 27px;
  letter-spacing: -.04em; color: #fff;
}
.hero-offer .from small { font-size: 15px; font-weight: 600; color: var(--azure-2); letter-spacing: 0; }
.hero-offer .gtee { font-size: 16px; color: var(--on-dark-soft); }

.hero-trust { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-chip {
  font-family: var(--f-head); font-size: 13px; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: #fff;
  border: 1px solid rgba(255, 255, 255, .2); background: rgba(255, 255, 255, .06);
  padding: 8px 16px; border-radius: 100px;
}
.hero-seal { width: 78px; height: auto; flex: none; border-radius: 50%; }
.hero-fine { font-size: 15px; color: var(--on-dark-soft); margin-top: 16px; }

/* Trust strip */
.strip { padding-block: 30px; background: var(--navy-2); }
.strip-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px 34px;
}
.strip-item {
  display: flex; align-items: center; gap: 14px;
  color: var(--on-dark); font-family: var(--f-head); font-weight: 700; font-size: 15.5px;
}
.strip-item::before {
  content: ""; width: 10px; height: 10px; border-radius: 50%; flex: none;
  background: var(--azure-2); box-shadow: 0 0 0 4px rgba(62, 139, 245, .2);
}
.strip-item small { display: block; font-family: var(--f-body); font-weight: 400; font-size: 14px; color: var(--on-dark-soft); }

/* --------------------------------------------------------- Quick facts */

.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.fact { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 28px; box-shadow: var(--sh-2); }
.fact dt {
  font-family: var(--f-head); font-size: 11.5px; font-weight: 800; letter-spacing: .2em;
  text-transform: uppercase; color: var(--azure-3); margin-bottom: 10px;
}
.fact dd { margin: 0; font-family: var(--f-head); font-weight: 800; font-size: 21px; letter-spacing: -.035em; color: var(--navy); }
.fact dd small { display: block; font-family: var(--f-body); font-weight: 400; font-size: 15px; color: var(--body); letter-spacing: 0; margin-top: 6px; line-height: 1.55; }

/* ------------------------------------------------------ Editorial layouts */

.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 62px; align-items: center; }
.split.wide-l { grid-template-columns: 1.16fr .84fr; }
.split.wide-r { grid-template-columns: .84fr 1.16fr; }
.split > * { min-width: 0; }
.split-media img { width: 100%; object-fit: contain; }

.stage {
  background: var(--azure-wash); border-radius: var(--r-l);
  padding: 40px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.stage::before {
  content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%;
  right: -50px; top: -50px; background: radial-gradient(circle, rgba(30, 111, 224, .2), transparent 68%);
}
.stage img { position: relative; z-index: 1; max-width: 420px; margin-inline: auto; object-fit: contain; border-radius: var(--r); }
.stage.dark { background: linear-gradient(155deg, var(--navy), var(--navy-3)); }
.stage.dark::before { background: radial-gradient(circle, rgba(30, 111, 224, .38), transparent 68%); }

.photo-frame img { width: 100%; border-radius: var(--r-l); object-fit: cover; }

/* Numbered pathway */
.path { display: grid; gap: 18px; }
.path-item {
  display: grid; grid-template-columns: 60px 1fr; gap: 24px; align-items: start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 28px 30px;
  box-shadow: var(--sh-2);
}
.path-n {
  width: 46px; height: 46px; border-radius: 12px; flex: none;
  background: var(--azure-wash); color: var(--azure-3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-head); font-weight: 800; font-size: 16px;
}
.path-item h3 { font-size: 21px; margin-bottom: 8px; }
.path-item p { font-size: 17px; color: var(--body); margin: 0; }
.path-item p + p { margin-top: .85em; }
.on-navy .path-item, .on-deep .path-item { background: rgba(255, 255, 255, .05); border-color: var(--line-dark); box-shadow: none; }
.on-navy .path-n, .on-deep .path-n { background: rgba(30, 111, 224, .3); color: #fff; }
.on-navy .path-item h3, .on-deep .path-item h3 { color: #fff; }
.on-navy .path-item p, .on-deep .path-item p { color: var(--on-dark-soft); }

.feature {
  background: linear-gradient(150deg, var(--navy), var(--navy-3)); border-radius: var(--r-l);
  padding: 54px; color: var(--on-dark);
  display: grid; grid-template-columns: 1.12fr .88fr; gap: 46px; align-items: center;
  position: relative; overflow: hidden;
}
.feature > * { position: relative; z-index: 1; }
.feature h3 { color: #fff; font-size: clamp(24px, 2.8vw, 34px); letter-spacing: -.034em; }
.feature p { color: var(--on-dark-soft); }
.feature strong { color: #fff; }

.rows { display: grid; }
.row-b { display: grid; grid-template-columns: 62px 1fr 1fr; gap: 30px; padding: 34px 0; border-bottom: 1px solid var(--line); align-items: start; }
.row-n { font-family: var(--f-head); font-weight: 800; font-size: 15px; letter-spacing: .16em; color: var(--azure-3); padding-top: 5px; }
.row-b h3 { grid-column: 2; font-size: 21px; margin-bottom: 0; padding-right: 18px; }
.row-b > p { grid-column: 3; }
.row-b p { font-size: 17px; color: var(--body); margin: 0; }
.row-b p + p { margin-top: .85em; }

/* Ingredient cards (no supplied ingredient photography — CSS monogram tiles) */
.ing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ing-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-l);
  padding: 32px; display: flex; flex-direction: column; box-shadow: var(--sh-2);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.ing-card:hover { border-color: var(--azure); box-shadow: var(--sh); transform: translateY(-3px); }
.ing-mark {
  width: 56px; height: 56px; border-radius: 15px; flex: none; margin-bottom: 20px;
  background: linear-gradient(150deg, var(--navy-3), var(--azure));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--f-head); font-weight: 800; font-size: 19px; letter-spacing: -.03em;
}
.ing-idx { font-family: var(--f-head); font-weight: 800; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--azure-3); display: block; margin-bottom: 8px; }
.ing-card h3 { font-size: 20px; margin-bottom: 4px; }
.ing-card .latin { font-size: 15px; color: var(--muted); font-style: italic; display: block; margin-bottom: 12px; }
.ing-card p { font-size: 17px; color: var(--body); flex: 1; }
.card-go { font-family: var(--f-head); font-weight: 700; font-size: 16px; color: var(--azure-3); text-decoration: none; margin-top: 18px; display: inline-flex; align-items: center; gap: 8px; min-height: 44px; }
.card-go:hover { color: var(--azure); }

/* Ingredient rows */
.ing-strip { display: grid; gap: 20px; }
.ing-row {
  display: grid; grid-template-columns: 90px 1fr; gap: 30px;
  align-items: start; padding: 30px; border-radius: var(--r-l);
  border: 1px solid var(--line); background: #fff; box-shadow: var(--sh-2);
}
.ing-row .ing-mark { margin-bottom: 0; width: 72px; height: 72px; font-size: 22px; }
.ing-role {
  font-family: var(--f-head); font-size: 12px; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: var(--azure-3); display: block; margin-bottom: 8px;
}
.ing-body h3 { font-size: 23px; margin-bottom: 4px; }
.ing-body .latin { font-size: 15.5px; color: var(--muted); font-style: italic; display: block; margin-bottom: 12px; }
.ing-body p { font-size: 17px; color: var(--body); }
.ing-body a {
  font-family: var(--f-head); font-weight: 700; font-size: 16px; color: var(--azure-3);
  text-decoration: none; display: inline-flex; align-items: center; gap: 9px; min-height: 44px;
  margin-top: 6px;
}
.ing-body a:hover { color: var(--azure); }

/* Notices */
.notice {
  border-left: 4px solid var(--azure); background: var(--paper);
  padding: 26px 30px; margin: 30px 0; border-radius: 0 var(--r) var(--r) 0;
}
.notice h3 { font-size: 19px; margin-bottom: 10px; }
.notice p { font-size: 17px; color: var(--body); }
.notice p:last-child { margin-bottom: 0; }
.notice ul { margin: 0 0 1em; padding-left: 22px; }
.notice li { font-size: 17px; color: var(--body); margin-bottom: .45em; }
.on-navy .notice, .on-deep .notice {
  background: rgba(255, 255, 255, .06); border-left-color: var(--azure-2);
}
.on-navy .notice h3, .on-deep .notice h3 { color: #fff; }
.on-navy .notice p, .on-deep .notice p,
.on-navy .notice li, .on-deep .notice li { color: var(--on-dark-soft); }

.safety {
  background: #FDF1EC; border-left: 4px solid #C4522A;
  padding: 26px 30px; margin: 30px 0; border-radius: 0 var(--r) var(--r) 0;
}
.safety h3 { font-size: 19px; margin-bottom: 10px; color: #7E3416; }
.safety p { font-size: 17px; color: #6B4634; }
.safety p:last-child { margin-bottom: 0; }
.safety ul { margin: 0 0 1em; padding-left: 22px; }
.safety li { font-size: 17px; color: #6B4634; margin-bottom: .45em; }

/* Trust cells */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.trust-cell {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-l); padding: 34px;
  box-shadow: var(--sh-2);
  transition: border-color .2s ease, transform .2s ease;
}
.trust-cell:hover { border-color: var(--azure); transform: translateY(-3px); }
.trust-cell .t-n {
  font-family: var(--f-head); font-weight: 800; font-size: 13px; letter-spacing: .2em;
  color: var(--azure-3); display: block; margin-bottom: 14px;
}
.trust-cell h3 { font-size: 20px; margin-bottom: 10px; }
.trust-cell p { font-size: 17px; color: var(--body); }
.trust-cell.hot { background: linear-gradient(150deg, var(--navy), var(--navy-3)); border-color: transparent; color: var(--on-dark); }
.trust-cell.hot h3 { color: #fff; }
.trust-cell.hot p { color: var(--on-dark-soft); }
.trust-cell.hot strong { color: #fff; }
.trust-cell.hot .t-n { color: var(--azure-2); }

/* Portrait strip */
.portraits { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.portraits figure { margin: 0; }
.portraits img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--r); border: 1px solid var(--line); }
.photo-cap { font-size: 15px; color: var(--muted); margin-top: 14px; }
.on-navy .photo-cap, .on-deep .photo-cap { color: var(--on-dark-soft); }

/* --------------------------------------------------------------- Bonuses */

.bonus-list { display: grid; gap: 16px; }
.bonus {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 28px 30px; display: grid; grid-template-columns: 62px 1fr auto; gap: 26px;
  align-items: center; box-shadow: var(--sh-2);
  transition: border-color .2s ease, transform .2s ease;
}
.bonus:hover { border-color: var(--azure); transform: translateY(-2px); }
.bonus-n {
  width: 52px; height: 52px; border-radius: 14px; flex: none;
  background: var(--azure-wash); color: var(--azure-3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-head); font-weight: 800; font-size: 17px;
}
.bonus h3 { font-size: 20px; margin: 0 0 8px; }
.bonus p { font-size: 16.5px; color: var(--body); margin: 0; }
.bonus-val {
  font-family: var(--f-head); font-weight: 800; font-size: 15px; color: var(--azure-3);
  white-space: nowrap; text-align: right;
}

/* ------------------------------------------------------------ Pricing */

.plans { display: grid; grid-template-columns: 1fr 1.12fr 1fr; gap: 24px; align-items: end; }
.plan {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-l);
  padding: 38px 32px; display: flex; flex-direction: column; position: relative;
  box-shadow: var(--sh-2);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--sh); border-color: var(--azure); }
.plan-flag {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  background: var(--azure); color: #fff; font-family: var(--f-head);
  font-weight: 800; font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  padding: 9px 20px; border-radius: 100px; white-space: nowrap;
}
.plan-flag.alt { background: var(--teal); }
.plan-tag { font-family: var(--f-head); font-weight: 800; font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.plan-media { height: 200px; display: flex; align-items: center; justify-content: center; margin: 18px 0; }
.plan-media img { max-height: 200px; width: auto; object-fit: contain; border-radius: var(--r-s); }
.plan-name { font-family: var(--f-head); font-weight: 800; font-size: 25px; letter-spacing: -.035em; margin: 0 0 4px; color: var(--navy); }
.plan-supply { font-size: 17px; color: var(--muted); }
.plan-fig { display: flex; align-items: baseline; gap: 8px; margin-top: 18px; }
.plan-fig .amt { font-family: var(--f-head); font-weight: 800; font-size: 43px; letter-spacing: -.05em; line-height: 1; color: var(--azure-3); }
.plan-fig .per { font-size: 17px; color: var(--muted); }
.plan-total { font-size: 17px; color: var(--body); margin-top: 10px; }
.plan-total strong { color: var(--navy); }
.plan-list { list-style: none; padding: 20px 0 0; margin: 20px 0 0; border-top: 1px solid var(--line); display: grid; gap: 9px; flex: 1; }
.plan-list li { position: relative; padding-left: 26px; font-size: 17px; color: var(--body); }
.plan-list li::before {
  content: ""; position: absolute; left: 3px; top: 9px; width: 8px; height: 4px;
  border-left: 2px solid var(--azure); border-bottom: 2px solid var(--azure); transform: rotate(-45deg);
}
.plan-list li.off { color: var(--muted); }
.plan-list li.off::before { border-color: var(--line); }
.plan .btn-jb { width: 100%; margin-top: 22px; }

.plan.lead { background: linear-gradient(160deg, var(--navy), var(--navy-3)); border-color: transparent; color: var(--on-dark); padding-top: 50px; box-shadow: 0 36px 76px -44px rgba(12, 27, 51, .8); }
.plan.lead .plan-name { color: #fff; }
.plan.lead .plan-fig .amt { color: var(--azure-2); }
.plan.lead .plan-supply, .plan.lead .plan-fig .per, .plan.lead .plan-tag { color: var(--on-dark-soft); }
.plan.lead .plan-total { color: var(--on-dark-soft); }
.plan.lead .plan-total strong { color: #fff; }
.plan.lead .plan-list { border-top-color: var(--line-dark); }
.plan.lead .plan-list li { color: var(--on-dark-soft); }
.plan.lead .plan-list li::before { border-color: var(--azure-2); }

.cost-sheet { border-top: 3px solid var(--azure); }
.cost-row { display: grid; grid-template-columns: 1.2fr 1fr 1fr auto; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--line); align-items: center; }
.cost-row.head { font-family: var(--f-head); font-weight: 800; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); padding: 14px 0; }
.cost-k { font-family: var(--f-head); font-weight: 800; font-size: 19px; }
.cost-k small { display: block; font-family: var(--f-body); font-weight: 400; font-size: 17px; color: var(--muted); }
.cost-v { font-size: 18px; }
.on-navy .cost-row, .on-deep .cost-row { border-bottom-color: var(--line-dark); }
.on-navy .cost-k, .on-deep .cost-k { color: #fff; }
.on-navy .cost-v, .on-deep .cost-v { color: var(--on-dark-soft); }
.on-navy .cost-v strong, .on-deep .cost-v strong { color: #fff; }

/* --------------------------------------------------------------- Guarantee */

.promise { display: grid; grid-template-columns: 220px 1fr; gap: 56px; align-items: center; }
.promise-seal img { width: 100%; max-width: 200px; margin-inline: auto; object-fit: contain; border-radius: 50%; }

.ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.ticks li { position: relative; padding-left: 30px; font-size: 17px; color: var(--body); }
.ticks li::before {
  content: ""; position: absolute; left: 3px; top: 9px; width: 9px; height: 5px;
  border-left: 2px solid var(--azure); border-bottom: 2px solid var(--azure); transform: rotate(-45deg);
}
.on-navy .ticks li, .on-deep .ticks li { color: var(--on-dark-soft); }

/* --------------------------------------------------------------------- FAQ */

.qa { display: grid; gap: 12px; }
.qa-item {
  border: 1px solid var(--line); border-radius: var(--r); background: #fff; overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.qa-item:has(.faq-q[aria-expanded="true"]) { border-color: var(--azure); box-shadow: var(--sh); }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 22px;
  padding: 24px 30px; text-align: left;
  font-family: var(--f-head); font-weight: 700; font-size: 19px;
  color: var(--navy); line-height: 1.42; transition: color .18s ease;
}
.faq-q:hover { color: var(--azure-3); }
.faq-ico {
  flex: none; width: 32px; height: 32px; border-radius: 10px; position: relative;
  background: var(--azure-wash); transition: background .24s ease;
}
.faq-q[aria-expanded="true"] .faq-ico { background: var(--azure); }
.faq-ico::before, .faq-ico::after {
  content: ""; position: absolute; background: var(--azure-3); border-radius: 2px;
  transition: transform .26s ease, opacity .26s ease, background .24s ease;
}
.faq-ico::before { top: 15px; left: 8px; width: 16px; height: 2px; }
.faq-ico::after { left: 15px; top: 8px; width: 2px; height: 16px; }
.faq-q[aria-expanded="true"] .faq-ico::before,
.faq-q[aria-expanded="true"] .faq-ico::after { background: #fff; }
.faq-q[aria-expanded="true"] .faq-ico::after { transform: rotate(90deg); opacity: 0; }
.faq-a { overflow: hidden; height: 0; transition: height .3s ease; }
.faq-a-inner { padding: 0 64px 24px 30px; }
.faq-a-inner p { font-size: 17px; color: var(--body); }
.on-navy .qa-item, .on-deep .qa-item { background: rgba(255, 255, 255, .05); border-color: var(--line-dark); }
.on-navy .faq-q, .on-deep .faq-q { color: #fff; }
.on-navy .faq-q:hover, .on-deep .faq-q:hover { color: var(--azure-2); }
.on-navy .faq-ico, .on-deep .faq-ico { background: rgba(30, 111, 224, .3); }
.on-navy .faq-ico::before, .on-navy .faq-ico::after,
.on-deep .faq-ico::before, .on-deep .faq-ico::after { background: #fff; }
.on-navy .faq-a-inner p, .on-deep .faq-a-inner p { color: var(--on-dark-soft); }

/* --------------------------------------------------------------- Final CTA */

.closer { background: linear-gradient(150deg, var(--navy), var(--navy-3)); color: var(--on-dark); position: relative; overflow: hidden; }
.closer::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 76% 42%, rgba(30, 111, 224, .4) 0, transparent 50%),
    radial-gradient(circle at 12% 82%, rgba(18, 160, 168, .18) 0, transparent 44%);
}
.closer > * { position: relative; z-index: 1; }
.closer-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 54px; align-items: center; }
.closer h2 { color: #fff; }
.closer p { color: var(--on-dark-soft); }
.closer .trust-line { font-family: var(--f-head); font-weight: 700; font-size: 18px; color: var(--azure-2); margin-top: 22px; }
.closer-media { position: relative; display: flex; align-items: center; justify-content: center; }
.closer-media::before {
  content: ""; position: absolute; width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 111, 224, .3), transparent 68%);
}
.closer-media img { position: relative; width: 100%; max-width: 400px; object-fit: contain; border-radius: var(--r-l); }

/* --------------------------------------------- Page head / crumbs / prose */

.crumbs { padding-top: 144px; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; font-size: 16px; color: var(--muted); }
.crumbs li { display: flex; align-items: center; gap: 10px; }
.crumbs li + li::before { content: "/"; color: var(--line); }
.crumbs a { color: var(--body); text-decoration: none; min-height: 44px; display: inline-flex; align-items: center; }
.crumbs a:hover { color: var(--azure-3); }
.crumbs [aria-current] { color: var(--navy); }

.lede { font-size: 20px; color: var(--body); max-width: 42em; margin-top: 12px; }

.prose { max-width: 770px; }
.prose h2 { margin-top: 54px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 36px; font-size: 22px; }
.prose ul, .prose ol { padding-left: 24px; margin: 0 0 1.3em; }
.prose li { margin-bottom: .65em; }
.prose > p, .prose li { color: var(--body); }

.spec { border-top: 3px solid var(--azure); margin: 34px 0; }
.spec-row { display: grid; grid-template-columns: 220px 1fr; gap: 28px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.spec-k { font-family: var(--f-head); font-weight: 800; font-size: 12.5px; letter-spacing: .15em; text-transform: uppercase; color: var(--azure-3); }
.spec-v { font-size: 17px; color: var(--body); }

.doc { display: grid; grid-template-columns: 1fr 320px; gap: 64px; align-items: start; }
.aside { position: sticky; top: 128px; display: grid; gap: 18px; }
.aside-card { border: 1px solid var(--line); border-radius: var(--r); padding: 28px; background: #fff; box-shadow: var(--sh-2); }
.aside-card h3 { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.aside-links { list-style: none; margin: 0; padding: 0; display: grid; }
.aside-links a { font-size: 17px; color: var(--body); text-decoration: none; display: flex; align-items: center; min-height: 44px; border-bottom: 1px solid var(--line-2); overflow-wrap: anywhere; }
.aside-links li:last-child a { border-bottom: 0; }
.aside-links a:hover { color: var(--azure-3); }
.aside-card.dark { background: linear-gradient(150deg, var(--navy), var(--navy-3)); border-color: transparent; color: var(--on-dark); }
.aside-card.dark h3 { color: var(--azure-2); }
.aside-card.dark p { font-size: 17px; color: var(--on-dark-soft); }
.aside-card.dark strong { color: #fff; }
.aside-card.dark .btn-jb { width: 100%; margin-top: 16px; }

.meta-line { display: flex; flex-wrap: wrap; gap: 10px 22px; align-items: center; font-size: 16px; color: var(--muted); margin-bottom: 16px; }
.meta-line .m-cat { font-family: var(--f-head); font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--azure-3); }

.rel-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.rel { border: 1px solid var(--line); border-radius: var(--r); padding: 30px; text-decoration: none; color: inherit; display: block; background: #fff; box-shadow: var(--sh-2); transition: border-color .2s ease, transform .2s ease; }
.rel:hover { border-color: var(--azure); transform: translateY(-3px); color: inherit; }
.rel .rel-k { font-family: var(--f-head); font-size: 12px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--azure-3); display: block; margin-bottom: 12px; }
.rel h3 { font-size: 20px; margin-bottom: 9px; }
.rel p { font-size: 17px; color: var(--body); margin: 0; }

.lead-post { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; background: linear-gradient(150deg, var(--navy), var(--navy-3)); border-radius: var(--r-l); padding: 50px; text-decoration: none; color: var(--on-dark); position: relative; overflow: hidden; }
.lead-post::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 34%, rgba(30, 111, 224, .34) 0, transparent 50%);
}
.lead-post > * { position: relative; z-index: 1; }
.lead-post:hover { color: var(--on-dark); }
.lead-post:hover h3 { color: var(--azure-2); }
.lead-post h3 { color: #fff; font-size: clamp(23px, 2.6vw, 32px); letter-spacing: -.034em; transition: color .2s ease; }
.lead-post p { color: var(--on-dark-soft); font-size: 18px; }
.lead-art img { width: 100%; border-radius: var(--r); object-fit: contain; }

.post-list { display: grid; border-top: 3px solid var(--azure); }
.post-row { display: grid; grid-template-columns: 200px 1fr 150px; gap: 32px; padding: 30px 0; border-bottom: 1px solid var(--line); text-decoration: none; color: inherit; align-items: start; transition: background .2s ease; }
.post-row:hover { color: inherit; background: var(--paper); }
.post-row:hover h3 { color: var(--azure-3); }
.post-cat { font-family: var(--f-head); font-weight: 800; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--azure-3); }
.post-row h3 { font-size: 20px; margin-bottom: 8px; transition: color .2s ease; }
.post-row p { font-size: 17px; color: var(--body); margin: 0; }
.post-read { font-size: 16px; color: var(--muted); text-align: right; }

/* ------------------------------------------------------------------ Footer */

.site-footer { background: var(--navy); color: var(--on-dark-soft); padding-block: 72px 40px; font-size: 17px; }
.footer-top { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 42px; padding-bottom: 42px; }
.footer-brand .brand { color: #fff; margin-bottom: 16px; }
.footer-brand .brand i { color: var(--azure-2); }
.footer-brand p { font-size: 17px; color: var(--on-dark-soft); max-width: 32em; }
.footer-col h3 { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col a { color: var(--on-dark-soft); text-decoration: none; font-size: 17px; display: flex; align-items: center; min-height: 40px; overflow-wrap: anywhere; }
.footer-col a:hover { color: #fff; }
.footer-legal { border-top: 1px solid var(--line-dark); padding-top: 28px; }
.footer-legal p { font-size: 16px; color: #93A3BC; max-width: 80em; }
.footer-legal .fda { padding: 20px 24px; background: rgba(255, 255, 255, .05); border-radius: var(--r-s); margin-bottom: 20px; font-size: 17px; }
.footer-meta { display: flex; flex-wrap: wrap; gap: 12px 26px; justify-content: space-between; margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line-dark); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* -------------------------------------------------------------- Responsive */

@media (max-width: 1080px) {
  :root { --pad: 86px; }
  .hero { padding-top: 148px; padding-bottom: 74px; }
  .hero-split { grid-template-columns: 1fr; gap: 44px; }
  .hero-stage { order: -1; }
  .hero-stage img { max-width: 320px; }
  .hero-stage::before { width: 300px; height: 300px; }
  .hero-float.a { left: 0; }
  .hero-float.b { right: 0; }
  .strip-row { grid-template-columns: repeat(2, 1fr); }
  .split, .split.wide-l, .split.wide-r { grid-template-columns: minmax(0, 1fr); gap: 44px; }
  .doc { grid-template-columns: minmax(0, 1fr); gap: 46px; }
  .aside { position: static; grid-template-columns: repeat(2, 1fr); }
  .feature { grid-template-columns: 1fr; padding: 38px; gap: 30px; }
  .row-b { grid-template-columns: 56px 1fr; gap: 10px 24px; }
  .row-b > p { grid-column: 2; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .ing-cards, .trust-grid, .rel-grid { grid-template-columns: repeat(2, 1fr); }
  .portraits { grid-template-columns: repeat(3, 1fr); }
  .plans { grid-template-columns: 1fr; max-width: 500px; margin-inline: auto; align-items: stretch; }
  .plan.lead { padding-top: 50px; }
  .closer-grid { grid-template-columns: 1fr; gap: 38px; }
  .closer-media { order: -1; }
  .closer-media img { max-width: 320px; }
  .promise { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .promise-seal img { max-width: 170px; }
  .lead-post { grid-template-columns: 1fr; gap: 30px; padding: 36px; }
  .lead-art { order: -1; }
  .stage { padding: 30px; }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-main {
    position: fixed; inset: 114px 0 auto; z-index: 99;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--sh);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 18px 32px 30px; max-height: calc(100vh - 190px); overflow-y: auto; display: none;
  }
  .nav-main.is-open { display: flex; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list a { padding: 15px 0; font-size: 18px; min-height: 54px; display: flex; align-items: center; border-bottom: 1px solid var(--line-2); }
  .nav-list a::after { display: none; }
  .header-inner > .nav-cta { display: none; }
  .nav-main > .nav-cta { display: block; margin-top: 18px; }
  .nav-main > .nav-cta .btn-jb { width: 100%; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .cost-row { grid-template-columns: 1fr 1fr; gap: 12px 22px; }
  .cost-row.head { display: none; }
  .post-row { grid-template-columns: 1fr; gap: 11px; }
  .post-read { text-align: left; }
  .bonus { grid-template-columns: 52px 1fr; gap: 8px 20px; }
  .bonus-val { grid-column: 2; text-align: left; }
  .ob-mid { display: none; }
  .ob-full { display: none; }
  .ob-short { display: inline; }
}

@media (max-width: 680px) {
  :root { --pad: 62px; --bar: 70px; --bar-clear: 88px; }
  body { font-size: 17px; }
  .wrap { padding-inline: 20px; }
  .topbar { font-size: 12px; }
  .topbar-inner { gap: 2px 18px; }
  .hero { padding-top: 140px; padding-bottom: 56px; }
  .hero-lede { font-size: 18px; }
  .hero-float { font-size: 13px; padding: 9px 16px; }
  .hero-offer { padding: 18px 20px; }
  .btn-jb { white-space: normal; padding-inline: 22px; }
  .strip-row { grid-template-columns: 1fr; }
  .plan, .trust-cell, .rel, .aside-card, .fact, .ing-card { padding: 26px; min-width: 0; }
  .feature, .lead-post, .stage, .bonus { padding: 26px 22px; }
  .ing-row { grid-template-columns: 1fr; gap: 18px; padding: 24px; }
  .sec-head { margin-bottom: 36px; }
  .sec-head p { font-size: 18px; }
  .facts, .ing-cards, .trust-grid, .rel-grid { grid-template-columns: 1fr; }
  .portraits { grid-template-columns: repeat(2, 1fr); }
  .aside { grid-template-columns: 1fr; }
  .row-b, .path-item { grid-template-columns: 1fr; gap: 12px; }
  .row-b h3, .row-b > p { grid-column: 1; }
  .spec-row, .cost-row { grid-template-columns: 1fr; gap: 5px; }
  .faq-q { font-size: 18px; padding: 20px 22px; gap: 14px; }
  .faq-a-inner { padding: 0 22px 22px; }
  .btn-row .btn-jb { width: 100%; }
  .plan-media { height: 170px; }
  .plan-media img { max-height: 170px; }
  .bonus { grid-template-columns: 1fr; gap: 14px; }
  .bonus-val { grid-column: 1; }
  .footer-top { grid-template-columns: 1fr; }
  .crumbs { padding-top: 128px; }
  .order-bar-inner { gap: 12px; padding-block: 10px; }
  .ob-brand { font-size: 16px; display: flex; flex-direction: column; line-height: 1.25; }
  .ob-brand .ob-price { font-size: 14px; }
  .ob-cta { font-size: 15px; padding: 12px 20px; min-height: 48px; }
}

@media (max-width: 380px) {
  .ob-cta { padding-inline: 16px; font-size: 14px; }
  .ob-brand { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .topbar, .nav-toggle, .closer, .btn-jb, .aside, .order-bar { display: none !important; }
  body { font-size: 12pt; color: #000; padding-bottom: 0; }
  .sec { padding-block: 18pt; }
}
