/* ============================================================
   MyEventScape — landing page
   Brand kit: Midnight Navy #101B33 · Event Blue #2356A8 ·
   Electric Blue #2D72E8 · Manrope (display) + Inter (body)
   ============================================================ */

:root {
  /* palette — brand kit */
  --navy: #101b33;
  --blue: #2356a8;
  --electric: #2d72e8;
  --electric-soft: #6fa5f7;
  --slate: #64748b;
  --charcoal: #1f2937;
  --gray: #6b7280;
  --line: #e5e7eb;
  --soft: #f1f5f9;
  --bg: #f7f9fc;
  --white: #ffffff;
  --footer-bg: #0c1424;

  /* semantic — held to one saturation band */
  --green: #17976b;
  --green-soft: #e6f4ee;
  --amber: #a15c07;
  --amber-soft: #fbf1e2;

  --grad-brand: linear-gradient(125deg, #101b33 0%, #16294f 30%, #2356a8 68%, #2d72e8 100%);
  --grad-btn: linear-gradient(120deg, #16294f, #2356a8 55%, #2d72e8);
  --grad-text: linear-gradient(100deg, #2356a8, #2d72e8 55%, #6fa5f7);

  /* type */
  --font-display: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-serif: "Instrument Serif", Georgia, "Times New Roman", serif;

  /* geometry */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 30px;

  --shadow-sm: 0 1px 2px rgba(16, 27, 51, 0.05), 0 4px 14px rgba(16, 27, 51, 0.06);
  --shadow-md: 0 2px 6px rgba(16, 27, 51, 0.05), 0 14px 34px rgba(16, 27, 51, 0.1);
  --shadow-lg: 0 6px 18px rgba(16, 27, 51, 0.08), 0 28px 70px rgba(16, 27, 51, 0.16);
  --glow-blue: 0 10px 30px rgba(45, 114, 232, 0.32);

  --section-y: clamp(88px, 10vw, 148px);
  --gutter: clamp(20px, 4vw, 48px);
  --content: 1240px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.4s;
}

/* ---------- reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/* Lenis drives scrolling when it is active; native smooth scroll fights it */
html.lenis {
  scroll-behavior: auto;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

body.landing {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--bg);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  font: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  color: inherit;
}

::selection {
  background: var(--electric);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--electric);
  outline-offset: 3px;
  border-radius: 4px;
}

/* icon sprite + generic <use> icons */
.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg:has(> use) {
  width: 18px;
  height: 18px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 300;
  background: var(--navy);
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  transition: top 0.2s var(--ease);
}

.skip-link:focus-visible {
  top: 12px;
}

/* ============================================================
   buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  border-radius: 999px;
  padding: 13px 24px;
  white-space: nowrap;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease),
    background-color 0.22s var(--ease), border-color 0.22s var(--ease), color 0.22s var(--ease);
}

.btn:active {
  transform: translateY(1px);
}

.btn__circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
  transition: background-color 0.22s var(--ease), color 0.22s var(--ease),
    transform 0.22s var(--ease);
}

.btn__circle svg {
  width: 15px;
  height: 15px;
}

.btn--primary {
  background: var(--grad-btn);
  color: #fff;
  padding: 6px 6px 6px 22px;
  box-shadow: 0 4px 14px rgba(35, 86, 168, 0.24);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-blue);
}

.btn--primary:hover .btn__circle {
  background: #fff;
  color: var(--navy);
  transform: rotate(-45deg);
}

.btn--lg {
  font-size: 16.5px;
  padding: 8px 8px 8px 26px;
}

.btn--lg .btn__circle {
  width: 42px;
  height: 42px;
}

.btn--ghost {
  border: 1px solid #d7dee8;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.6);
}

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

.btn--soft {
  background: #e8edf5;
  color: var(--navy);
  padding: 16px 26px;
}

.btn--soft:hover {
  background: #dde5f0;
  transform: translateY(-2px);
}

.btn--text {
  padding: 13px 6px;
  color: var(--navy);
  gap: 8px;
}

.btn--text .btn__arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.22s var(--ease);
}

.btn--text:hover .btn__arrow {
  transform: translateX(4px);
}

.btn--white {
  background: #fff;
  color: var(--navy);
  padding: 6px 6px 6px 24px;
  box-shadow: 0 10px 30px rgba(6, 12, 26, 0.25);
}

.btn__circle--navy {
  background: var(--navy);
  color: #fff;
}

.btn--white:hover {
  transform: translateY(-2px);
}

.btn--white:hover .btn__circle--navy {
  background: var(--electric);
  transform: rotate(-45deg);
}

.btn--outline {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #fff;
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   nav
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  transition: background-color 0.35s var(--ease), box-shadow 0.35s var(--ease),
    backdrop-filter 0.35s var(--ease);
}

.nav__inner {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: height 0.35s var(--ease);
}

.nav.is-stuck {
  background: rgba(250, 251, 253, 0.92);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(16, 27, 51, 0.07);
}

.nav.is-stuck .nav__inner {
  height: 66px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand__mark {
  width: 32px;
  height: 32px;
  flex: none;
}

.mark-body {
  fill: url(#markGrad);
}

.mark-dot {
  fill: var(--blue);
}

.mark-body--light {
  fill: url(#markGradLight);
}

.brand__word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--navy);
}

.brand__word em {
  font-style: normal;
  color: var(--electric);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--slate);
  padding: 6px 0;
  background: linear-gradient(var(--navy), var(--navy)) left bottom / 0% 1.5px no-repeat;
  transition: color 0.22s var(--ease), background-size 0.3s var(--ease);
}

.nav__links a:hover {
  color: var(--navy);
  background-size: 100% 1.5px;
}

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

.nav__actions .btn--ghost {
  padding: 10px 20px;
  font-size: 14px;
}

.nav__actions .btn--primary {
  font-size: 14px;
  padding: 5px 5px 5px 20px;
}

.nav__actions .btn--primary .btn__circle {
  width: 32px;
  height: 32px;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  align-items: center;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav__toggle.is-open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav__toggle.is-open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(250, 251, 253, 0.96);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: 120px var(--gutter) 40px;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.mobile-menu.is-open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu nav > a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.02em;
  color: var(--navy);
  padding: 10px 0;
}

.mobile-menu__actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* ============================================================
   hero
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(132px, 16vh, 182px) var(--gutter) 0;
  overflow: clip;
  background: radial-gradient(1000px 520px at 50% -160px, rgba(45, 114, 232, 0.06), transparent 70%),
    var(--bg);
}

.hero__content {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.pulse-dot {
  position: relative;
  width: 7px;
  height: 7px;
  flex: none;
  border-radius: 50%;
  background: var(--electric);
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--electric);
  animation: pulse-ring 2.2s var(--ease) infinite;
}

@keyframes pulse-ring {
  from {
    transform: scale(1);
    opacity: 0.7;
  }
  to {
    transform: scale(2.6);
    opacity: 0;
  }
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.95rem, 7.3vw, 5.9rem);
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--navy);
}

.hero__line {
  display: block;
}

.hero__line em {
  font-style: italic;
  color: var(--blue);
}

.hero__sub {
  margin: 28px auto 0;
  max-width: 600px;
  font-size: clamp(1.02rem, 1.4vw, 1.15rem);
  line-height: 1.65;
  color: var(--slate);
}

.hero__actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ---------- command deck + etchings ---------- */
.deck-zone {
  position: relative;
  max-width: 1120px;
  margin: clamp(64px, 8vw, 104px) auto 0;
  perspective: 1700px;
}

.hero__etch {
  position: absolute;
  bottom: -18px;
  width: clamp(240px, 30vw, 460px);
  opacity: 0.92;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 24%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 24%);
}

.hero__etch--left {
  left: clamp(-250px, -15vw, -70px);
}

.hero__etch--right {
  right: clamp(-250px, -15vw, -70px);
}

.deck {
  position: relative;
  z-index: 1;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(16, 27, 51, 0.09);
  box-shadow: var(--shadow-lg), 0 60px 120px -30px rgba(16, 27, 51, 0.22);
  overflow: hidden;
  transform-origin: 50% 100%;
  will-change: transform;
}

.deck__chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 42px;
  padding: 0 16px;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.deck__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #dde3ec;
}

