:root {
  --bg: #ffffff;
  --surface: #f6f8fa;
  --surface-2: #eef2f6;
  --ink: #0a0e1a;
  --ink-2: #5b6478;
  --ink-soft: #1a1f2e;
  --accent: #2563eb;
  --accent-strong: #1e3a8a;
  --accent-soft: #dbeafe;
  --border: #e5e9ef;
  --shadow-sm: 0 1px 2px rgba(10, 14, 26, 0.04);
  --shadow-md: 0 8px 32px rgba(10, 14, 26, 0.06);
  --shadow-lg: 0 24px 64px rgba(10, 14, 26, 0.08);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --max-w: 1240px;
  --header-h: 76px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Typography (single typeface — Manrope) ---------- */
.display, h1, h2, h3, h4 {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.022em;
  color: var(--ink);
  line-height: 1.08;
}

h1 { font-size: clamp(2.6rem, 5.6vw, 4.8rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 1.6vw, 1.5rem); font-weight: 600; letter-spacing: -0.015em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--ink-2);
}

.lead {
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 60ch;
}

/* ---------- Header ---------- */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}
.site-header .inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
}
.brand img { height: 34px; width: auto; }
.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color 0.18s ease;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--accent-strong);
  transition: width 0.25s ease, left 0.25s ease;
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; left: 0; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  transition: transform 0.18s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn .arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover {
  background: var(--ink-soft);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background: var(--accent-strong);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(30, 58, 138, 0.28);
}
.btn-accent:hover {
  background: #0a0e1a;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(10, 14, 26, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.btn-sm { padding: 10px 18px; font-size: 0.88rem; }

/* ---------- Page atmosphere — pure white below hero ---------- */
body { background: #ffffff; }
html { background: #ffffff; }
.section { background: #ffffff; position: relative; z-index: 1; }

/* Animated mesh background — soft layered tones for light bg */
.page-bg {
  position: fixed;
  inset: -15% -15% -15% -15%;
  z-index: -2;
  overflow: hidden;
  filter: blur(80px) saturate(115%);
  opacity: 0.85;
  pointer-events: none;
}

.page-bg::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 170%; aspect-ratio: 1;
  background: conic-gradient(
    from 0deg,
    rgba(37,99,235,0.14),
    rgba(255,255,255,0) 25%,
    rgba(214,230,236,0.12) 50%,
    rgba(255,255,255,0) 75%,
    rgba(37,99,235,0.12)
  );
  transform: translate(-50%, -50%);
  animation: spin 90s linear infinite;
  filter: blur(50px);
  opacity: 0.8;
}

.page-bg .blob {
  position: absolute;
  will-change: transform, border-radius;
  mix-blend-mode: multiply;
}
.page-bg .b1 {
  width: 56%; aspect-ratio: 1.15;
  top: -18%; left: -10%;
  background: radial-gradient(circle at 35% 35%, #2563eb 0%, rgba(37,99,235,0) 62%);
  animation: morph1 22s cubic-bezier(.65,.05,.36,1) infinite;
  opacity: 0.55;
}
.page-bg .b2 {
  width: 52%; aspect-ratio: 1.05;
  top: 0%; right: -14%;
  background: radial-gradient(circle at 65% 30%, #d6e6ec 0%, rgba(214,230,236,0) 62%);
  animation: morph2 28s cubic-bezier(.55,.05,.45,.95) infinite;
}
.page-bg .b3 {
  width: 58%; aspect-ratio: 1.25;
  bottom: -22%; left: 10%;
  background: radial-gradient(circle at 50% 60%, #cee2f4 0%, rgba(206,226,244,0) 62%);
  animation: morph3 32s cubic-bezier(.6,.05,.4,.95) infinite;
  opacity: 0.7;
}
.page-bg .b4 {
  width: 42%; aspect-ratio: 0.9;
  top: 35%; right: 18%;
  background: radial-gradient(circle at 50% 50%, #2563eb 0%, rgba(37,99,235,0) 60%);
  opacity: 0.4;
  animation: morph4 25s cubic-bezier(.5,.1,.5,.9) infinite;
}
.page-bg .b5 {
  width: 44%; aspect-ratio: 1.1;
  top: 48%; left: -4%;
  background: radial-gradient(circle at 50% 50%, #e2ecf2 0%, rgba(226,236,242,0) 62%);
  opacity: 0.7;
  animation: morph5 30s cubic-bezier(.6,.1,.4,.9) infinite;
}

/* full-page grain for cinematic texture */
.page-grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.13;
  mix-blend-mode: overlay;
}

/* ---------- Hero — editorial, full-viewport, photo backdrop ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 56px) 0 56px;
  isolation: isolate;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(180deg, rgba(30,58,138,0.55) 0%, rgba(15,32,90,0.78) 55%, rgba(255,255,255,0.95) 100%),
    url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=2400&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: heroPhotoPan 40s ease-in-out infinite alternate;
}
@keyframes heroPhotoPan {
  from { background-position: center 38%; }
  to   { background-position: center 62%; }
}
.hero-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.hero-top { display: flex; align-items: center; }
.hero-center {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 auto;
  max-width: 18ch;
}
.hero-title .l2 {
  display: block;
  font-weight: 500;
  color: var(--ink-2);
}
.hero-title .accent-mark {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.hero-title .accent-mark::after {
  content: '';
  position: absolute;
  left: -2%;
  bottom: 6%;
  width: 104%;
  height: 0.16em;
  background: var(--accent);
  z-index: -1;
  transform: skew(-6deg);
}

.hero-lead {
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 56ch;
  margin: 24px auto 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 44px;
  justify-content: center;
}

.hero-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
}
.hero-mark {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}
.hero-mark img {
  height: 46px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.hero-mark:hover img { opacity: 1; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}
.hero-stats .sep {
  width: 1px;
  height: 36px;
  background: rgba(10,14,26,0.15);
}
.hero-stat .num {
  font-family: 'Manrope', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: block;
}
.hero-stat .lab {
  font-size: 0.74rem;
  color: var(--ink-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}
.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.hero-scroll .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 0 0 6px rgba(37,99,235,0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(37,99,235,0.18); }
  50%      { box-shadow: 0 0 0 12px rgba(37,99,235,0.06); }
}

/* ---------- Pill CTAs (refined) ---------- */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  height: 58px;
  padding: 6px 8px 6px 26px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: -0.005em;
  text-decoration: none;
  white-space: nowrap;
  border: 1.5px solid transparent;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease,
              transform 0.3s cubic-bezier(.2,.7,.3,1), box-shadow 0.3s ease;
  cursor: pointer;
}
.btn-pill .chip {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}
.btn-pill .chip svg { transition: transform 0.3s ease; }
.btn-pill:hover { transform: translateY(-2px); }
.btn-pill:hover .chip svg { transform: translateX(3px); }

.btn-pill-primary {
  background: #ffffff;
  color: #0a0e1a;
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
}
.btn-pill-primary .chip {
  background: var(--accent);
  color: #ffffff;
}
.btn-pill-primary:hover {
  background: #f0f4f8;
  box-shadow: 0 16px 36px rgba(0,0,0,0.45);
}
.btn-pill-primary:hover .chip { background: var(--accent-strong); }

.btn-pill-ghost {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-pill-ghost .chip {
  background: rgba(255,255,255,0.92);
  color: #0a0e1a;
}
.btn-pill-ghost:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.12);
}
.btn-pill-ghost:hover .chip { background: var(--accent); color: #fff; }

/* ---------- Hero text overrides (dark photo backdrop) ---------- */
.hero { color: #fff; }
.hero .hero-title { color: #fff; }
.hero .hero-title .l2 { color: rgba(255,255,255,0.72); }
.hero .hero-lead { color: rgba(255,255,255,0.85); }
.hero .hero-scroll { color: rgba(255,255,255,0.75); }
.hero .eyebrow { color: rgba(255,255,255,0.7); }
.hero .eyebrow::before { background: rgba(255,255,255,0.5); }

@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* organic morphing — translate + rotate + border-radius shape-shift */
@keyframes morph1 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    border-radius: 56% 44% 60% 40% / 50% 56% 44% 50%;
  }
  33% {
    transform: translate(8%, 12%) rotate(40deg) scale(1.08);
    border-radius: 40% 60% 44% 56% / 60% 44% 56% 40%;
  }
  66% {
    transform: translate(-6%, 18%) rotate(80deg) scale(0.94);
    border-radius: 60% 40% 56% 44% / 44% 60% 40% 56%;
  }
}
@keyframes morph2 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
  }
  33% {
    transform: translate(-12%, 10%) rotate(-50deg) scale(1.12);
    border-radius: 44% 56% 60% 40% / 56% 44% 50% 60%;
  }
  66% {
    transform: translate(8%, -10%) rotate(-90deg) scale(0.9);
    border-radius: 50% 50% 40% 60% / 60% 50% 60% 40%;
  }
}
@keyframes morph3 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    border-radius: 50% 50% 60% 60% / 60% 40% 50% 60%;
  }
  33% {
    transform: translate(10%, -14%) rotate(60deg) scale(1.05);
    border-radius: 60% 40% 50% 60% / 50% 60% 60% 40%;
  }
  66% {
    transform: translate(-12%, -6%) rotate(120deg) scale(0.95);
    border-radius: 44% 56% 60% 50% / 56% 44% 40% 60%;
  }
}
@keyframes morph4 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    border-radius: 50% 50% 50% 50%;
  }
  33% {
    transform: translate(-14%, 18%) rotate(-30deg) scale(1.18);
    border-radius: 60% 40% 50% 60% / 50% 60% 40% 50%;
  }
  66% {
    transform: translate(20%, -8%) rotate(-70deg) scale(0.84);
    border-radius: 40% 60% 60% 40% / 60% 50% 50% 60%;
  }
}
@keyframes morph5 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    border-radius: 56% 44% 50% 50% / 44% 56% 50% 50%;
  }
  33% {
    transform: translate(14%, -12%) rotate(50deg) scale(1.1);
    border-radius: 44% 56% 60% 40% / 60% 50% 40% 50%;
  }
  66% {
    transform: translate(-10%, 16%) rotate(110deg) scale(0.9);
    border-radius: 50% 50% 44% 56% / 50% 60% 50% 40%;
  }
}
@keyframes morph6 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    border-radius: 60% 40% 60% 40% / 50% 50% 50% 50%;
  }
  33% {
    transform: translate(-18%, -10%) rotate(-60deg) scale(1.15);
    border-radius: 40% 60% 50% 50% / 60% 40% 60% 40%;
  }
  66% {
    transform: translate(8%, 18%) rotate(-130deg) scale(0.88);
    border-radius: 50% 50% 60% 40% / 40% 60% 50% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-bg .blob { animation: none; }
  .hero-scroll .dot { animation: none; }
}

