@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@300;400;500;600;700&family=Schibsted+Grotesk:wght@400;500;600;700&display=swap');

:root {
  /* brand */
  --blue: #2563eb;
  --blue-deep: #1b4fd1;
  --blue-soft: #e9f0fe;
  --blue-tint: #f3f7ff;

  /* ink + text (deeper for gravity) */
  --ink: #11151d;
  --head: #141925;
  --body: #586173;
  --muted: #8b94a4;

  /* surfaces + lines (cool, refined) */
  --line: #e7eaf2;
  --line-soft: #eef1f8;
  --bg-soft: #f6f8fc;
  --bg-soft2: #eef3fc;
  --paper: #ffffff;

  /* depth &mdash; layered soft shadows */
  --shadow: 0 1px 2px rgba(20, 25, 37, .04);
  --shadow-sm: 0 2px 6px -2px rgba(20, 25, 37, .08), 0 1px 2px rgba(20, 25, 37, .04);
  --shadow-lift: 0 28px 60px -34px rgba(20, 30, 60, .35), 0 8px 22px -16px rgba(20, 30, 60, .22);

  --radius: 16px;
  --radius-sm: 12px;
  --maxw: 1200px;

  --font-display: "Schibsted Grotesk", "Hanken Grotesk", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;

  /* layered ambient background: faint dot-grid + soft blue auroras over paper */
  background-color: var(--paper);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(24, 38, 70, .045) 1px, transparent 1.6px),
    radial-gradient(48% 52% at 6% -4%, rgba(37, 99, 235, .07), transparent 62%),
    radial-gradient(44% 48% at 100% 8%, rgba(56, 116, 245, .055), transparent 60%),
    radial-gradient(50% 42% at 96% 96%, rgba(37, 99, 235, .045), transparent 64%);
  background-size: 26px 26px, 100% 100%, 100% 100%, 100% 100%;
  background-repeat: repeat, no-repeat, no-repeat, no-repeat;
  background-position: 0 0, 0 0, 0 0, 0 0;
  background-attachment: scroll, fixed, fixed, fixed;
}

/* near-invisible film grain to kill flatness (sits above everything, clicks pass through) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px 140px;
}

a { color: inherit; text-decoration: none; }
::selection { background: var(--blue); color: #fff; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
.accent { color: var(--blue); }

h1, h2, h3, h4 { font-family: var(--font-display); }

/* reveal-on-scroll (progressive; content visible if JS off / reduced-motion) */
.js-reveal [data-reveal] { opacity: 0; transform: translateY(16px); }
.js-reveal [data-reveal].is-visible {
  opacity: 1; transform: none;
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
}
.js-reveal [data-reveal][data-reveal-delay="1"].is-visible { transition-delay: .08s; }
.js-reveal [data-reveal][data-reveal-delay="2"].is-visible { transition-delay: .16s; }
.js-reveal [data-reveal][data-reveal-delay="3"].is-visible { transition-delay: .24s; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  padding: 14px 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex: none; transition: transform .2s ease; }
.btn:hover svg { transform: translateX(3px); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 1px 2px rgba(37,99,235,.28), inset 0 1px 0 rgba(255,255,255,.14); }
.btn-primary:hover { background: var(--blue-deep); transform: translateY(-2px); box-shadow: 0 14px 26px -10px rgba(37,99,235,.5); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: #c8d2e6; background: var(--bg-soft); transform: translateY(-2px); }
.btn-outline-blue { background: #fff; color: var(--blue); border-color: #c3d2f8; padding: 11px 18px; }
.btn-outline-blue:hover { background: var(--blue); color: #fff; border-color: var(--blue); transform: translateY(-1px); box-shadow: 0 10px 20px -10px rgba(37,99,235,.5); }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 600;
  font-size: 14.5px;
  transition: gap .2s ease;
  white-space: nowrap;
}
.arrow-link svg { width: 15px; height: 15px; transition: transform .2s ease; }
.arrow-link:hover { gap: 11px; }
.arrow-link:hover svg { transform: translateX(2px); }

/* ---------- header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 24px;
}
.logo img { height: 42px; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0 auto;
}
.nav-links a {
  position: relative;
  font-size: 15px;
  color: #525c6c;
  font-weight: 500;
  white-space: nowrap;
  transition: color .18s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -28px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

/* ---------- latest updates strip ---------- */
.updates { background: var(--bg-soft); border-bottom: 1px solid var(--line-soft); }
.updates-row { display: flex; align-items: center; gap: 22px; height: 52px; font-size: 14px; }
.updates-tag {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--blue); font-weight: 700; font-size: 11px; letter-spacing: .13em; flex: none;
}
.updates-tag::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--blue);
  box-shadow: 0 0 0 4px rgba(37,99,235,.14);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .45; } }