.deck__url {
  margin-left: 12px;
  font-size: 11.5px;
  color: var(--slate);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 4px 14px;
  letter-spacing: 0.01em;
}

.deck__app {
  display: grid;
  grid-template-columns: 54px 1fr;
  height: clamp(380px, 44vw, 540px);
  background: #fff;
}

.deck__rail {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 0;
}

.deck__rail-logo {
  width: 24px;
  height: 24px;
  margin-bottom: 12px;
}

.deck__rail-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.55);
}

.deck__rail-icon svg {
  width: 16px;
  height: 16px;
}

.deck__rail-icon.is-active {
  background: rgba(45, 114, 232, 0.32);
  color: #fff;
}

.deck__rail-icon--bottom {
  margin-top: auto;
}

.deck__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.deck__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
}

.deck__event {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.deck__event strong {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-weight: 600;
  border-radius: 999px;
  padding: 4px 9px;
  white-space: nowrap;
}

.tag svg {
  width: 11px;
  height: 11px;
}

.tag--date {
  background: var(--soft);
  color: var(--slate);
}

.tag--amber {
  background: var(--amber-soft);
  color: var(--amber);
}

.deck__people {
  display: flex;
  align-items: center;
}

.face {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 8.5px;
  font-weight: 800;
  flex: none;
}

.face--a { background: #e8eef9; color: var(--blue); }
.face--b { background: var(--green-soft); color: var(--green); }
.face--c { background: var(--amber-soft); color: var(--amber); }

.deck__people .face {
  border-radius: 50%;
  border: 2px solid #fff;
}

.deck__people .face + .face {
  margin-left: -7px;
}

.deck__share {
  margin-left: 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--electric);
  background: #eaf1fd;
  border-radius: 8px;
  padding: 5px 12px;
}

.deck__stage {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 236px;
  min-height: 0;
}

.deck__map {
  position: relative;
  overflow: hidden;
  background: #dfe7ef;
}

.deck__map > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82);
}

