/* ═══════════════════════════════════════════════════════════════
   EVERLUME — marketing site
   Brand: harbor navy + neon lime + sage cream, lighthouse beams.
   Built by Avix Ventures LLC.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --navy-950: #060e17;
  --navy-900: #0b1b2a;
  --navy-800: #10263a;
  --navy-700: #17324b;
  --lime: #c9f73c;
  --lime-soft: #dcff7a;
  --lime-dim: #9fd41f;
  --sage: #e7edea;
  --cream: #f4f7f2;
  --ink: #0e1b16;
  --ink-soft: #3c4a44;
  --white: #ffffff;
  --green: #22a45d;
  --amber: #e8a13c;
  --red: #e5484d;
  --radius-xl: 44px;
  --radius-lg: 32px;
  --radius-md: 22px;
  --font-display: "Gabarito", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --shadow-card: 0 2px 3px rgba(10, 25, 20, .04), 0 14px 40px rgba(10, 25, 20, .08);
  --shadow-phone: 0 30px 80px rgba(3, 10, 18, .55);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--navy-950);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

::selection { background: var(--lime); color: var(--navy-900); }

.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.nowrap { white-space: nowrap; }

/* ─────────────────────────── Type ─────────────────────────── */

h1, h2, h3 { font-family: var(--font-display); letter-spacing: -0.012em; }

h1 {
  font-size: clamp(2.9rem, 6.2vw, 5.2rem);
  line-height: 1.04;
  font-weight: 900;
  color: var(--white);
}

/* the app's signature: a lime card with dark text — used as a marker highlight */
.hl {
  display: inline-block;
  padding: 0 .16em .04em;
  margin: 0 .02em;
  border-radius: .22em;
  background: linear-gradient(135deg, var(--lime-soft), var(--lime) 60%, #b5e42e);
  color: var(--navy-900);
  transform: rotate(-1.6deg);
  box-shadow: 0 6px 30px rgba(201, 247, 60, .35), inset 0 1px 0 rgba(255, 255, 255, .45);
}

h2 {
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  line-height: 1.06;
  font-weight: 900;
}

.section-dark h2, .section-company h2, .hero h2 { color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 18px;
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: .35; } }
.eyebrow-dark { color: #1c7a4d; }

.section-sub {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 560px;
  margin-top: 20px;
}
.section-sub-dark { color: #9fb4c4; }

/* ─────────────────────────── Buttons ─────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 999px;
  transition: transform .25s cubic-bezier(.2,.9,.3,1.4), box-shadow .25s ease, background .25s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }

.btn-lime {
  background: var(--lime);
  color: var(--navy-900);
  box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 10px 30px rgba(201,247,60,.28), inset 0 1px 0 rgba(255,255,255,.5);
}
.btn-lime:hover { background: var(--lime-soft); box-shadow: 0 0 0 1px rgba(255,255,255,.1), 0 14px 40px rgba(201,247,60,.4), inset 0 1px 0 rgba(255,255,255,.6); }

.btn-ghost {
  color: #d7e3ec;
  background: rgba(255,255,255,.06);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.14);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); }

.btn-dark {
  background: var(--navy-900);
  color: var(--lime);
  box-shadow: 0 12px 32px rgba(6,14,23,.35), inset 0 1px 0 rgba(255,255,255,.12);
}
.btn-dark:hover { background: var(--navy-800); }

.btn-sm { padding: 10px 20px; font-size: .92rem; }
.btn-lg { padding: 17px 32px; font-size: 1.05rem; }

/* ─────────────────────────── Nav ─────────────────────────── */

.nav {
  position: fixed;
  inset-inline: 0;
  top: 16px;
  z-index: 100;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.nav-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 10px 12px 10px 20px;
  border-radius: 999px;
  background: rgba(9, 21, 33, .72);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.09), 0 12px 40px rgba(0,0,0,.35);
  transition: box-shadow .3s ease, background .3s ease;
}
.nav.scrolled .nav-inner {
  background: rgba(7, 16, 26, .88);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), 0 16px 48px rgba(0,0,0,.5);
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-mark { width: 34px; height: 34px; }
.nav-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.18rem;
  color: var(--white);
  letter-spacing: -.01em;
}
.nav-word em { font-style: normal; color: var(--lime); }
.nav-links { display: flex; gap: 26px; }
.nav-links a {
  font-size: .93rem;
  font-weight: 600;
  color: #b9c8d4;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--white); }

/* ─────────────────────────── Hero ─────────────────────────── */

.hero {
  position: relative;
  background:
    radial-gradient(1200px 700px at 75% -10%, #12314a 0%, transparent 60%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
  padding: 150px 0 0;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(201,247,60,.16) 0%, transparent 65%);
  top: -140px; right: 4%;
  animation: drift1 14s ease-in-out infinite alternate;
}
.hero-glow-2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(45,212,191,.10) 0%, transparent 65%);
  bottom: 60px; left: -140px;
  animation: drift2 18s ease-in-out infinite alternate;
}
@keyframes drift1 { to { transform: translate(-60px, 50px); } }
@keyframes drift2 { to { transform: translate(70px, -40px); } }

