/* ==========================================================================
   HidrogenONE — Warm Premium Design System
   One comprehensive, production-grade stylesheet.
   Light warm only. No dark mode. No theme switcher.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  color-scheme: light;

  /* Surfaces */
  --cream:        #FBF8F3;  /* page background */
  --cream-2:      #FFFDF9;  /* raised cards / panels */
  --cream-sunk:   #F4EEE3;  /* sunken wells, alt sections */

  /* Ink / text */
  --ink:          #2A2520;  /* primary text + headings */
  --ink-soft:     #4A4137;  /* secondary text */
  --muted:        #6F6555;  /* muted text, captions */

  /* Brand */
  --accent:       #E8633A;  /* terracotta */
  --accent-hover: #D2552C;  /* terracotta hover */
  --accent-soft:  #FBE6DD;  /* terracotta tint surfaces */
  --accent-ink:   #B6431F;  /* terracotta text on tint (AA) */

  --green:        #3F7D5B;  /* secondary warm green */
  --green-soft:   #E2EFE7;
  --green-ink:    #2C5C41;

  --amber:        #E9A23B;  /* highlight amber */
  --amber-soft:   #FBEFD6;
  --amber-ink:    #9A6612;

  /* Lines + borders */
  --border:       #E6DCCB;
  --border-soft:  #EFE7D9;
  --border-strong:#D8CBB4;

  /* Focus */
  --focus:        #E8633A;
  --focus-ring:   0 0 0 3px rgba(232, 99, 58, .35);

  /* Radii (generous, rounded geometry) */
  --r-xs:  8px;
  --r-sm:  12px;
  --r-md:  16px;
  --r-lg:  22px;
  --r-xl:  28px;
  --r-2xl: 36px;
  --r-pill: 999px;

  /* Soft layered shadows (no heavy backdrop blur) */
  --sh-xs: 0 1px 2px rgba(74, 56, 38, .06);
  --sh-sm: 0 1px 2px rgba(74, 56, 38, .05), 0 3px 8px rgba(74, 56, 38, .06);
  --sh-md: 0 1px 2px rgba(74, 56, 38, .05), 0 6px 16px rgba(74, 56, 38, .08),
           0 14px 34px rgba(74, 56, 38, .07);
  --sh-lg: 0 2px 4px rgba(74, 56, 38, .05), 0 12px 28px rgba(74, 56, 38, .10),
           0 28px 64px rgba(74, 56, 38, .10);
  --sh-accent: 0 6px 16px rgba(232, 99, 58, .26), 0 14px 34px rgba(232, 99, 58, .18);

  /* Typography */
  --font-display: "Fraunces", "Iowan Old Style", "Apple Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --container: 1180px;
  --container-narrow: 820px;
  --gutter: 24px;
  --nav-h: 72px;

  /* Motion — smooth, Apple-grade ease-out (no bounce / no overshoot) */
  --ease-out: cubic-bezier(.22, 1, .36, 1);        /* quint */
  --ease-out-expo: cubic-bezier(.16, 1, .3, 1);    /* confident, decisive */
  --ease-out-quart: cubic-bezier(.25, 1, .5, 1);   /* gentle */
  --ease-spring: var(--ease-out-expo);             /* legacy alias — now smooth, no overshoot */
  --t-fast: .16s;
  --t-base: .26s;
  --t-slow: .42s;
  --t-rev: .8s;
}

/* --------------------------------------------------------------------------
   2. MODERN RESET
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  min-height: 100%;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--cream);
  background-image:
    radial-gradient(1200px 600px at 12% -8%, rgba(233, 162, 59, .10), transparent 60%),
    radial-gradient(1000px 560px at 96% -2%, rgba(232, 99, 58, .08), transparent 58%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg, video, canvas { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
ul, ol { list-style: none; padding: 0; }

a { color: var(--accent-ink); text-decoration: none; transition: color var(--t-fast) var(--ease-out); }
a:hover { color: var(--accent-hover); }

:target { scroll-margin-top: calc(var(--nav-h) + 16px); }

/* Accessible focus rings everywhere */
:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: var(--r-xs);
}

::selection { background: var(--accent-soft); color: var(--accent-ink); }

