/* ==========================================================================
   Logistic Slash — Landing Page Styles  (LIGHT / WHITE THEME)
   --------------------------------------------------------------------------
   Brand palette (Logistic_Slash_Branding_Guide.pdf):
     Primary Blue #0A84FF · Deep Navy #071B34 · Cyan Accent #00D4FF · White
   Approach: clean white background, navy text, blue/cyan accents, soft
   shadows and subtle motion. No build step.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --blue: #0A84FF;
  --blue-2: #1C64F2;        /* royal blue for depth/gradients */
  --cyan: #00C2E8;          /* slightly deepened cyan for legibility on white */
  --cyan-bright: #00D4FF;
  --navy: #071B34;          /* deep brand navy (logo, headings accents) */

  --bg: #ffffff;            /* page background */
  --surface: #F5F9FD;       /* alternating light section background */
  --surface-2: #EEF4FB;     /* tinted card background */
  --line: rgba(7, 27, 52, 0.10);   /* hairline borders */
  --line-soft: rgba(7, 27, 52, 0.06);

  --ink: #0B1E3B;           /* headings */
  --text: #46566F;          /* body text */
  --text-dim: #6B7A92;      /* muted text */
  --white: #ffffff;

  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 10px;
  --maxw: 1180px;
  --gutter: clamp(18px, 4vw, 40px);

  --grad-brand: linear-gradient(120deg, var(--blue) 0%, var(--cyan-bright) 100%);
  --grad-brand-2: linear-gradient(135deg, var(--blue-2) 0%, var(--blue) 45%, var(--cyan-bright) 100%);

  --shadow-1: 0 8px 24px rgba(7, 27, 52, 0.08);
  --shadow-2: 0 24px 60px rgba(7, 27, 52, 0.12);
  --glow: 0 0 0 1px rgba(10, 132, 255, 0.16), 0 16px 44px rgba(10, 132, 255, 0.16);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 {
  font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.01em;
}
p { margin: 0; }
::selection { background: rgba(10, 132, 255, 0.18); color: var(--ink); }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- Buttons ---------- */
.btn {
  --btn-pad-y: 12px; --btn-pad-x: 20px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600; font-size: 0.95rem;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform 0.18s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn--primary { background: var(--grad-brand-2); color: #fff; box-shadow: var(--glow); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(10,132,255,.25), 0 20px 48px rgba(10,132,255,.3); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-1); }
.btn--ghost:hover { border-color: rgba(10,132,255,.4); color: var(--blue); }
.btn--sm { --btn-pad-y: 9px; --btn-pad-x: 16px; font-size: 0.88rem; }
.btn--lg { --btn-pad-y: 15px; --btn-pad-x: 28px; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ---------- Announcement bar ---------- */
.announce {
  background: linear-gradient(90deg, rgba(10,132,255,.08), rgba(0,212,255,.08));
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
}
.announce__row { display: flex; align-items: center; gap: 12px; padding: 9px 0; flex-wrap: wrap; }
.announce__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px rgba(10,132,255,.15); animation: pulse 2s infinite; flex: none; }
.announce__text { margin: 0; color: var(--text); flex: 1 1 auto; }
.announce__text strong { color: var(--ink); }
.announce__count { color: var(--blue); font-weight: 700; }
.announce__left { color: var(--text-dim); }
.announce__cta { color: var(--blue); font-weight: 600; flex: none; }
.announce__cta:hover { text-decoration: underline; }

/* ---------- Navbar ---------- */
.nav { position: sticky; top: 0; z-index: 60; transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s; }
.nav.is-stuck { background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(14px) saturate(140%); box-shadow: 0 1px 0 var(--line), 0 10px 30px rgba(7,27,52,.06); }
.nav__row { display: flex; align-items: center; gap: 20px; padding: 14px 0; }

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark { display: inline-flex; filter: drop-shadow(0 4px 12px rgba(10,132,255,.18)); }
.brand__img { height: 30px; width: auto; filter: drop-shadow(0 4px 10px rgba(10,132,255,.18)); }
.brand__word {
  font-family: "Space Grotesk", sans-serif; font-weight: 700;
  letter-spacing: 0.06em; color: var(--navy); font-size: 1.12rem;
}
.brand__accent { color: var(--blue); }

.nav__links { display: flex; gap: 26px; margin-inline: auto; }
.nav__links a { color: var(--text); font-size: 0.94rem; font-weight: 500; position: relative; padding: 4px 0; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--grad-brand); transition: width 0.25s var(--ease); border-radius: 2px; }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform 0.25s, opacity 0.2s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown — solid opaque panel so page content never shows through */
.nav__mobile { display: flex; flex-direction: column; gap: 2px; padding: 10px var(--gutter) 20px; background: #ffffff; border-top: 1px solid var(--line); box-shadow: 0 26px 44px rgba(7, 27, 52, 0.12); }
.nav__mobile a { padding: 14px 6px; color: var(--text); border-bottom: 1px solid var(--line-soft); font-weight: 500; }
.nav__mobile a:hover { color: var(--ink); }
.nav__mobile a.btn { justify-content: center; border-bottom: 0; margin-top: 12px; color: #fff; }

/* ---------- Shared section bits ---------- */
.section-head { max-width: 680px; margin: 0 auto clamp(34px, 5vw, 54px); text-align: center; }
.eyebrow {
  display: inline-block; font-family: "Space Grotesk", sans-serif; font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 14px;
}
.section-head h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); margin-bottom: 14px; }
.section-head p { color: var(--text-dim); font-size: 1.05rem; }

.chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px; border-radius: 999px;
  background: rgba(10,132,255,.08); border: 1px solid rgba(10,132,255,.2);
  color: var(--blue); font-size: 0.83rem; font-weight: 600;
  font-family: "Space Grotesk", sans-serif; letter-spacing: 0.02em;
}
.chip--cyan { background: rgba(0,194,232,.1); border-color: rgba(0,194,232,.28); color: #0093b5; }
.chip__pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px rgba(10,132,255,.14); animation: pulse 2s infinite; }

