/* =========================================================================
   Peptide Wellness Network — shared styles
   Premium, depth-driven UI · Light + Dark mode · WCAG AA focused
   Brand: mint green + sky blue (from logo). Bright hues are DECORATIVE only;
   all body text sits on solid, high-contrast surfaces at a generous size.
   ========================================================================= */

/* ----------  Design tokens  ---------- */
:root {
  /* Brand — decorative hues */
  --green: #16b364;
  --green-bright: #34d17f;
  --green-deep: #0f7a45;
  --blue: #1f8fe0;
  --blue-bright: #2a9df4;
  --blue-deep: #1667a8;

  --grad-brand: linear-gradient(135deg, var(--green-bright) 0%, var(--blue-bright) 100%);
  --grad-brand-soft: linear-gradient(135deg, rgba(52,209,127,.16), rgba(42,157,244,.16));
  /* Gradient used for TEXT — darker so it passes WCAG large-text contrast on light bg */
  --grad-brand-text: linear-gradient(135deg, #0f7a45 0%, #1667a8 100%);
  --focus: #12609c;   /* focus ring — ≥3:1 on light surfaces */

  /* Light surfaces + ink (AA text) */
  --bg: #eef4f1;
  --bg-2: #e3ede9;
  --surface: #ffffff;
  --surface-2: #f4f8f6;
  --surface-3: #eaf1ee;
  --text: #0f2019;
  --text-muted: #48584f;
  --text-soft: #5c6b63;
  --link: #0d6f9e;
  --border: rgba(15,32,25,.10);
  --border-strong: rgba(15,32,25,.16);

  --brand-ink: var(--green-deep);   /* brand-colored TEXT that still passes AA */
  --brand-ink-blue: var(--blue-deep);

  /* Elevation / depth */
  --sh-1: 0 1px 2px rgba(6,24,17,.06), 0 2px 6px rgba(6,24,17,.06);
  --sh-2: 0 6px 18px rgba(6,24,17,.10), 0 2px 6px rgba(6,24,17,.06);
  --sh-3: 0 18px 40px rgba(6,24,17,.14), 0 6px 14px rgba(6,24,17,.08);
  --sh-brand: 0 12px 28px rgba(22,140,110,.30);

  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 10px;

  --maxw: 1180px;
  --nav-h: 74px;

  --font: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Dark surfaces + ink */
[data-theme="dark"] {
  --bg: #08110e;
  --bg-2: #0a1712;
  --surface: #10201a;
  --surface-2: #152a22;
  --surface-3: #1b3329;
  --text: #eaf4ef;
  --text-muted: #b3c8bf;
  --text-soft: #93a89f;
  --link: #6bc3f4;
  --border: rgba(255,255,255,.10);
  --border-strong: rgba(255,255,255,.16);

  --brand-ink: #4fdd93;      /* brighter for contrast on dark */
  --brand-ink-blue: #64b8f6;

  --grad-brand-soft: linear-gradient(135deg, rgba(52,209,127,.14), rgba(42,157,244,.14));
  /* On dark, bright gradient text has ample contrast (~9:1) */
  --grad-brand-text: linear-gradient(135deg, #34d17f 0%, #58b6f6 100%);
  --focus: #6bc3f4;

  --sh-1: 0 1px 2px rgba(0,0,0,.5), 0 2px 8px rgba(0,0,0,.4);
  --sh-2: 0 8px 22px rgba(0,0,0,.5);
  --sh-3: 0 20px 46px rgba(0,0,0,.6);
  --sh-brand: 0 14px 30px rgba(22,140,110,.35);
}

/* ----------  Reset / base  ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: 18px;              /* generous base for an older audience */
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--link); text-underline-offset: 3px; }
h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.02em; color: var(--text); }
h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 800; }
h3 { font-size: 1.3rem; font-weight: 700; }
p  { margin: 0 0 1rem; }
ul { margin: 0; }

