/* ============================================================
   Arctic Meds — marketing site styles
   Identity layer built on the Lymlight Design System tokens.
   Ink mood (deep navy + teal) with an arctic/glacial extension.
   ============================================================ */

/* ---- Arctic extension vars (harmonious additions to tokens) ---- */
:root {
  --am-ice:        #eef4f7;   /* glacial wash */
  --am-ice-2:      #e2edf1;
  --am-frost:      #f6f9fb;
  --am-glow:       #d9ebf0;   /* aurora glow tint */
  --am-line:       rgba(10,37,64,.08);
  --am-maxw:       1180px;
  --am-nav-h:      72px;
  --am-ease:       cubic-bezier(.22,.61,.36,1);
}

/* dark mood arctic overrides */
.dark {
  --am-ice:   #11202e;
  --am-ice-2: #0e1a26;
  --am-frost: #0e131a;
  --am-glow:  #143042;
  --am-line:  rgba(255,255,255,.07);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){ html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--ll-font-sans);
  color: var(--ll-ink);
  background: var(--ll-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01","cv11";
  line-height: 1.5;
}

.wrap { max-width: var(--am-maxw); margin: 0 auto; padding: 0 28px; }

/* type helpers */
.display { font-family: var(--ll-font-serif); font-weight: 400; letter-spacing: -.02em; line-height: 1.03; }
.serif   { font-family: var(--ll-font-serif); }
.mono    { font-family: var(--ll-font-mono); font-variant-numeric: tabular-nums; }
.num     { font-variant-numeric: tabular-nums; }
.eyebrow {
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ll-accent); font-weight: 600;
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px; background: var(--ll-accent); opacity: .6;
}
.eyebrow.center::before { display: none; }

a { color: inherit; text-decoration: none; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--ll-font-sans); font-size: 15px; font-weight: 550;
  letter-spacing: -.01em; line-height: 1; cursor: pointer;
  padding: 14px 22px; border-radius: 999px; border: 1px solid transparent;
  transition: transform .18s var(--am-ease), background .18s, border-color .18s, box-shadow .18s, color .18s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary {
  background: var(--ll-brand); color: var(--ll-brand-ink);
  box-shadow: 0 1px 2px rgba(10,37,64,.18), 0 8px 24px -10px rgba(10,37,64,.5);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 2px 4px rgba(10,37,64,.2), 0 16px 34px -12px rgba(10,37,64,.55); }
.btn-accent { background: var(--ll-accent); color: #fff; box-shadow: 0 8px 24px -10px var(--ll-accent); }
.btn-accent:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn-ghost { background: transparent; color: var(--ll-ink); border-color: var(--ll-border-2); }
.btn-ghost:hover { background: var(--ll-surface-2); border-color: var(--ll-muted-2); }
.btn-light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.22); backdrop-filter: blur(8px); }
.btn-light:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-sm { padding: 10px 16px; font-size: 13.5px; }

/* ---- pills / chips ---- */
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 550; letter-spacing: -.005em;
  padding: 6px 13px; border-radius: 999px;
  background: var(--ll-surface); border: 1px solid var(--ll-border);
  color: var(--ll-ink-2); box-shadow: var(--ll-sh-1);
}
.chip svg { width: 14px; height: 14px; color: var(--ll-accent); }
.chip-accent { background: var(--ll-accent-weak); border-color: transparent; color: var(--ll-accent); }
.chip-accent svg { color: var(--ll-accent); }
.chip-success { background: var(--ll-success-weak); border-color: transparent; color: var(--ll-success); }
.chip-success svg { color: var(--ll-success); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--am-nav-h);
  display: flex; align-items: center;
  transition: background .3s, border-color .3s, box-shadow .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: color-mix(in srgb, var(--ll-bg) 82%, transparent);
  backdrop-filter: saturate(160%) blur(16px);
  border-bottom-color: var(--am-line);
  box-shadow: 0 1px 0 rgba(10,37,64,.02);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand .mark { height: 30px; width: auto; color: var(--ll-brand); flex-shrink: 0; display: block; }
