/* ============================================================
   Haxli — shared stylesheet
   Calm, premium, light glassmorphism. Mobile-first.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Canvas & surfaces */
  --bg: #EDEFF9;
  --surface: #FFFFFF;
  --surface-2: #F6F7FD;

  /* Text */
  --text: #15172A;
  --text-2: #5C6184;
  --hint: #9398B8;

  /* Accents */
  --blue: #5A7BBC;
  --blue-light: #8AACDE;
  --mint: #3FA89E;
  --coral: #D96A52;
  --gold: #C79B3D;

  /* Aurora blobs */
  --aurora-lavender: #7579C9;
  --aurora-blue: #8AACDE;
  --aurora-mint: #8FCFC6;

  /* Glass */
  --glass-fill: rgba(255, 255, 255, 0.62);
  --glass-fill-strong: rgba(255, 255, 255, 0.78);
  --glass-border: rgba(255, 255, 255, 0.85);
  --hairline: rgba(21, 23, 42, 0.08);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(21, 23, 42, 0.04), 0 4px 14px rgba(50, 60, 110, 0.06);
  --shadow-md: 0 2px 6px rgba(21, 23, 42, 0.05), 0 14px 40px rgba(50, 60, 110, 0.10);
  --shadow-lg: 0 8px 24px rgba(21, 23, 42, 0.07), 0 30px 80px rgba(50, 60, 110, 0.14);

  /* Rhythm */
  --radius: 20px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --maxw: 1120px;
  --gutter: clamp(20px, 5vw, 40px);

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

::selection { background: rgba(90, 123, 188, 0.22); color: var(--text); }

:focus-visible {
  outline: 2.5px solid var(--blue);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 780px; }

.section { padding-block: clamp(64px, 11vh, 132px); position: relative; }
.section--tight { padding-block: clamp(48px, 8vh, 88px); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 999;
  background: var(--text);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
}
.skip-link:focus { left: 16px; }

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: currentColor;
  opacity: 0.55;
  border-radius: 2px;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::before { display: none; }

h1, h2, h3 { line-height: 1.12; letter-spacing: -0.02em; color: var(--text); }