/* ----------  Accessibility helpers  ---------- */
.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--surface); color: var(--text);
  padding: 12px 18px; border-radius: 10px; z-index: 1000;
  box-shadow: var(--sh-2); font-weight: 700; transition: top .18s ease;
}
.skip-link:focus { top: 12px; }
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 6px;
}
.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;
}

/* ----------  Layout  ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.section { padding: clamp(48px, 8vw, 96px) 0; position: relative; }
.section--tint { background: var(--bg-2); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand-ink);
  background: var(--grad-brand-soft);
  border: 1px solid var(--border);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--grad-brand); }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head.center { margin-inline: auto; text-align: center; }
.lead { font-size: 1.18rem; color: var(--text-muted); }

/* ----------  Decorative background orbs (behind content, aria-hidden)  ---------- */
.orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; z-index: 0; pointer-events: none; }
.orb--green { background: radial-gradient(circle, rgba(52,209,127,.7), transparent 70%); }
.orb--blue  { background: radial-gradient(circle, rgba(42,157,244,.7), transparent 70%); }
[data-theme="dark"] .orb { opacity: .28; }

/* ----------  Header / nav  ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; gap: 18px; min-height: var(--nav-h); }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); flex: 0 0 auto; }
.brand__mark {
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff; padding: 3px;
  box-shadow: var(--sh-1), inset 0 0 0 1px var(--border);
  object-fit: contain;
}
.brand__name { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name b { font-size: 1.02rem; font-weight: 800; letter-spacing: -.01em; }
.brand__name span { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-soft); font-weight: 700; }

.nav__menu { display: flex; flex: 1; align-items: center; gap: 10px; }
.nav__primary, .nav__secondary { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__primary { margin-inline: auto; }
.nav a.navlink {
  display: inline-block; text-decoration: none; color: var(--text);
  font-weight: 600; font-size: 1rem; padding: 9px 14px; border-radius: 10px;
  transition: background .16s ease, color .16s ease;
  white-space: nowrap;
}
.nav a.navlink:hover { background: var(--surface-2); }
.nav a.navlink[aria-current="page"] {
  color: var(--brand-ink); background: var(--grad-brand-soft);
  box-shadow: inset 0 0 0 1px var(--border);
}
.nav__secondary { flex: 0 0 auto; gap: 8px; }
.nav__secondary .navlink.icon-link { display: inline-flex; align-items: center; gap: 7px; }

/* theme toggle */
.theme-toggle {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px; border-radius: 12px; cursor: pointer;
  background: var(--surface-2); color: var(--text);
  border: 1px solid var(--border);
  transition: transform .15s ease, background .16s ease;
}
.theme-toggle:hover { background: var(--surface-3); transform: translateY(-1px); }
.theme-toggle svg { width: 22px; height: 22px; }
.theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

/* mobile menu button (labeled, large — not a bare hamburger) */
.nav__toggle {
  display: none; align-items: center; gap: 8px;
  background: var(--surface-2); border: 1px solid var(--border-strong);
  color: var(--text); font-weight: 700; font-size: 1rem;
  padding: 10px 16px; border-radius: 12px; cursor: pointer;
}
.nav__toggle svg { width: 20px; height: 20px; }