.updates-date { color: var(--head); font-weight: 600; flex: none; }
.updates-text { color: var(--body); flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.updates-row .arrow-link { flex: none; font-size: 13.5px; }

/* ---------- hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 44px;
  align-items: center;
  padding-top: 34px;
  padding-bottom: 16px;
  position: relative;
}
.hero-text { position: relative; z-index: 2; }
.hero .eyebrow { margin-bottom: 18px; }
.hero h1 {
  font-size: 52px;
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: -.025em;
  color: var(--head);
  margin: 0 0 22px;
  text-wrap: balance;
}
.hero p.lede { font-size: 17px; line-height: 1.6; color: var(--body); max-width: 500px; margin: 0 0 28px; }
.hero-cta { display: flex; gap: 13px; flex-wrap: wrap; }
.hero-trust { margin-top: 24px; display: flex; align-items: center; gap: 14px; font-size: 13px; color: var(--muted); }
.hero-trust .dot { width: 4px; height: 4px; border-radius: 50%; background: #cdd5e3; }
.hero-media { position: relative; z-index: 1; }
.hero-media::before {
  content: "";
  position: absolute;
  inset: -8% -6% -10% -6%;
  background: radial-gradient(60% 60% at 60% 45%, rgba(37,99,235,.12), rgba(37,99,235,0) 70%);
  z-index: -1;
  pointer-events: none;
}
.hero-media img { width: 100%; height: auto; display: block; }

/* ---------- eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--blue);
  text-transform: uppercase;
  margin: 0 0 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--blue); border-radius: 2px; }
.section-head.left .eyebrow, .hero .eyebrow { justify-content: flex-start; }

/* ---------- icons ---------- */
.ico {
  width: 40px;
  height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--blue);
  background: #f7f9fd;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  margin-bottom: 18px;
}
.ico svg { width: 21px; height: 21px; stroke-width: 1.8; }
.itile {
  width: 42px;
  height: 42px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  background: #f7f9fd;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  margin-bottom: 20px;
}
.itile svg { width: 22px; height: 22px; stroke-width: 1.8; }

/* ---------- status cards ---------- */
.status {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-bottom: 64px;
  position: relative;
  z-index: 5;
}
.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}
.card.lift:hover { border-color: #d4def5; box-shadow: var(--shadow-lift); transform: translateY(-4px); }
.status .card { align-items: flex-start; text-align: left; }
.status .card { min-height: 218px; }
.card h3 { font-size: 17px; font-weight: 600; color: var(--head); margin: 0 0 9px; letter-spacing: -.01em; text-wrap: balance; }
.card p { font-size: 14px; line-height: 1.58; color: var(--body); margin: 0 0 18px; }
.pill {
  align-self: flex-start;
  margin-top: auto;
  font-size: 12px;
  font-weight: 600;
  color: var(--body);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 13px 5px 11px;
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 7px;
}
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.16); }