.sr-only {
  position: absolute; 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: 16px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 16px;
  border-radius: var(--r-sm); transition: top var(--t-base) var(--ease-out);
}
.skip-link:focus { top: 16px; color: #fff; }

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY SCALE
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.012em;
  color: var(--ink);
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 5.2vw, 3.9rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.85rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); }
h4 { font-size: 1.22rem; line-height: 1.25; }
h5 { font-size: 1.05rem; line-height: 1.3; }

p { color: var(--ink-soft); }
.lead {
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
  line-height: 1.55;
  color: var(--muted);
  text-wrap: pretty;
}

/* Fraunces italic accent for display emphasis */
.accent-italic, em.display, .display-em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}

.text-accent  { color: var(--accent-ink); }
.text-green   { color: var(--green-ink); }
.text-muted   { color: var(--muted); }
.text-center  { text-align: center; }
.measure      { max-width: 62ch; }
.measure-narrow { max-width: 48ch; }

/* --------------------------------------------------------------------------
   4. LAYOUT CONTAINERS + UTILITIES
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }

.section {
  padding-block: clamp(64px, 9vw, 116px);
  position: relative;
}
.section--tight { padding-block: clamp(44px, 6vw, 72px); }
.section--alt {
  background: linear-gradient(180deg, var(--cream-sunk), #F7F1E6);
  border-block: 1px solid var(--border-soft);
}
.section--cream2 { background: var(--cream-2); border-block: 1px solid var(--border-soft); }

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 60px);
  text-align: center;
}
.section-head--left { margin-inline: 0; text-align: left; }
.section-head .lead { margin-top: 16px; }

.stack    { display: flex; flex-direction: column; }
.stack-sm > * + * { margin-top: 8px; }
.stack-md > * + * { margin-top: 16px; }
.stack-lg > * + * { margin-top: 28px; }

.cluster {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
}
.cluster--center { justify-content: center; }

.divider { height: 1px; background: var(--border); border: 0; margin-block: 32px; }

/* --------------------------------------------------------------------------
   5. EYEBROW / SECTION LABEL
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--amber));
}
.section-head.text-center .eyebrow { justify-content: center; }
.section-head:not(.section-head--left).text-center .eyebrow::before { display: inline-block; }

/* --------------------------------------------------------------------------
   6. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  padding: 14px 24px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  color: var(--ink);
  white-space: nowrap;
  transition: transform var(--t-fast) var(--ease-spring),
              background-color var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out),
              border-color var(--t-base) var(--ease-out),
              color var(--t-base) var(--ease-out);
}
.btn:active { transform: translateY(1px) scale(.98); }
.btn svg { width: 1.1em; height: 1.1em; }

.btn-primary {
  background: linear-gradient(180deg, #ED6E45, var(--accent));
  color: #fff;
  box-shadow: var(--sh-accent);
}
.btn-primary:hover {
  background: linear-gradient(180deg, var(--accent), var(--accent-hover));
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(232, 99, 58, .34), 0 20px 46px rgba(232, 99, 58, .22);
}

.btn-secondary {
  background: var(--cream-2);
  color: var(--ink);
  border-color: var(--border-strong);
  box-shadow: var(--sh-sm);
}
.btn-secondary:hover {
  background: #fff;
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}

.btn-ghost {
  background: transparent;
  color: var(--ink-soft);
  border-color: transparent;
}
.btn-ghost:hover {
  background: var(--accent-soft);
  color: var(--accent-ink);
}

.btn-green {
  background: linear-gradient(180deg, #498D68, var(--green));
  color: #fff;
  box-shadow: 0 6px 16px rgba(63, 125, 91, .26);
}
.btn-green:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 10px 24px rgba(63, 125, 91, .32); }

.btn-lg { padding: 17px 32px; font-size: 1.08rem; }
.btn-sm { padding: 10px 18px; font-size: .92rem; }
.btn-block { width: 100%; }
.btn[disabled], .btn:disabled { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }

/* Inline text link with arrow */
.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; color: var(--accent-ink);
}
.link-arrow svg { transition: transform var(--t-base) var(--ease-spring); }
.link-arrow:hover svg { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   7. BADGES / PILLS
   -------------------------------------------------------------------------- */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 600; line-height: 1;
  padding: 8px 14px; border-radius: var(--r-pill);
  background: var(--cream-2); color: var(--ink-soft);
  border: 1px solid var(--border);
  box-shadow: var(--sh-xs);
}
.pill-dot::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 0 3px var(--green-soft);
}

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .72rem; font-weight: 700; line-height: 1;
  letter-spacing: .04em; text-transform: uppercase;
  padding: 6px 11px; border-radius: var(--r-pill);
}
.badge-soon  { background: var(--amber-soft); color: var(--amber-ink); border: 1px solid #F0D9A8; }
.badge-new   { background: var(--green-soft); color: var(--green-ink); border: 1px solid #C5DfCf; }
.badge-accent{ background: var(--accent-soft); color: var(--accent-ink); border: 1px solid #F3CDBE; }
.badge-neutral{ background: var(--cream-sunk); color: var(--muted); border: 1px solid var(--border); }

/* --------------------------------------------------------------------------
   8. TOP NAV
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 248, 243, .82);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--t-base) var(--ease-out),
              border-color var(--t-base) var(--ease-out),
              background-color var(--t-base) var(--ease-out);
}
.site-header.is-scrolled {
  background: rgba(255, 253, 249, .92);
  border-bottom-color: var(--border-soft);
  box-shadow: 0 1px 0 rgba(74,56,38,.04), 0 10px 30px rgba(74, 56, 38, .07);
}

.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; height: var(--nav-h);
}

/* Brand wordmark */
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.32rem; letter-spacing: -.02em; color: var(--ink);
  flex-shrink: 0;
}
.brand:hover { color: var(--ink); }
.brand__mark { width: 30px; height: 30px; flex: none; }
.brand__name { line-height: 1; }
.brand__name b { color: var(--accent); font-weight: 600; }

.nav__links {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto;
}
.nav__link {
  position: relative;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 14px; border-radius: var(--r-sm);
  font-size: .96rem; font-weight: 600; color: var(--ink-soft);
  transition: color var(--t-fast) var(--ease-out), background-color var(--t-fast) var(--ease-out);
}
.nav__link:hover { color: var(--ink); background: var(--accent-soft); }
.nav__link[aria-current="page"] { color: var(--accent-ink); }
.nav__link[aria-current="page"]::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 3px;
  height: 2px; border-radius: 2px; background: var(--accent);
}
.nav__cta { margin-left: 10px; }

/* Hamburger */
.nav__toggle {
  display: none;
  width: 44px; height: 44px; border-radius: var(--r-sm);
  align-items: center; justify-content: center;
  color: var(--ink); border: 1px solid var(--border);
  background: var(--cream-2);
}
.nav__toggle:hover { background: #fff; border-color: var(--border-strong); }
.nav__toggle .bars { position: relative; width: 20px; height: 14px; }
.nav__toggle .bars span {
  position: absolute; left: 0; height: 2px; width: 100%; border-radius: 2px;
  background: currentColor; transition: transform var(--t-base) var(--ease-out),
              opacity var(--t-fast) var(--ease-out), top var(--t-base) var(--ease-out);
}
.nav__toggle .bars span:nth-child(1) { top: 0; }
.nav__toggle .bars span:nth-child(2) { top: 6px; }
.nav__toggle .bars span:nth-child(3) { top: 12px; }
.nav__toggle[aria-expanded="true"] .bars span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] .bars span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .bars span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

.nav__backdrop {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(42, 37, 32, .32);
  opacity: 0; visibility: hidden;
  transition: opacity var(--t-base) var(--ease-out), visibility var(--t-base);
}
body.nav-open .nav__backdrop { opacity: 1; visibility: visible; }

@media (max-width: 980px) {
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 95;
    flex-direction: column; align-items: stretch; gap: 4px;
    margin: 0; padding: 16px 16px 22px;
    background: var(--cream-2);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--sh-lg);
    transform: translateY(-12px);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: transform var(--t-base) var(--ease-out),
                opacity var(--t-base) var(--ease-out), visibility var(--t-base);
  }
  body.nav-open .nav__links {
    transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto;
  }
  .nav__link { padding: 13px 16px; font-size: 1.05rem; }
  .nav__link[aria-current="page"]::after { display: none; }
  .nav__cta { margin: 8px 0 0; }
  .nav__cta.btn { width: 100%; }
}