.tag {
  display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 4px 10px; border-radius: 999px; color: var(--text-dim);
  background: var(--surface-2); border: 1px solid var(--line);
  font-family: "Space Grotesk", sans-serif;
}
.tag--ai { color: #fff; background: var(--grad-brand); border-color: transparent; }

/* ---------- HERO ---------- */
.hero { position: relative; padding: clamp(48px, 8vw, 96px) 0 clamp(60px, 9vw, 110px); overflow: hidden; background: var(--bg); }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__grid {
  position: absolute; inset: -2px;
  background-image:
    linear-gradient(rgba(7,27,52,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,27,52,.05) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 35%, transparent 78%);
          mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 35%, transparent 78%);
}
.hero__glow { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.6; }
.hero__glow--1 { width: 540px; height: 540px; top: -180px; left: -120px; background: radial-gradient(circle, rgba(10,132,255,.18), transparent 65%); }
.hero__glow--2 { width: 460px; height: 460px; top: 20px; right: -140px; background: radial-gradient(circle, rgba(0,194,232,.16), transparent 65%); animation: floatGlow 9s ease-in-out infinite alternate; }
.hero__glow--3 { position: absolute; width: 600px; height: 600px; left: 50%; top: -200px; transform: translateX(-50%); background: radial-gradient(circle, rgba(10,132,255,.12), transparent 65%); filter: blur(80px); pointer-events: none; }
.hero__routes { position: absolute; inset: 0; opacity: 0.6; }
.hero__routes svg { width: 100%; height: 100%; }
.route { fill: none; stroke: rgba(10,132,255,.28); stroke-width: 1.5; stroke-dasharray: 8 10; animation: dash 22s linear infinite; }
.route--2 { stroke: rgba(0,194,232,.28); animation-duration: 30s; }