/* ---------- Solutions ---------- */
.section { padding: 120px 0; }
.section-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
  margin-bottom: 64px;
}
.section-head h2 { letter-spacing: -0.025em; }

.solutions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.solution-card {
  position: relative;
  padding: 44px 40px 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  overflow: hidden;
  color: var(--ink);
}
.solution-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 240px; height: 240px;
  background: radial-gradient(circle at top right, var(--accent-soft), transparent 70%);
  opacity: 0.6;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.solution-card:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  background: #fff;
}
.solution-card:hover::before { opacity: 1; }
.solution-card .badge {
  align-self: flex-start;
  padding: 6px 12px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: none;
}
.solution-card h3 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.solution-card p { color: var(--ink-2); line-height: 1.6; }
.solution-card ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin-top: 6px;
}
.solution-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.solution-card li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-strong);
}
.solution-card .card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--ink);
  padding-top: 12px;
}
.solution-card .card-link .arrow { transition: transform 0.25s ease; }
.solution-card:hover .card-link .arrow { transform: translateX(6px); }

/* ---------- Accent Strip (light, refined) ---------- */
.strip {
  background:
    radial-gradient(ellipse 90% 60% at 100% 0%, rgba(37,99,235,0.08), transparent 70%),
    radial-gradient(ellipse 80% 60% at 0% 100%, rgba(37,99,235,0.06), transparent 70%),
    #ffffff;
  color: var(--ink);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 80px 56px;
  margin: 0 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 80px -32px rgba(10,14,26,0.08);
}
.strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.strip h2 { color: var(--ink); }
.strip .lead { color: var(--ink-2); }
.strip-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.strip-stat .num {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--ink) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.strip-stat .lab {
  margin-top: 6px;
  font-size: 0.92rem;
  color: var(--ink-2);
}

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 32px; left: 4%; right: 4%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.process-step {
  position: relative;
  background: #fff;
  padding: 4px 8px 24px 0;
  z-index: 1;
}
.process-step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--ink);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.process-step:nth-child(odd) .step-num {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.process-step p {
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---------- Contact CTA ---------- */
.contact {
  background: var(--surface);
  border-radius: 32px;
  padding: 80px 56px;
  margin: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { letter-spacing: -0.025em; }
.contact-info .lead { margin-top: 18px; }
.contact-info .channels {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-info .channel {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-info .channel .ic {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
  display: grid; place-items: center;
  flex-shrink: 0;
  color: var(--ink);
}
.contact-info .channel .lbl {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 2px;
}
.contact-info .channel .val {
  font-weight: 600;
  color: var(--ink);
}

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}
.field input,
.field textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  outline: none;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(10, 14, 26, 0.06);
}
.field textarea { min-height: 120px; resize: vertical; }
.contact-form button { margin-top: 8px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  margin-top: 120px;
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img {
  height: 36px;
  margin-bottom: 20px;
}
.footer-brand p { max-width: 28ch; line-height: 1.6; }
.footer-col h4 {
  font-family: 'Manrope', sans-serif;
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { transition: color 0.18s ease; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.88rem;
}

/* ---------- Login Page ---------- */
.auth-page {
  min-height: 100vh;
  background: var(--surface);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
.auth-page .auth-side {
  background: var(--ink);
  color: #fff;
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.auth-side::before {
  content: '';
  position: absolute;
  top: -180px; right: -180px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(37,99,235,0.25), transparent 60%);
}
.auth-side::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -100px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(37,99,235,0.12), transparent 60%);
}
.auth-side .auth-brand img {
  height: 38px;
}
.auth-side .auth-pitch {
  position: relative;
  z-index: 1;
}
.auth-side .auth-pitch h2 {
  color: #fff;
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  margin-bottom: 16px;
}
.auth-side .auth-pitch p {
  color: rgba(255,255,255,0.7);
  max-width: 36ch;
}
.auth-side .auth-foot {
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.auth-form-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px;
}
.auth-form {
  width: 100%;
  max-width: 420px;
}
.auth-form .back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--ink-2);
  margin-bottom: 32px;
  transition: color 0.18s ease;
}
.auth-form .back-link:hover { color: var(--ink); }
.auth-form h1 {
  font-size: clamp(1.8rem, 2.4vw, 2.2rem);
  margin-bottom: 8px;
}
.auth-form .sub { color: var(--ink-2); margin-bottom: 32px; }
.auth-form form { display: flex; flex-direction: column; gap: 18px; }
.auth-form .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}
.auth-form .row label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-2);
  cursor: pointer;
}
.auth-form .row label input { accent-color: var(--accent-strong); }
.auth-form .row a { color: var(--ink); font-weight: 500; }
.auth-form .row a:hover { color: var(--accent-strong); }
.auth-form button[type="submit"] {
  width: 100%;
  margin-top: 6px;
}
.auth-form .feedback {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.88rem;
  display: none;
}
.auth-form .feedback.info {
  background: var(--accent-soft);
  color: var(--ink);
  border: 1px solid var(--accent);
  display: block;
}
.auth-form .divider {
  margin: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-2);
  position: relative;
}
.auth-form .divider::before,
.auth-form .divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 30px);
  height: 1px;
  background: var(--border);
}
.auth-form .divider::before { left: 0; }
.auth-form .divider::after { right: 0; }
.auth-form .signup {
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-2);
}
.auth-form .signup a {
  color: var(--ink);
  font-weight: 600;
}
.auth-form .signup a:hover { color: var(--accent-strong); }