/* --------------------------------------------------------------------------
   9. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-block: clamp(56px, 8vw, 104px) clamp(56px, 8vw, 100px);
  overflow: hidden;
}
.hero__inner { max-width: 800px; }
.hero--center .hero__inner { margin-inline: auto; text-align: center; }
.hero--center .cluster { justify-content: center; }
.hero h1 { margin-bottom: 22px; }
.hero .lead { margin-bottom: 32px; max-width: 60ch; }
.hero--center .lead { margin-inline: auto; }
.hero__actions { margin-bottom: 26px; }
.hero__note {
  font-size: .92rem; color: var(--muted);
  display: inline-flex; align-items: center; gap: 8px;
}

/* Hero entrance — staggered rise on load (pure CSS, no-JS safe; neutralised under reduced-motion) */
@keyframes heroRise {
  from { opacity: 0; transform: translate3d(0, 20px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
.hero__inner > * { animation: heroRise .8s var(--ease-out-expo) both; }
.hero__inner > *:nth-child(1) { animation-delay: .04s; }
.hero__inner > *:nth-child(2) { animation-delay: .12s; }
.hero__inner > *:nth-child(3) { animation-delay: .20s; }
.hero__inner > *:nth-child(4) { animation-delay: .28s; }
.hero__inner > *:nth-child(5) { animation-delay: .36s; }
.hero__inner > *:nth-child(n+6) { animation-delay: .42s; }

/* Decorative warm blobs (CSS only, no image) */
.hero__glow {
  position: absolute; z-index: -1; border-radius: 50%;
  filter: blur(60px); opacity: .5; pointer-events: none;
}
.hero__glow--1 { width: 420px; height: 420px; top: -120px; right: -80px;
  background: radial-gradient(circle, rgba(232,99,58,.4), transparent 68%); }
.hero__glow--2 { width: 360px; height: 360px; bottom: -140px; left: -100px;
  background: radial-gradient(circle, rgba(233,162,59,.34), transparent 68%); }

.hero__media {
  margin-top: clamp(40px, 6vw, 64px);
  border-radius: var(--r-2xl);
  border: 1px solid var(--border);
  background: var(--cream-2);
  box-shadow: var(--sh-lg);
  padding: 14px;
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   10. CARDS
   -------------------------------------------------------------------------- */
.card {
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--sh-sm);
  transition: transform var(--t-base) var(--ease-spring),
              box-shadow var(--t-base) var(--ease-out),
              border-color var(--t-base) var(--ease-out);
}
.card--hover:hover, a.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: var(--border-strong);
}
.card--pad-lg { padding: 36px; }
.card--sunk { background: var(--cream-sunk); box-shadow: none; }
.card--flat { box-shadow: none; }

/* Feature card */
.feature-card { display: flex; flex-direction: column; gap: 14px; height: 100%; }
.feature-card .card-icon { margin-bottom: 2px; }
.feature-card h3 { font-size: 1.3rem; }
.feature-card p { color: var(--muted); font-size: .98rem; }

/* Capability card (compact, grid auto-fit) */
.capability-card {
  display: flex; flex-direction: column; gap: 12px; height: 100%;
  padding: 24px;
}
.capability-card h4 { font-family: var(--font-body); font-weight: 700; font-size: 1.06rem; color: var(--ink); }
.capability-card p { font-size: .94rem; color: var(--muted); line-height: 1.5; }

/* Icon chip */
.card-icon {
  width: 52px; height: 52px; border-radius: var(--r-md);
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(232,99,58,.12);
}
.card-icon svg { width: 26px; height: 26px; }
.card-icon--green { background: var(--green-soft); color: var(--green); box-shadow: inset 0 0 0 1px rgba(63,125,91,.14); }
.card-icon--amber { background: var(--amber-soft); color: var(--amber-ink); box-shadow: inset 0 0 0 1px rgba(233,162,59,.18); }
.card-icon--sm { width: 42px; height: 42px; border-radius: var(--r-sm); }
.card-icon--sm svg { width: 21px; height: 21px; }

/* Testimonial card */
.testimonial {
  display: flex; flex-direction: column; gap: 20px; height: 100%;
  padding: 30px;
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-sm);
}
.testimonial__quote {
  font-family: var(--font-display);
  font-size: 1.16rem; line-height: 1.5; color: var(--ink);
  font-style: italic; font-weight: 500;
}
.testimonial__quote::before { content: "\201C"; color: var(--accent); margin-right: 2px; }
.testimonial__author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial__avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent-ink);
  font-weight: 700; font-family: var(--font-body);
}
.testimonial__name { font-weight: 700; color: var(--ink); font-size: .96rem; line-height: 1.2; }
.testimonial__role { font-size: .86rem; color: var(--muted); }