.deck__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.deck__footprint {
  fill: rgba(45, 114, 232, 0.14);
  stroke: var(--electric);
  stroke-width: 2;
  stroke-dasharray: 8 6;
  stroke-linejoin: round;
}

.pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.pin > svg {
  width: 27px;
  height: 27px;
  padding: 6px;
  border-radius: 50%;
  background: #fff;
  color: var(--electric);
  box-shadow: 0 3px 10px rgba(16, 27, 51, 0.25);
}

.pin--stage > svg {
  background: var(--electric);
  color: #fff;
}

.pin--ems > svg {
  color: var(--amber);
}

.pin i {
  font-style: normal;
  font-size: 9px;
  font-weight: 600;
  color: #fff;
  background: rgba(16, 27, 51, 0.85);
  border-radius: 6px;
  padding: 2.5px 7px;
  white-space: nowrap;
}

.deck__layers {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 6px 10px;
  box-shadow: var(--shadow-sm);
}

.deck__layers svg {
  width: 12px;
  height: 12px;
  color: var(--electric);
}

.deck__zoom {
  position: absolute;
  right: 12px;
  top: 12px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.deck__zoom svg {
  width: 12px;
  height: 12px;
  margin: 7px;
  color: var(--slate);
}

.deck__zoom svg:first-child {
  border-bottom: 1px solid var(--line);
  padding-bottom: 7px;
  height: 19px;
}

.deck__side {
  border-left: 1px solid var(--line);
  background: #fafbfd;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.deck__panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
}

.deck__panel header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.deck__panel header span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
}

.deck__panel header strong {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 800;
  color: var(--electric);
}

.meter {
  height: 5px;
  border-radius: 999px;
  background: #e9eef5;
  overflow: hidden;
  margin-bottom: 10px;
}

.meter i {
  display: block;
  height: 100%;
  width: var(--w);
  border-radius: inherit;
  background: var(--grad-text);
}

.deck__checks li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10.5px;
  font-weight: 500;
  color: var(--charcoal);
  padding: 4.5px 0;
}

.deck__checks svg {
  width: 13px;
  height: 13px;
}

.deck__checks .is-done svg {
  color: var(--green);
}

.deck__checks .is-flag svg {
  color: var(--amber);
}

.deck__checks em {
  font-style: normal;
  font-size: 9px;
  font-weight: 600;
  color: var(--amber);
  background: var(--amber-soft);
  border-radius: 5px;
  padding: 2px 6px;
  white-space: nowrap;
}

.deck__feed li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10.5px;
  font-weight: 500;
  color: var(--charcoal);
  padding: 4.5px 0;
}