/* ----------  Buttons  ---------- */
.btn {
  --_bg: var(--surface); --_fg: var(--text);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: inherit; font-weight: 700; font-size: 1.02rem; line-height: 1;
  padding: 15px 26px; border-radius: 12px; border: 1px solid transparent;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary {
  color: #06231a; background: var(--grad-brand);
  box-shadow: var(--sh-brand), inset 0 1px 0 rgba(255,255,255,.4);
}
.btn--primary:hover { box-shadow: 0 18px 36px rgba(22,140,110,.4), inset 0 1px 0 rgba(255,255,255,.4); }
.btn--ghost { background: var(--surface); color: var(--text); border-color: var(--border-strong); box-shadow: var(--sh-1); }
.btn--ghost:hover { background: var(--surface-2); box-shadow: var(--sh-2); }
.btn--lg { padding: 18px 32px; font-size: 1.1rem; }
.btn--block { width: 100%; }

/* ----------  Hero  ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(56px, 9vw, 110px) 0 clamp(48px, 7vw, 90px); }
.hero .orb--green { width: 460px; height: 460px; top: -140px; left: -120px; }
.hero .orb--blue  { width: 520px; height: 520px; bottom: -200px; right: -160px; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 64px); align-items: center; position: relative; z-index: 1; }
.hero h1 .grad { background: var(--grad-brand-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.hero__proof { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 34px; }
.hero__proof .stat b { display: block; font-size: 1.9rem; font-weight: 800; background: var(--grad-brand-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__proof .stat span { font-size: .9rem; color: var(--text-muted); font-weight: 600; }

.hero__media { position: relative; }
.hero__media img {
  width: 100%; border-radius: var(--radius-lg); object-fit: cover;
  aspect-ratio: 4/3.4; box-shadow: var(--sh-3);
  border: 1px solid var(--border);
}
/* floating earnings chip = depth */
.float-card {
  position: absolute; background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; box-shadow: var(--sh-3); padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
}
.float-card .fc-ico { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--grad-brand); color: #06231a; }
.float-card .fc-ico svg { width: 22px; height: 22px; }
.float-card b { display: block; font-size: 1.15rem; }
.float-card span { font-size: .82rem; color: var(--text-muted); }
.float-card--tl { top: 22px; left: -22px; }
.float-card--br { bottom: 26px; right: -18px; }

/* ----------  Feature / value grid  ---------- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px; box-shadow: var(--sh-1);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  z-index: 1;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sh-3); border-color: var(--border-strong); }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--text-muted); margin-bottom: 0; }

/* 3D icon tile */
.tile {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  margin-bottom: 18px; color: #06231a; background: var(--grad-brand);
  box-shadow: var(--sh-brand), inset 0 1px 0 rgba(255,255,255,.45);
}
.tile svg { width: 28px; height: 28px; }
.tile--blue { background: linear-gradient(135deg, #58b6f6, #1f8fe0); box-shadow: 0 12px 26px rgba(31,143,224,.32), inset 0 1px 0 rgba(255,255,255,.45); }

/* ----------  Audience / who-we-support cards  ---------- */
.aud-card { overflow: hidden; padding: 0; }
.aud-card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.aud-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.aud-card:hover .aud-card__media img { transform: scale(1.06); }
.aud-card__badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: blur(6px); border: 1px solid var(--border);
  border-radius: 999px; padding: 7px 14px; font-weight: 800; font-size: .84rem;
  display: inline-flex; align-items: center; gap: 8px; color: var(--text);
}
.aud-card__badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--grad-brand); }
.aud-card__body { padding: 24px 26px 28px; }
.aud-card__body p { color: var(--text-muted); margin-bottom: 0; }