/* Plan / early-access card */
.plan-card {
  position: relative;
  display: flex; flex-direction: column; gap: 20px; height: 100%;
  padding: 32px;
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-sm);
  transition: transform var(--t-base) var(--ease-spring), box-shadow var(--t-base) var(--ease-out);
}
.plan-card--featured {
  border-color: var(--accent);
  box-shadow: var(--sh-lg), 0 0 0 1px var(--accent) inset;
}
.plan-card--featured::before {
  content: "Recomandat";
  position: absolute; top: -12px; left: 32px;
  font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: #fff; background: var(--accent);
  padding: 6px 12px; border-radius: var(--r-pill);
  box-shadow: var(--sh-accent);
}
.plan-card__name { font-family: var(--font-body); font-weight: 700; font-size: 1.1rem; color: var(--ink); }
.plan-card__price { font-family: var(--font-display); font-size: 2.6rem; line-height: 1; color: var(--ink); }
.plan-card__price small { font-family: var(--font-body); font-size: .95rem; font-weight: 600; color: var(--muted); }
.plan-card__features { display: flex; flex-direction: column; gap: 12px; }
.plan-card__features li { display: flex; align-items: flex-start; gap: 10px; color: var(--ink-soft); font-size: .96rem; }
.plan-card__features li svg { flex: none; width: 19px; height: 19px; color: var(--green); margin-top: 1px; }
.plan-card .btn { margin-top: auto; }