.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.hero__title { font-size: clamp(2.1rem, 5.2vw, 3.6rem); margin: 18px 0 18px; color: var(--ink); }
.slash-word { position: relative; color: var(--blue); white-space: nowrap; }
.slash-word__cut { color: var(--cyan); }
.hero__sub { font-size: clamp(1rem, 1.5vw, 1.18rem); color: var(--text-dim); max-width: 540px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 30px; }

.hero__progress { max-width: 460px; padding: 16px 18px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-1); }
.hero__progress-head { display: flex; justify-content: space-between; font-size: 0.86rem; color: var(--text-dim); margin-bottom: 10px; }
.hero__progress-head strong { color: var(--ink); font-family: "Space Grotesk", sans-serif; }
.progress { height: 8px; border-radius: 999px; background: rgba(7,27,52,.08); overflow: hidden; }
.progress__bar { height: 100%; border-radius: 999px; background: var(--grad-brand); transition: width 1.4s var(--ease); box-shadow: 0 0 12px rgba(10,132,255,.4); }
.hero__trust { font-size: 0.8rem; color: var(--text-dim); margin-top: 12px; }

/* Hero product mock */
.hero__visual { position: relative; }
.mock {
  position: relative; z-index: 2;
  border-radius: var(--radius-lg); overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-2);
  transform: perspective(1200px) rotateY(-6deg) rotateX(3deg);
  transition: transform 0.5s var(--ease);
}
.hero__visual:hover .mock { transform: perspective(1200px) rotateY(-2deg) rotateX(1deg); }
.mock__bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; background: var(--surface); border-bottom: 1px solid var(--line); }
.mock__dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(7,27,52,.14); }
.mock__title { margin-left: 10px; font-size: 0.8rem; color: var(--text-dim); font-family: "Space Grotesk", sans-serif; }
.mock__live { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 0.72rem; font-weight: 700; color: var(--blue); letter-spacing: 0.08em; }
.mock__live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); animation: pulse 1.6s infinite; }
.mock__body { padding: 16px; display: grid; gap: 14px; background: #fff; }

.mock__kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.kpi { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px; }
.kpi__label { display: block; font-size: 0.72rem; color: var(--text-dim); margin-bottom: 6px; }
.kpi__val { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 1.5rem; color: var(--ink); }

.mock__map { position: relative; height: 150px; border-radius: var(--radius-sm); overflow: hidden; background: linear-gradient(160deg, #EAF1FB, #DCE8F7); border: 1px solid var(--line); }
.mock__map-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(7,27,52,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(7,27,52,.05) 1px, transparent 1px); background-size: 26px 26px; }
.mock__map-route { position: absolute; inset: 0; width: 100%; height: 100%; }
.mock__map-route path { stroke: var(--blue) !important; }
.truck-pin { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px rgba(10,132,255,.2), 0 0 12px rgba(10,132,255,.5); }
.truck-pin::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid rgba(10,132,255,.5); animation: ping 2.4s ease-out infinite; }
.truck-pin--1 { left: 16%; top: 70%; }
.truck-pin--2 { left: 52%; top: 44%; background: var(--cyan); box-shadow: 0 0 0 4px rgba(0,194,232,.22), 0 0 12px rgba(0,194,232,.55); animation: trundle 6s ease-in-out infinite; }
.truck-pin--3 { left: 84%; top: 24%; }
.geo-zone { position: absolute; left: 8%; top: 58%; width: 64px; height: 64px; border-radius: 50%; border: 1.5px dashed rgba(10,132,255,.45); background: rgba(10,132,255,.06); }

.mock__rate { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px; }
.mock__rate-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.mock__rate-ref { font-size: 0.78rem; color: var(--text-dim); font-family: "Space Grotesk", sans-serif; }
.mock__rate-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 14px; }
.mock__rate-grid small { display: block; font-size: 0.66rem; color: var(--text-dim); margin-bottom: 3px; }
.mock__rate-grid b { font-size: 0.84rem; color: var(--ink); }
.mock__confirm { width: 100%; padding: 11px; border-radius: var(--radius-sm); border: 0; cursor: default; background: var(--grad-brand); color: #fff; font-weight: 700; font-family: "Space Grotesk", sans-serif; font-size: 0.86rem; }

.float-chip {
  position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; border-radius: 14px;
  background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(10px);
  border: 1px solid var(--line); box-shadow: var(--shadow-1);
  animation: floaty 5s ease-in-out infinite;
}
.float-chip__icon { font-size: 1.1rem; }
.float-chip b { display: block; font-size: 0.82rem; color: var(--ink); font-family: "Space Grotesk", sans-serif; }
.float-chip small { font-size: 0.72rem; color: var(--text-dim); }
.float-chip--a { top: 6%; left: -22px; }
.float-chip--b { bottom: 8%; right: -18px; animation-delay: 1.4s; }

/* ---------- Trust strip ---------- */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.strip__inner { padding: 34px 0; text-align: center; }
.strip__lead { color: var(--text-dim); font-size: 1rem; margin-bottom: 26px; }
.strip__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat__num { display: block; font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: clamp(1.6rem, 3vw, 2.3rem); background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat__cap { font-size: 0.82rem; color: var(--text-dim); }

/* ---------- Compare ---------- */
.compare { padding: clamp(56px, 8vw, 100px) 0; background: var(--bg); }
.compare__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.compare__card { padding: 28px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-1); }
.compare__card h3 { font-size: 1.2rem; margin-bottom: 18px; }
.compare__card--old { background: var(--surface); box-shadow: none; }
.compare__card--old h3 { color: var(--text-dim); }
.compare__card--new { background: linear-gradient(160deg, rgba(10,132,255,.08), rgba(0,194,232,.05)); border-color: rgba(10,132,255,.25); box-shadow: var(--glow); }
.xlist li, .clist li { position: relative; padding: 9px 0 9px 32px; font-size: 0.96rem; border-bottom: 1px solid var(--line-soft); color: var(--text); }
.xlist li:last-child, .clist li:last-child { border-bottom: 0; }
.xlist li::before { content: "✕"; position: absolute; left: 0; top: 9px; color: #e0566a; font-weight: 700; }
.clist li { color: var(--ink); }
.clist li::before { content: "✓"; position: absolute; left: 0; top: 9px; color: var(--blue); font-weight: 700; }

/* ---------- Features ---------- */
.features { padding: clamp(56px, 8vw, 100px) 0; background: var(--surface); }
.features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature {
  position: relative; padding: 26px; border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line); overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.feature::before { content: ""; position: absolute; inset: 0; background: radial-gradient(420px circle at var(--mx,50%) var(--my,0%), rgba(10,132,255,.07), transparent 60%); opacity: 0; transition: opacity 0.3s; }
.feature:hover { transform: translateY(-5px); border-color: rgba(10,132,255,.3); box-shadow: var(--shadow-2); }
.feature:hover::before { opacity: 1; }
.feature--hl { border-color: rgba(10,132,255,.32); box-shadow: var(--glow); }
.feature__icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 14px; background: rgba(10,132,255,.1); color: var(--blue); margin-bottom: 18px; border: 1px solid rgba(10,132,255,.18); }
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.18rem; margin-bottom: 10px; }
.feature p { color: var(--text-dim); font-size: 0.95rem; margin-bottom: 16px; }