/* lighthouse-style sweeping beam */
.hero-beams {
  position: absolute;
  width: 1400px; height: 1400px;
  top: -700px; right: -300px;
  background: conic-gradient(from 0deg,
    transparent 0deg, rgba(201,247,60,.07) 14deg, rgba(201,247,60,.13) 22deg, rgba(201,247,60,.07) 30deg, transparent 44deg,
    transparent 180deg, rgba(201,247,60,.05) 194deg, rgba(201,247,60,.09) 202deg, rgba(201,247,60,.05) 210deg, transparent 224deg, transparent 360deg);
  animation: sweep 26s linear infinite;
  pointer-events: none;
  opacity: .8;
}
@keyframes sweep { to { transform: rotate(360deg); } }

.hero-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 30%, transparent 75%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 40px;
  padding-bottom: 90px;
}

.hero-sub {
  margin-top: 26px;
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  line-height: 1.7;
  color: #a9bccb;
  max-width: 540px;
}
.hero-sub strong { color: var(--lime); font-weight: 700; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

.hero-proof { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.proof-pill {
  display: flex; align-items: baseline; gap: 5px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.1);
  color: #93a8b8;
  font-size: .86rem;
  font-weight: 500;
}
.proof-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--lime);
  font-variant-numeric: tabular-nums;
}

/* phone frames */
.phone {
  position: relative;
  border-radius: 54px;
  padding: 13px;
  background: linear-gradient(160deg, #2a3d51, #101d2b 55%, #223547);
  box-shadow: var(--shadow-phone), inset 0 0 0 1.5px rgba(255,255,255,.16);
}
.phone img { border-radius: 42px; width: 100%; }
.phone-notch {
  position: absolute;
  top: 26px; left: 50%;
  transform: translateX(-50%);
  width: 34%; height: 26px;
  border-radius: 999px;
  background: #05090e;
  z-index: 2;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 10px 6px 0;
}
.phone-hero {
  width: min(360px, 84%);
  transform: rotate(3deg);
  animation: bob 7s ease-in-out infinite;
}
@keyframes bob { 50% { transform: rotate(3deg) translateY(-14px); } }

.float-chip {
  position: absolute;
  display: flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  color: var(--navy-900);
  background: rgba(255,255,255,.94);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  backdrop-filter: blur(8px);
}
.chip-a { top: 14%; left: -2%; animation: bob2 6s ease-in-out infinite; }
.chip-b { top: 46%; right: -4%; animation: bob2 7s .8s ease-in-out infinite; }
.chip-c { bottom: 12%; left: 2%; animation: bob2 8s .4s ease-in-out infinite; }
@keyframes bob2 { 50% { transform: translateY(-10px); } }

.dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.dot-green { background: var(--green); box-shadow: 0 0 8px rgba(34,164,93,.7); }
.dot-amber { background: var(--amber); }
.dot-red { background: var(--red); box-shadow: 0 0 8px rgba(229,72,77,.6); }

/* marquee */
.marquee {
  position: relative;
  border-top: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.02);
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  color: #7e93a5;
  white-space: nowrap;
}
.marquee i { color: var(--lime); font-style: normal; font-size: .7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ─────────────────────────── Sections ─────────────────────────── */

.section { position: relative; padding: 110px 0; }

.section-light {
  background: var(--sage);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin-top: -44px;
  background-image: radial-gradient(rgba(14,27,22,.05) 1px, transparent 1px);
  background-size: 30px 30px;
}
.section-cream { background: var(--cream); }

.section-dark {
  background:
    radial-gradient(900px 500px at 20% 0%, #132c42 0%, transparent 60%),
    linear-gradient(180deg, var(--navy-900), var(--navy-950));
  border-radius: var(--radius-xl);
  margin: 0 12px;
  overflow: hidden;
}
.focus-glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,108,246,.13) 0%, transparent 65%);
  filter: blur(70px);
  top: -200px; right: -150px;
  pointer-events: none;
}