/* ---------- generic section ---------- */
.section { padding-top: 72px; padding-bottom: 72px; }
.section-tint { background: var(--bg-soft); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head.left { text-align: left; margin-left: 0; }
.section-head.left .eyebrow { justify-content: flex-start; }
.section-head h2 { font-size: 34px; font-weight: 500; color: var(--head); line-height: 1.14; margin: 0 0 14px; letter-spacing: -.02em; text-wrap: balance; }
.section-head p { font-size: 16.5px; line-height: 1.6; color: var(--body); margin: 0; }
.section-head.left p { margin-left: 0; }

/* ---------- how it works (3 steps) ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 22px; }
.step { position: relative; text-align: center; padding: 0 16px; }
.step .num {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid #c2d2f2; color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600; font-size: 16px; margin: 0 auto 16px;
  background: #fff;
  box-shadow: 0 0 0 6px rgba(37,99,235,.06);
}
.step .num svg { width: 21px; height: 21px; }
.step h4 { font-size: 17.5px; font-weight: 600; color: var(--head); margin: 0 0 9px; letter-spacing: -.01em; }
.step p { font-size: 14.5px; line-height: 1.58; color: var(--body); margin: 0; max-width: 280px; margin-left: auto; margin-right: auto; }
.steps.line { position: relative; }
.steps.line::before {
  content: ""; position: absolute; top: 23px; left: 16.666%; right: 16.666%;
  border-top: 1.5px dashed #c8d6f2; z-index: 0;
}
.step .num { position: relative; z-index: 1; }

/* ---------- modules ---------- */
.modules-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.outcome-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ---------- two column (why + partners) ---------- */
.twocol { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.panel { border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; background: #fff; box-shadow: var(--shadow-sm); }
.panel h2 { font-size: 21px; font-weight: 600; color: var(--head); margin: 0 0 22px; letter-spacing: -.01em; }
.why-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.why-illu {
  width: 42px;
  height: 42px;
  color: var(--blue);
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f9fd;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
}
.why-illu svg { width: 22px; height: 22px; stroke-width: 1.8; }
.checks { display: flex; flex-direction: column; gap: 14px; margin: 6px 0 24px; }
.check { display: flex; align-items: flex-start; gap: 13px; font-size: 14.5px; line-height: 1.5; color: var(--body); }
.check svg { width: 16px; height: 16px; color: var(--blue); flex: none; margin-top: 3px; stroke-width: 2.2; }

.partners-sub { font-size: 14.5px; line-height: 1.55; color: var(--body); margin: -8px 0 22px; }
.partners-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.partner-label { font-size: 12.5px; font-weight: 600; color: var(--head); margin: 0 0 10px; }
.partner-box {
  border: 1px solid var(--line);
  border-radius: 10px;
  height: 70px;
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  background: #fcfdff;
  color: #aeb8c8;
  font-size: 13px; font-weight: 500;
}
.partner-box svg { width: 26px; height: 26px; }

.partner-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.partner-logo {
  border: 1px solid var(--line);
  border-radius: 12px;
  min-height: 92px;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  gap: 8px;
  background: #fcfdfe;
  padding: 14px 16px 12px;
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}
.partner-logo:hover { border-color: #d4def5; box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.partner-logo img {
  max-width: 100%;
  max-height: 36px;
  width: auto; height: auto;
  object-fit: contain;
  opacity: .58;
  filter: grayscale(1);
  transition: opacity .22s ease, filter .22s ease;
}
.partner-logo:hover img { opacity: 1; filter: grayscale(0); }
.partner-logo span {
  font-size: 11px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
}

.trust-strip {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 30px 32px 32px;
}
.trust-strip .section-head {
  margin-bottom: 24px;
  max-width: 620px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.trust-item {
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: #fcfdff;
  padding: 14px 16px;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--body);
}
.home-proof .detail-strip { margin-top: 0; }

/* ---------- CTA band (dark, premium) ---------- */
.cta-band-wrap { padding-bottom: 72px; }
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #141925 0%, #1b2436 55%, #1a2f5e 130%);
  border: 1px solid #232c3d;
  border-radius: 20px;
  padding: 38px 42px;
  display: flex;
  align-items: center;
  gap: 26px;
  box-shadow: 0 30px 60px -32px rgba(20, 30, 60, .55);
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -40%; right: -5%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(37,99,235,.36), rgba(37,99,235,0) 70%);
  pointer-events: none;
}
.cta-circle {
  width: 60px; height: 60px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex: none;
  position: relative; z-index: 1;
}
.cta-circle svg { width: 27px; height: 27px; }
.cta-text { flex: 1; position: relative; z-index: 1; }
.cta-text h3 { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: #fff; margin: 0 0 8px; letter-spacing: -.02em; }
.cta-text p { font-size: 14.5px; line-height: 1.55; color: #aeb7c8; margin: 0; max-width: 580px; }
.cta-band .btn-primary { position: relative; z-index: 1; flex: none; }

/* ---------- page hero (subpages) ---------- */
.page-hero { padding: 60px 0 40px; border-bottom: 1px solid var(--line-soft); background: linear-gradient(180deg, var(--blue-tint), #fff); }
.page-hero .inner { max-width: 740px; margin: 0 auto; text-align: center; }
.page-hero h1 { font-size: 44px; font-weight: 400; letter-spacing: -.025em; color: var(--head); line-height: 1.08; margin: 14px 0 18px; text-wrap: balance; }
.page-hero p { font-size: 17px; line-height: 1.6; color: var(--body); margin: 0 auto; max-width: 620px; }
.page-hero p + p { margin-top: 10px; }

.prose { max-width: 740px; }
.prose h2 { font-size: 27px; font-weight: 500; color: var(--head); margin: 0 0 14px; letter-spacing: -.02em; }
.prose h3 { font-size: 19px; font-weight: 600; color: var(--head); margin: 34px 0 10px; }
.prose p { font-size: 16.5px; line-height: 1.68; color: var(--body); margin: 0 0 18px; }

/* feature rows */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 8px 0; }
.feature-row > * { min-width: 0; }
.feature-row.flip .feature-media { order: -1; }
.feature-media {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-soft); aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center; color: var(--blue);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.feature-media img { width: 100%; height: 100%; object-fit: contain; }
.product-visual {
  border: 0;
  background: transparent;
  box-shadow: none;
  aspect-ratio: 1 / 1.05;
  padding: 0;
  margin: 0;
}
.product-visual img {
  display: block;
  border-radius: 18px;
}
.product-visual-owner img {
  object-fit: cover;
  object-position: 50% 58%;
}
.product-visual-driver img {
  object-fit: contain;
  transform: scale(1.02);
}
.feature-text h2 { font-size: 30px; font-weight: 500; color: var(--head); margin: 0 0 14px; letter-spacing: -.02em; }
.feature-text p { font-size: 16.5px; line-height: 1.68; color: var(--body); margin: 0 0 18px; }
.feature-text .note-line {
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--blue);
  border-radius: 10px;
  background: #fcfdff;
  padding: 13px 15px;
  color: var(--head);
}
.feat-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.feat-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; color: var(--body); line-height: 1.5; }
.feat-list svg { width: 20px; height: 20px; color: var(--blue); flex: none; margin-top: 1px; }

/* timeline */
.timeline { width: 100%; margin: 0; }
.tl-item { display: grid; grid-template-columns: 150px 1fr; gap: 30px; padding: 0 0 38px; position: relative; }
.tl-item:last-child { padding-bottom: 0; }
.tl-phase { text-align: right; }
.tl-phase .ph { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--blue); }
.tl-phase .when { font-size: 13.5px; color: var(--muted); margin-top: 4px; }
.tl-body { border-left: 2px solid var(--line); padding: 0 0 0 30px; position: relative; }
.tl-body::before { content: ""; position: absolute; left: -7px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px var(--blue-soft); }
.tl-body h3 { font-size: 19px; font-weight: 600; color: var(--head); margin: 0 0 8px; }
.tl-body p { font-size: 15px; line-height: 1.6; color: var(--body); margin: 0; }

/* updates list */
.update-item { display: grid; grid-template-columns: 150px 1fr; gap: 30px; padding: 30px 0; border-top: 1px solid var(--line-soft); }
.update-item:first-child { border-top: 0; }
.update-date { font-size: 13.5px; color: var(--muted); font-weight: 600; padding-top: 2px; }
.update-body h3 { font-size: 19px; font-weight: 600; color: var(--head); margin: 0 0 8px; }
.update-body p { font-size: 15px; line-height: 1.6; color: var(--body); margin: 0; }
.tag { display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: .05em; color: var(--blue); background: var(--blue-soft); border-radius: 6px; padding: 3px 9px; margin-bottom: 10px; text-transform: uppercase; }

/* stats */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat { text-align: center; padding: 12px; }
.stat .n { font-family: var(--font-display); font-size: 44px; font-weight: 500; color: var(--head); letter-spacing: -.03em; }
.stat .l { font-size: 14.5px; color: var(--body); margin-top: 6px; }

/* ---------- mission / vision ---------- */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.mv {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 38px 36px 36px;
}
.mv .ico { margin-bottom: 22px; }
.mv .mv-label {
  font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue); margin: 0 0 12px;
}
.mv h3 { font-family: var(--font-display); font-size: 24px; font-weight: 500; color: var(--head); letter-spacing: -.02em; line-height: 1.18; margin: 0 0 14px; text-wrap: balance; }
.mv p { font-size: 16px; line-height: 1.66; color: var(--body); margin: 0; }