img.mark { object-fit: contain; }
.brand .name { font-size: 19px; font-weight: 650; letter-spacing: -.02em; color: var(--ll-ink); }
.brand .name b { color: var(--ll-accent); font-weight: 650; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 14.5px; font-weight: 500; color: var(--ll-ink-2); transition: color .15s; }
.nav-links a:hover { color: var(--ll-accent); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-auth { display: inline-flex; align-items: center; gap: 11px; }
.nav-cta .signin { font-size: 14.5px; font-weight: 550; color: var(--ll-ink-2); }
.nav-cta .signin:hover { color: var(--ll-accent); }
.nav-burger { display: none; background: none; border: none; cursor: pointer; color: var(--ll-ink); padding: 6px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: calc(var(--am-nav-h) + 64px) 0 96px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero-bg .glow {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: .8;
}
.hero-bg .glow.a { width: 620px; height: 620px; top: -220px; right: -120px;
  background: radial-gradient(circle, var(--am-glow), transparent 68%); }
.hero-bg .glow.b { width: 480px; height: 480px; top: 120px; left: -200px;
  background: radial-gradient(circle, color-mix(in srgb, var(--ll-accent) 16%, transparent), transparent 70%); }
.hero-bg .contours { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .5; color: var(--ll-accent); }

.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.04fr .96fr; gap: 56px; align-items: center;
}
.hero-eyebrow { margin-bottom: 22px; }
.hero h1 { font-size: clamp(40px, 5.4vw, 68px); margin: 0 0 22px; color: var(--ll-ink); }
.hero h1 em { font-style: italic; color: var(--ll-accent); }
.hero-sub { font-size: clamp(16.5px, 1.5vw, 19px); color: var(--ll-muted); max-width: 30em; margin: 0 0 32px; line-height: 1.6; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-actions .note { font-size: 13px; color: var(--ll-muted-2); display: inline-flex; align-items: center; gap: 7px; }
.hero-trust { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hero-trust .t { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--ll-ink-2); font-weight: 500; }
.hero-trust .t svg { width: 18px; height: 18px; color: var(--ll-accent); flex-shrink: 0; }

/* centered hero variant (tweak) */
.hero.centered .hero-grid { grid-template-columns: 1fr; max-width: 780px; margin: 0 auto; text-align: center; }
.hero.centered .hero-visual { display: none; }
.hero.centered .hero-eyebrow { justify-content: center; }
.hero.centered .hero-eyebrow::before { display: none; }
.hero.centered .hero-sub { margin-left: auto; margin-right: auto; }
.hero.centered .hero-actions, .hero.centered .hero-trust { justify-content: center; }

/* hero composition (right) */
.hero-visual { position: relative; display: grid; place-items: center; min-height: 460px; }
.rxcard {
  position: relative; z-index: 2; width: 100%; max-width: 380px;
  background: var(--ll-surface); border: 1px solid var(--ll-border);
  border-radius: var(--ll-r-5); box-shadow: var(--ll-sh-3);
  padding: 24px; overflow: hidden;
}
.rxcard .topline { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.rxcard .rxmeta { display: flex; align-items: center; gap: 12px; }
.rxcard .pill-ill {
  width: 46px; height: 46px; border-radius: 13px; flex-shrink: 0;
  background: linear-gradient(150deg, var(--am-ice), var(--ll-accent-weak));
  display: grid; place-items: center; color: var(--ll-accent); border: 1px solid var(--ll-border);
}
.rxcard .rxname { font-size: 15.5px; font-weight: 650; letter-spacing: -.01em; color: var(--ll-ink); }
.rxcard .rxdose { font-size: 12.5px; color: var(--ll-muted); margin-top: 1px; }
.rxcard .pricerow { display: flex; align-items: flex-end; gap: 14px; margin: 6px 0 4px; }
.rxcard .us-price { font-size: 18px; color: var(--ll-muted-2); text-decoration: line-through; font-weight: 500; }
.rxcard .am-price { font-family: var(--ll-font-serif); font-size: 46px; font-weight: 500; letter-spacing: -.02em; color: var(--ll-ink); line-height: .9; }
.rxcard .am-price small { font-size: 18px; color: var(--ll-muted); font-family: var(--ll-font-sans); font-weight: 500; }
.rxcard .save-tag {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 12px;
  background: var(--ll-success-weak); color: var(--ll-success);
  font-size: 13px; font-weight: 650; padding: 5px 11px; border-radius: 999px;
}
.rxcard .divider { height: 1px; background: var(--ll-hair); margin: 18px 0; }
.rxcard .rxfeats { display: grid; gap: 11px; }
.rxcard .rxfeats .f { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--ll-ink-2); }
.rxcard .rxfeats .f svg { width: 16px; height: 16px; color: var(--ll-accent); flex-shrink: 0; }

/* floating badges around card */
.float-badge {
  position: absolute; z-index: 3;
  background: var(--ll-surface); border: 1px solid var(--ll-border);
  box-shadow: var(--ll-sh-3); border-radius: 14px; padding: 11px 14px;
  display: flex; align-items: center; gap: 10px;
}
.float-badge .ic { width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; flex-shrink: 0; }
.float-badge .ic svg { width: 17px; height: 17px; }
.float-badge .lbl { font-size: 11px; color: var(--ll-muted); letter-spacing: .04em; text-transform: uppercase; font-weight: 600; }
.float-badge .val { font-size: 13.5px; color: var(--ll-ink); font-weight: 650; margin-top: 1px; }
.float-badge.tl { top: 26px; left: -18px; }
.float-badge.br { bottom: 36px; right: -22px; }
.float-badge.tl .ic { background: var(--ll-accent-weak); color: var(--ll-accent); }
.float-badge.br .ic { background: var(--ll-success-weak); color: var(--ll-success); }

/* ============================================================
   TRUST / ACCREDITATION STRIP
   ============================================================ */
.trustbar { border-top: 1px solid var(--am-line); border-bottom: 1px solid var(--am-line); background: var(--ll-surface); }
.trustbar .wrap { display: flex; align-items: center; gap: 40px; padding: 22px 28px; flex-wrap: wrap; justify-content: space-between; }
.trustbar .label { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ll-muted-2); font-weight: 600; }
.trustbar .logos { display: flex; align-items: center; gap: 34px; flex-wrap: wrap; }
.accred { display: inline-flex; align-items: center; gap: 9px; color: var(--ll-ink-2); opacity: .8; }
.accred .seal { width: 26px; height: 26px; color: var(--ll-accent); flex-shrink: 0; }
.accred .txt { font-size: 13.5px; font-weight: 600; letter-spacing: -.01em; line-height: 1.1; }
.accred .txt small { display: block; font-size: 10.5px; font-weight: 500; color: var(--ll-muted-2); letter-spacing: 0; }

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
section { position: relative; }
.section { padding: 96px 0; }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 3.6vw, 44px); margin: 16px 0 0; color: var(--ll-ink); }
.section-head p { font-size: 17px; color: var(--ll-muted); margin: 16px 0 0; line-height: 1.6; }