.deck__feed .face {
  width: 19px;
  height: 19px;
  font-size: 7px;
  border-radius: 6px;
}

.deck__feed em {
  font-style: normal;
  font-size: 9.5px;
  color: var(--gray);
  margin-left: auto;
}

/* ---------- stat strip ---------- */
.stats {
  max-width: 1120px;
  margin: clamp(48px, 6vw, 76px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(16, 27, 51, 0.08);
  position: relative;
}

.stats__item {
  padding: clamp(22px, 3vw, 34px) 24px 0;
  text-align: left;
}

.stats__item + .stats__item {
  border-left: 1px solid rgba(16, 27, 51, 0.08);
}

.stats__item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 2.7vw, 2.3rem);
  letter-spacing: -0.03em;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}

.stats__item > span {
  display: block;
  margin-top: 4px;
  font-size: 12.5px;
  color: var(--slate);
}

/* ============================================================
   trust row
   ============================================================ */
.trust {
  padding: clamp(64px, 8vw, 96px) 0 0;
}

.trust__label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 30px;
}

.trust__row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(22px, 3.6vw, 52px);
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: 0.02em;
  color: #8a94a6;
  white-space: nowrap;
  transition: color 0.25s var(--ease);
}

.mark:hover {
  color: #5c6779;
}

.mark--tight {
  font-weight: 800;
  letter-spacing: -0.035em;
  font-size: 1.24rem;
}

.mark--tight b {
  font-weight: 800;
  color: #a2abbb;
}

.mark--wide {
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: 0.22em;
}

.mark--round {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}

.mark--script {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0;
}

.mark--serifish {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.42rem;
  letter-spacing: 0.01em;
}

.mark-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c3cbd8;
  flex: none;
}

/* ============================================================
   platform cards
   ============================================================ */
.platform {
  padding: var(--section-y) var(--gutter);
}

.section-head {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--electric);
}

.eyebrow--light {
  color: var(--electric-soft);
}

.section-head h2,
.flow__head h2 {
  margin-top: 16px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.032em;
  color: var(--navy);
}

.section-head h2 span {
  color: #9aa7ba;
}

.section-sub {
  margin: 20px auto 0;
  max-width: 560px;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--slate);
}

.cards {
  max-width: var(--content);
  margin: clamp(48px, 6vw, 72px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.card {
  background: #fff;
  border: 1px solid rgba(16, 27, 51, 0.07);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.card__media {
  position: relative;
  aspect-ratio: 16 / 10.5;
  overflow: hidden;
  background: var(--soft);
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.card:hover .card__media img {
  transform: scale(1.045);
}

.card__badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 7px 13px;
  box-shadow: var(--shadow-sm);
}

.card__badge svg {
  width: 14px;
  height: 14px;
  color: var(--electric);
}

.card__body {
  padding: 26px 26px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card__body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.32rem;
  letter-spacing: -0.018em;
  color: var(--navy);
}

.card__body p {
  margin-top: 10px;
  font-size: 14.8px;
  line-height: 1.62;
  color: var(--slate);
}

.card__stat {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  border-top: 1px solid var(--soft);
  margin-top: 22px;
}

.card__stat strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -0.03em;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}

.card__stat span {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--slate);
}

/* ============================================================
   flow — pinned dark band
   ============================================================ */
.flow {
  position: relative;
  background: var(--navy);
}

.flow__pin {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.flow__bg {
  position: absolute;
  inset: 0;
}

.flow__bg img {
  position: absolute;
  inset: -12% 0;
  width: 100%;
  height: 124%;
  object-fit: cover;
  will-change: transform;
}

.flow__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      105deg,
      rgba(16, 27, 51, 0.97) 10%,
      rgba(16, 27, 51, 0.87) 46%,
      rgba(16, 27, 51, 0.6) 100%
    ),
    linear-gradient(180deg, rgba(16, 27, 51, 0.55), transparent 22% 78%, rgba(16, 27, 51, 0.65));
}

.flow__inner {
  position: relative;
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: clamp(72px, 10vh, 110px) var(--gutter);
}

.flow__head h2 {
  color: #fff;
}

.flow__grid {
  margin-top: clamp(40px, 5vh, 64px);
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: clamp(40px, 5vw, 88px);
  align-items: center;
}