/* ---------- team ---------- */
.team-sub { margin: 0 0 30px; }
.team-sub h3 {
  font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin: 0; display: flex; align-items: center; gap: 14px;
}
.team-sub h3::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px 28px; }
.team-grid.advisors { grid-template-columns: repeat(3, 1fr); }
.member { text-align: center; }
.member .photo {
  width: 132px; height: 132px; border-radius: 50%;
  margin: 0 auto 18px;
  background: radial-gradient(120% 120% at 50% 0%, #f0f5ff 0%, #e3ecfe 100%);
  box-shadow: inset 0 0 0 1px rgba(37,99,235,.10), var(--shadow-sm);
  overflow: hidden;
  display: flex; align-items: flex-end; justify-content: center;
  transition: box-shadow .22s ease, transform .22s ease;
}
.member:hover .photo { transform: translateY(-3px); box-shadow: inset 0 0 0 1px rgba(37,99,235,.18), var(--shadow-lift); }
.member .photo img { width: 100%; height: 100%; object-fit: cover; object-position: center bottom; }
.member .name { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--head); letter-spacing: -.01em; margin: 0 0 4px; }
.member .role { font-size: 13.5px; font-weight: 500; color: var(--blue); margin: 0 0 3px; }
.member .cred { font-size: 12.5px; color: var(--muted); margin: 0; }
.member .bio { font-size: 12.5px; line-height: 1.5; color: var(--body); margin: 12px 0 0; }
.team-grid.advisors .member .photo { width: 104px; height: 104px; }