/* ---------- Automation ---------- */
.automation { padding: clamp(56px, 8vw, 100px) 0; background: radial-gradient(ellipse 70% 100% at 50% 0%, rgba(10,132,255,.06), transparent 70%), var(--bg); }
.pipeline { display: flex; align-items: stretch; gap: 14px; flex-wrap: wrap; justify-content: center; }
.pstep { flex: 1 1 200px; max-width: 250px; padding: 24px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-1); position: relative; }
.pstep__num { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: rgba(10,132,255,.1); color: var(--blue); font-family: "Space Grotesk", sans-serif; font-weight: 700; margin-bottom: 14px; border: 1px solid rgba(10,132,255,.2); }
.pstep h4 { font-size: 1.04rem; margin-bottom: 8px; }
.pstep p { color: var(--text-dim); font-size: 0.9rem; }
.pstep--final { background: linear-gradient(160deg, rgba(10,132,255,.1), rgba(0,194,232,.06)); border-color: rgba(10,132,255,.3); }
.pstep--final .pstep__num { background: var(--grad-brand); color: #fff; }
.pstep__arrow { display: flex; align-items: center; color: var(--blue); font-size: 1.4rem; font-weight: 700; }

/* ---------- How / timeline ---------- */
.how { padding: clamp(56px, 8vw, 100px) 0; background: var(--surface); }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; position: relative; }
.timeline::before { content: ""; position: absolute; top: 19px; left: 7%; right: 7%; height: 2px; background: linear-gradient(90deg, transparent, rgba(10,132,255,.35), transparent); }
.timeline__item { text-align: center; padding-top: 6px; }
.timeline__dot { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: #fff; color: var(--navy); font-family: "Space Grotesk", sans-serif; font-weight: 700; border: 2px solid rgba(10,132,255,.4); position: relative; z-index: 1; margin-bottom: 16px; box-shadow: 0 0 0 6px var(--surface); }
.timeline__item h4 { font-size: 1.02rem; margin-bottom: 8px; }
.timeline__item p { color: var(--text-dim); font-size: 0.9rem; }

/* ---------- Founding ---------- */
.founding { padding: clamp(56px, 8vw, 100px) 0; background: var(--bg); }
.founding__benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 26px; }
.benefit { display: flex; gap: 14px; padding: 22px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-1); }
.benefit span { font-size: 1.5rem; }
.benefit b { color: var(--ink); font-family: "Space Grotesk", sans-serif; }
.benefit p { color: var(--text-dim); font-size: 0.9rem; margin-top: 4px; }
.founding__note { text-align: center; color: var(--text-dim); font-size: 0.9rem; margin-top: 8px; }