/* ─────────────────────────── Bento ─────────────────────────── */

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  margin-top: 64px;
}

.bento-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-card);
  transition: transform .35s cubic-bezier(.2,.8,.3,1.2), box-shadow .35s ease;
  overflow: hidden;
  position: relative;
}
.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 3px 5px rgba(10,25,20,.05), 0 26px 60px rgba(10,25,20,.13);
}

.bento-card h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
}
.bento-card p { color: var(--ink-soft); line-height: 1.65; font-size: 1rem; }

.bento-big { grid-column: span 6; display: grid; grid-template-columns: 1.1fr .9fr; gap: 30px; align-items: center; padding: 54px; }
.bento-big-copy h3 { font-size: 2rem; margin-top: 26px; }
.bento-big-shot { display: flex; justify-content: center; }
.phone-sm { width: min(300px, 90%); transform: rotate(-2.5deg); }
.phone-sm .phone-notch { top: 24px; height: 22px; }

.bento-card:nth-child(2), .bento-card:nth-child(3), .bento-card:nth-child(5) { grid-column: span 3; }
.bento-shot { grid-column: span 3; padding-top: 0; }
.bento-shot-img {
  margin: 0 -38px 26px;
  overflow: hidden;
  height: 380px;
  -webkit-mask-image: linear-gradient(180deg, black 78%, transparent 100%);
  mask-image: linear-gradient(180deg, black 78%, transparent 100%);
}
/* object-position frames the "Better alternatives" band of the product-page screenshot */
.bento-shot-img img { width: 100%; height: 100%; object-fit: cover; object-position: 0 54%; }

/* score ring */
.score-ring { position: relative; width: 120px; height: 120px; }
.score-ring svg { transform: rotate(-90deg); width: 100%; height: 100%; }
.ring-bg, .ring-fill { fill: none; stroke-width: 11; stroke-linecap: round; }
.ring-bg { stroke: #e6ede7; }
.ring-fill {
  stroke: var(--green);
  stroke-dasharray: 326.7;
  stroke-dashoffset: 326.7;
  transition: stroke-dashoffset 1.6s cubic-bezier(.4,0,.2,1) .2s;
}
.ring-fill.drawn { stroke-dashoffset: 42.5; } /* 87/100 */
.ring-label {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.ring-label b { font-family: var(--font-display); font-size: 2rem; font-weight: 800; line-height: 1; }
.ring-label span { font-size: .58rem; font-weight: 700; letter-spacing: .14em; color: var(--ink-soft); }

.grade-legend { display: flex; gap: 20px; list-style: none; margin-top: 22px; }
.grade-legend li { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: .92rem; color: var(--ink-soft); }

.chip-cloud { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.chip {
  padding: 8px 15px;
  border-radius: 999px;
  background: var(--sage);
  font-weight: 600;
  font-size: .87rem;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(14,27,22,.08);
  transition: background .2s ease, transform .2s ease;
}
.bento-card:hover .chip:nth-child(odd) { background: #ddeadf; }
.chip:hover { transform: translateY(-2px); background: var(--lime) !important; }

.quote {
  margin-top: 18px;
  padding: 20px 22px;
  border-radius: var(--radius-md);
  background: var(--navy-900);
  color: #cfdde8 !important;
  font-size: .98rem !important;
  line-height: 1.65;
  position: relative;
}
.bento-foot { margin-top: 16px; font-weight: 600; color: #1c7a4d !important; }

/* ─────────────────────────── Focus ─────────────────────────── */

.focus-layout {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 44px;
  align-items: center;
  margin-top: 60px;
}
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.focus-card {
  border-radius: var(--radius-md);
  padding: 22px 20px;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--g1), var(--g2));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.14), 0 10px 30px rgba(0,0,0,.25);
  transition: transform .3s cubic-bezier(.2,.8,.3,1.3);
  position: relative;
}
.focus-card::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--g1), var(--g2));
  filter: blur(22px);
  opacity: 0;
  z-index: -1;
  transition: opacity .35s ease;
}
.focus-card:hover { transform: translateY(-5px) scale(1.02); }
.focus-card:hover::after { opacity: .55; }
.focus-card b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--white);
  margin-top: 10px;
}
.focus-card span {
  display: block;
  font-size: .82rem;
  line-height: 1.45;
  color: rgba(255,255,255,.75);
  margin-top: 4px;
}
.focus-ultra {
  --g1: #16211c; --g2: #1f2f26;
  box-shadow: inset 0 0 0 1.5px rgba(201,247,60,.5), 0 10px 30px rgba(0,0,0,.3);
}
.focus-ultra::after { background: var(--lime); }
.focus-ultra:hover::after { opacity: .18; }
.focus-ultra b { color: var(--lime); }