.display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.h-hero {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.55rem, 6.4vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.h-section {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.95rem, 4.2vw, 3.05rem);
  line-height: 1.08;
}
.h-card {
  font-size: clamp(1.18rem, 2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  color: var(--text-2);
  line-height: 1.6;
  max-width: 56ch;
}
.muted { color: var(--text-2); }
.balance { text-wrap: balance; }
.gold-text { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  padding: 16px 26px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.25s ease, background 0.25s ease, color 0.2s ease;
  will-change: transform;
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn--primary {
  background: linear-gradient(135deg, var(--blue) 0%, #6E8FCB 55%, var(--blue-light) 100%);
  color: #fff;
  box-shadow: 0 8px 22px rgba(90, 123, 188, 0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(90, 123, 188, 0.42);
}

.btn--ghost {
  background: var(--glass-fill-strong);
  color: var(--text);
  border-color: var(--hairline);
  box-shadow: var(--shadow-sm);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn--lg { font-size: 17px; padding: 19px 32px; }

.btn__ico { display: inline-flex; }
.btn__ico svg { width: 16px; height: 16px; }

.note {
  font-size: 13.5px;
  color: var(--hint);
  font-weight: 500;
}

/* ---------- Glass card ---------- */
.glass {
  background: var(--glass-fill);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  backdrop-filter: blur(18px) saturate(1.2);
  position: relative;
}
.glass::after {
  /* top sheen */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0) 38%);
  opacity: 0.5;
  pointer-events: none;
}
.glass > * { position: relative; z-index: 1; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding-block: 14px;
  background: rgba(237, 239, 249, 0.7);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  backdrop-filter: blur(16px) saturate(1.3);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.nav.is-scrolled {
  border-bottom-color: var(--hairline);
  background: rgba(237, 239, 249, 0.86);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.brand__mark {
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--blue), var(--blue-light));
  box-shadow: 0 4px 12px rgba(90, 123, 188, 0.4);
}
.brand__mark svg { width: 19px; height: 19px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav__links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.2s ease;
}
.nav__links a:hover { color: var(--text); }
.nav__cta { margin-left: 4px; }
.nav__cta .btn { padding: 11px 20px; font-size: 14.5px; }

/* Evoogen umbrella backlink — quiet wordmark to the left of the Haxli brand */
.nav__left { display: inline-flex; align-items: center; gap: 14px; }
.nav__parent {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--hint);
  transition: color 0.2s ease;
  padding-right: 14px;
  border-right: 1px solid var(--hairline);
}
.nav__parent:hover { color: var(--text-2); }

@media (max-width: 720px) {
  .nav__parent { display: none; }
}

@media (max-width: 720px) {
  .nav__links a:not(.nav__cta) { display: none; }
}

/* ============================================================
   AURORA BACKDROP
   ============================================================ */
.aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.aurora__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}
.aurora__blob--1 {
  width: 46vw; height: 46vw; max-width: 620px; max-height: 620px;
  top: -14%; left: -8%;
  background: radial-gradient(circle, var(--aurora-lavender), transparent 68%);
}
.aurora__blob--2 {
  width: 40vw; height: 40vw; max-width: 540px; max-height: 540px;
  top: -6%; right: -10%;
  background: radial-gradient(circle, var(--aurora-blue), transparent 68%);
  opacity: 0.45;
}
.aurora__blob--3 {
  width: 38vw; height: 38vw; max-width: 500px; max-height: 500px;
  top: 32%; left: 38%;
  background: radial-gradient(circle, var(--aurora-mint), transparent 70%);
  opacity: 0.32;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding-top: clamp(56px, 9vh, 104px);
  padding-bottom: clamp(48px, 8vh, 92px);
  overflow: hidden;
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px 7px 11px;
  border-radius: var(--radius-pill);
  background: var(--glass-fill-strong);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.hero__pill .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(63, 168, 158, 0.18);
}
.hero h1 { margin-top: 22px; }
.hero h1 .accent {
  background: linear-gradient(120deg, var(--blue), var(--aurora-lavender) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead { margin-top: 22px; }
.hero__cta {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.hero__trust {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}
.hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-2);
}
.hero__trust svg { width: 15px; height: 15px; color: var(--mint); flex: none; }

/* ---- Phone mockup ---- */
.hero__visual { justify-self: center; position: relative; }
.phone {
  position: relative;
  width: clamp(248px, 30vw, 318px);
  aspect-ratio: 9 / 19;
  border-radius: 40px;
  padding: 11px;
  background: linear-gradient(160deg, #fbfcff, #e3e7f6);
  box-shadow: var(--shadow-lg), inset 0 1px 1px rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.8);
}
.phone__screen {
  width: 100%; height: 100%;
  border-radius: 30px;
  background:
    radial-gradient(120% 80% at 80% 0%, rgba(138,172,222,0.30), transparent 55%),
    radial-gradient(120% 80% at 0% 100%, rgba(143,207,198,0.28), transparent 55%),
    linear-gradient(180deg, #fdfdff, #eef1fb);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 22px 16px 16px;
}
.phone__notch {
  position: absolute;
  top: 12px; left: 50%; transform: translateX(-50%);
  width: 38%; height: 22px;
  border-radius: var(--radius-pill);
  background: rgba(21,23,42,0.82);
}
.phone__topline {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; font-weight: 600; color: var(--hint);
  margin-top: 18px;
}
.tipcard {
  margin-top: 14px;
  background: var(--surface);
  border-radius: 18px;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-sm);
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.badge {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: var(--radius-pill);
}
.badge--folk { background: rgba(90,123,188,0.12); color: var(--blue); }
.badge--common { background: rgba(63,168,158,0.14); color: var(--mint); }
.badge--source { background: rgba(21,23,42,0.07); color: var(--text-2); }
.badge--rare { background: rgba(199,155,61,0.16); color: var(--gold); }
.badge svg { width: 11px; height: 11px; }
.tipcard__hook {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-top: 12px;
  color: var(--text);
}
.tipcard__teaser {
  font-size: 12.5px;
  color: var(--text-2);
  margin-top: 8px;
  line-height: 1.5;
}
.tipcard__why {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed var(--hairline);
  font-size: 11.5px;
  color: var(--text-2);
}
.tipcard__why b { color: var(--mint); font-weight: 700; }
.phone__verdict {
  display: flex; gap: 8px; margin-top: 12px;
}
.verdict-chip {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 11.5px; font-weight: 600;
  padding: 9px 8px;
  border-radius: 12px;
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  color: var(--text-2);
}
.verdict-chip svg { width: 13px; height: 13px; }
.verdict-chip--up { color: var(--mint); }
.verdict-chip--down { color: var(--coral); }

/* swipe hint floats */
.swipe-tag {
  position: absolute;
  z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  background: var(--glass-fill-strong);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.swipe-tag svg { width: 13px; height: 13px; }
.swipe-tag--left { left: -22px; top: 30%; color: var(--text-2); }
.swipe-tag--right { right: -20px; bottom: 26%; color: var(--blue); }

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; text-align: left; }
  .hero__visual { margin-top: 12px; order: -1; }
  .swipe-tag--left { left: -8px; }
  .swipe-tag--right { right: -8px; }
}

/* ============================================================
   LOGO / TRUST STRIP
   ============================================================ */
.beliefs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  position: relative;
  z-index: 1;
}
.belief {
  padding: 22px 22px;
  text-align: center;
}
.belief__big {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
}
.belief__big.is-mint { color: var(--mint); }
.belief__big.is-blue { color: var(--blue); }
.belief__big.is-gold { color: var(--gold); }
.belief__label {
  margin-top: 4px;
  font-size: 13.5px;
  color: var(--text-2);
  font-weight: 500;
}
@media (max-width: 640px) {
  .beliefs { grid-template-columns: 1fr; }
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-head { max-width: 640px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .h-section { margin-top: 14px; }
.section-head .lead { margin-top: 16px; }
.section-head--center .lead { margin-inline: auto; }

/* ============================================================
   FEATURE: split (alternating)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__body .h-section { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
.split__body .lead { margin-top: 16px; font-size: 1.08rem; }
.split__list {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}
.split__list li {
  list-style: none;
  display: flex;
  gap: 13px;
  font-size: 15.5px;
  color: var(--text-2);
}
.split__list .ico {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 8px;
  display: grid; place-items: center;
  background: rgba(90,123,188,0.12);
  color: var(--blue);
  margin-top: 1px;
}
.split__list .ico svg { width: 15px; height: 15px; }
.split__list b { color: var(--text); font-weight: 600; }

@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse .split__media { order: 0; }
}

/* media tiles inside splits */
.media-tile {
  padding: clamp(22px, 4vw, 36px);
  border-radius: var(--radius-lg);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* swipe demo */
.swipe-demo { gap: 14px; display: grid; }
.swipe-row {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
}
.swipe-row__ico {
  flex: none; width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
}
.swipe-row__ico svg { width: 20px; height: 20px; }
.swipe-row--knew .swipe-row__ico { background: rgba(90,123,188,0.13); color: var(--blue); }
.swipe-row--new .swipe-row__ico { background: rgba(63,168,158,0.14); color: var(--mint); }
.swipe-row__t { font-weight: 700; font-size: 15px; }
.swipe-row__s { font-size: 13px; color: var(--text-2); }

/* library tree */
.tree { display: grid; gap: 12px; }
.tree__topic {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 15px 18px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.tree__topic .t-ico {
  width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center; flex: none;
  background: rgba(90,123,188,0.12); color: var(--blue);
}
.tree__topic .t-ico svg { width: 18px; height: 18px; }
.tree__subs {
  display: flex; flex-wrap: wrap; gap: 9px;
  padding-left: 8px;
}
.subchip {
  font-size: 13px; font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  color: var(--text-2);
}

/* ============================================================
   BADGE / TRUST showcase
   ============================================================ */
.badges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.badge-card { padding: 24px; }
.badge-card .badge { margin-bottom: 14px; }
.badge-card h3 { font-size: 17px; }
.badge-card p { margin-top: 7px; font-size: 14.5px; color: var(--text-2); }
@media (max-width: 720px) {
  .badges-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FEATURE GRID (cards)
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cards--two { grid-template-columns: repeat(2, 1fr); }
.feature {
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
}
.feature__ico {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(90,123,188,0.16), rgba(138,172,222,0.10));
  color: var(--blue);
  margin-bottom: 18px;
}
.feature__ico svg { width: 23px; height: 23px; }
.feature--mint .feature__ico { background: linear-gradient(140deg, rgba(63,168,158,0.18), rgba(143,207,198,0.10)); color: var(--mint); }
.feature--gold .feature__ico { background: linear-gradient(140deg, rgba(199,155,61,0.20), rgba(199,155,61,0.08)); color: var(--gold); }
.feature h3 { font-size: 1.18rem; }
.feature p { margin-top: 9px; font-size: 15px; color: var(--text-2); line-height: 1.55; }
.feature--span2 { grid-column: span 2; }

@media (max-width: 920px) {
  .cards, .cards--two { grid-template-columns: repeat(2, 1fr); }
  .feature--span2 { grid-column: span 2; }
}
@media (max-width: 600px) {
  .cards, .cards--two { grid-template-columns: 1fr; }
  .feature--span2 { grid-column: span 1; }
}

/* ============================================================
   RARE FINDS (gold feature band)
   ============================================================ */
.rare {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 68px);
  background:
    radial-gradient(90% 130% at 88% 8%, rgba(199,155,61,0.16), transparent 60%),
    linear-gradient(160deg, #fffdf6, #f6f7fd);
  border: 1px solid rgba(199,155,61,0.28);
  box-shadow: var(--shadow-md);
}
.rare__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}
.rare .eyebrow { color: var(--gold); }
.rare .h-section { margin-top: 14px; }
.rare .lead { margin-top: 16px; }
.rare__spark {
  justify-self: center;
  width: clamp(160px, 22vw, 220px);
  height: clamp(160px, 22vw, 220px);
  border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle, rgba(199,155,61,0.22), rgba(199,155,61,0.04) 70%);
  position: relative;
}
.rare__spark::before {
  content: "";
  position: absolute; inset: 14%;
  border-radius: 50%;
  border: 1.5px solid rgba(199,155,61,0.35);
}
.rare__spark svg { width: 46%; height: 46%; color: var(--gold); }
@media (max-width: 760px) {
  .rare__grid { grid-template-columns: 1fr; text-align: left; }
  .rare__spark { order: -1; }
}

/* ============================================================
   CALM / VALUES band
   ============================================================ */
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.value { padding: 22px 20px; }
.value__ico {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(63,168,158,0.13); color: var(--mint);
  margin-bottom: 14px;
}
.value__ico svg { width: 20px; height: 20px; }
.value h3 { font-size: 16px; }
.value p { margin-top: 6px; font-size: 14px; color: var(--text-2); }
@media (max-width: 880px) { .values { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .values { grid-template-columns: 1fr; } }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(44px, 7vw, 84px) clamp(28px, 5vw, 64px);
  text-align: center;
  background:
    radial-gradient(80% 120% at 15% 0%, rgba(117,121,201,0.22), transparent 55%),
    radial-gradient(80% 120% at 90% 100%, rgba(143,207,198,0.22), transparent 55%),
    linear-gradient(150deg, #f3f5fd, #e7ebf8);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
}
.cta-band .h-section { font-size: clamp(2rem, 4.6vw, 3.2rem); }
.cta-band .lead { margin: 16px auto 0; text-align: center; }
.cta-band__btns {
  margin-top: 30px;
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
}

/* ============================================================
   FAQ (shared accordion)
   ============================================================ */
.faq { display: grid; gap: 12px; max-width: 800px; margin-inline: auto; }
.faq details {
  background: var(--glass-fill);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 19px 22px;
  font-weight: 600;
  font-size: 16.5px;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev {
  flex: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--surface-2);
  display: grid; place-items: center;
  transition: transform 0.3s ease, background 0.25s ease;
}
.faq summary .chev svg { width: 13px; height: 13px; color: var(--text-2); }
.faq details[open] summary .chev { transform: rotate(180deg); background: rgba(90,123,188,0.14); }
.faq details[open] summary .chev svg { color: var(--blue); }
.faq__a {
  padding: 0 22px 20px;
  color: var(--text-2);
  font-size: 15.5px;
  line-height: 1.65;
}
.faq__a p + p { margin-top: 10px; }
.faq__a a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }

/* JS-enhanced smooth open */
.faq details.js-acc .faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
  padding-top: 0; padding-bottom: 0;
}
.faq details.js-acc[open] .faq__a { grid-template-rows: 1fr; padding-bottom: 20px; }
.faq details.js-acc .faq__a > div { overflow: hidden; }

/* ============================================================
   SUPPORT HERO
   ============================================================ */
.support-hero { text-align: center; padding-top: clamp(56px, 11vh, 130px); }
.support-card {
  max-width: 760px;
  margin-inline: auto;
  padding: clamp(38px, 6vw, 64px) clamp(26px, 5vw, 56px);
  text-align: center;
  border-radius: var(--radius-lg);
}
.support-card__orb {
  width: 64px; height: 64px;
  border-radius: 20px;
  margin: 0 auto 22px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--blue), var(--blue-light));
  box-shadow: 0 12px 28px rgba(90,123,188,0.36);
}
.support-card__orb svg { width: 30px; height: 30px; color: #fff; }
.support-card .h-section { font-size: clamp(2rem, 4.6vw, 3rem); }
.support-card .lead { margin: 16px auto 0; }
.support-card .btn { margin-top: 30px; }
.support-card__sub { margin-top: 16px; font-size: 14px; color: var(--hint); }

/* ============================================================
   LEGAL / DOC PAGES
   ============================================================ */
.doc { padding-block: clamp(48px, 8vh, 88px) clamp(72px, 12vh, 120px); }
.doc__head {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 40px;
}
.doc__head .h-section { font-size: clamp(2rem, 5vw, 3rem); margin-top: 14px; }
.doc__updated { margin-top: 12px; font-size: 14px; color: var(--hint); font-weight: 500; }
.doc h2 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 44px 0 14px;
}
.doc h3 { font-size: 17px; font-weight: 700; margin: 26px 0 9px; color: var(--text); }
.doc p { color: var(--text-2); margin-bottom: 14px; font-size: 16px; }
.doc ul { list-style: none; margin: 0 0 16px; }
.doc li {
  position: relative;
  color: var(--text-2);
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 16px;
}
.doc li::before {
  content: "";
  position: absolute;
  left: 4px; top: 11px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue);
}
.doc a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.doc strong { color: var(--text); font-weight: 600; }
.doc .intro p { font-size: 17px; }

