/* ==========================================================================
   Safeline Capital — safeline.css
   Assured clarity. Luminous azure on near-white glass, deep-blue night bands.
   ========================================================================== */

:root {
  --azure: #0e6fff;
  --azureInk: #0a5ce0;        /* text/buttons on light: 5.8:1 on white */
  --azureDim: #0847b8;
  --azureHalo: rgba(14, 111, 255, 0.14);
  --night: #081c42;
  --nightHi: #0c2a5e;
  --ink: #0d2144;
  --inkSoft: #45587c;
  --paper: #fbfdff;
  --paperTint: #f2f7ff;
  --glass: rgba(255, 255, 255, 0.74);
  --glassEdge: rgba(14, 111, 255, 0.12);
  --hairline: rgba(13, 33, 68, 0.09);
  --nightText: #dce8ff;
  --nightSoft: #9db4e2;
  --r2xl: 24px;
  --rPill: 999px;
  --softShadow: 0 24px 40px -18px rgba(8, 28, 66, 0.16);
  --bigShadow: 0 40px 80px -28px rgba(8, 28, 66, 0.30);
  --ease: cubic-bezier(0.22, 0.8, 0.3, 1);
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: linear-gradient(180deg, #f3f8ff, var(--paper) 40%, #eef4ff 100%);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* film grain over everything — kills the flat-render look */
body::after {
  content: '';
  position: fixed; inset: 0;
  z-index: 900;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

img, svg, canvas { max-width: 100%; display: block; }

a { color: var(--azureInk); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--azure);
  outline-offset: 2px;
  border-radius: 6px;
}

strong, b { font-weight: 700; }

h1, h2, h3 { font-weight: 300; line-height: 1.12; letter-spacing: -0.015em; }
h1 { font-size: clamp(2.5rem, 6vw, 4.3rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: 1.25rem; font-weight: 700; letter-spacing: 0; }

.skipLink {
  position: absolute; left: -9999px; top: 0;
  background: var(--night); color: #fff; padding: 10px 18px;
  border-radius: 0 0 12px 0; z-index: 200;
}
.skipLink:focus { left: 0; }

/* ------------------------------------------------------------------ layout */

.shell { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }

.band { padding: 96px 0; position: relative; }
.band {
  background:
    radial-gradient(1000px 480px at 90% 0%, rgba(14, 111, 255, 0.09), transparent 60%),
    radial-gradient(820px 460px at 0% 100%, rgba(94, 162, 255, 0.10), transparent 60%),
    linear-gradient(180deg, #fbfdff, #f0f6ff);
}
.bandTint {
  background:
    radial-gradient(1100px 520px at 10% -5%, rgba(14, 111, 255, 0.13), transparent 60%),
    radial-gradient(900px 500px at 100% 105%, rgba(94, 162, 255, 0.15), transparent 62%),
    linear-gradient(180deg, #edf4ff, #e2edff);
}
.bandNight {
  background:
    radial-gradient(1100px 500px at 78% -10%, rgba(14, 111, 255, 0.42), transparent 62%),
    radial-gradient(900px 520px at -5% 110%, rgba(63, 135, 255, 0.26), transparent 60%),
    radial-gradient(60% 90% at 50% 50%, transparent 55%, rgba(3, 12, 30, 0.35) 100%),
    linear-gradient(180deg, var(--nightHi), var(--night) 55%, #051230 100%);
  color: var(--nightText);
}
.bandNight h2 { color: #fff; }

.kicker {
  display: inline-block;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--azureInk);
  margin-bottom: 18px;
}
.bandNight .kicker { color: #7fb0ff; }

.lede { max-width: 620px; color: var(--inkSoft); font-size: 1.1rem; margin-top: 18px; }
.bandNight .lede { color: var(--nightSoft); }

/* ------------------------------------------------------------------ header */

.topBar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 253, 255, 0.78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.topBar.isScrolled {
  border-bottom-color: var(--hairline);
  box-shadow: 0 12px 30px -20px rgba(8, 28, 66, 0.25);
}
.topBarRow {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 24px;
}

.brandLock { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); }
.brandLock:hover { text-decoration: none; }
.brandLock svg { width: 40px; height: 40px; flex: none; }
.brandWord { font-size: 1.02rem; letter-spacing: 0.16em; white-space: nowrap; }
.brandWord b { font-weight: 700; }
.brandWord span { font-weight: 300; color: var(--inkSoft); }

.navLinks { display: flex; align-items: center; gap: 30px; list-style: none; }
.navLinks a { color: var(--ink); font-weight: 300; font-size: 0.98rem; }
.navLinks a:hover { color: var(--azureInk); text-decoration: none; }

.menuBtn {
  display: none;
  background: none; border: 1px solid var(--hairline); border-radius: 12px;
  width: 46px; height: 46px; cursor: pointer; color: var(--ink);
  align-items: center; justify-content: center;
}

/* ------------------------------------------------------------------ buttons */

.pillBtn, .pillGhost, .pillNight {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: var(--rPill);
  padding: 15px 30px;
  font-family: inherit; font-size: 1rem; font-weight: 700;
  cursor: pointer; border: 0; line-height: 1;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.pillBtn {
  background: linear-gradient(140deg, var(--azure), var(--azureInk));
  color: #fff;
  box-shadow: 0 18px 34px -14px rgba(10, 92, 224, 0.55);
}
.pillBtn:hover { transform: translateY(-2px); box-shadow: 0 24px 44px -14px rgba(10, 92, 224, 0.6); text-decoration: none; }
.pillGhost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--azureInk);
  border: 1.5px solid rgba(14, 111, 255, 0.35);
}
.pillGhost:hover { background: #fff; transform: translateY(-2px); text-decoration: none; }
.pillNight {
  background: #fff; color: var(--azureDim);
  box-shadow: 0 18px 40px -16px rgba(0, 0, 0, 0.5);
}
.pillNight:hover { transform: translateY(-2px); text-decoration: none; }
.pillSlim { padding: 12px 24px; font-size: 0.94rem; }

/* ------------------------------------------------------------------ hero */

.heroZone {
  position: relative;
  min-height: 96vh;
  display: flex; align-items: center;
  padding: 60px 0 110px;
  background:
    radial-gradient(1200px 720px at 84% 16%, rgba(14, 111, 255, 0.40), transparent 62%),
    radial-gradient(900px 620px at 4% 96%, rgba(14, 111, 255, 0.30), transparent 58%),
    radial-gradient(760px 440px at 28% -12%, rgba(94, 162, 255, 0.46), transparent 65%),
    linear-gradient(168deg, #c8dfff 0%, #ddebff 34%, #ecf5ff 62%, #d2e5ff 100%);
  overflow: hidden;
}
/* azure vignette over the canvas, under the copy */
.heroZone::after {
  content: '';
  position: absolute; inset: 0;
  z-index: 1; pointer-events: none;
  background:
    radial-gradient(130% 105% at 50% 42%, transparent 58%, rgba(8, 28, 66, 0.13) 100%),
    linear-gradient(180deg, rgba(213, 231, 255, 0.5), transparent 18%);
}
#lifeline {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.heroInner { position: relative; z-index: 2; }
.heroCopy { max-width: 860px; position: relative; }
/* soft light pool behind the copy so it floats over the ribbon */
.heroCopy::before {
  content: '';
  position: absolute; inset: -12% -20% -18% -30%;
  z-index: -1; pointer-events: none;
  background: radial-gradient(64% 56% at 36% 42%, rgba(244, 249, 255, 0.72), rgba(244, 249, 255, 0) 66%);
}
.heroCopy h1 {
  color: var(--ink);
  font-size: clamp(3.4rem, 7.5vw, 6.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.heroCopy h1 strong {
  color: var(--azureInk);
  background: linear-gradient(120deg, #0a5ce0 0%, #2f7dff 55%, #0847b8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.heroSub {
  margin-top: 28px; max-width: 580px;
  font-size: 1.22rem; color: var(--inkSoft);
}
.heroCtas { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }
.heroFine {
  margin-top: 22px; font-size: 0.9rem; color: var(--inkSoft);
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
}
.heroFine svg { width: 16px; height: 16px; color: var(--azureInk); flex: none; }

.heroChips {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-top: 56px;
}
.chipGlass {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.86), rgba(232, 242, 255, 0.62));
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(14, 111, 255, 0.22);
  border-top-color: rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  box-shadow: 0 28px 46px -20px rgba(8, 28, 66, 0.28), inset 0 0 24px rgba(14, 111, 255, 0.05);
  padding: 16px 24px;
  min-width: 150px;
}
.chipGlass .chipNum { font-size: 1.5rem; font-weight: 700; color: var(--azureInk); line-height: 1.2; }
.chipGlass .chipLbl { font-size: 0.82rem; color: var(--inkSoft); }

/* ------------------------------------------------------------------ products */

.productGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.productCard {
  position: relative;
  background: linear-gradient(180deg, #ffffff, #f6faff);
  border: 1px solid var(--hairline);
  border-radius: var(--r2xl);
  padding: 34px 30px 30px;
  box-shadow: var(--softShadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
  display: flex; flex-direction: column;
}
.productCard:hover { box-shadow: var(--bigShadow); }
.productCard h3 { margin-bottom: 14px; }
.flagCard {
  grid-column: span 3;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 30px; align-items: center;
  background:
    radial-gradient(600px 300px at 90% 0%, rgba(14, 111, 255, 0.10), transparent 60%),
    #fff;
  border: 1px solid rgba(14, 111, 255, 0.22);
}
.flagCard h3 { font-size: 1.7rem; font-weight: 700; }
.flagBadge {
  display: inline-block;
  background: var(--azureHalo); color: var(--azureDim);
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  border-radius: var(--rPill); padding: 6px 14px; margin-bottom: 16px;
}
.numRow { display: flex; gap: 26px; margin: 14px 0 16px; }
.numRow div b { display: block; font-size: 1.28rem; font-weight: 700; color: var(--azureInk); }
.numRow div span { font-size: 0.8rem; color: var(--inkSoft); letter-spacing: 0.04em; }
.productCard p { color: var(--inkSoft); font-size: 0.98rem; flex: 1; }
.cardGo {
  margin-top: 20px; font-weight: 700; font-size: 0.95rem;
  display: inline-flex; align-items: center; gap: 8px;
}
.cardGo::after { content: '\2192'; transition: transform 0.25s var(--ease); }
.productCard:hover .cardGo::after { transform: translateX(5px); }

.flagFigure { position: relative; min-height: 220px; border-radius: 18px; overflow: hidden;
  background: linear-gradient(150deg, var(--nightHi), var(--night)); }
.flagFigure svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ------------------------------------------------------------------ steps */

.stepsWrap { position: relative; margin-top: 68px; }
.stepsLine {
  position: absolute; left: 0; right: 0; top: -8px;
  height: 72px; width: 100%;
  pointer-events: none;
}
.stepsLine path {
  fill: none;
  stroke: url(#lineGrad);
  stroke-width: 2.5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(96, 165, 255, 0.9));
}
.stepsGrid {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px;
}
.stepCell { text-align: center; padding: 0 6px; }
.stepDot {
  width: 56px; height: 56px; margin: 0 auto 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffffff, #dcebff);
  color: var(--azureDim);
  font-weight: 700; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 6px rgba(14, 111, 255, 0.22), 0 14px 30px -10px rgba(0, 0, 0, 0.5);
  position: relative; z-index: 2;
}
.stepCell h3 { color: #fff; margin-bottom: 10px; font-size: 1.12rem; }
.stepCell p { color: var(--nightSoft); font-size: 0.94rem; }

/* ------------------------------------------------------------------ why */

.whyGrid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 48px;
}
.statTile {
  background: var(--glass);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glassEdge);
  border-radius: 20px;
  box-shadow: var(--softShadow);
  padding: 26px 24px;
}
.statTile b { display: block; font-size: 2rem; font-weight: 700; color: var(--azureInk); line-height: 1.15; }
.statTile span { color: var(--inkSoft); font-size: 0.92rem; }

.whyPoints {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 34px;
}
.whyPoint {
  background: linear-gradient(180deg, #ffffff, #f5f9ff);
  border: 1px solid var(--hairline); border-radius: var(--r2xl);
  padding: 30px 28px; box-shadow: var(--softShadow);
}
.whyPoint svg { width: 40px; height: 40px; color: var(--azureInk); margin-bottom: 18px; }
.whyPoint h3 { margin-bottom: 10px; }
.whyPoint p { color: var(--inkSoft); font-size: 0.97rem; }

/* ------------------------------------------------------------------ industries */

.indGrid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 48px;
}
.indCard {
  background: linear-gradient(180deg, #ffffff, #f5f9ff);
  border: 1px solid var(--hairline);
  border-radius: 20px; padding: 26px 24px;
  box-shadow: var(--softShadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.indCard:hover { transform: translateY(-4px); border-color: rgba(14, 111, 255, 0.35); box-shadow: var(--bigShadow); }
.indCard svg { width: 34px; height: 34px; color: var(--azureInk); margin-bottom: 16px; }
.indCard h3 { font-size: 1.02rem; margin-bottom: 6px; }
.indCard p { color: var(--inkSoft); font-size: 0.88rem; }

/* ------------------------------------------------------------------ faq */

.faqList { margin-top: 46px; max-width: 820px; }
.faqItem {
  background: linear-gradient(180deg, #ffffff, #f6faff);
  border: 1px solid var(--hairline);
  border-radius: 18px; margin-bottom: 14px;
  box-shadow: var(--softShadow);
  overflow: hidden;
}
.faqItem summary {
  list-style: none; cursor: pointer;
  padding: 22px 60px 22px 26px;
  font-weight: 700; font-size: 1.05rem;
  position: relative;
}
.faqItem summary::-webkit-details-marker { display: none; }
.faqItem summary::after {
  content: '';
  position: absolute; right: 24px; top: 50%;
  width: 12px; height: 12px;
  border-right: 2.5px solid var(--azureInk);
  border-bottom: 2.5px solid var(--azureInk);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s var(--ease);
}
.faqItem[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.faqItem div { padding: 0 26px 24px; color: var(--inkSoft); font-size: 0.98rem; }

/* ------------------------------------------------------------------ CTA band */

.ctaZone { text-align: center; padding: 110px 0; }
.ctaZone h2 { max-width: 720px; margin: 0 auto; }
.ctaZone p { color: var(--nightSoft); margin-top: 18px; }
.ctaRow { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 40px; }
.ctaPhone { color: #fff; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,0.4); padding-bottom: 2px; }
.ctaPhone:hover { text-decoration: none; border-bottom-color: #fff; }

/* ------------------------------------------------------------------ footer */

.siteFoot {
  background:
    radial-gradient(900px 420px at 50% 0%, rgba(14, 111, 255, 0.09), transparent 62%),
    linear-gradient(180deg, #eef4ff, #dfeafc);
  border-top: 1px solid var(--hairline);
  padding: 72px 0 44px;
  font-size: 0.93rem;
}
.footCols {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px;
}
.footCols h4 {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--inkSoft); margin-bottom: 16px;
}
.footCols ul { list-style: none; }
.footCols li { margin-bottom: 10px; }
.footCols a { color: var(--ink); }
.footCols a:hover { color: var(--azureInk); }
.footBrand p { color: var(--inkSoft); margin-top: 14px; max-width: 300px; }
.footContact li { color: var(--inkSoft); }
.disclosureNote {
  margin-top: 48px; padding-top: 28px;
  border-top: 1px solid var(--hairline);
  color: var(--inkSoft); font-size: 0.85rem; max-width: 880px;
}
.copyLine { margin-top: 22px; color: var(--inkSoft); font-size: 0.85rem; }

/* ------------------------------------------------------------------ apply page */

.applyZone {
  position: relative;
  padding: 70px 0 100px;
  background:
    radial-gradient(1000px 520px at 88% -4%, rgba(14, 111, 255, 0.22), transparent 60%),
    radial-gradient(800px 460px at 0% 100%, rgba(94, 162, 255, 0.18), transparent 58%),
    linear-gradient(168deg, #d9e9ff, #eef5ff 45%, #e3eeff 100%);
}
.applySplit { display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; align-items: start; }
.applyPitch { position: sticky; top: 110px; }
.applyPitch h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
.applyPitch h1 strong { color: var(--azureInk); }
.nextSteps { margin-top: 44px; display: grid; gap: 20px; }
.nextStep { display: flex; gap: 18px; align-items: flex-start; }
.nextStep i {
  font-style: normal; flex: none;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--azureHalo); color: var(--azureDim);
  font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.nextStep b { display: block; font-weight: 700; }
.nextStep span { color: var(--inkSoft); font-size: 0.95rem; }

.formCard {
  background: var(--glass);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glassEdge);
  border-radius: var(--r2xl);
  box-shadow: var(--bigShadow);
  padding: 42px 40px;
}
.formGrid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fieldWrap { display: flex; flex-direction: column; }
.fieldWrap.fullSpan { grid-column: 1 / -1; }
.fieldWrap label { font-weight: 700; font-size: 0.9rem; margin-bottom: 8px; }
.fieldWrap label em { font-style: normal; font-weight: 300; color: var(--inkSoft); }
.fieldWrap input, .fieldWrap select, .fieldWrap textarea {
  font-family: inherit; font-size: 1rem; font-weight: 300;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--hairline);
  border-radius: 14px;
  padding: 14px 16px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  width: 100%;
}
.fieldWrap textarea { min-height: 110px; resize: vertical; }
.fieldWrap input:focus, .fieldWrap select:focus, .fieldWrap textarea:focus {
  border-color: var(--azure);
  box-shadow: 0 0 0 4px var(--azureHalo);
  outline: none;
}
.fieldWrap input[aria-invalid="true"], .fieldWrap select[aria-invalid="true"] {
  border-color: #d5343e;
}
.fieldNote { color: #b3262f; font-size: 0.85rem; margin-top: 7px; }
.fieldNote[hidden] { display: none; }
.formFoot { grid-column: 1 / -1; margin-top: 6px; }
.formFoot .pillBtn { width: 100%; padding: 17px 30px; font-size: 1.05rem; }
.formFine { margin-top: 14px; font-size: 0.83rem; color: var(--inkSoft); text-align: center; }

/* honeypot — keep off-screen for humans */
.fieldTrap { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.doneCard { text-align: center; padding: 30px 10px; }
.doneCard svg { width: 72px; height: 72px; margin: 0 auto 22px; color: var(--azureInk); }
.doneCard h2 { font-weight: 700; font-size: 1.6rem; }
.doneCard p { color: var(--inkSoft); margin-top: 12px; }

/* ------------------------------------------------------------------ legal + utility pages */

.legalZone {
  padding: 80px 0 100px;
  background:
    radial-gradient(900px 460px at 92% 0%, rgba(14, 111, 255, 0.10), transparent 60%),
    linear-gradient(180deg, #eaf3ff, #f6faff 40%, #e9f1ff 100%);
}
.legalZone article { max-width: 760px; }
.legalZone h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 8px; }
.legalStamp { color: var(--inkSoft); font-size: 0.9rem; margin-bottom: 40px; }
.legalZone h2 { font-size: 1.3rem; font-weight: 700; margin: 38px 0 12px; }
.legalZone p, .legalZone li { color: var(--inkSoft); margin-bottom: 14px; }
.legalZone ul { padding-left: 22px; margin-bottom: 14px; }

.lostZone {
  min-height: 78vh; display: flex; align-items: center; text-align: center;
  position: relative; overflow: hidden;
  background:
    radial-gradient(1000px 560px at 50% -10%, rgba(14, 111, 255, 0.20), transparent 62%),
    radial-gradient(760px 420px at 8% 100%, rgba(94, 162, 255, 0.16), transparent 60%),
    linear-gradient(180deg, #dcebff, #eef5ff 55%, #e2edff 100%);
}
.lostZone .shell { position: relative; z-index: 2; }
.lostCode { font-size: clamp(5rem, 16vw, 9rem); font-weight: 700; color: var(--azureInk); line-height: 1; letter-spacing: -0.04em; }
.lostZone h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-top: 10px; }
.lostZone p { color: var(--inkSoft); margin-top: 14px; }
.lostRow { display: flex; justify-content: center; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
.lostPath { position: absolute; inset: auto 0 12%; width: 100%; height: 160px; opacity: 0.5; }

.slimZone {
  padding: 90px 0 110px;
  background:
    radial-gradient(900px 500px at 50% -8%, rgba(14, 111, 255, 0.18), transparent 60%),
    linear-gradient(180deg, #ddecff, #eef5ff 55%, #e3eeff 100%);
}
.slimCard {
  max-width: 520px; margin: 0 auto;
  background: var(--glass);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glassEdge);
  border-radius: var(--r2xl); box-shadow: var(--bigShadow);
  padding: 46px 42px; text-align: center;
}
.slimCard h1 { font-size: 1.8rem; font-weight: 700; }
.slimCard p { color: var(--inkSoft); margin-top: 12px; }
.slimCard form { margin-top: 28px; display: grid; gap: 14px; text-align: left; }

/* ------------------------------------------------------------------ reveal motion */

.js .riseIn {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js .riseIn.isIn { opacity: 1; transform: none; }
.js .riseIn:nth-child(2) { transition-delay: 0.08s; }
.js .riseIn:nth-child(3) { transition-delay: 0.16s; }
.js .riseIn:nth-child(4) { transition-delay: 0.24s; }

.stepsLine path.selfDraw { transition: stroke-dashoffset 1.8s var(--ease) 0.2s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .js .riseIn { opacity: 1; transform: none; }
  .productCard, .pillBtn, .pillGhost, .pillNight, .indCard { transform: none !important; }
}

/* ------------------------------------------------------------------ responsive */

@media (max-width: 1024px) {
  .productGrid { grid-template-columns: repeat(2, 1fr); }
  .flagCard { grid-column: span 2; grid-template-columns: 1fr; }
  .flagFigure { min-height: 170px; }
  .whyGrid, .indGrid { grid-template-columns: repeat(2, 1fr); }
  .footCols { grid-template-columns: 1fr 1fr; }
  .applySplit { grid-template-columns: 1fr; }
  .applyPitch { position: static; }
}

@media (max-width: 768px) {
  .band { padding: 68px 0; }
  .heroZone { min-height: 0; padding: 40px 0 80px; }
  .navLinks {
    position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(251, 253, 255, 0.97);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--hairline);
    display: none; padding: 8px 24px 20px;
  }
  .navLinks.isOpen { display: flex; }
  .navLinks li { padding: 12px 0; border-bottom: 1px solid var(--hairline); }
  .navLinks li:last-child { border-bottom: 0; padding-top: 18px; }
  .menuBtn { display: inline-flex; }
  .navApplyPill { width: 100%; }
  .productGrid { grid-template-columns: 1fr; }
  .flagCard { grid-column: span 1; }
  .stepsGrid { grid-template-columns: 1fr; gap: 0; }
  .stepsLine { display: none; }
  .stepCell {
    text-align: left; display: grid; grid-template-columns: 56px 1fr;
    gap: 0 20px; padding: 0 0 34px; position: relative;
  }
  .stepCell:not(:last-child)::before {
    content: ''; position: absolute; left: 27px; top: 60px; bottom: 4px;
    width: 2px; background: linear-gradient(180deg, rgba(96,165,255,0.8), rgba(96,165,255,0.15));
  }
  .stepCell .stepDot { margin: 0; grid-row: span 2; }
  .whyGrid, .indGrid { grid-template-columns: 1fr 1fr; }
  .formGrid { grid-template-columns: 1fr; }
  .formCard { padding: 32px 24px; }
  .footCols { grid-template-columns: 1fr; gap: 32px; }
  .numRow { flex-wrap: wrap; gap: 16px; }
  .brandWord span { display: none; }
}

@media (max-width: 480px) {
  .whyGrid, .indGrid { grid-template-columns: 1fr; }
  .heroChips { gap: 12px; }
  .chipGlass { min-width: calc(50% - 8px); padding: 14px 18px; }
}