/* ---------- news cards (updates) ---------- */
.news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.news-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}
.news-card:hover { border-color: #d4def5; box-shadow: var(--shadow-lift); transform: translateY(-4px); }
.news-card.featured { grid-column: 1 / -1; padding: 34px 36px 30px; }
.news-meta { display: flex; align-items: center; gap: 13px; margin-bottom: 16px; flex-wrap: wrap; }
.news-meta .tag { flex: none; white-space: nowrap; margin-bottom: 0; }
.news-date { font-size: 13px; font-weight: 600; color: var(--muted); flex: none; white-space: nowrap; }
.news-card { text-decoration: none; }
.news-card .arrow-link { margin-top: 20px; align-self: flex-start; }
.news-card h3 {
  font-family: var(--font-display); font-weight: 600; color: var(--head);
  letter-spacing: -.012em; line-height: 1.24; margin: 0 0 11px; text-wrap: balance;
  font-size: 20px;
  transition: color .18s ease;
}
.news-card:hover h3 { color: var(--blue); }
.news-card.featured h3 { font-size: 27px; line-height: 1.16; margin-bottom: 14px; }
.news-body { font-size: 15px; line-height: 1.64; color: var(--body); margin: 0; }
.news-card.featured .news-body { font-size: 16.5px; max-width: 760px; }
.news-extra { display: none; }
.news-extra p { font-size: 15px; line-height: 1.64; color: var(--body); margin: 14px 0 0; }
.news-card.featured .news-extra p { font-size: 16.5px; max-width: 760px; }
.news-card.open .news-extra { display: block; animation: newsReveal .34s cubic-bezier(.22,.61,.36,1) both; }
@keyframes newsReveal { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.news-more-btn {
  margin-top: 20px; align-self: flex-start;
  background: none; border: 0; padding: 0; cursor: pointer;
  font-family: var(--font-body); font-weight: 600; font-size: 14.5px; color: var(--blue);
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  transition: gap .2s ease;
}
.news-more-btn:hover { gap: 11px; }
.news-more-btn svg { width: 16px; height: 16px; transition: transform .28s ease; }
.news-card.open .news-more-btn svg { transform: rotate(90deg); }

/* ---------- news article (detail page) ---------- */
.article-hero { padding: 44px 0 36px; border-bottom: 1px solid var(--line-soft); background: linear-gradient(180deg, var(--blue-tint), #fff); }
.article-hero .inner { max-width: 860px; margin: 0 auto; }
.back-link {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  font-size: 13.5px; font-weight: 600; color: var(--body);
  margin-bottom: 26px; transition: gap .2s ease, color .15s ease;
}
.back-link svg { width: 15px; height: 15px; flex: none; transition: transform .2s ease; }
.back-link:hover { color: var(--blue); gap: 11px; }
.back-link:hover svg { transform: translateX(-2px); }
.article-meta { display: flex; align-items: center; gap: 13px; margin-bottom: 18px; flex-wrap: wrap; }
.article-meta .tag { margin-bottom: 0; flex: none; white-space: nowrap; }
.article-meta .news-date { font-size: 13px; font-weight: 600; color: var(--muted); }
.article-hero h1 {
  font-family: var(--font-display); font-size: 40px; font-weight: 400;
  letter-spacing: -.025em; color: var(--head); line-height: 1.1;
  margin: 0 0 16px; text-wrap: balance;
}
.article-hero .dek { font-size: 18px; line-height: 1.6; color: var(--body); margin: 0; max-width: 760px; }
.read-time { font-size: 13px; color: var(--muted); }

.article-wrap { display: grid; grid-template-columns: 1fr; }
.article-body { max-width: 860px; margin: 0 auto; padding: 56px 0 8px; }
.article-body > .lead { font-size: 19px; line-height: 1.62; color: var(--head); font-weight: 400; margin: 0 0 26px; }
.article-body p { font-size: 16.5px; line-height: 1.72; color: var(--body); margin: 0 0 20px; }
.article-body h2 { font-family: var(--font-display); font-size: 25px; font-weight: 500; color: var(--head); letter-spacing: -.02em; margin: 40px 0 14px; }
.article-body h3 { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--head); margin: 30px 0 10px; }
.article-body ul.bullets { list-style: none; margin: 4px 0 24px; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.article-body ul.bullets li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; line-height: 1.6; color: var(--body); }
.article-body ul.bullets svg { width: 21px; height: 21px; color: var(--blue); flex: none; margin-top: 2px; }
.article-body ol { margin: 4px 0 24px; padding-left: 24px; }
.article-body ol li { padding-left: 6px; margin: 0 0 10px; font-size: 16px; line-height: 1.62; color: var(--body); }
.article-callout {
  border: 1px solid var(--line); border-left: 3px solid var(--blue);
  background: var(--blue-tint); border-radius: 12px;
  padding: 24px 26px; margin: 30px 0;
}
.article-callout .k { font-size: 11.5px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--blue); margin: 0 0 8px; }
.article-callout p { font-size: 16px; line-height: 1.62; color: var(--head); margin: 0; }
.pullquote {
  margin: 36px 0; padding: 4px 0 4px 26px; border-left: 3px solid var(--blue);
  font-family: var(--font-display); font-size: 23px; font-weight: 500;
  line-height: 1.34; color: var(--head); letter-spacing: -.015em; text-wrap: balance;
}
.fact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 30px 0; }
.fact { border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: var(--shadow-sm); padding: 20px 22px; }
.fact .ico { margin-bottom: 12px; width: 36px; height: 36px; }
.fact .ico svg { width: 19px; height: 19px; }
.fact h4 { font-family: var(--font-display); font-size: 15.5px; font-weight: 600; color: var(--head); margin: 0 0 6px; }
.fact p { font-size: 13.5px; line-height: 1.55; color: var(--body); margin: 0; }
.article-foot { max-width: 860px; margin: 30px auto 0; padding-top: 26px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.article-foot .sig { font-size: 14px; color: var(--muted); }

.more-news { border-top: 1px solid var(--line-soft); }
.more-news .more-head { max-width: 860px; margin: 0 auto 26px; display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.more-news h2 { font-family: var(--font-display); font-size: 24px; font-weight: 500; color: var(--head); letter-spacing: -.02em; margin: 0; }
.more-grid { max-width: 860px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.more-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; box-shadow: var(--shadow-sm); padding: 24px 26px;
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}
.more-card:hover { border-color: #d4def5; box-shadow: var(--shadow-lift); transform: translateY(-4px); }
.more-card .news-meta { margin-bottom: 12px; }
.more-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--head); letter-spacing: -.01em; line-height: 1.26; margin: 0 0 10px; text-wrap: balance; }
.more-card p { font-size: 14px; line-height: 1.6; color: var(--body); margin: 0 0 16px; }
.more-card .arrow-link { margin-top: auto; }

@media (max-width: 860px) {
  .article-hero h1 { font-size: 32px; }
  .article-body { padding-top: 40px; }
  .fact-grid { grid-template-columns: 1fr; }
  .more-grid { grid-template-columns: 1fr; }
}

/* contact form */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.form-alert {
  border: 1px solid #f1c9c9;
  background: #fff7f7;
  color: #8a3030;
  border-radius: 10px;
  padding: 13px 15px;
  font-size: 13.5px;
  line-height: 1.5;
  margin-bottom: 18px;
}
.form-alert[hidden] { display: none; }
.form-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-field label { font-size: 13.5px; font-weight: 600; color: var(--head); }
.form-field input, .form-field textarea, .form-field select {
  font-family: inherit; font-size: 15px; color: var(--head);
  border: 1px solid var(--line); border-radius: 10px; padding: 13px 15px;
  background: #fff; outline: none; transition: border-color .15s, box-shadow .15s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.12); }
.form-field textarea { resize: vertical; min-height: 120px; }
.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.52;
  color: var(--body);
  margin: 2px 0 20px;
}
.consent-check input { margin-top: 3px; accent-color: var(--blue); flex: none; }
.consent-check a { color: var(--blue); font-weight: 600; }
.contact-aside { background: var(--bg-soft); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 34px; }
.contact-aside h3 { font-size: 19px; font-weight: 600; color: var(--head); margin: 0 0 18px; }
.contact-aside .ci { display: flex; align-items: flex-start; gap: 13px; margin-bottom: 20px; }
.contact-aside .ci svg { width: 20px; height: 20px; color: var(--blue); flex: none; margin-top: 2px; }
.contact-aside .ci .k { font-size: 13px; color: var(--muted); }
.contact-aside .ci .v { font-size: 15px; color: var(--head); font-weight: 500; }

/* ---------- footer ---------- */
footer { border-top: 1px solid var(--line); padding: 56px 0 36px; margin-top: 8px; background: var(--bg-soft); }
.foot-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr 1.6fr; gap: 40px; }
.foot-brand img { height: 36px; margin-bottom: 18px; }
.foot-brand p { font-size: 13.5px; line-height: 1.62; color: var(--body); max-width: 270px; margin: 0; }
.foot-col h5 { font-size: 12.5px; font-weight: 700; color: var(--head); margin: 4px 0 16px; letter-spacing: .04em; text-transform: uppercase; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.foot-col a { font-size: 13.5px; color: var(--body); transition: color .15s; }
.foot-col a:hover { color: var(--blue); }
.foot-sub h5 { font-size: 12.5px; font-weight: 700; color: var(--head); margin: 4px 0 10px; letter-spacing: .04em; text-transform: uppercase; }
.foot-sub p { font-size: 13.5px; line-height: 1.5; color: var(--body); margin: 0 0 14px; max-width: 240px; }
.sub-form { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; max-width: 260px; background: #fff; transition: border-color .15s, box-shadow .15s; }
.sub-form:focus-within { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.1); }
.sub-form input { flex: 1; border: 0; outline: 0; padding: 12px 15px; font-family: inherit; font-size: 13.5px; color: var(--head); background: transparent; min-width: 0; }
.sub-form button { border: 0; background: var(--blue); color: #fff; padding: 0 16px; height: 44px; cursor: pointer; display: flex; align-items: center; transition: background .15s; }
.sub-form button:hover { background: var(--blue-deep); }
.sub-form button svg { width: 16px; height: 16px; }
.foot-bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.foot-bottom .soc { display: flex; gap: 14px; }
.foot-bottom .soc a { color: var(--muted); display: inline-flex; width: 34px; height: 34px; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 9px; background: #fff; transition: color .15s, border-color .15s, transform .15s; }
.foot-bottom .soc a:hover { color: var(--blue); border-color: #c8d2e6; transform: translateY(-2px); }
.foot-bottom .soc svg { width: 16px; height: 16px; }

/* ---------- faq accordion ---------- */
.faq { width: 100%; margin: 0; display: flex; flex-direction: column; gap: 0; }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 4px 22px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-family: var(--font-display); font-size: 18px; font-weight: 500; color: var(--head);
  letter-spacing: -.01em; transition: color .15s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--blue); }
.faq summary .q-ico {
  flex: none; width: 24px; height: 24px; border-radius: 8px;
  border: 1px solid #cbd6ee; color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  transition: transform .28s ease, background .2s ease, border-color .2s ease;
}
.faq summary .q-ico svg { width: 13px; height: 13px; stroke-width: 2; }
.faq details[open] summary .q-ico { transform: rotate(45deg); background: var(--blue); border-color: var(--blue); color: #fff; }
.faq .ans { padding: 0 50px 24px 0; }
.faq .ans p { font-size: 15.5px; line-height: 1.66; color: var(--body); margin: 0; }
.faq details[open] .ans { animation: faqReveal .32s cubic-bezier(.22,.61,.36,1) both; }
@keyframes faqReveal { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ---------- layered architecture stack ---------- */
.arch-stack { width: 100%; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.arch-layer {
  display: grid; grid-template-columns: 54px 1fr; gap: 22px; align-items: center;
  border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
  box-shadow: var(--shadow-sm); padding: 22px 26px;
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}
.arch-layer:hover { border-color: #d4def5; box-shadow: var(--shadow-lift); transform: translateY(-3px); }
.arch-layer .arch-ico {
  width: 54px; height: 54px; border-radius: 13px; background: var(--blue-tint);
  display: flex; align-items: center; justify-content: center; color: var(--blue);
}
.arch-layer .arch-ico svg { width: 26px; height: 26px; }
.arch-layer h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--head); margin: 0 0 5px; letter-spacing: -.01em; }
.arch-layer p { font-size: 14.5px; line-height: 1.56; color: var(--body); margin: 0; }
.arch-layer .arch-tag { font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); display: block; margin-bottom: 6px; }

/* ---------- spec list (panels) ---------- */
.spec-list { display: flex; flex-direction: column; }
.spec-list .row { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.spec-list .row:last-child { border-bottom: 0; }
.spec-list .row .k { font-size: 14px; color: var(--body); }
.spec-list .row .v { font-size: 14px; font-weight: 600; color: var(--head); text-align: right; }

/* ---------- icon feature grid (with descriptions) ---------- */
.usecase-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.usecase {
  display: grid; grid-template-columns: 50px 1fr; gap: 18px; align-items: start;
  border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
  box-shadow: var(--shadow-sm); padding: 26px 28px;
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}
.usecase:hover { border-color: #d4def5; box-shadow: var(--shadow-lift); transform: translateY(-3px); }
.usecase .uc-ico { width: 44px; height: 44px; border-radius: 10px; background: #f7f9fd; border: 1px solid var(--line-soft); color: var(--blue); display: flex; align-items: center; justify-content: center; }
.usecase .uc-ico svg { width: 21px; height: 21px; stroke-width: 1.8; }
.usecase h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--head); margin: 0 0 7px; letter-spacing: -.01em; }
.usecase p { font-size: 14.5px; line-height: 1.58; color: var(--body); margin: 0; }

@media (max-width: 860px) {
  .usecase-grid { grid-template-columns: 1fr; }
  .arch-layer { grid-template-columns: 44px 1fr; gap: 16px; padding: 20px; }
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .hero h1 { font-size: 46px; }
  .status, .modules-grid, .outcome-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 860px) {
  .wrap { padding: 0 26px; }
  .nav-links { display: none; }
  .nav { gap: 16px; }
  .logo img { height: 38px; }
  .nav .btn { padding: 12px 15px; font-size: 14px; }
  .hero { grid-template-columns: 1fr; gap: 36px; padding-top: 34px; }
  .hero-media { order: -1; }
  .hero h1 { font-size: 40px; }
  .section { padding-top: 72px; padding-bottom: 72px; }
  .steps, .stats, .outcome-grid { grid-template-columns: 1fr; }
  .steps.line::before { display: none; }
  .news-grid { grid-template-columns: 1fr; }
  .twocol, .feature-row, .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .mv-grid { grid-template-columns: 1fr; gap: 18px; }
  .team-grid, .team-grid.advisors { grid-template-columns: repeat(2, 1fr); }
  .feature-row.flip .feature-media { order: 0; }
  .status, .modules-grid, .partners-grid { grid-template-columns: 1fr 1fr; }
  .partner-logos { grid-template-columns: repeat(2, 1fr); }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 34px; }
  .updates-text { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .tl-item, .update-item { grid-template-columns: 1fr; gap: 10px; }
  .tl-phase { text-align: left; }
  .tl-body { border-left: 0; padding-left: 0; }
  .tl-body::before { display: none; }
}
@media (max-width: 540px) {
  .wrap { padding: 0 20px; }
  .hero h1 { font-size: 34px; }
  .page-hero { padding: 48px 0 34px; }
  .page-hero h1 { font-size: 34px; }
  .status, .modules-grid, .partners-grid { grid-template-columns: 1fr; }
  .team-grid, .team-grid.advisors { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
  .cta-band { padding: 30px 24px; }
  .cta-band .btn-primary { width: 100%; justify-content: center; }
  .news-card.featured { padding: 28px 26px 24px; }
}

@media (max-width: 420px) {
  .nav { height: 68px; }
  .logo img { height: 34px; }
  .nav .btn { padding: 11px 12px; font-size: 13.5px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-trust { flex-wrap: wrap; row-gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .updates-tag::before { animation: none; }
  html { scroll-behavior: auto; }
}
