﻿/* ============================================================
   F.I.L — firstinline.ai landing page V2
   F.I.L Blue theme, logo-gradient CTAs · minimal JS
   ============================================================ */

:root {
  --navy-900: #081833;
  --navy-800: #0c2249;
  --navy-700: #123061;
  --blue-600: #0d47a1;
  --blue-500: #1565d8;
  --blue-400: #3b82f6;
  --blue-100: #dbeafe;
  --blue-50:  #eff6ff;
  --ink:      #16233b;
  --ink-soft: #46587a;
  --line:     #dde5f0;
  --bg-soft:  #f4f7fc;
  --white:    #ffffff;
  --ok:       #16a34a;
  --warn:     #d97706;
  --radius:   14px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.center { text-align: center; margin-top: 40px; }
.center-text { text-align: center; }

h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-align: center;
  border: none;
  cursor: pointer;
  font-family: var(--font);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(120deg, #4E8FE0, #3352B5);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(51, 82, 181, .4);
  padding: 15px 30px;
  font-size: 1.02rem;
}
.btn-primary:hover { background: linear-gradient(120deg, #3F6FD8, #282C86); }
.btn-lg { padding: 18px 38px; font-size: 1.1rem; }
.btn-sm { padding: 10px 18px; font-size: .9rem; box-shadow: none; }
.btn-ghost {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.3);
  padding: 17px 32px;
  font-size: 1.05rem;
}
.btn-ghost:hover { background: rgba(255,255,255,.16); }
.btn-light {
  background: var(--white);
  color: var(--navy-800);
  padding: 18px 38px;
  font-size: 1.1rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
}
.cta-micro { font-size: .88rem; color: var(--ink-soft); margin-top: 12px; }
.cta-micro-light { color: rgba(255,255,255,.75); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--blue-500);
  margin-bottom: 14px;
}
.eyebrow-light { color: #8ab4ff; }

/* ---------- Sticky offer bar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 60;
  background: linear-gradient(90deg, #282C86, #3F6FD8);
  color: var(--white);
  display: flex; align-items: center; justify-content: center; gap: 18px;
  padding: 8px 16px; font-size: .88rem; text-align: center; flex-wrap: wrap;
}
.topbar p { line-height: 1.4; }
.topbar a {
  color: var(--white); font-weight: 800; text-decoration: none; white-space: nowrap;
  border-bottom: 2px solid rgba(255,255,255,.5);
}
.topbar a:hover { border-bottom-color: var(--white); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 37px; z-index: 50;
  background: rgba(8, 24, 51, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 30px; width: auto; display: block; }
.logo-img-footer { height: 26px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  color: rgba(255,255,255,.78); text-decoration: none; font-size: .93rem; font-weight: 600;
}
.nav-links a:hover { color: var(--white); }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(59, 130, 246, .25), transparent 60%),
    radial-gradient(700px 400px at -10% 110%, rgba(21, 101, 216, .18), transparent 60%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--navy-700) 100%);
  color: var(--white);
  padding: 64px 0 80px;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.1rem); margin-bottom: 22px; }
.hero .hl { color: #7db3ff; }
.hero-sub {
  font-size: 1.14rem; color: rgba(255,255,255,.82); max-width: 34em; margin-bottom: 28px;
}
.hero .eyebrow { color: #8ab4ff; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-chips {
  list-style: none; display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px;
}
.hero-chips li {
  font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  padding: 6px 13px; border-radius: 999px;
}
.hero-visual { position: relative; }
.hero-photo {
  position: absolute; right: -12px; bottom: -34px; width: 46%;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 20px 45px rgba(3, 10, 25, .5);
  border: 3px solid rgba(255,255,255,.9);
  transform: rotate(2deg);
}
.hero-photo img { width: 100%; height: 100%; display: block; object-fit: cover; }

/* ---------- Mock windows ---------- */
.mock-window {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 30px 60px rgba(3, 10, 25, .45);
  overflow: hidden;
  color: var(--ink);
  font-size: .9rem;
}
.mock-sm { box-shadow: 0 18px 44px rgba(9, 30, 66, .16); border: 1px solid var(--line); }
.mock-bar {
  display: flex; align-items: center; gap: 6px;
  background: #eef2f9; padding: 10px 14px; border-bottom: 1px solid var(--line);
}
.mock-bar span { width: 10px; height: 10px; border-radius: 50%; background: #cdd8ea; }
.mock-bar em {
  font-style: normal; font-size: .78rem; font-weight: 700; color: var(--ink-soft);
  margin-left: 8px;
}
.mock-body { padding: 18px; }
.mock-email {
  border: 1px solid var(--line); border-radius: 8px; padding: 10px 14px; background: var(--bg-soft);
}
.mock-email-head { font-weight: 700; }
.mock-email-sub { font-size: .8rem; color: var(--ink-soft); }
.mock-arrow { font-size: .82rem; font-weight: 700; color: var(--blue-500); margin: 10px 2px; }
.mock-pill {
  display: inline-block; background: var(--blue-50); color: var(--blue-600);
  font-weight: 700; font-size: .8rem; padding: 6px 12px; border-radius: 999px; margin-bottom: 12px;
}
.mock-lines { border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.mock-line {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 9px 14px; border-bottom: 1px solid var(--line); background: var(--white);
}
.mock-line:last-child { border-bottom: none; }
.mock-line-muted { color: var(--ink-soft); font-size: .82rem; background: var(--bg-soft); }
.mock-line-strong { font-weight: 800; }
.ok { color: var(--ok); font-weight: 700; }
.warn { color: var(--warn); font-weight: 700; }
.mock-result {
  margin-top: 14px; background: #eafaf0; color: #14683a; font-weight: 700;
  padding: 10px 14px; border-radius: 8px; font-size: .86rem;
}

/* Gantt mock */
.gantt { display: grid; gap: 10px; margin-bottom: 4px; }
.gantt-row { display: grid; grid-template-columns: 88px 1fr; align-items: center; gap: 10px; font-size: .8rem; color: var(--ink-soft); font-weight: 600; }
.gantt-bar {
  position: relative; height: 16px; border-radius: 5px; background: var(--blue-100);
  margin-left: var(--s); width: var(--w);
}
.gantt-bar.crit { background: var(--blue-500); }

/* ---------- Proof band ---------- */
.proof { background: var(--navy-900); border-top: 1px solid rgba(255,255,255,.06); padding: 56px 0; color: var(--white); }
.proof-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 36px; }
.proof-lead { font-weight: 800; font-size: clamp(1.25rem, 2.6vw, 1.7rem); color: var(--white); letter-spacing: -0.01em; }
.proof-stats { display: flex; gap: 72px; list-style: none; justify-content: center; flex-wrap: wrap; }
.proof-stats li { display: flex; flex-direction: column; align-items: center; }
.proof-stats strong { font-size: clamp(1.6rem, 3vw, 2.2rem); color: #7db3ff; line-height: 1.2; }
.proof-stats span { font-size: 1rem; color: rgba(255,255,255,.72); margin-top: 6px; max-width: 22em; }

/* ---------- Stakes ---------- */
.stakes { padding: 88px 0 72px; background: var(--white); }
.stakes h2 { text-align: center; margin-bottom: 44px; }
.stakes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stake-card {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; font-weight: 600; color: var(--ink);
}
.stake-ico { width: 34px; height: 34px; color: var(--blue-500); margin-bottom: 14px; }
.stake-now { color: var(--blue-600); display: block; margin-top: 8px; }
.stakes-kicker {
  text-align: center; margin-top: 44px; color: var(--ink);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem); font-weight: 700; line-height: 1.45;
  max-width: 36em; margin-left: auto; margin-right: auto;
}
.kicker-hl { color: var(--blue-600); font-weight: 800; }

/* ---------- Value ---------- */
.value {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-700));
  color: var(--white); padding: 84px 0;
}
.value-inner { max-width: 760px; text-align: center; margin: 0 auto; }
.value-sub { margin-top: 20px; font-size: 1.12rem; color: rgba(255,255,255,.82); }

/* ---------- Personas ---------- */
.personas { padding: 88px 0; background: var(--bg-soft); }
.personas h2 { text-align: center; margin-bottom: 44px; }
.personas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.persona-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 8px 24px rgba(9, 30, 66, .06);
}
.persona-card img { width: 100%; height: 150px; object-fit: cover; display: block; }
.persona-body { padding: 20px; }
.persona-body h3 { font-size: 1.08rem; margin-bottom: 6px; color: var(--navy-800); }
.persona-body p { font-size: .92rem; color: var(--ink-soft); }