/* --------------------------------------------------------------------------
   11. GRIDS
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Auto-fit capability grid */
.grid-capability {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   12. SPLIT / MEDIA-TEXT LAYOUT
   -------------------------------------------------------------------------- */
.split {
  display: grid; gap: clamp(32px, 5vw, 64px);
  grid-template-columns: 1fr 1fr; align-items: center;
}
.split--media-right { grid-template-columns: 1.05fr .95fr; }
.split__media {
  border-radius: var(--r-2xl);
  border: 1px solid var(--border);
  background: var(--cream-2);
  box-shadow: var(--sh-md);
  padding: 12px; overflow: hidden;
}
@media (max-width: 880px) {
  .split, .split--media-right { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   13. TRUST BAND
   -------------------------------------------------------------------------- */
.trust-band {
  padding-block: 30px;
  border-block: 1px solid var(--border-soft);
  background: var(--cream-2);
}
.trust-band__label {
  text-align: center; font-size: .82rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 20px;
}
.trust-band__row {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: clamp(24px, 5vw, 56px);
}
.trust-band__item {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink-soft); font-weight: 600; opacity: .85;
}
.trust-band__item svg { width: 22px; height: 22px; color: var(--muted); }

/* Stat row */
.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px; }
.stat { text-align: center; }
.stat__num { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); color: var(--accent); line-height: 1; }
.stat__label { margin-top: 8px; color: var(--muted); font-size: .92rem; font-weight: 600; }

/* --------------------------------------------------------------------------
   14. FORMS
   -------------------------------------------------------------------------- */
.form { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 540px) { .field--row { grid-template-columns: 1fr; } }

.label {
  font-size: .9rem; font-weight: 600; color: var(--ink);
}
.label .req { color: var(--accent); margin-left: 2px; }
.hint { font-size: .84rem; color: var(--muted); }

.input, .textarea, .select {
  width: 100%;
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  padding: 13px 16px;
  transition: border-color var(--t-fast) var(--ease-out),
              box-shadow var(--t-fast) var(--ease-out),
              background-color var(--t-fast) var(--ease-out);
}
.input::placeholder, .textarea::placeholder { color: #A99E8B; }
.input:hover, .textarea:hover, .select:hover { border-color: var(--accent); }
.input:focus-visible, .textarea:focus-visible, .select:focus-visible {
  border-color: var(--accent);
  background: #fff;
  box-shadow: var(--focus-ring);
}
.textarea { min-height: 130px; resize: vertical; line-height: 1.5; }

.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236F6555' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
}