/* ----------  Split feature rows (How it works)  ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,60px); align-items: center; }
.split + .split { margin-top: clamp(40px, 6vw, 80px); }
.split--rev .split__media { order: 2; }
.split__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--sh-3); border: 1px solid var(--border); aspect-ratio: 4/3; object-fit: cover; }
.split__badge { display:inline-flex; align-items:center; gap:8px; font-weight:800; color: var(--brand-ink); margin-bottom: 12px; }

/* mock UI window (used as "screenshot" placeholders) */
.mock {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--sh-3);
  border: 1px solid var(--border-strong); background: var(--surface);
}
.mock__bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: var(--surface-2); border-bottom: 1px solid var(--border); }
.mock__bar .dot { width: 11px; height: 11px; border-radius: 50%; }
.mock__bar .dot:nth-child(1){ background:#ff5f57;} .mock__bar .dot:nth-child(2){ background:#febc2e;} .mock__bar .dot:nth-child(3){ background:#28c840;}
.mock__bar .mock__url { margin-left: 10px; font-size: .82rem; color: var(--text-soft); background: var(--surface); border:1px solid var(--border); padding:4px 12px; border-radius: 8px; }
.mock__body { padding: 22px; }

/* ----------  Portal dashboard mockup  ---------- */
.portal { display: grid; grid-template-columns: 220px 1fr; min-height: 460px; }
.portal__side { background: var(--surface-2); border-right: 1px solid var(--border); padding: 20px 16px; }
.portal__side .p-logo { display:flex; align-items:center; gap:10px; font-weight:800; margin-bottom: 22px; }
.portal__side .p-logo img { width: 32px; height:32px; border-radius:50%; background:#fff; padding:2px; }
.portal__nav { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:4px; }
.portal__nav li { padding:10px 12px; border-radius:10px; color: var(--text-muted); font-weight:600; font-size:.95rem; display:flex; gap:10px; align-items:center; }
.portal__nav li.active { background: var(--grad-brand-soft); color: var(--brand-ink); }
.portal__main { padding: 24px; }
.kpi-row { display:grid; grid-template-columns: repeat(3,1fr); gap:16px; margin-bottom: 20px; }
.kpi { background: var(--surface-2); border:1px solid var(--border); border-radius: 14px; padding: 18px; }
.kpi span { font-size:.82rem; color: var(--text-muted); font-weight:600; }
.kpi b { display:block; font-size: 1.7rem; font-weight:800; margin-top:4px; }
.kpi .up { color: var(--green-deep); font-size:.82rem; font-weight:700; }
[data-theme="dark"] .kpi .up { color: var(--green-bright); }
.p-table { width:100%; border-collapse: collapse; font-size: .92rem; }
.p-table th { text-align:left; color: var(--text-soft); font-weight:700; font-size:.78rem; text-transform:uppercase; letter-spacing:.06em; padding:10px 8px; border-bottom:1px solid var(--border); }
.p-table td { padding: 12px 8px; border-bottom:1px solid var(--border); color: var(--text); }
.pill { display:inline-block; padding:3px 10px; border-radius:999px; font-size:.76rem; font-weight:700; }
.pill--ok { background: rgba(22,179,100,.16); color: var(--green-deep); }
.pill--pend { background: rgba(31,143,224,.16); color: var(--blue-deep); }
[data-theme="dark"] .pill--ok { color: var(--green-bright); }
[data-theme="dark"] .pill--pend { color: #7cc0f7; }

/* ----------  Steps / timeline (What to expect)  ---------- */
.steps { display: grid; gap: 20px; counter-reset: step; }
.step {
  display: grid; grid-template-columns: 64px 1fr; gap: 22px; align-items: start;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 28px; box-shadow: var(--sh-1); position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.step__num {
  counter-increment: step; width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center; font-weight: 800; font-size: 1.4rem; color:#06231a;
  background: var(--grad-brand); box-shadow: var(--sh-brand), inset 0 1px 0 rgba(255,255,255,.45);
}
.step__num::before { content: counter(step); }
.step h3 { margin-bottom: 6px; }
.step p { color: var(--text-muted); margin: 0; }
.step .tag { display:inline-flex; align-items:center; gap:6px; font-size:.78rem; font-weight:800; color: var(--brand-ink); text-transform:uppercase; letter-spacing:.08em; margin-bottom:8px; }

/* ----------  Pricing  ---------- */
.pricing { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: stretch; }
.price-card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px 28px; box-shadow: var(--sh-2); position: relative; z-index:1;
  transition: transform .2s ease, box-shadow .2s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--sh-3); }
.price-card--featured { border: 2px solid transparent; background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    var(--grad-brand) border-box; box-shadow: var(--sh-3); }
.price-card__ribbon {
  position:absolute; top:-14px; left:50%; transform:translateX(-50%);
  background: var(--grad-brand); color:#06231a; font-weight:800; font-size:.78rem;
  letter-spacing:.08em; text-transform:uppercase; padding:6px 16px; border-radius:999px;
  box-shadow: var(--sh-brand);
}
.tier-name { font-size:.9rem; font-weight:800; letter-spacing:.12em; text-transform:uppercase; color: var(--brand-ink); }
.tier-icon { width:52px; height:52px; border-radius:14px; display:grid; place-items:center; margin-bottom:16px; box-shadow: var(--sh-1); }
.tier-bronze { background: linear-gradient(135deg,#e8a06b,#c9772f); color:#3a1e07; }
.tier-silver { background: linear-gradient(135deg,#cfd8dd,#8fa1ab); color:#20292e; }
.tier-gold   { background: linear-gradient(135deg,#f4d873,#d4a01e); color:#3a2c05; }
.price { display:flex; align-items:baseline; gap:6px; margin: 14px 0 4px; }
.price b { font-size: 2.6rem; font-weight:800; }
.price span { color: var(--text-muted); font-weight:600; }
.price-sub { color: var(--text-muted); font-size:.95rem; margin-bottom: 22px; }
.feature-list { list-style:none; padding:0; margin:0 0 26px; display:flex; flex-direction:column; gap:12px; }
.feature-list li { display:flex; gap:12px; align-items:flex-start; color: var(--text); }
.feature-list li svg { flex:0 0 auto; width:22px; height:22px; color: var(--green-deep); margin-top:2px; }
[data-theme="dark"] .feature-list li svg { color: var(--green-bright); }
.feature-list li.muted { color: var(--text-soft); }
.feature-list li.muted svg { color: var(--text-soft); }
.price-card .btn { margin-top: auto; }

/* ----------  Forms (account / contact)  ---------- */
.form-wrap { display:grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px,5vw,56px); align-items:start; }
.panel { background: var(--surface); border:1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(26px,4vw,40px); box-shadow: var(--sh-2); }
.tabs { display:flex; gap:6px; background: var(--surface-2); padding:6px; border-radius: 14px; margin-bottom: 26px; }
.tab-btn { flex:1; padding:12px; border-radius:10px; border:none; background:transparent; font-family:inherit; font-weight:700; font-size:1rem; color: var(--text-muted); cursor:pointer; }
.tab-btn[aria-selected="true"] { background: var(--surface); color: var(--text); box-shadow: var(--sh-1); }
.field { margin-bottom: 18px; }
.field label { display:block; font-weight:700; font-size:.95rem; margin-bottom:7px; }
.field input, .field select, .field textarea {
  width:100%; font-family:inherit; font-size:1rem; color: var(--text);
  background: var(--surface-2); border:1px solid var(--border-strong); border-radius:12px;
  padding:14px 16px; transition: border-color .15s ease, box-shadow .15s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-soft); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue-bright); box-shadow: 0 0 0 3px rgba(42,157,244,.25); outline: none; }
.field .hint { font-size:.82rem; color: var(--text-soft); margin-top:6px; }
.form-note { font-size:.85rem; color: var(--text-soft); text-align:center; margin-top:18px; }
.tabpanel[hidden] { display:none; }

/* info list */
.info-list { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:18px; }
.info-list li { display:flex; gap:16px; align-items:flex-start; }
.info-list .tile { margin:0; width:48px; height:48px; border-radius:13px; }
.info-list .tile svg { width:24px; height:24px; }
.info-list b { display:block; }
.info-list p { margin:0; color: var(--text-muted); }

/* ----------  CTA band  ---------- */
.cta-band { position: relative; overflow:hidden; border-radius: var(--radius-lg); padding: clamp(40px,6vw,72px); text-align:center;
  background: linear-gradient(135deg, #0f7a45, #1667a8); color:#fff; box-shadow: var(--sh-3); }
.cta-band h2, .cta-band p { color:#fff; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 640px; margin-inline:auto; }
.cta-band .btn--primary { background:#fff; color:#0f3d2a; box-shadow: 0 10px 24px rgba(0,0,0,.25); }
.cta-band .btn--ghost { background: rgba(255,255,255,.12); color:#fff; border-color: rgba(255,255,255,.4); }
.cta-band .orb { opacity:.35; }

/* ----------  Footer  ---------- */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 56px 0 30px; margin-top: 20px; }
.footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
.footer-grid h4 { font-size:.82rem; letter-spacing:.1em; text-transform:uppercase; color: var(--text-soft); }
.footer-links { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px; }
.footer-links a { color: var(--text-muted); text-decoration:none; }
.footer-links a:hover { color: var(--text); }
.footer-brand p { color: var(--text-muted); font-size:.95rem; max-width: 320px; }
.footer-bottom { display:flex; flex-wrap:wrap; gap:12px; justify-content:space-between; align-items:center;
  margin-top: 40px; padding-top: 22px; border-top:1px solid var(--border); color: var(--text-soft); font-size:.85rem; }
.footer-disclaimer { font-size:.8rem; color: var(--text-soft); margin-top: 14px; max-width: 780px; }

/* ----------  Reveal on scroll  ----------
   Only hide when JS is active (html.js). Without JS everything stays visible. */
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
html.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html.js .reveal, html.js .reveal.is-visible { opacity:1; transform:none; } }

/* ----------  Responsive  ---------- */
/* Compact the always-visible desktop nav so all 8 items fit on laptops */
@media (max-width: 1360px) {
  .brand__name span { display: none; }
  .nav { gap: 10px; }
  .nav__menu { gap: 6px; }
  .nav__primary { gap: 2px; }
  .nav__secondary { gap: 3px; }
  .nav a.navlink { padding: 8px 9px; font-size: .92rem; }
}
@media (max-width: 1180px) {
  .nav a.navlink { padding: 7px 7px; font-size: .88rem; }
  .brand__name b { font-size: .92rem; }
}
/* Below this the full nav no longer fits — switch to a labeled Menu button */
@media (max-width: 1120px) {
  :root { --nav-h: 66px; }
  .nav__toggle { display: inline-flex; }
  .nav__primary, .nav__secondary { display: none; }
  .nav__menu {
    display: none; z-index: 120;
    position: absolute; left: 0; right: 0; top: var(--nav-h);
    background: var(--surface); border-bottom: 1px solid var(--border);
    box-shadow: var(--sh-3); padding: 14px 22px 22px; flex-direction: column; align-items: stretch; gap: 6px;
  }
  .nav__menu.open { display: flex; }
  .nav__menu .nav__primary, .nav__menu .nav__secondary { display: flex; flex-direction: column; align-items: stretch; width: 100%; margin: 0; gap: 4px; }
  .nav__menu .nav__secondary { margin-top: 8px; padding-top: 12px; border-top: 1px solid var(--border); }
  .nav a.navlink { padding: 13px 14px; font-size: 1.05rem; border-radius: 10px; }
  .nav a.navlink[aria-current="page"] { box-shadow: none; }
  .brand__name span { display: inline; }
}
@media (max-width: 900px) {
  .hero__grid, .split, .split--rev .split__media, .form-wrap { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .grid--3, .grid--4, .pricing, .kpi-row { grid-template-columns: 1fr 1fr; }
  .hero__media { margin-top: 10px; }
  .float-card--tl { left: 8px; } .float-card--br { right: 8px; }
}
@media (max-width: 620px) {
  body { font-size: 17px; }
  .grid--3, .grid--4, .grid--2, .pricing, .footer-grid, .kpi-row { grid-template-columns: 1fr; }
  .portal { grid-template-columns: 1fr; } .portal__side { display:none; }
  .hero__proof { gap: 18px; }
  .step { grid-template-columns: 1fr; } .step__num { margin-bottom: 4px; }
  .float-card { display: none; }
}