.flow__steps {
  position: relative;
  padding-left: 58px;
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vh, 44px);
}

.flow__rail {
  position: absolute;
  left: 17px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.flow__rail i {
  position: absolute;
  inset: 0 0 auto;
  height: 0%;
  background: linear-gradient(180deg, var(--electric), var(--electric-soft));
  border-radius: inherit;
}

.flow-step {
  position: relative;
  display: flex;
  gap: 20px;
  opacity: 0.38;
  transition: opacity 0.45s var(--ease);
}

.flow-step.is-active {
  opacity: 1;
}

.flow-step__num {
  position: absolute;
  left: -58px;
  top: -2px;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  color: #9db1d9;
  background: rgba(16, 27, 51, 0.6);
  transition: background-color 0.45s var(--ease), color 0.45s var(--ease),
    border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.flow-step.is-active .flow-step__num {
  background: var(--electric);
  border-color: var(--electric);
  color: #fff;
  box-shadow: 0 0 24px rgba(45, 114, 232, 0.55);
}

.flow-step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.28rem;
  letter-spacing: -0.015em;
  color: #fff;
}

.flow-step p {
  margin-top: 7px;
  font-size: 14.8px;
  line-height: 1.62;
  color: #aab8d4;
  max-width: 46ch;
}

.flow__visual {
  position: relative;
  height: 360px;
}

.flow-card {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 36, 0.62);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 20px;
  opacity: 0;
  display: flex;
  flex-direction: column;
}

.flow-card:first-child {
  opacity: 1;
}

.flow-card header {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9db1d9;
  margin-bottom: 16px;
}

.flow-card header svg {
  width: 14px;
  height: 14px;
  color: var(--electric-soft);
}

.flow-card__map {
  position: relative;
  flex: 1;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 100% 30px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 30px 100%,
    rgba(255, 255, 255, 0.03);
}

.flow-card__map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.flow-card__poly {
  fill: rgba(45, 114, 232, 0.2);
  stroke: var(--electric);
  stroke-width: 2;
  stroke-dasharray: 8 6;
  stroke-linejoin: round;
}

.flow-card__ai {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 500;
  color: #cfe0fb;
  background: rgba(45, 114, 232, 0.2);
  border: 1px solid rgba(45, 114, 232, 0.5);
  border-radius: 10px;
  padding: 7px 11px;
}

.flow-card__ai svg {
  width: 12px;
  height: 12px;
  color: var(--electric-soft);
}

.flow-card__inbox {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: auto 0;
}

.flow-card__live {
  margin: auto 0;
}

.flow-card__inbox li {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 13px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
}

.flow-card__inbox .face {
  width: 28px;
  height: 28px;
  font-size: 9.5px;
  border-radius: 9px;
}

.flow-card__inbox strong {
  display: block;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
}

.flow-card__inbox span {
  display: block;
  font-size: 11.5px;
  color: #9db1d9;
}

.flow-card__live li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: #d7e1f5;
  padding: 11px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.flow-card__live li:last-child {
  border-bottom: 0;
}

.flow-card__live svg {
  width: 15px;
  height: 15px;
  color: #4ade9c;
}

.flow-card__live li:last-child svg {
  color: var(--electric-soft);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade9c;
  box-shadow: 0 0 10px rgba(74, 222, 156, 0.9);
  animation: live-blink 1.6s ease-in-out infinite;
}

@keyframes live-blink {
  50% {
    opacity: 0.45;
  }
}

/* ============================================================
   quote
   ============================================================ */
.quote {
  background: #fff;
  padding: var(--section-y) var(--gutter);
}

.quote__grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}

.quote__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3.4;
}

.quote__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote__chip {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 12.5px;
  color: var(--slate);
  box-shadow: var(--shadow-sm);
}

.quote__chip strong {
  color: var(--navy);
  font-weight: 700;
}

.quote__chip svg {
  width: 15px;
  height: 15px;
  color: var(--electric);
}

.quote__glyph {
  width: 44px;
  height: 33px;
  margin-bottom: 22px;
}

.quote__glyph path {
  fill: var(--electric);
  opacity: 0.22;
}

.quote__body p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.35rem, 2.5vw, 1.92rem);
  line-height: 1.42;
  letter-spacing: -0.014em;
  color: var(--charcoal);
}