.checkbox, .radio {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: .94rem; color: var(--ink-soft); cursor: pointer;
}
.checkbox input, .radio input {
  width: 19px; height: 19px; margin-top: 2px; flex: none;
  accent-color: var(--accent); cursor: pointer;
}

.field-error { color: var(--accent-ink); font-size: .84rem; }
.input--error { border-color: var(--accent); }

/* Request-access form panel */
.request-form {
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--sh-md);
}
.form-note { font-size: .88rem; color: var(--muted); text-align: center; }

/* Inline subscribe / single-line form */
.form-inline {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.form-inline .input { flex: 1 1 240px; }
@media (max-width: 540px) { .form-inline .btn { width: 100%; } }

/* --------------------------------------------------------------------------
   15. CTA BAND
   -------------------------------------------------------------------------- */
.cta-band { position: relative; padding-block: clamp(56px, 8vw, 96px); }
.cta-band__panel {
  position: relative; overflow: hidden;
  border-radius: var(--r-2xl);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  color: #fff;
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(233,162,59,.5), transparent 55%),
    linear-gradient(135deg, #E8633A 0%, #D2552C 60%, #B6431F 100%);
  box-shadow: var(--sh-lg);
}
.cta-band__panel h2 { color: #fff; }
.cta-band__panel .lead { color: rgba(255,255,255,.92); margin-inline: auto; max-width: 56ch; }
.cta-band__panel .cluster { justify-content: center; margin-top: 32px; }
.cta-band__panel .btn-secondary {
  background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.4);
}
.cta-band__panel .btn-secondary:hover { background: rgba(255,255,255,.24); color: #fff; }
.cta-band__panel .btn-primary {
  background: #fff; color: var(--accent-ink);
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
}
.cta-band__panel .btn-primary:hover { background: #fff; color: var(--accent-hover); }

/* --------------------------------------------------------------------------
   16. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: linear-gradient(180deg, var(--cream-sunk), #F1EADC);
  border-top: 1px solid var(--border);
  padding-block: clamp(48px, 6vw, 72px) 28px;
  color: var(--ink-soft);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: clamp(28px, 4vw, 48px);
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.footer__brand .brand { font-size: 1.4rem; margin-bottom: 14px; }
.footer__tagline { color: var(--muted); font-size: .96rem; max-width: 34ch; margin-bottom: 18px; }
.footer__contact { font-size: .92rem; color: var(--ink-soft); }
.footer__contact a { color: var(--ink-soft); font-weight: 600; }
.footer__contact a:hover { color: var(--accent-ink); }
.footer__contact span { display: block; margin-bottom: 6px; }

.footer__col h4 {
  font-family: var(--font-body); font-size: .82rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 11px; }
.footer__col a, .footer__col button.linklike {
  color: var(--ink-soft); font-size: .95rem; font-weight: 500;
  transition: color var(--t-fast) var(--ease-out);
}
.footer__col a:hover, .footer__col button.linklike:hover { color: var(--accent-ink); }
.linklike { font: inherit; padding: 0; text-align: left; }

.footer__legal-links {
  display: flex; flex-wrap: wrap; gap: 18px 26px; align-items: center;
  margin-top: 22px;
}
.footer__legal-links a {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--muted); font-size: .86rem; font-weight: 600;
}
.footer__legal-links a:hover { color: var(--accent-ink); }
.footer__legal-links img, .footer__legal-links svg { height: 20px; width: auto; }

.footer__bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 14px; padding-top: 22px;
}
.footer__copy { font-size: .86rem; color: var(--muted); }

@media (max-width: 880px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* --------------------------------------------------------------------------
   17. COOKIE BANNER
   -------------------------------------------------------------------------- */
.cookie-banner {
  position: fixed; z-index: 160; left: 16px; right: 16px; bottom: 16px;
  max-width: 560px; margin-inline: auto;
  background: var(--cream-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  padding: 22px 24px;
  transform: translateY(18px); opacity: 0; visibility: hidden;
  transition: transform var(--t-slow) var(--ease-spring),
              opacity var(--t-base) var(--ease-out), visibility var(--t-base);
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; visibility: visible; }
.cookie-banner__title { font-family: var(--font-display); font-size: 1.16rem; font-weight: 600; margin-bottom: 8px; }
.cookie-banner__text { font-size: .92rem; color: var(--muted); margin-bottom: 18px; }
.cookie-banner__text a { font-weight: 600; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cookie-banner__actions .btn { flex: 1 1 auto; }

.cookie-prefs {
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border);
  display: none;
}
.cookie-banner.show-prefs .cookie-prefs { display: block; }
.cookie-prefs__row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 10px 0;
}
.cookie-prefs__row + .cookie-prefs__row { border-top: 1px solid var(--border-soft); }
.cookie-prefs__meta strong { display: block; font-size: .94rem; color: var(--ink); }
.cookie-prefs__meta span { font-size: .82rem; color: var(--muted); }

/* Toggle switch */
.switch { position: relative; display: inline-flex; flex: none; }
.switch input { position: absolute; opacity: 0; width: 0; height: 0; }
.switch__track {
  width: 44px; height: 26px; border-radius: var(--r-pill);
  background: var(--border-strong); cursor: pointer;
  transition: background-color var(--t-base) var(--ease-out);
}
.switch__track::after {
  content: ""; position: absolute; top: 3px; left: 3px;
  width: 20px; height: 20px; border-radius: 50%; background: #fff;
  box-shadow: var(--sh-sm);
  transition: transform var(--t-base) var(--ease-spring);
}
.switch input:checked + .switch__track { background: var(--green); }
.switch input:checked + .switch__track::after { transform: translateX(18px); }
.switch input:disabled + .switch__track { background: var(--green); opacity: .55; cursor: not-allowed; }
.switch input:focus-visible + .switch__track { box-shadow: var(--focus-ring); }

.cookie-prefs__link {
  margin-top: 4px; font-size: .86rem; font-weight: 600;
  color: var(--accent-ink); text-decoration: underline;
}

/* --------------------------------------------------------------------------
   18. BACK TO TOP
   -------------------------------------------------------------------------- */
.back-to-top {
  position: fixed; z-index: 120; right: 22px; bottom: 22px;
  width: 46px; height: 46px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; background: var(--ink);
  box-shadow: var(--sh-md);
  opacity: 0; visibility: hidden; transform: translateY(10px) scale(.9);
  transition: opacity var(--t-base) var(--ease-out),
              transform var(--t-base) var(--ease-spring), visibility var(--t-base),
              background-color var(--t-base) var(--ease-out);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.back-to-top:hover { background: var(--accent); color: #fff; }
.back-to-top svg { width: 22px; height: 22px; }

/* --------------------------------------------------------------------------
   19. MISC HELPERS
   -------------------------------------------------------------------------- */
.list-check { display: flex; flex-direction: column; gap: 12px; }
.list-check li { display: flex; align-items: flex-start; gap: 11px; color: var(--ink-soft); }
.list-check li svg { flex: none; width: 20px; height: 20px; color: var(--green); margin-top: 2px; }

.note-panel {
  background: var(--accent-soft);
  border: 1px solid #F3CDBE;
  border-radius: var(--r-lg);
  padding: 18px 20px;
  color: var(--accent-ink);
  font-size: .94rem;
}

.kicker-line {
  width: 56px; height: 4px; border-radius: 4px;
  background: linear-gradient(90deg, var(--accent), var(--amber));
  margin-bottom: 20px;
}
.section-head.text-center .kicker-line { margin-inline: auto; }

/* --- Motion enhancements (Apple-grade, no bounce) --- */

/* Button press + trailing-arrow nudge */
.btn > svg { transition: transform var(--t-base) var(--ease-out); }
.btn:hover > svg:last-child { transform: translateX(3px); }
.btn:active { transform: translateY(0) scale(.975); transition-duration: .1s; }

/* Lenis smooth-scroll integration (class added to <html> when active) */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* Reveal-on-scroll (driven by site.js; staggered via --reveal-d; safe default = visible) */
.reveal { opacity: 0; transform: translate3d(0, 24px, 0); }
.reveal.is-in {
  opacity: 1; transform: translate3d(0, 0, 0);
  transition: opacity .7s var(--ease-out-expo), transform .8s var(--ease-out-expo);
  transition-delay: var(--reveal-d, 0ms);
}

/* --------------------------------------------------------------------------
   20. MOTION GUARD
   -------------------------------------------------------------------------- */
@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 !important; transform: none !important; }
  .hero__inner > * { animation: none !important; opacity: 1 !important; transform: none !important; }
  .hero__glow, [data-parallax] { transform: none !important; }
}