.focus-shot .phone { width: min(300px, 100%); margin-inline: auto; transform: rotate(2.5deg); }

.focus-honesty {
  margin-top: 56px;
  max-width: 660px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #9fb4c4;
  padding: 24px 28px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.04);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.09);
}
.focus-honesty b { color: var(--lime); }

/* ─────────────────────────── Steps ─────────────────────────── */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 60px;
}
.step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  box-shadow: var(--shadow-card);
  transition: transform .35s cubic-bezier(.2,.8,.3,1.2);
}
.step:hover { transform: translateY(-6px); }
.step-num {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 18px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--navy-900);
  background: var(--lime);
  box-shadow: 0 8px 22px rgba(201,247,60,.4);
  margin-bottom: 24px;
}
.step h3 { font-size: 1.3rem; margin-bottom: 10px; }
.step p { color: var(--ink-soft); line-height: 1.65; }

/* ─────────────────────────── Company (Avix) ─────────────────────────── */

.section-company {
  background: var(--navy-950);
  padding: 130px 0;
}
.company-glow {
  position: absolute;
  width: 800px; height: 500px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(201,247,60,.07) 0%, transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}
.company-card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 80px);
  background:
    radial-gradient(600px 300px at 85% 0%, rgba(201,247,60,.08) 0%, transparent 60%),
    linear-gradient(160deg, #0f2033, #0a1622 60%, #0d1e2f);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.09), 0 40px 100px rgba(0,0,0,.4);
  overflow: hidden;
}
.company-card h2 span { color: var(--lime); }
.company-lede {
  margin-top: 24px;
  max-width: 720px;
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  line-height: 1.75;
  color: #a9bccb;
}
.company-lede b { color: var(--white); }

.company-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}
.pillar {
  border-radius: var(--radius-md);
  padding: 30px 26px;
  background: rgba(255,255,255,.04);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.09);
  transition: background .3s ease, transform .3s ease;
}
.pillar:hover { background: rgba(255,255,255,.07); transform: translateY(-4px); }
.pillar-icon { font-size: 1.7rem; margin-bottom: 16px; }
.pillar h3 { color: var(--white); font-size: 1.12rem; margin-bottom: 10px; }
.pillar p { color: #93a8b8; font-size: .95rem; line-height: 1.65; }

.company-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 44px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  color: #7e93a5;
}
.company-meta i { color: var(--lime); font-style: normal; }
.company-meta span:first-child { color: var(--white); }

/* ─────────────────────────── Split feature sections (Lists / Search) ─────────────────────────── */

.split {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: center;
}
.split-flip { grid-template-columns: .85fr 1.15fr; }
.split-flip .split-copy { order: 2; }
.split-flip .split-shot { order: 1; }

.split-shot { display: flex; justify-content: center; }
.split-shot .phone { width: min(320px, 90%); transform: rotate(2deg); }
.split-flip .split-shot .phone { transform: rotate(-2deg); }