.callout {
  background: rgba(63,168,158,0.07);
  border: 1px solid rgba(63,168,158,0.28);
  border-radius: 18px;
  padding: 24px 26px 8px;
  margin: 36px 0 8px;
}
.callout h2 { margin: 0 0 12px; color: var(--mint); }
.callout p { color: var(--text-2); }
.contact-block p { margin-bottom: 2px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--hairline);
  background: var(--surface-2);
  padding-block: 48px 40px;
}
.footer__row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer__brand { max-width: 320px; }
.footer__brand .brand { margin-bottom: 14px; }
.footer__id {
  font-size: 13px;
  line-height: 1.75;
  color: var(--hint);
}
.footer__id a { color: var(--text-2); text-decoration: underline; text-underline-offset: 2px; }
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer__links a {
  font-size: 14.5px;
  color: var(--text-2);
  font-weight: 500;
  transition: color 0.2s ease;
}
.footer__links a:hover { color: var(--text); }
.footer__col h4 {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hint);
  font-weight: 700;
  margin-bottom: 14px;
}
.footer__cols { display: flex; gap: clamp(40px, 8vw, 96px); }
.footer__copy {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  font-size: 13px;
  color: var(--hint);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: space-between;
}
@media (max-width: 640px) {
  .footer__cols { gap: 48px; }
}

/* ============================================================
   SCROLL REVEAL (progressive enhancement)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
              transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }

/* No-JS / no-reveal fallback: everything visible */
html.no-js .reveal { opacity: 1; transform: none; }

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