.quote__body footer {
  margin-top: 26px;
  padding-left: 18px;
  border-left: 3px solid var(--electric);
}

.quote__body footer strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
}

.quote__body footer span {
  font-size: 13.5px;
  color: var(--slate);
}

/* ============================================================
   cta
   ============================================================ */
.cta {
  padding: 0 var(--gutter) var(--section-y);
  background: #fff;
}

.cta__panel {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--grad-brand);
  text-align: center;
  padding: clamp(64px, 9vw, 108px) clamp(24px, 5vw, 64px);
  box-shadow: 0 30px 80px -20px rgba(16, 27, 51, 0.45);
}

.cta__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(560px 300px at 18% 0%, rgba(255, 255, 255, 0.14), transparent 70%),
    radial-gradient(640px 360px at 88% 110%, rgba(111, 165, 247, 0.28), transparent 70%),
    radial-gradient(circle, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: auto, auto, 26px 26px;
}

.cta__panel h2 {
  position: relative;
  margin-top: 16px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.4vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
}

.cta__panel > p {
  position: relative;
  margin: 18px auto 0;
  max-width: 520px;
  font-size: 16px;
  line-height: 1.65;
  color: #c7d5f1;
}

.cta__actions {
  position: relative;
  margin-top: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   footer
   ============================================================ */
.footer {
  background: var(--footer-bg);
  padding: clamp(64px, 8vw, 92px) var(--gutter) 30px;
}

.footer__inner {
  max-width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.1fr repeat(3, 1fr);
  gap: clamp(32px, 4vw, 56px);
}

.brand--light .brand__word {
  color: #fff;
}

.footer__brand > p {
  margin-top: 18px;
  max-width: 30ch;
  font-size: 14.5px;
  line-height: 1.65;
  color: #8fa0bc;
}

.footer__tagline {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #5a6b8c;
}

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5a6b8c;
  margin-bottom: 18px;
}

.footer__col a {
  display: block;
  font-size: 14.5px;
  color: #b9c4da;
  padding: 6px 0;
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}

.footer__col a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer__base {
  max-width: var(--content);
  margin: clamp(48px, 6vw, 72px) auto 0;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: #64748b;
}

.footer__top {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #b9c4da;
  display: grid;
  place-items: center;
  transition: border-color 0.22s var(--ease), background-color 0.22s var(--ease),
    color 0.22s var(--ease), transform 0.22s var(--ease);
}

.footer__top:hover {
  border-color: var(--electric);
  background: rgba(45, 114, 232, 0.14);
  color: #fff;
  transform: translateY(-2px);
}

.footer__top svg {
  width: 16px;
  height: 16px;
}

/* ============================================================
   responsive
   ============================================================ */
@media (max-width: 1024px) {
  .cards {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .flow__grid {
    grid-template-columns: 1fr;
  }

  .flow__visual {
    display: none;
  }

  .flow-step {
    opacity: 1;
  }

  .deck__side {
    display: none;
  }

  .deck__stage {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .hero__etch {
    width: 34vw;
    bottom: -10px;
    opacity: 0.8;
  }
}

@media (max-width: 860px) {
  .hero__etch {
    display: none;
  }
}

@media (max-width: 860px) {
  .nav__links,
  .nav__actions .btn--ghost {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .quote__grid {
    grid-template-columns: 1fr;
  }

  .quote__media {
    max-width: 540px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 128px;
  }

  .hero__title {
    column-gap: 0.24em;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }

  .stats__item {
    padding-inline: 16px;
  }

  .stats__item:nth-child(3) {
    border-left: 0;
  }

  .hero__actions {
    gap: 12px;
  }

  .deck__app {
    height: clamp(300px, 60vw, 420px);
  }

  .deck__people .face {
    display: none;
  }

  .deck__event {
    flex: 1;
  }

  .deck__event strong {
    flex: 1 1 auto;
    min-width: 90px;
  }

  .deck__url {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .nav__inner {
    gap: 10px;
  }

  .nav__actions .btn--primary {
    font-size: 13px;
    padding: 11px 16px;
  }

  .nav__actions .btn--primary .btn__circle {
    display: none;
  }

  .nav__toggle {
    flex: none;
    width: 40px;
  }

  .deck__event .tag--date {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .flow-step {
    opacity: 1;
  }
}