/* ---------- Plan ---------- */
.plan { padding: 88px 0; background: var(--white); }
.plan h2 { text-align: center; margin-bottom: 48px; }
.plan-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; list-style: none; }
.plan-steps li {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--blue-500); color: var(--white); font-weight: 800; font-size: 1.05rem;
  margin-bottom: 16px;
}
.plan-steps h3 { font-size: 1.15rem; margin-bottom: 8px; }
.plan-steps p { color: var(--ink-soft); font-size: .97rem; }

/* ---------- Tech showcase ---------- */
.showcase { padding: 88px 0 24px; background: var(--white); }
.showcase-panel {
  background:
    radial-gradient(900px 400px at 80% -10%, rgba(63, 111, 216, .35), transparent 60%),
    radial-gradient(600px 400px at 5% 110%, rgba(40, 44, 134, .5), transparent 60%),
    linear-gradient(160deg, var(--navy-900), var(--navy-800));
  border-radius: 28px;
  padding: 64px 40px 24px;
  color: var(--white);
  overflow: hidden;
}
.showcase-panel h2 { text-align: center; margin-bottom: 10px; }
.showcase-sub { text-align: center; color: rgba(255,255,255,.72); font-size: 1.05rem; margin-bottom: 30px; }
.showcase-stage { position: relative; max-width: 900px; margin: 0 auto; min-height: 480px; }