/* ---------- Mobile Toggle ---------- */
.menu-toggle { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .solutions-grid,
  .strip-inner,
  .contact,
  .footer-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .strip, .contact { padding: 56px 32px; margin: 0 16px; border-radius: 24px; }
  .section { padding: 80px 0; }

  .hero { min-height: auto; padding: calc(var(--header-h) + 48px) 0 56px; }
  .hero-bottom { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 20px; }

  .nav, .header-actions .btn-pill-ghost { display: none; }
  .menu-toggle {
    display: inline-flex;
    width: 42px; height: 42px;
    border: 1px solid var(--border);
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    background: #fff;
  }
  .auth-page { grid-template-columns: 1fr; }
  .auth-page .auth-side { display: none; }
}

@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .hero-title { font-size: clamp(2.4rem, 11vw, 3.6rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-pill { justify-content: space-between; width: 100%; }
  .solution-card { padding: 32px 28px; }
  .solution-card ul { grid-template-columns: 1fr; }
  .strip-stats { grid-template-columns: 1fr; gap: 24px; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { gap: 32px; }
  .auth-form-wrap { padding: 32px 24px; }
}

/* ---------- Reveal animations — premium scroll choreography ---------- */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition:
    opacity 1s cubic-bezier(.22,.7,.25,1),
    transform 1s cubic-bezier(.22,.7,.25,1),
    filter 1s cubic-bezier(.22,.7,.25,1);
  filter: blur(6px);
  will-change: transform, opacity, filter;
}
.reveal.in {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

/* Variants */
.reveal[data-anim="fade"]   { transform: none; filter: blur(4px); }
.reveal[data-anim="scale"]  { transform: scale(0.94); filter: blur(2px); }
.reveal[data-anim="left"]   { transform: translateX(-40px); }
.reveal[data-anim="right"]  { transform: translateX(40px); }
.reveal[data-anim="mask"]   {
  transform: translateY(80%);
  clip-path: inset(0 0 100% 0);
  filter: none;
}
.reveal[data-anim="mask"].in {
  transform: none;
  clip-path: inset(0 0 0 0);
}

/* Hero stagger */
.hero-top.reveal    { transition-delay: 0.10s; }
.hero-center.reveal { transition-delay: 0.25s; }
.hero-mark.reveal   { transition-delay: 0.45s; }
.hero-bottom.reveal { transition-delay: 0.55s; }

/* Solution cards stagger */
.solutions-grid .reveal:nth-child(1) { transition-delay: 0.05s; }
.solutions-grid .reveal:nth-child(2) { transition-delay: 0.20s; }

/* Process steps stagger */
.process-grid .reveal:nth-child(1) { transition-delay: 0.05s; }
.process-grid .reveal:nth-child(2) { transition-delay: 0.18s; }
.process-grid .reveal:nth-child(3) { transition-delay: 0.32s; }
.process-grid .reveal:nth-child(4) { transition-delay: 0.46s; }

/* Strip stats stagger */
.strip-stats .reveal:nth-child(1) { transition-delay: 0.10s; }
.strip-stats .reveal:nth-child(2) { transition-delay: 0.20s; }
.strip-stats .reveal:nth-child(3) { transition-delay: 0.30s; }
.strip-stats .reveal:nth-child(4) { transition-delay: 0.40s; }

/* Channels stagger */
.channels .reveal:nth-child(1) { transition-delay: 0.05s; }
.channels .reveal:nth-child(2) { transition-delay: 0.18s; }
.channels .reveal:nth-child(3) { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; transform: none; opacity: 1; filter: none; }
}

/* Hero scroll fade — content translates up & fades as you scroll past */
.hero-inner {
  transform: translateY(var(--hero-y, 0px));
  opacity: var(--hero-o, 1);
  transition: opacity 0.05s linear, transform 0.05s linear;
}