.feature-list {
  list-style: none;
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.feature-list li { display: flex; gap: 16px; align-items: flex-start; }
.fl-icon {
  flex: none;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  font-size: 1.25rem;
  border-radius: 15px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}
.feature-list b {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.06rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.feature-list p { color: var(--ink-soft); line-height: 1.6; font-size: .96rem; }

.feature-list-dark .fl-icon {
  background: rgba(255,255,255,.07);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}
.feature-list-dark b { color: var(--white); }
.feature-list-dark p { color: #93a8b8; }

.section-search { margin-top: 0; }

/* weekly score distribution bar (bento) */
.week-bar {
  display: flex;
  gap: 5px;
  margin-top: 24px;
  height: 16px;
  border-radius: 999px;
  overflow: hidden;
}
.wb { border-radius: 999px; width: var(--w); }
.wb-green { background: var(--green); }
.wb-amber { background: var(--amber); }
.wb-red { background: var(--red); }

/* ─────────────────────────── Evidence ─────────────────────────── */

.section-evidence { border-radius: 0; }
.authority-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}
.authority {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  padding: 13px 24px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease;
}
.authority:hover { transform: translateY(-3px); box-shadow: 0 3px 5px rgba(10,25,20,.05), 0 20px 44px rgba(10,25,20,.12); }

/* ─────────────────────────── CTA ─────────────────────────── */

.section-cta {
  background: var(--sage);
  padding: 60px 0 130px;
  background-image: radial-gradient(rgba(14,27,22,.05) 1px, transparent 1px);
  background-size: 30px 30px;
}
.cta-card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: clamp(48px, 7vw, 90px);
  background:
    radial-gradient(700px 400px at 90% 10%, rgba(255,255,255,.4) 0%, transparent 55%),
    linear-gradient(140deg, var(--lime-soft), var(--lime) 55%, #b5e42e);
  box-shadow: 0 40px 100px rgba(160, 205, 40, .4), inset 0 2px 0 rgba(255,255,255,.55);
  overflow: hidden;
}
.cta-eyebrow {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(11,27,42,.62);
  margin-bottom: 14px;
}
.cta-card h2 {
  color: var(--navy-900);
  font-size: clamp(2.6rem, 5.6vw, 4.6rem);
  margin-bottom: 36px;
}
.cta-note { margin-top: 18px; font-weight: 600; font-size: .92rem; color: rgba(11,27,42,.55); }
.cta-mark {
  position: absolute;
  width: clamp(240px, 30vw, 420px);
  right: -40px;
  bottom: -60px;
  opacity: .9;
  filter: drop-shadow(0 20px 40px rgba(11,27,42,.25));
  animation: bob 9s ease-in-out infinite;
}

/* ─────────────────────────── Footer ─────────────────────────── */

.footer {
  background: var(--navy-950);
  padding: 90px 0 48px;
  color: #93a8b8;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p { margin-top: 18px; max-width: 300px; line-height: 1.65; font-size: .95rem; }
.footer-col { display: flex; flex-direction: column; gap: 13px; }
.footer-col h4 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: .95rem;
  margin-bottom: 6px;
}
.footer-col a { font-size: .93rem; transition: color .2s ease; }
.footer-col a:hover { color: var(--lime); }
.footer-legal { padding-top: 34px; font-size: .9rem; line-height: 1.7; }
.footer-legal b { color: #cfdde8; }
.footer-fine { margin-top: 10px; font-size: .8rem; color: #5c7080; }

/* ─────────────────────────── Reveal animation ─────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s ease var(--d, 0s), transform .8s cubic-bezier(.2,.7,.3,1) var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }

/* ─────────────────────────── Responsive ─────────────────────────── */

@media (max-width: 1020px) {
  .split, .split-flip { grid-template-columns: 1fr; gap: 50px; }
  .split-flip .split-copy { order: 1; }
  .split-flip .split-shot { order: 2; }
  .hero-inner { grid-template-columns: 1fr; gap: 70px; padding-bottom: 70px; }
  .hero-copy { text-align: center; }
  .hero-sub, .hero-ctas, .hero-proof { margin-inline: auto; justify-content: center; }
  .eyebrow { justify-content: center; }
  .bento-big { grid-template-columns: 1fr; padding: 40px; }
  .focus-layout { grid-template-columns: 1fr; }
  .focus-shot { display: none; }
  .company-pillars, .steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-inner { gap: 16px; }
  .section { padding: 80px 0; }
  .bento { grid-template-columns: 1fr; }
  .bento-card, .bento-big, .bento-shot,
  .bento-card:nth-child(2), .bento-card:nth-child(3) { grid-column: auto; }
  .focus-grid { grid-template-columns: repeat(2, 1fr); }
  .float-chip { font-size: .8rem; padding: 9px 14px; }
  .chip-a { left: -4px; } .chip-b { right: -4px; }
  .cta-mark { opacity: .35; }
  .section-dark { margin: 0; border-radius: var(--radius-lg); }
}

/* ─────────────────────────── Reduced motion ─────────────────────────── */

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