/* Callout composition (iPad + feature lines) */
.callout-stage { max-width: 1000px; margin: 0 auto; }
.callout-stage svg { width: 100%; height: auto; display: block; }
.callout-img-mobile { display: none; }
.callout-list-mobile { display: none; }

/* Devices */
.device-cluster { position: relative; padding: 60px 40px 20px; }
.device-laptop {
  width: 72%; margin: 0 auto; background: var(--white); border-radius: 12px;
  box-shadow: 0 40px 80px rgba(0,0,0,.55);
  transform: rotate(-2.5deg);
  overflow: hidden; color: var(--ink);
}
.board { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 14px; background: var(--bg-soft); }
.board-col h5 {
  font-size: .68rem; text-transform: uppercase; letter-spacing: .08em;
  color: var(--ink-soft); margin-bottom: 8px;
}
.board-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 8px;
  padding: 8px 10px; font-size: .74rem; font-weight: 600; margin-bottom: 8px;
  box-shadow: 0 2px 6px rgba(9,30,66,.06);
}
.board-card b { display: block; color: var(--blue-600); font-size: .7rem; margin-top: 2px; }
.device-phone {
  position: absolute; right: 4%; bottom: -18px; width: 172px;
  background: var(--navy-900); border-radius: 22px; padding: 8px;
  box-shadow: 0 30px 60px rgba(0,0,0,.6);
  transform: rotate(4deg);
  border: 1px solid rgba(255,255,255,.15);
}
.phone-notch { width: 60px; height: 5px; border-radius: 3px; background: rgba(255,255,255,.25); margin: 4px auto 8px; }
.phone-head { color: var(--white); font-weight: 800; font-size: .8rem; text-align: center; margin-bottom: 8px; }
.phone-today {
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.85);
  font-size: .68rem; font-weight: 700; border-radius: 7px; padding: 6px 9px; margin-bottom: 6px;
}
.phone-job {
  background: var(--white); border-radius: 7px; padding: 7px 9px; margin-bottom: 6px;
  font-size: .7rem; font-weight: 700; color: var(--ink);
}
.phone-job span { display: block; font-weight: 600; color: var(--ink-soft); font-size: .62rem; }
.phone-clock {
  background: linear-gradient(120deg, #4E8FE0, #3352B5); color: var(--white);
  font-size: .68rem; font-weight: 800; text-align: center;
  border-radius: 7px; padding: 8px 6px; margin-bottom: 2px;
}

/* Floating pills */
.pill {
  position: absolute; z-index: 5;
  background: linear-gradient(120deg, #4E8FE0, #3352B5);
  color: var(--white); font-weight: 800; font-size: .88rem;
  padding: 10px 20px; border-radius: 12px; white-space: nowrap;
  box-shadow: 0 14px 30px rgba(0,0,0,.4);
  animation: pill-float 5s ease-in-out infinite;
}
.pill-1 { top: 2%;  left: 0;    transform: rotate(-2deg); animation-delay: 0s; background: linear-gradient(120deg, #3F6FD8, #282C86); }
.pill-2 { top: 0;   right: 2%;  transform: rotate(2deg);  animation-delay: .6s; }
.pill-3 { top: 26%; left: -3%;  transform: rotate(1.5deg); animation-delay: 1.2s; }
.pill-4 { top: 30%; right: -4%; transform: rotate(-2deg); animation-delay: 1.8s; background: linear-gradient(120deg, #3F6FD8, #282C86); }
.pill-5 { top: 54%; left: -2%;  transform: rotate(-1.5deg); animation-delay: 2.4s; background: linear-gradient(120deg, #3F6FD8, #282C86); }
.pill-6 { top: 60%; right: -5%; transform: rotate(2deg);  animation-delay: 3s; }
.pill-7 { bottom: 2%; left: 6%; transform: rotate(2deg);  animation-delay: 3.6s; }
.pill-8 { bottom: -2%; right: 26%; transform: rotate(-2deg); animation-delay: 4.2s; background: linear-gradient(120deg, #3F6FD8, #282C86); }
@keyframes pill-float {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -8px; }
}

/* ---------- Integrations ---------- */
.integrations { padding: 48px 0 88px; background: var(--white); }
.integrations h2 { text-align: center; margin-bottom: 14px; }
.integrations-sub {
  text-align: center; color: var(--ink-soft); font-size: 1.08rem;
  max-width: 42em; margin: 0 auto 52px;
}
.logo-row {
  display: flex; align-items: center; justify-content: center; gap: 56px;
  flex-wrap: wrap; margin-bottom: 56px;
}
.logo-item { display: flex; align-items: center; gap: 9px; filter: grayscale(0); }
.lg-xero {
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 50%;
  background: #13B5EA; color: var(--white);
  font-weight: 700; font-size: 1.15rem; letter-spacing: -0.02em;
}
.lg-qb-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: #2CA01C; color: var(--white); font-weight: 800; font-size: 1.05rem;
}
.lg-qb-word { font-weight: 700; font-size: 1.3rem; color: #393a3d; letter-spacing: -0.02em; }
.lg-myob { font-weight: 800; font-size: 1.7rem; color: #6100A5; letter-spacing: -0.03em; }
.lg-mail { width: 30px; height: 30px; }
.lg-gmail { font-weight: 700; font-size: 1.3rem; color: #5f6368; }
.lg-outlook { font-weight: 700; font-size: 1.3rem; color: #0F6CBD; }
.lg-mbq {
  font-weight: 800; font-size: .92rem; letter-spacing: .04em; color: var(--navy-800);
  border: 2px solid var(--navy-800); border-radius: 8px; padding: 8px 14px;
}
.lg-mbq b { color: #c8102e; }
.integrations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.int-card {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px;
  background: var(--bg-soft); text-align: center;
}
.int-card h3 { font-size: 1.15rem; margin-bottom: 12px; color: var(--navy-800); }
.int-card p { color: var(--ink-soft); font-size: .97rem; }
.int-card strong { color: var(--ink); }

/* ---------- Systems (V1 full cards) ---------- */
.systems { padding: 88px 0; background: var(--bg-soft); }
.systems h2 { text-align: center; margin-bottom: 12px; }
.systems-sub {
  text-align: center; color: var(--ink-soft); font-size: 1.08rem;
  max-width: 40em; margin: 0 auto 48px;
}
.systems-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.system-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: 0 8px 24px rgba(9, 30, 66, .06);
}
.system-head { margin-bottom: 18px; }
.system-ico { font-size: 1.8rem; display: block; margin-bottom: 10px; }
.system-head h3 { font-size: 1.35rem; color: var(--navy-800); }
.system-head p { color: var(--blue-600); font-weight: 600; font-size: .95rem; margin-top: 2px; }
.ticks { list-style: none; display: grid; gap: 12px; }
.ticks li { padding-left: 30px; position: relative; color: var(--ink-soft); font-size: 1.02rem; }
.ticks li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--ok); font-weight: 800; }
.ticks-sm li { font-size: .95rem; }

/* ---------- Features (V1 deep-dives) ---------- */
.features { padding: 40px 0 30px; background: var(--white); }
.feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  padding: 56px 0;
}
.feature-flip .feature-copy { order: 2; }
.feature-flip .feature-visual { order: 1; }
.feature h2 { margin-bottom: 20px; font-size: clamp(1.45rem, 2.6vw, 1.9rem); }
.feature-kicker { margin-top: 22px; font-weight: 800; font-size: 1.08rem; color: var(--blue-600); }

/* ---------- More (V1 everything else) ---------- */
.more { padding: 88px 0; background: var(--navy-900); color: var(--white); }
.more h2 { text-align: center; margin-bottom: 12px; }
.more-sub { text-align: center; color: rgba(255,255,255,.7); font-size: 1.05rem; margin-bottom: 48px; }
.more-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.more-col h4 {
  font-size: .85rem; text-transform: uppercase; letter-spacing: .1em;
  color: #7db3ff; margin-bottom: 14px;
}
.more-col ul { list-style: none; display: grid; gap: 10px; }
.more-col li { font-size: .92rem; color: rgba(255,255,255,.8); padding-left: 18px; position: relative; }
.more-col li::before { content: "·"; position: absolute; left: 4px; color: var(--blue-400); font-weight: 800; }
.more-kicker { text-align: center; margin-top: 44px; font-weight: 800; font-size: 1.2rem; color: var(--white); }

/* ---------- Reviews ---------- */
.reviews { padding: 88px 0; background: var(--white); }
.reviews h2 { text-align: center; margin-bottom: 44px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; display: flex; flex-direction: column; gap: 20px;
}
.review-card blockquote { font-size: 1.02rem; color: var(--ink); font-weight: 500; line-height: 1.55; }
.review-card figcaption { display: flex; align-items: center; gap: 12px; }
.review-card img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.review-card figcaption strong { display: block; font-size: .95rem; }
.review-card figcaption span { font-size: .82rem; color: var(--ink-soft); }

/* ---------- Compare ---------- */
.compare { padding: 88px 0; background: var(--bg-soft); }
.compare h2 { text-align: center; margin-bottom: 44px; }
.compare-table { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; }
.compare-col { border-radius: var(--radius); padding: 32px 30px; }
.compare-them { background: var(--white); border: 1px solid var(--line); }
.compare-them h3 { color: var(--ink-soft); font-size: 1.1rem; margin-bottom: 18px; }
.compare-them ul { list-style: none; display: grid; gap: 12px; }
.compare-them li { padding-left: 28px; position: relative; color: var(--ink-soft); font-size: .97rem; }
.compare-them li::before { content: "✕"; position: absolute; left: 2px; color: #d15b5b; font-weight: 800; }
.compare-us { background: var(--navy-800); color: var(--white); box-shadow: 0 18px 44px rgba(9,30,66,.25); }
.compare-us h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 18px; }
.compare-us ul { list-style: none; display: grid; gap: 12px; }
.compare-us li { padding-left: 28px; position: relative; color: rgba(255,255,255,.88); font-size: .97rem; }
.compare-us li::before { content: "✓"; position: absolute; left: 2px; color: #7db3ff; font-weight: 800; }

/* ---------- Trust ---------- */
.trust { padding: 88px 0; background: var(--white); }
.trust h2 { text-align: center; margin-bottom: 44px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-card {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px;
  text-align: center;
}
.trust-card svg { width: 34px; height: 34px; color: var(--blue-500); margin-bottom: 12px; }
.trust-card strong { display: block; margin-bottom: 6px; color: var(--navy-800); }
.trust-card p { font-size: .88rem; color: var(--ink-soft); }
.trust-integrations {
  text-align: center; margin-top: 36px; color: var(--ink-soft); font-weight: 600; font-size: .95rem;
}
.trust-integrations span {
  display: inline-block; margin: 4px 5px; padding: 6px 14px; border-radius: 999px;
  background: var(--bg-soft); border: 1px solid var(--line); color: var(--navy-800); font-weight: 700;
  font-size: .85rem;
}

/* ---------- ANZ ---------- */
.anz { padding: 88px 0; background: var(--bg-soft); }
.anz h2 { text-align: center; margin-bottom: 44px; }
.anz-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.anz-card {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px;
  background: var(--white);
}
.anz-card strong { display: block; font-size: 1.02rem; margin-bottom: 6px; color: var(--navy-800); }
.anz-card p { color: var(--ink-soft); font-size: .93rem; }
.anz-kicker { text-align: center; margin-top: 36px; font-weight: 800; font-size: 1.15rem; color: var(--blue-600); }

/* ---------- Lead magnet ---------- */
.magnet {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-800));
  color: var(--white); padding: 72px 0;
}
.magnet-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: center; }
.magnet h2 { margin-bottom: 12px; }
.magnet-copy p { color: rgba(255,255,255,.8); max-width: 34em; }
.magnet-form { display: flex; gap: 12px; flex-wrap: wrap; }
.magnet-form input {
  flex: 1; min-width: 220px; padding: 15px 18px; border-radius: 10px; border: none;
  font-size: 1rem; font-family: var(--font);
}
.magnet-form input:focus { outline: 3px solid var(--blue-400); }

/* ---------- FAQ ---------- */
.faq { padding: 88px 0; background: var(--white); }
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq h2 { text-align: center; margin-bottom: 40px; }
.faq details {
  border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px;
  background: var(--bg-soft); overflow: hidden;
}
.faq summary {
  cursor: pointer; font-weight: 700; padding: 18px 22px; list-style: none;
  position: relative; padding-right: 48px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; font-weight: 400; color: var(--blue-500);
}
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 22px 20px; color: var(--ink-soft); }

/* ---------- Final CTA ---------- */
.final {
  background:
    radial-gradient(800px 400px at 50% -20%, rgba(59, 130, 246, .35), transparent 65%),
    linear-gradient(160deg, var(--blue-600), var(--navy-800));
  color: var(--white); padding: 96px 0; text-align: center;
}
.final h2 { font-size: clamp(2rem, 4.4vw, 3rem); margin-bottom: 20px; }
.final-recap { max-width: 46em; margin: 0 auto 34px; color: rgba(255,255,255,.85); font-size: 1.05rem; }
.final-ps {
  margin-top: 44px; font-size: .95rem; color: rgba(255,255,255,.8);
  max-width: 40em; margin-left: auto; margin-right: auto;
}
.final-ps a { color: #9cc3ff; font-weight: 700; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: rgba(255,255,255,.7); padding: 44px 0 28px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; }
.footer-tag { font-size: .88rem; margin-top: 10px; max-width: 30em; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,.75); text-decoration: none; font-size: .92rem; }
.footer-links a:hover { color: var(--white); }
.footer-fine { border-top: 1px solid rgba(255,255,255,.1); margin-top: 28px; padding-top: 18px; }
.footer-fine p { font-size: .8rem; color: rgba(255,255,255,.45); }

/* ---------- Pre-launch modal ---------- */
.modal-backdrop[hidden] { display: none; }
.modal-backdrop {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(4, 12, 28, .72);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.modal {
  position: relative;
  background: var(--white);
  border-radius: 18px;
  max-width: 480px; width: 100%;
  padding: 40px 38px 30px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, .5);
  text-align: center;
  animation: modal-in .3s ease;
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(18px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute; top: 12px; right: 16px;
  background: none; border: none; font-size: 1.8rem; line-height: 1;
  color: var(--ink-soft); cursor: pointer; padding: 4px;
}
.modal-close:hover { color: var(--ink); }
.modal-eyebrow {
  text-transform: uppercase; letter-spacing: .12em; font-size: .74rem; font-weight: 800;
  color: var(--blue-500); margin-bottom: 12px;
}
.modal h3 { font-size: 1.55rem; line-height: 1.2; margin-bottom: 14px; color: var(--navy-800); }
.modal-copy { color: var(--ink-soft); font-size: .98rem; margin-bottom: 18px; }
.modal-ticks {
  list-style: none; display: grid; gap: 9px; margin-bottom: 24px; text-align: left;
  max-width: 22.5em; margin-left: auto; margin-right: auto;
}
.modal-ticks li { padding-left: 26px; position: relative; font-weight: 600; font-size: .95rem; }
.modal-ticks li::before { content: "✓"; position: absolute; left: 0; color: var(--ok); font-weight: 800; }
.modal-btn { display: block; }
.modal-dismiss {
  background: none; border: none; margin-top: 14px;
  color: var(--ink-soft); font-size: .82rem; cursor: pointer; text-decoration: underline;
}
.modal-dismiss:hover { color: var(--ink); }

/* ============================================================
   Mobile
   ============================================================ */
@media (max-width: 900px) {
  .nav { top: 55px; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero { padding: 48px 0 72px; }
  .hero-photo { right: 0; bottom: -26px; width: 40%; }
  .stakes-grid { grid-template-columns: repeat(2, 1fr); }
  .personas-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-steps { grid-template-columns: 1fr; }
  .systems-grid { grid-template-columns: 1fr; }
  .integrations-grid { grid-template-columns: 1fr; }
  .logo-row { gap: 28px; }
  .showcase-panel { padding: 44px 20px 52px; border-radius: 20px; }
  .showcase-stage { min-height: 0; }
  .callout-stage svg { display: none; }
  .callout-img-mobile {
    display: block; width: 100%; border-radius: 12px;
    border: 2px solid rgba(255,255,255,.2); margin-bottom: 22px;
  }
  .callout-list-mobile { display: grid; gap: 10px; list-style: none; }
  .callout-list-mobile li { color: rgba(255,255,255,.75); font-size: .95rem; padding-left: 16px; position: relative; }
  .callout-list-mobile li::before { content: ""; position: absolute; left: 0; top: .55em; width: 7px; height: 7px; border-radius: 50%; background: #7db3ff; }
  .callout-list-mobile strong { color: var(--white); }
  .pill { position: static; display: inline-block; margin: 5px 4px; animation: none; font-size: .8rem; padding: 8px 14px; }
  .showcase-stage { display: flex; flex-direction: column; }
  .device-cluster { order: -1; padding: 10px 0 30px; }
  .device-laptop { width: 100%; }
  .device-phone { right: -6px; bottom: -14px; width: 138px; }
  .feature { grid-template-columns: 1fr; gap: 30px; padding: 44px 0; }
  .feature-flip .feature-copy { order: 1; }
  .feature-flip .feature-visual { order: 2; }
  .more-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .compare-table { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .anz-grid { grid-template-columns: repeat(2, 1fr); }
  .magnet-inner { grid-template-columns: 1fr; gap: 28px; }
  .nav-links { display: none; }
}

@media (max-width: 560px) {
  .stakes-grid { grid-template-columns: 1fr; }
  .personas-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .anz-grid { grid-template-columns: 1fr; }
  .more-grid { grid-template-columns: 1fr; }
  .btn-lg { width: 100%; }
  .hero h1 { font-size: 2rem; }
  .hero-photo { display: none; }
}