/* ---- Value props ---- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.values.values-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.vcard {
  background: var(--ll-surface); border: 1px solid var(--ll-border);
  border-radius: var(--ll-r-5); padding: 30px; transition: transform .25s var(--am-ease), box-shadow .25s, border-color .25s;
}
.vcard:hover { transform: translateY(-4px); box-shadow: var(--ll-sh-3); border-color: var(--ll-border-2); }
.vcard .vic {
  width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(155deg, var(--am-ice), var(--ll-accent-weak)); color: var(--ll-accent);
  border: 1px solid var(--ll-border);
}
.vcard .vic svg { width: 25px; height: 25px; }
.vcard h3 { font-size: 19px; font-weight: 650; letter-spacing: -.015em; margin: 0 0 9px; color: var(--ll-ink); }
.vcard p { font-size: 14.5px; color: var(--ll-muted); margin: 0; line-height: 1.6; }

/* ---- How it works ---- */
.how { background: var(--am-frost); border-top: 1px solid var(--am-line); border-bottom: 1px solid var(--am-line); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.step { padding: 0 28px; position: relative; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 26px; right: 0; width: 1px; height: calc(100% - 26px);
  background: var(--am-line);
}
.step .snum {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--ll-font-serif); font-size: 22px; color: var(--ll-accent);
  background: var(--ll-surface); border: 1px solid var(--ll-border); box-shadow: var(--ll-sh-1);
  margin-bottom: 22px;
}
.step h3 { font-size: 20px; font-weight: 650; letter-spacing: -.015em; margin: 0 0 10px; color: var(--ll-ink); }
.step p { font-size: 14.5px; color: var(--ll-muted); margin: 0 0 14px; line-height: 1.6; }
.step .stip { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ll-accent); font-weight: 550; }
.step .stip svg { width: 15px; height: 15px; }
.step .stip-link { width: fit-content; border-bottom: 1px solid color-mix(in srgb, var(--ll-accent) 45%, transparent); padding-bottom: 2px; }
.step .stip-link:hover { color: var(--ll-brand); }