/* ---------- Join / signup ---------- */
.join { position: relative; padding: clamp(56px, 8vw, 100px) 0; overflow: hidden; background: var(--surface); }
.join__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.join__copy h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); margin: 16px 0 14px; }
.join__copy p { color: var(--text-dim); font-size: 1.05rem; }
.join__points { margin: 22px 0; display: grid; gap: 10px; }
.join__points li { position: relative; padding-left: 28px; color: var(--ink); }
.join__points li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
.join__spots { max-width: 360px; }
.join__spots small { display: block; margin-top: 8px; color: var(--text-dim); font-size: 0.82rem; }

.form-card { padding: clamp(22px, 3vw, 32px); border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-2); }
.form-card__title { font-size: 1.3rem; margin-bottom: 20px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 0.82rem; color: var(--text-dim); margin-bottom: 7px; font-weight: 500; }
.field input, .field select {
  width: 100%; padding: 13px 14px; border-radius: var(--radius-sm);
  background: var(--surface); border: 1px solid var(--line); color: var(--ink);
  font-family: inherit; font-size: 0.95rem; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.field input::placeholder { color: #9aa8bd; }
.field input:focus, .field select:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(10,132,255,.14); }
.field select option { background: #fff; color: var(--ink); }
.form-card__fine { font-size: 0.76rem; color: var(--text-dim); text-align: center; margin-top: 14px; }
.form-card__error { font-size: 0.82rem; color: #d92d20; margin: 0 0 12px; font-weight: 500; }
.form-card__error:empty { display: none; }

.form-success { text-align: center; padding: 24px 8px; }
.form-success__check { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center; font-size: 1.8rem; color: #fff; background: var(--grad-brand); box-shadow: var(--glow); }
.form-success h4 { font-size: 1.3rem; margin-bottom: 8px; }
.form-success p { color: var(--text-dim); }
.form-success strong { color: var(--blue); }

/* ---------- FAQ ---------- */
.faq { padding: clamp(56px, 8vw, 100px) 0; background: var(--bg); }
.faq__inner { max-width: 800px; }
.accordion { display: grid; gap: 12px; }
.acc { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; transition: border-color 0.25s, background 0.25s, box-shadow 0.25s; box-shadow: var(--shadow-1); }
.acc[open] { border-color: rgba(10,132,255,.3); background: rgba(10,132,255,.04); }
.acc summary { cursor: pointer; list-style: none; padding: 18px 22px; font-family: "Space Grotesk", sans-serif; font-weight: 600; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: "+"; font-size: 1.4rem; color: var(--blue); transition: transform 0.25s; flex: none; }
.acc[open] summary::after { transform: rotate(45deg); }
.acc p { padding: 0 22px 20px; color: var(--text-dim); font-size: 0.95rem; }

/* ---------- CTA band ---------- */
.cta-band { padding: clamp(50px, 7vw, 90px) 0; background: var(--bg); }
.cta-band__inner { text-align: center; padding: clamp(40px, 6vw, 64px) var(--gutter); border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(10,132,255,.1), rgba(0,194,232,.06)); border: 1px solid rgba(10,132,255,.25); box-shadow: var(--glow); position: relative; overflow: hidden; }
.cta-band__inner h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); margin-bottom: 12px; }
.cta-band__inner p { color: var(--text-dim); margin-bottom: 26px; font-size: 1.05rem; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding-top: 54px; background: var(--surface); }
.footer__inner { display: grid; grid-template-columns: 1.3fr 2fr; gap: 40px; padding-bottom: 36px; }
.footer__tag { color: var(--text-dim); margin-top: 14px; font-size: 0.92rem; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer__col h5 { color: var(--ink); font-family: "Space Grotesk", sans-serif; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.footer__col a { display: block; color: var(--text-dim); font-size: 0.92rem; padding: 5px 0; transition: color 0.2s; }
.footer__col a:hover { color: var(--blue); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 20px 0 28px; border-top: 1px solid var(--line); font-size: 0.84rem; color: var(--text-dim); flex-wrap: wrap; }
.footer__legal a:hover { color: var(--blue); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Keyframes ---------- */
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(10,132,255,.35); } 70% { box-shadow: 0 0 0 8px rgba(10,132,255,0); } }
@keyframes ping { 0% { transform: scale(0.6); opacity: 0.9; } 100% { transform: scale(1.8); opacity: 0; } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes floatGlow { 0% { transform: translateY(0); } 100% { transform: translateY(30px); } }
@keyframes dash { to { stroke-dashoffset: -400; } }
@keyframes trundle { 0%,100% { transform: translate(0,0); } 50% { transform: translate(10px,-6px); } }

/* ==========================================================================
   Responsive
   ========================================================================== */
/* Never show the mobile dropdown on desktop, even if it was toggled open
   at a narrow width and the window was then widened. */
@media (min-width: 961px) {
  .nav__mobile { display: none !important; }
}

@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 520px; margin: 0 auto; }
  .mock { transform: none; }
  .hero__visual:hover .mock { transform: none; }
  .join__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .features__grid { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .timeline::before { display: none; }
  .pstep__arrow { transform: rotate(90deg); }
  .pipeline { flex-direction: column; align-items: center; }
  .pstep { max-width: 100%; width: 100%; }
}
@media (max-width: 600px) {
  .strip__stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  .compare__grid { grid-template-columns: 1fr; }
  .features__grid { grid-template-columns: 1fr; }
  .founding__benefits { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .announce__left { display: none; }
  .hero__actions .btn { width: 100%; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