/* ---- Savings calculator ---- */
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--ll-border); border-radius: var(--ll-r-5); overflow: hidden; box-shadow: var(--ll-sh-2); background: var(--ll-surface); }
.calc-left { padding: 44px; border-right: 1px solid var(--ll-border); }
.calc-left h3 { font-size: 24px; font-weight: 650; letter-spacing: -.02em; margin: 0 0 8px; color: var(--ll-ink); }
.calc-left .sub { font-size: 14.5px; color: var(--ll-muted); margin: 0 0 28px; line-height: 1.55; }
.calc-field { margin-bottom: 22px; }
.calc-field label { display: block; font-size: 12.5px; font-weight: 600; color: var(--ll-ink-2); margin-bottom: 9px; letter-spacing: -.005em; }
.calc-search { display: flex; align-items: center; gap: 10px; border: 1px solid var(--ll-border-2); border-radius: var(--ll-r-3); padding: 0 13px; margin-bottom: 10px; background: var(--ll-surface); }
.calc-search:focus-within { border-color: var(--ll-accent); box-shadow: 0 0 0 3px var(--ll-accent-weak); }
.calc-search svg { width: 18px; height: 18px; color: var(--ll-muted); flex-shrink: 0; }
.calc-search input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--ll-ink); font: inherit; padding: 12px 0; }
.med-list { display: flex; flex-direction: column; gap: 8px; max-height: 330px; overflow-y: auto; padding-right: 3px; }
.calc-empty { font-size: 13px; color: var(--ll-muted); padding: 20px 4px; text-align: center; }
.med-opt {
  display: flex; align-items: center; gap: 13px; padding: 13px 15px; cursor: pointer;
  border: 1px solid var(--ll-border-2); border-radius: var(--ll-r-3); background: var(--ll-surface);
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.med-opt:hover { border-color: var(--ll-accent); }
.med-opt.active { border-color: var(--ll-accent); background: var(--ll-accent-weak); box-shadow: 0 0 0 1px var(--ll-accent) inset; }
.med-opt .mdot { width: 36px; height: 36px; border-radius: 10px; background: var(--am-ice); display: grid; place-items: center; color: var(--ll-accent); flex-shrink: 0; }
.med-opt .mdot svg { width: 18px; height: 18px; }
.med-opt .minfo { flex: 1; }
.med-opt .mname { display: block; font-size: 14.5px; font-weight: 600; color: var(--ll-ink); }
.med-opt .mcat { display: block; font-size: 12px; color: var(--ll-muted); margin-top: 2px; }
.med-opt .mcheck { width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid var(--ll-border-2); display: grid; place-items: center; color: #fff; transition: background .15s, border-color .15s; }
.med-opt.active .mcheck { background: var(--ll-accent); border-color: var(--ll-accent); }
.med-opt .mcheck svg { width: 12px; height: 12px; opacity: 0; transition: opacity .15s; }
.med-opt.active .mcheck svg { opacity: 1; }

.qty-row { display: flex; align-items: center; gap: 10px; }
.qty-btn { width: 40px; height: 40px; border-radius: var(--ll-r-3); border: 1px solid var(--ll-border-2); background: var(--ll-surface); cursor: pointer; display: grid; place-items: center; color: var(--ll-ink); transition: background .15s, border-color .15s; }
.qty-btn:hover { background: var(--ll-surface-2); border-color: var(--ll-accent); }
.qty-val { flex: 1; text-align: center; font-size: 15px; font-weight: 600; color: var(--ll-ink); padding: 11px; border: 1px solid var(--ll-border-2); border-radius: var(--ll-r-3); background: var(--ll-surface-2); }

.calc-right { padding: 44px; background: linear-gradient(165deg, var(--am-frost), var(--am-ice)); display: flex; flex-direction: column; justify-content: center; }
.calc-result .rlabel { font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--ll-muted); font-weight: 600; }
.calc-compare { display: flex; align-items: flex-end; gap: 26px; margin: 20px 0; }
.calc-compare .col .clab { font-size: 12.5px; color: var(--ll-muted); margin-bottom: 6px; }
.calc-compare .col .cval { font-family: var(--ll-font-serif); font-size: 30px; font-weight: 500; letter-spacing: -.02em; color: var(--ll-ink); }
.calc-compare .col.us .cval { color: var(--ll-muted-2); text-decoration: line-through; }
.calc-compare .arrow { color: var(--ll-accent); padding-bottom: 6px; }
.calc-bigsave { background: var(--ll-brand); color: #fff; border-radius: var(--ll-r-4); padding: 22px 24px; margin-top: 6px; }
.calc-bigsave .pct { font-family: var(--ll-font-serif); font-size: 40px; font-weight: 500; line-height: 1; }
.calc-bigsave .pct span { font-size: 20px; }
.calc-bigsave .desc { font-size: 13.5px; opacity: .8; margin-top: 6px; }
.calc-bigsave .amt { font-weight: 650; opacity: 1; }
.calc-catalog-detail { display: flex; flex-direction: column; gap: 6px; background: var(--ll-brand); color: #fff; border-radius: var(--ll-r-4); padding: 22px 24px; margin-top: 6px; }
.calc-catalog-detail b { font-family: var(--ll-font-mono); font-size: 15px; overflow-wrap: anywhere; }
.calc-catalog-detail span { font-size: 13.5px; opacity: .82; }
.calc-note { font-size: 11.5px; color: var(--ll-muted-2); margin-top: 18px; line-height: 1.5; }

/* ============================================================
   SAFETY / LEGITIMACY (dark)
   ============================================================ */
.safety { background: var(--ll-brand); color: #fff; position: relative; overflow: hidden; }
.safety .wrap { position: relative; z-index: 1; }
.safety .glow-d { position: absolute; width: 560px; height: 560px; border-radius: 50%; filter: blur(90px);
  background: radial-gradient(circle, color-mix(in srgb, var(--ll-accent) 40%, transparent), transparent 70%);
  top: -160px; right: -120px; opacity: .5; z-index: 0; }
.safety .section-head h2 { color: #fff; }
.safety .section-head p { color: rgba(255,255,255,.72); }
.safety .eyebrow { color: color-mix(in srgb, var(--ll-accent) 60%, #fff); }
.safety .eyebrow::before { background: color-mix(in srgb, var(--ll-accent) 60%, #fff); }
.safety-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.scard {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--ll-r-5); padding: 28px; display: flex; gap: 18px; align-items: flex-start;
  transition: background .2s, border-color .2s;
}
.scard:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); }
.scard .sic { width: 46px; height: 46px; border-radius: 13px; background: rgba(255,255,255,.1); display: grid; place-items: center; flex-shrink: 0; color: color-mix(in srgb, var(--ll-accent) 50%, #fff); }
.scard .sic svg { width: 23px; height: 23px; }
.scard h3 { font-size: 17.5px; font-weight: 650; letter-spacing: -.01em; margin: 2px 0 7px; }
.scard p { font-size: 14px; color: rgba(255,255,255,.7); margin: 0; line-height: 1.6; }

/* prescription required notice band */
.rx-band {
  display: flex; align-items: center; gap: 18px; margin-top: 28px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--ll-r-4); padding: 20px 24px;
}
.rx-band .rxic { width: 42px; height: 42px; border-radius: 11px; background: var(--ll-accent); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.rx-band .rxic svg { width: 22px; height: 22px; }
.rx-band .rxtxt h4 { margin: 0 0 4px; font-size: 15.5px; font-weight: 650; }
.rx-band .rxtxt p { margin: 0; font-size: 13.5px; color: rgba(255,255,255,.7); line-height: 1.55; }

/* ============================================================
   CARE / TESTIMONIAL
   ============================================================ */
.care-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.care-visual { position: relative; }
.care-photo {
  width: 100%; aspect-ratio: 4/5; border-radius: var(--ll-r-5); overflow: hidden;
  border: 1px solid var(--ll-border); box-shadow: var(--ll-sh-3);
}
.care-photo image-slot { width: 100%; height: 100%; display: block; }
.care-quotebox {
  position: absolute; bottom: -26px; left: -26px; max-width: 280px;
  background: var(--ll-surface); border: 1px solid var(--ll-border); box-shadow: var(--ll-sh-3);
  border-radius: var(--ll-r-4); padding: 20px;
}
.care-quotebox .qm { font-family: var(--ll-font-serif); font-size: 40px; line-height: .6; color: var(--ll-accent); }
.care-quotebox p { font-size: 13.5px; color: var(--ll-ink-2); margin: 6px 0 0; line-height: 1.5; }
.care h2 { font-size: clamp(28px, 3.4vw, 40px); }
.care .care-points { display: grid; gap: 18px; margin: 28px 0 30px; }
.care .cpoint { display: flex; gap: 14px; align-items: flex-start; }
.care .cpoint .cp-ic { width: 38px; height: 38px; border-radius: 11px; background: var(--ll-accent-weak); color: var(--ll-accent); display: grid; place-items: center; flex-shrink: 0; }
.care .cpoint .cp-ic svg { width: 19px; height: 19px; }
.care .cpoint h4 { margin: 2px 0 4px; font-size: 16px; font-weight: 650; color: var(--ll-ink); }
.care .cpoint p { margin: 0; font-size: 14px; color: var(--ll-muted); line-height: 1.55; }

/* ---- metrics row ---- */
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.metric { text-align: center; padding: 12px; }
.metric .mval { font-family: var(--ll-font-serif); font-size: clamp(36px, 4.4vw, 52px); font-weight: 500; letter-spacing: -.025em; color: var(--ll-ink); line-height: 1; }
.metric .mval .u { color: var(--ll-accent); }
.metric .mlab { font-size: 13.5px; color: var(--ll-muted); margin-top: 10px; font-weight: 500; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: start; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--ll-border); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 4px; font-family: var(--ll-font-sans); font-size: 17px; font-weight: 600;
  color: var(--ll-ink); letter-spacing: -.01em; }
.faq-q .fic { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--ll-border-2); display: grid; place-items: center; color: var(--ll-accent); transition: transform .25s var(--am-ease), background .2s, border-color .2s; }
.faq-q .fic svg { width: 14px; height: 14px; }
.faq-item.open .faq-q .fic { transform: rotate(45deg); background: var(--ll-accent); color: #fff; border-color: var(--ll-accent); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .32s var(--am-ease); }
.faq-a .inner { padding: 0 4px 22px; font-size: 14.5px; color: var(--ll-muted); line-height: 1.65; max-width: 52ch; }

/* ============================================================
   CTA
   ============================================================ */
.cta-final { padding: 110px 0; }
.cta-box {
  position: relative; overflow: hidden;
  background: var(--ll-brand); border-radius: var(--ll-r-5);
  padding: 72px 64px; text-align: center; box-shadow: var(--ll-sh-3);
}
.cta-box .glow-d { position: absolute; width: 520px; height: 520px; border-radius: 50%; filter: blur(90px);
  background: radial-gradient(circle, color-mix(in srgb, var(--ll-accent) 50%, transparent), transparent 70%);
  bottom: -240px; left: 50%; transform: translateX(-50%); opacity: .55; }
.cta-box .contours { position: absolute; inset: 0; opacity: .25; color: #fff; }
.cta-box > * { position: relative; z-index: 1; }
.cta-box .eyebrow { color: color-mix(in srgb, var(--ll-accent) 55%, #fff); justify-content: center; }
.cta-box .eyebrow::before { display: none; }
.cta-box h2 { font-size: clamp(32px, 4vw, 50px); color: #fff; margin: 14px 0 18px; }
.cta-box p { font-size: 17.5px; color: rgba(255,255,255,.78); max-width: 30em; margin: 0 auto 34px; line-height: 1.6; }
.cta-box .cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-box .cta-note { margin-top: 22px; font-size: 13px; color: rgba(255,255,255,.6); display: inline-flex; align-items: center; gap: 8px; }
.cta-box .cta-note svg { width: 15px; height: 15px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ll-surface-2); border-top: 1px solid var(--am-line); padding: 64px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer .fbrand .name { font-size: 19px; font-weight: 650; letter-spacing: -.02em; color: var(--ll-ink); margin: 14px 0 12px; }
.footer .fbrand .name b { color: var(--ll-accent); }
.footer .fbrand p { font-size: 13.5px; color: var(--ll-muted); margin: 0 0 18px; line-height: 1.6; max-width: 30ch; }
.footer .fcol h5 { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ll-muted-2); font-weight: 650; margin: 0 0 16px; }
.footer .fcol a { display: block; font-size: 14px; color: var(--ll-ink-2); margin-bottom: 11px; transition: color .15s; }
.footer .fcol a:hover { color: var(--ll-accent); }
.footer-legal { border-top: 1px solid var(--am-line); padding-top: 28px; }
.footer-legal .disclaimer { font-size: 12px; color: var(--ll-muted-2); line-height: 1.6; max-width: 90ch; margin: 0 0 18px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-bottom .copy { font-size: 12.5px; color: var(--ll-muted); }
.footer-bottom .fsocial { display: flex; gap: 14px; }
.footer-bottom .fsocial a { color: var(--ll-muted); transition: color .15s; }
.footer-bottom .fsocial a:hover { color: var(--ll-accent); }
.footer-bottom .fsocial svg { width: 18px; height: 18px; }
.footer-contact { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.footer-contact a { display: inline-flex; align-items: center; gap: 7px; color: var(--ll-muted); font-size: 12.5px; transition: color .15s; }
.footer-contact a:hover { color: var(--ll-accent); }
.footer-contact svg { width: 17px; height: 17px; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--am-ease), transform .7s var(--am-ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .07s; }
.reveal.d2 { transition-delay: .14s; }
.reveal.d3 { transition-delay: .21s; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1; transform: none; transition: none; } }

/* float anim for hero badges */
@keyframes floaty { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-9px); } }
@media (prefers-reduced-motion: no-preference){
  .float-badge.tl { animation: floaty 6s var(--am-ease) infinite; }
  .float-badge.br { animation: floaty 7s var(--am-ease) .8s infinite; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px){
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { min-height: 420px; }
  .values, .steps, .metrics { grid-template-columns: 1fr 1fr; }
  .step:nth-child(2)::after { display: none; }
  .calc-grid, .safety-grid, .care-grid, .faq-grid { grid-template-columns: 1fr; }
  .calc-left { border-right: none; border-bottom: 1px solid var(--ll-border); }
  .care-grid { gap: 64px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 680px){
  .wrap { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-create { padding: 9px 12px; font-size: 12px; }
  .values, .steps, .metrics, .footer-grid { grid-template-columns: 1fr; }
  .step::after { display: none !important; }
  .section { padding: 72px 0; }
  .cta-box { padding: 52px 26px; }
  .calc-left, .calc-right { padding: 30px; }
  .float-badge.tl { left: 0; }
  .float-badge.br { right: 0; }
  .care-quotebox { left: 0; bottom: -16px; }
}
@media (max-width: 520px){
  .nav .brand .name { display: none; }
  .nav-cta, .nav-auth { gap: 7px; }
  .nav-cta .signin { font-size: 11px; }
  .nav-create { padding: 8px 10px; font-size: 11px; }
}
