:root {
  --paper: #f7f6f2;
  --paper-2: #efeee8;
  --ink: #0d0e10;
  --soft-ink: #54575e;
  --line: rgba(13, 14, 16, 0.14);
  --dark: #090a0d;
  --dark-2: #12141a;
  --acid: #d8ff56;
  --violet: #8d78ff;
  --mint: #76f1ce;
  --orange: #ff745c;
  --ok: #3f6f43;

  --display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --serif: "Instrument Serif", "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --body: "Manrope", ui-sans-serif, system-ui, sans-serif;

  --gutter: clamp(18px, 3vw, 44px);
  --hero-edge: clamp(14px, 4vw, 64px);
  --section: clamp(72px, 9vw, 132px);
  --maxw: 1560px;
  --maxw-narrow: 1080px;

  /* Fluid type scale — capped so it never over-scales on 2K/wide displays */
  --fs-hero: clamp(2.4rem, 5vw, 4.15rem);
  --fs-display: clamp(2.65rem, 6vw, 4.9rem);
  --fs-h2: clamp(2rem, 4.3vw, 3.15rem);
  --fs-h2-xl: clamp(2.15rem, 4.9vw, 3.85rem);
  --fs-h3: clamp(1.5rem, 2.5vw, 2.1rem);
  --fs-body: 15px;
  --fs-small: 13px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.drawer-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
img, svg { max-width: 100%; }
h1, h2, h3, h4 { text-wrap: balance; }
:where(section[id]) { scroll-margin-top: 96px; }
::selection { background: var(--ink); color: var(--paper); }

.shell { width: 100%; max-width: var(--maxw); margin-inline: auto; }
.shell--narrow { max-width: var(--maxw-narrow); }

/* ============ chrome ============ */
.scroll-meter {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
}
.scroll-meter span { display: block; width: 100%; height: 100%; background: var(--acid); transform: scaleX(0); transform-origin: left; }
.pointer-halo {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 50%;
  background: rgba(13,14,16,.9);
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: difference;
}

/* ============ topbar (floating pill) ============ */
.topbar {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  padding: clamp(10px, 1.5vw, 16px) var(--gutter) 0;
  pointer-events: none;
}
.topbar-inner {
  pointer-events: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  height: 60px;
  padding: 0 10px 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(247, 246, 242, .7);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 4px 18px rgba(13, 14, 16, .05);
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.topbar.is-scrolled .topbar-inner {
  background: rgba(247, 246, 242, .92);
  border-color: rgba(13, 14, 16, .2);
  box-shadow: 0 12px 34px rgba(13, 14, 16, .1);
}

.brand { display: inline-flex; align-items: center; gap: 9px; width: max-content; color: var(--ink); }
.brand-mark { width: 23px; height: 23px; flex: none; display: block; }
.brand-word { font-family: var(--display); font-weight: 700; font-size: 16px; letter-spacing: .16em; line-height: 1; }

.main-nav { justify-self: center; display: flex; align-items: center; gap: 2px; }
.main-nav a {
  padding: 8px 15px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--soft-ink);
  transition: background .2s ease, color .2s ease;
}
.main-nav a:hover { background: rgba(13, 14, 16, .06); color: var(--ink); }

.topbar-actions { justify-self: end; display: flex; align-items: center; gap: 16px; font-size: 12.5px; font-weight: 600; }
.simple-link { color: var(--ink); transition: opacity .2s ease; }
.simple-link:hover { opacity: .55; }
.topbar .round-cta { min-height: 40px; padding: 0 6px 0 16px; gap: 10px; font-size: 12px; }
.topbar .round-cta i { width: 28px; height: 28px; font-size: 12px; }

.round-cta, .primary-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 46px;
  padding: 0 8px 0 20px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: transform .3s ease, box-shadow .3s ease;
}
.round-cta:hover, .primary-button:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(13,14,16,.18); }
.round-cta i, .primary-button i { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--acid); color: var(--ink); font-style: normal; font-size: 13px; }

.nav-toggle { display: none; width: 42px; height: 42px; margin-right: -8px; padding: 0; border: 0; background: transparent; place-items: center; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: transform .3s ease, opacity .3s ease; }
.nav-toggle span + span { margin-top: 6px; }

/* ============ mobile drawer ============ */
.mobile-drawer {
  position: fixed;
  z-index: 130;
  top: 0;
  right: 0;
  width: min(90vw, 420px);
  height: 100dvh;
  padding: 96px 30px 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: var(--dark);
  color: #fff;
  transform: translateX(105%);
  transition: transform .55s cubic-bezier(.2,.8,.2,1);
}
.mobile-drawer.is-open { transform: translateX(0); }
.drawer-nav { display: flex; flex-direction: column; gap: 6px; }
.mobile-drawer .drawer-nav a { font-family: var(--display); font-weight: 500; font-size: clamp(28px, 7vw, 40px); letter-spacing: -.03em; padding: 6px 0; }
.drawer-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.drawer-cta .simple-link { color: #fff; font-size: 14px; }
.drawer-cta .round-cta { justify-content: space-between; }
.mobile-drawer small { margin-top: auto; color: rgba(255,255,255,.55); font-size: 12px; }
.drawer-close { position: absolute; top: 20px; right: 20px; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); background: transparent; color: #fff; font-size: 26px; line-height: 1; cursor: pointer; }
.drawer-shade { position: fixed; z-index: 120; inset: 0; background: rgba(0,0,0,.34); opacity: 0; visibility: hidden; transition: .4s ease; }
.drawer-shade.is-open { opacity: 1; visibility: visible; }

/* ============ hero (centered) ============ */
.hero { padding: clamp(74px, 9vh, 100px) var(--hero-edge) clamp(34px, 5vh, 54px); }
.hero-inner { padding-inline: clamp(0px, 3vw, 48px); text-align: center; }
.hero .eyebrow { justify-content: center; margin-bottom: clamp(16px, 2vw, 26px); }
.hero-head { display: block; }

.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--soft-ink); }
.eyebrow-rule { width: 34px; height: 1px; background: currentColor; opacity: .5; }

.hero-title { margin: 0; font-family: var(--serif); font-weight: 400; font-size: var(--fs-hero); line-height: 1.05; letter-spacing: -.005em; }
.title-line { display: block; overflow: hidden; padding-bottom: .1em; }
.title-line--intro, .title-line--promise { line-height: 1.08; }
.word-rotator {
  position: relative;
  display: inline-grid;
  overflow: hidden;
  padding-bottom: .18em;
  margin-bottom: -.18em;
  vertical-align: bottom;
  font-style: italic;
  color: inherit;
}
.word-rotator > span { display: inline-block; padding-right: .04em; will-change: transform, opacity, filter; }

.hero-lead { max-width: 600px; margin: clamp(22px, 3vw, 32px) auto 0; }
.hero-lead > p { margin: 0 0 24px; color: var(--soft-ink); font-size: 15px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px 20px; }
.primary-button { min-height: 52px; padding-left: 24px; }
.play-link { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 700; }
.play-icon { display: grid; place-items: center; width: 28px; height: 28px; border: 1px solid var(--line); border-radius: 50%; font-size: 9px; }
.hero-trust { display: flex; justify-content: center; align-items: center; gap: 8px; margin: clamp(24px, 3.5vw, 40px) 0 0; font-size: 12.5px; color: var(--soft-ink); }
.hero-trust span { color: var(--ok); font-weight: 700; }

.hero-product {
  position: relative;
  width: 100%;
  max-width: 2000px;
  margin: clamp(22px, 3vw, 40px) auto 0;
  padding: clamp(16px, 2.4vw, 36px) clamp(16px, 3vw, 52px);
  border-radius: clamp(20px, 2.4vw, 30px);
  overflow: hidden;
  background: var(--dark);
  isolation: isolate;
}
.ambient-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(to bottom, #000, transparent 92%); }
.hero-product::before, .hero-product::after { content: ""; position: absolute; width: clamp(300px, 42vw, 540px); height: clamp(300px, 42vw, 540px); border-radius: 50%; filter: blur(64px); opacity: .34; }
.hero-product::before { top: -22vw; left: -12vw; background: var(--violet); }
.hero-product::after { right: -20vw; bottom: -26vw; background: var(--mint); }

.product-window { position: relative; z-index: 2; width: min(1280px, 100%); margin: 0 auto; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; background: rgba(15,17,22,.9); color: #fff; box-shadow: 0 40px 100px rgba(0,0,0,.4); backdrop-filter: blur(20px); }
.window-bar { height: 52px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 18px; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 10.5px; color: rgba(255,255,255,.55); }
.window-bar > span { text-align: center; }
.window-bar button { justify-self: end; border: 0; background: transparent; color: rgba(255,255,255,.55); }
.window-dots { display: flex; gap: 6px; }
.window-dots i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.3); }
.window-content { display: grid; grid-template-columns: 190px 1fr; min-height: clamp(300px, 34vh, 400px); }
.meeting-rail { padding: 26px 20px; border-right: 1px solid rgba(255,255,255,.08); }
.meeting-state { display: flex; align-items: center; gap: 8px; font-size: 10.5px; color: rgba(255,255,255,.55); }
.live-pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 6px rgba(255,116,92,.12); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 10px rgba(255,116,92,0); } }
.meeting-time { margin-top: 24px; font-family: var(--display); font-size: 34px; letter-spacing: -.05em; }
.mini-wave { height: 52px; display: flex; align-items: center; gap: 4px; }
.mini-wave i { width: 3px; height: calc(12px + var(--h, 20px)); border-radius: 8px; background: var(--acid); animation: wave 1.15s ease-in-out infinite; }
.mini-wave i:nth-child(2n) { --h: 34px; animation-delay: -.2s; }
.mini-wave i:nth-child(3n) { --h: 46px; animation-delay: -.45s; }
.mini-wave i:nth-child(4n) { --h: 24px; animation-delay: -.7s; }
@keyframes wave { 50% { transform: scaleY(.35); opacity: .45; } }
.speaker-stack { display: flex; margin-top: 46px; }
.speaker-stack span { width: 34px; height: 34px; display: grid; place-items: center; margin-left: calc(var(--n) * -8px); border-radius: 50%; border: 2px solid var(--dark-2); background: hsl(calc(65 + var(--n) * 110) 75% 68%); color: #111; font-size: 9px; font-weight: 800; }
.transcript-panel { padding: 24px clamp(20px, 3vw, 34px) 20px; }
.panel-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.panel-head small { display: block; margin-bottom: 8px; color: rgba(255,255,255,.45); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.panel-head h2 { margin: 0; font-family: var(--display); font-size: clamp(20px, 2vw, 30px); font-weight: 500; letter-spacing: -.03em; }
.language-chip { flex: none; padding: 7px 11px; border-radius: 999px; background: rgba(255,255,255,.08); font-size: 10px; }
.transcript-list { margin-top: 20px; display: grid; gap: 9px; }
.transcript-row { display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center; padding: 13px 14px; border-radius: 13px; border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.025); }
.transcript-row--active { border-color: rgba(216,255,86,.5); background: rgba(216,255,86,.06); }
.speaker-avatar { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 9px; background: var(--acid); color: #111; font-size: 9px; font-weight: 800; }
.speaker-avatar--violet { background: var(--violet); color: #fff; }
.speaker-avatar--mint { background: var(--mint); }
.transcript-row b { display: block; margin-bottom: 3px; font-size: 11px; }
.transcript-row p { margin: 0; color: rgba(255,255,255,.68); font-size: 12px; line-height: 1.4; }
.transcript-row time { color: rgba(255,255,255,.4); font-size: 10px; }
.smart-bar { margin-top: 14px; display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; padding: 12px 14px; border-radius: 12px; background: rgba(141,120,255,.14); font-size: 11px; }
.smart-bar p { margin: 0; color: rgba(255,255,255,.72); }
.smart-bar button { border: 0; background: transparent; color: #fff; font-size: 10.5px; text-decoration: underline; cursor: pointer; }
.spark { color: var(--violet); }

.floating-note { position: absolute; z-index: 3; padding: 13px 16px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; background: rgba(247,246,242,.94); color: var(--ink); box-shadow: 0 22px 50px rgba(0,0,0,.16); backdrop-filter: blur(12px); }
.floating-note--top { top: clamp(20px, 4vw, 46px); right: clamp(14px, 4vw, 44px); transform: rotate(3deg); }
.note-label { display: block; margin-bottom: 5px; color: var(--soft-ink); font-size: 9px; text-transform: uppercase; letter-spacing: .12em; }
.floating-note strong { font-size: 12px; }

.hero-live-card {
  position: absolute;
  z-index: 5;
  right: clamp(16px, 2.4vw, 34px);
  bottom: clamp(16px, 2.4vw, 34px);
  width: min(360px, calc(100% - 32px));
  padding: 16px 18px 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(85,53,124,.9), rgba(27,31,70,.88)),
    rgba(20,20,37,.88);
  color: #fff;
  box-shadow: 0 24px 70px rgba(0,0,0,.34);
  backdrop-filter: blur(20px) saturate(130%);
  animation: liveCardFloat 5s ease-in-out infinite;
}
.hero-live-head { display: flex; align-items: center; gap: 5px; margin-bottom: 12px; color: rgba(255,255,255,.58); font-size: 9.5px; letter-spacing: .06em; }
.hero-live-head strong { color: rgba(255,255,255,.75); font-size: 9.5px; }
.hero-live-dot { width: 7px; height: 7px; margin-right: 2px; border-radius: 50%; background: #ff5f69; box-shadow: 0 0 0 5px rgba(255,95,105,.1); animation: liveDot 1.6s ease-in-out infinite; }
.hero-live-line { display: grid; grid-template-columns: max-content 1fr; align-items: baseline; gap: 10px; min-width: 0; padding: 5px 0; font-size: 10.5px; }
.hero-live-line b { font-size: 10.5px; }
.hero-live-line p { min-width: 0; margin: 0; overflow: hidden; color: rgba(255,255,255,.7); line-height: 1.45; text-overflow: ellipsis; white-space: nowrap; }
.hero-live-line--active { animation: liveLineGlow 3.4s ease-in-out infinite; }
.hero-live-progress { height: 2px; margin-top: 9px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.18); }
.hero-live-progress span { display: block; width: 48%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, rgba(255,255,255,.2), var(--violet), var(--mint)); animation: liveProgress 3.8s ease-in-out infinite; }
@keyframes liveCardFloat { 50% { transform: translateY(-7px); } }
@keyframes liveDot { 50% { opacity: .55; box-shadow: 0 0 0 9px rgba(255,95,105,0); } }
@keyframes liveLineGlow { 50% { opacity: .72; } }
@keyframes liveProgress { 0% { transform: translateX(-110%); } 70%, 100% { transform: translateX(230%); } }

.hero-strip { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px 16px; margin-top: clamp(28px, 4vw, 44px); color: var(--soft-ink); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.hero-strip i { width: 3px; height: 3px; border-radius: 50%; background: var(--ink); }

/* ============ shared section heading ============ */
.section-heading { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,.5fr); gap: clamp(24px, 5vw, 80px); align-items: end; margin-bottom: clamp(40px, 6vw, 72px); }
.section-heading .eyebrow { margin-bottom: 18px; }
.section-heading h2 { margin: 0; font-family: var(--display); font-weight: 600; font-size: var(--fs-h2); line-height: 1.03; letter-spacing: -.022em; }
.section-heading > p { margin: 0; color: var(--soft-ink); font-size: 15px; line-height: 1.7; }
.section-heading > p a { text-decoration: underline; text-underline-offset: 3px; }

/* ============ steps ============ */
.steps { padding: var(--section) var(--gutter); border-top: 1px solid var(--line); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 22px; overflow: hidden; }
.step { display: flex; flex-direction: column; gap: 14px; padding: clamp(26px, 3.4vw, 44px); background: var(--paper); }
.step::before { content: ""; width: 30px; height: 3px; background: var(--acid); }
.step-n { font-family: var(--display); font-weight: 600; font-size: clamp(2rem, 3.4vw, 2.75rem); line-height: 1; letter-spacing: -.03em; }
.step h3 { margin: 0; font-family: var(--display); font-weight: 600; font-size: clamp(1.15rem, 1.8vw, 1.4rem); letter-spacing: -.01em; }
.step p { margin: 0; color: var(--soft-ink); font-size: 14px; line-height: 1.65; }

/* ============ product section ============ */
.product-section { padding: var(--section) var(--gutter); border-top: 1px solid var(--line); }
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.product-card { position: relative; min-height: clamp(460px, 52vw, 600px); padding: clamp(24px, 3vw, 38px); overflow: hidden; border-radius: 24px; background: var(--paper-2); transform-style: preserve-3d; transition: transform .25s ease; }
.product-card--transcript { background: #111318; color: #fff; }
.product-card-copy { position: relative; z-index: 4; max-width: 460px; }
.product-card-copy > span { display: block; margin-bottom: 14px; color: rgba(84,87,94,.85); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.product-card--transcript .product-card-copy > span { color: rgba(255,255,255,.45); }
.product-card-copy h3 { margin: 0; font-family: var(--display); font-weight: 600; font-size: var(--fs-h3); line-height: 1.05; letter-spacing: -.025em; }
.product-card-copy p { max-width: 400px; margin: 18px 0 0; color: var(--soft-ink); font-size: 13px; line-height: 1.65; }
.product-card--transcript .product-card-copy p { color: rgba(255,255,255,.58); }

.transcript-canvas { position: absolute; inset: 42% 0 0; overflow: hidden; }
.transcript-canvas::before { content: ""; position: absolute; left: 50%; top: 60%; width: 420px; height: 420px; border-radius: 50%; transform: translate(-50%,-50%); background: radial-gradient(circle, rgba(141,120,255,.3), transparent 65%); filter: blur(12px); }
.audio-core { position: absolute; left: 50%; top: 58%; width: clamp(180px, 24vw, 250px); aspect-ratio: 1; transform: translate(-50%,-50%); border-radius: 50%; background: radial-gradient(circle at 35% 30%, #fff 0 2%, #d8ff56 10%, #8276ff 38%, #111318 70%); box-shadow: inset -20px -30px 50px rgba(0,0,0,.4), 0 40px 90px rgba(141,120,255,.28); animation: coreFloat 5s ease-in-out infinite; }
.audio-core::before, .audio-core::after { content: ""; position: absolute; inset: -30px; border-radius: 50%; border: 1px solid rgba(255,255,255,.13); transform: rotateX(68deg); }
.audio-core::after { inset: -58px; transform: rotateY(70deg); }
.audio-core span { position: absolute; inset: 22%; border-radius: 50%; border: 1px solid rgba(255,255,255,.35); }
.audio-core i { position: absolute; left: 50%; top: 50%; width: 3px; height: 48%; transform-origin: 50% 0; background: linear-gradient(var(--acid), transparent); opacity: .55; }
.audio-core i:nth-of-type(1) { transform: rotate(20deg); }
.audio-core i:nth-of-type(2) { transform: rotate(145deg); }
.audio-core i:nth-of-type(3) { transform: rotate(255deg); }
@keyframes coreFloat { 50% { transform: translate(-50%,-55%) rotate(8deg); } }
.floating-sentence { position: absolute; z-index: 3; min-width: 180px; max-width: 68%; padding: 12px 15px; border: 1px solid rgba(255,255,255,.1); border-radius: 13px; background: rgba(255,255,255,.07); backdrop-filter: blur(13px); box-shadow: 0 18px 35px rgba(0,0,0,.18); }
.floating-sentence b { display: block; margin-bottom: 4px; color: var(--acid); font-size: 9.5px; }
.floating-sentence span { color: rgba(255,255,255,.72); font-size: 10.5px; }
.floating-sentence--one { left: 6%; top: 14%; transform: rotate(-4deg); }
.floating-sentence--two { right: 5%; top: 40%; transform: rotate(5deg); }
.floating-sentence--three { left: 14%; bottom: 8%; transform: rotate(3deg); }

.summary-sheet { width: min(90%, 460px); margin: clamp(96px, 16vw, 150px) auto 34px; padding: 24px; border-radius: 18px; background: #fff; color: var(--ink); box-shadow: 0 35px 70px rgba(13,14,16,.12); transform: rotate(-2deg); }
.summary-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 14px; border-bottom: 1px solid var(--line); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: var(--soft-ink); }
.summary-head small { padding: 5px 8px; border-radius: 999px; background: rgba(118,241,206,.28); letter-spacing: .04em; }
.summary-sheet h4 { margin: 22px 0 10px; font-family: var(--display); font-weight: 600; font-size: 1.35rem; letter-spacing: -.02em; }
.summary-sheet > p { margin: 0 0 20px; color: var(--soft-ink); font-size: 12px; line-height: 1.6; }
.summary-line { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: center; padding: 12px 0; border-top: 1px solid var(--line); }
.summary-line > span { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 8px; background: var(--acid); font-size: 11px; }
.summary-line--soft > span { background: rgba(141,120,255,.18); color: var(--violet); }
.summary-line b { display: block; font-size: 11px; }
.summary-line small { display: block; margin-top: 3px; color: var(--soft-ink); font-size: 10px; }
.product-card--summary .product-card-copy { margin-left: auto; }

/* ============ feature lab (pinned scenes) ============ */
.feature-lab { position: relative; height: 300vh; background: var(--dark); color: #fff; }
.feature-stage { position: sticky; top: 0; height: 100svh; padding: clamp(84px, 12vh, 112px) var(--gutter) clamp(38px, 6vh, 54px); overflow: hidden; }
.feature-topline { display: flex; align-items: center; justify-content: space-between; margin-inline: auto; font-size: 10.5px; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.5); }
.feature-progress { position: absolute; left: var(--gutter); right: var(--gutter); bottom: clamp(20px, 4vh, 32px); height: 1px; background: rgba(255,255,255,.14); }
.feature-progress span { display: block; width: 100%; height: 100%; background: var(--acid); transform: scaleX(0); transform-origin: left; }

.feature-scene {
  position: absolute;
  top: clamp(104px, 15vh, 146px);
  bottom: clamp(48px, 7vh, 66px);
  left: 0;
  right: 0;
  width: 100%;
  max-width: calc(var(--maxw) + 2 * var(--gutter));
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
  opacity: 0;
  transform: translateY(50px);
  pointer-events: none;
}
.feature-scene.is-current { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scene-copy { max-width: 760px; }
.scene-index { display: block; margin-bottom: 22px; color: var(--acid); font-size: 11px; letter-spacing: .06em; }
.scene-copy h2 { margin: 0; font-family: var(--display); font-weight: 600; font-size: var(--fs-h2-xl); line-height: 1; letter-spacing: -.028em; }
.scene-copy p { max-width: 46ch; margin: 24px 0 0; color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.7; }
.scene-points { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 9px; }
.scene-points li { position: relative; padding-left: 20px; font-size: 13px; color: rgba(255,255,255,.82); }
.scene-points li::before { content: ""; position: absolute; left: 0; top: .6em; width: 10px; height: 1px; background: var(--acid); }

.scene-visual { position: relative; min-height: clamp(260px, 40vh, 420px); }
.speaker-map { display: grid; place-items: center; }
.map-core, .map-node { position: absolute; display: grid; place-items: center; border-radius: 50%; font-weight: 800; }
.map-core { width: clamp(84px, 9vw, 108px); height: clamp(84px, 9vw, 108px); background: var(--acid); color: #111; box-shadow: 0 0 80px rgba(216,255,86,.2); }
.map-core svg { width: 52%; height: 52%; }
.map-node { width: 56px; height: 56px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.07); backdrop-filter: blur(12px); font-size: 10px; }
.map-node--a { transform: translate(-140px,-96px); }
.map-node--b { transform: translate(150px,-42px); }
.map-node--c { transform: translate(-18px,146px); }
.map-ring { position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; animation: orbitSpin 13s linear infinite; }
.map-ring--one { width: 280px; height: 178px; transform: rotate(18deg); }
.map-ring--two { width: 350px; height: 340px; transform: rotate(-22deg); animation-direction: reverse; }
@keyframes orbitSpin { to { rotate: 360deg; } }
.decision-stack { display: grid; place-items: center; }
.decision-card { position: absolute; width: min(100%, 380px); padding: 20px; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; background: rgba(255,255,255,.07); backdrop-filter: blur(20px); box-shadow: 0 28px 70px rgba(0,0,0,.2); }
.decision-card small, .decision-card span { display: block; color: rgba(255,255,255,.42); font-size: 9.5px; text-transform: uppercase; letter-spacing: .08em; }
.decision-card b { display: block; margin: 8px 0 14px; font-family: var(--display); font-weight: 600; font-size: 1.05rem; letter-spacing: -.02em; }
.decision-card:nth-child(1) { transform: translate(-42px,-102px) rotate(-5deg); }
.decision-card:nth-child(2) { transform: translate(52px,8px) rotate(5deg); }
.decision-card:nth-child(3) { transform: translate(-18px,120px) rotate(-2deg); }
.credit-dial { display: grid; place-items: center; }
.dial-ring { width: clamp(220px, 26vw, 280px); aspect-ratio: 1; display: grid; place-content: center; border-radius: 50%; background: conic-gradient(var(--acid) 0 78%, rgba(255,255,255,.08) 78%); position: relative; }
.dial-ring::before { content: ""; position: absolute; inset: 18px; border-radius: 50%; background: var(--dark); }
.dial-ring span, .dial-ring small { position: relative; z-index: 1; text-align: center; }
.dial-ring span { font-family: var(--display); font-weight: 600; font-size: clamp(2.6rem, 4.5vw, 3.6rem); letter-spacing: -.05em; }
.dial-ring small { color: rgba(255,255,255,.45); font-size: 10px; }
.dial-caption { margin-top: 24px; text-align: center; }
.dial-caption b { display: block; font-size: 12px; }
.dial-caption span { display: block; margin-top: 6px; color: rgba(255,255,255,.45); font-size: 10px; }

/* ============ pricing ============ */
.pricing { padding: var(--section) var(--gutter); background: var(--paper-2); }
.pricing-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
.pricing-lede .eyebrow { margin-bottom: 18px; }
.pricing-eq { margin: 0; font-family: var(--display); font-weight: 600; font-size: clamp(2.3rem, 5.4vw, 3.9rem); line-height: 1; letter-spacing: -.025em; }
.pricing-eq span { margin: 0 .12em; color: var(--soft-ink); }
.pricing-note { margin: 20px 0 28px; max-width: 42ch; color: var(--soft-ink); font-size: 15px; line-height: 1.7; }
.pricing-note strong { color: var(--ink); }
.pricing-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 22px; }
.pricing-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.pricing-list li { display: flex; gap: 18px; align-items: baseline; padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 15px; line-height: 1.5; }
.pricing-list li span { flex: none; font-family: var(--display); font-size: 12px; letter-spacing: .08em; color: var(--soft-ink); }

/* ============ focus demo ============ */
.focus-demo { position: relative; height: 210vh; background: var(--paper); }
.focus-pin { position: sticky; top: 0; height: 100svh; overflow: hidden; display: grid; place-items: center; }
.focus-frame { position: absolute; width: clamp(280px, 24vw, 420px); aspect-ratio: 1.65; border-radius: 18px; overflow: hidden; will-change: width, height, border-radius; }
.focus-world { position: absolute; inset: 0; overflow: hidden; background: #0b0d12; color: #fff; transform: scale(1.2); will-change: transform; }
.focus-grid { position: absolute; inset: 0; background-image: radial-gradient(circle at 50% 50%, rgba(141,120,255,.28), transparent 35%), linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: auto, 42px 42px, 42px 42px; }
.voice-orbit { position: absolute; left: 50%; top: 50%; width: min(50vw, 560px); aspect-ratio: 1; transform: translate(-50%,-50%) scale(.78); will-change: transform; }
.voice-orbit::before, .voice-orbit::after { content: ""; position: absolute; inset: 5%; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; transform: rotateX(65deg); }
.voice-orbit::after { inset: -4%; transform: rotateY(64deg); }
.voice-sphere { position: absolute; left: 50%; top: 50%; width: 42%; aspect-ratio: 1; transform: translate(-50%,-50%); border-radius: 50%; background: radial-gradient(circle at 35% 27%, #fff 0 2%, var(--acid) 8%, var(--violet) 34%, #131625 70%); box-shadow: inset -35px -35px 60px rgba(0,0,0,.52), 0 0 120px rgba(141,120,255,.33); animation: sphereDrift 6s ease-in-out infinite; }
@keyframes sphereDrift { 50% { transform: translate(-50%,-55%) rotate(10deg); } }
.sphere-glow { position: absolute; inset: -30%; border-radius: 50%; background: radial-gradient(circle, rgba(216,255,86,.18), transparent 68%); filter: blur(20px); }
.sphere-line { position: absolute; left: 50%; top: 50%; width: 3px; height: 68%; transform-origin: top; background: linear-gradient(rgba(255,255,255,.55), transparent); }
.sphere-line--a { transform: rotate(18deg); }
.sphere-line--b { transform: rotate(142deg); }
.sphere-line--c { transform: rotate(258deg); }
.orbit-token { position: absolute; padding: 9px 12px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; background: rgba(255,255,255,.08); backdrop-filter: blur(10px); font-size: 9.5px; text-transform: uppercase; letter-spacing: .12em; }
.orbit-token--a { left: 5%; top: 21%; }
.orbit-token--b { right: 4%; top: 30%; }
.orbit-token--c { right: 18%; bottom: 8%; }
.orbit-token--d { left: 11%; bottom: 18%; }
.focus-transcript { position: absolute; z-index: 3; width: min(30vw, 340px); padding: 16px 18px; border: 1px solid rgba(255,255,255,.13); border-radius: 15px; background: rgba(18,20,28,.66); backdrop-filter: blur(18px); }
.focus-transcript span { color: var(--acid); font-size: 9px; letter-spacing: .1em; }
.focus-transcript p { margin: 8px 0 0; color: rgba(255,255,255,.68); font-size: 11px; line-height: 1.55; }
.focus-transcript--left { left: 6%; top: 20%; }
.focus-transcript--right { right: 6%; bottom: 18%; }
.focus-caption { position: absolute; left: 50%; bottom: 7%; transform: translateX(-50%); text-align: center; white-space: nowrap; }
.focus-caption small { display: block; margin-bottom: 10px; color: rgba(255,255,255,.45); font-size: 9px; text-transform: uppercase; letter-spacing: .14em; }
.focus-caption strong { display: block; font-family: var(--display); font-weight: 600; font-size: clamp(1.6rem, 3.6vw, 3rem); letter-spacing: -.03em; }
.focus-label { position: absolute; top: 50%; transform: translateY(-50%); font-family: var(--display); font-weight: 500; font-size: clamp(15px, 1.8vw, 27px); letter-spacing: -.03em; }
.focus-label--left { right: calc(50% + 17vw); }
.focus-label--right { left: calc(50% + 17vw); }

/* ============ faq ============ */
.faq { padding: var(--section) var(--gutter); border-top: 1px solid var(--line); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { list-style: none; cursor: pointer; display: flex; align-items: baseline; justify-content: space-between; gap: 24px; padding: clamp(18px, 2.4vw, 28px) 0; font-family: var(--display); font-weight: 500; font-size: clamp(1.05rem, 1.9vw, 1.35rem); letter-spacing: -.012em; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i { position: relative; flex: none; width: 14px; height: 14px; margin-top: .3em; }
.faq-list summary i::before, .faq-list summary i::after { content: ""; position: absolute; background: var(--ink); transition: transform .3s ease, opacity .3s ease; }
.faq-list summary i::before { left: 0; top: 6px; width: 14px; height: 2px; }
.faq-list summary i::after { left: 6px; top: 0; width: 2px; height: 14px; }
.faq-list details[open] summary i::after { transform: scaleY(0); opacity: 0; }
.faq-list p { margin: 0 0 clamp(20px, 2.4vw, 28px); max-width: 64ch; color: var(--soft-ink); font-size: 14.5px; line-height: 1.7; }
.faq-list p a { text-decoration: underline; text-underline-offset: 3px; }
.faq-list details[open] p { animation: faqIn .32s ease; }
@keyframes faqIn { from { opacity: 0; transform: translateY(-4px); } }

/* ============ contact zone ============ */
.contact-zone { position: relative; min-height: clamp(560px, 78vh, 720px); display: grid; place-content: center; padding: clamp(90px, 12vh, 128px) var(--gutter) clamp(56px, 8vh, 72px); overflow: hidden; background: var(--acid); text-align: center; }
.contact-inner { display: grid; justify-items: center; }
.contact-zone h2 { position: relative; z-index: 2; margin: 0; font-family: var(--serif); font-weight: 500; font-size: var(--fs-h2-xl); line-height: 1.06; letter-spacing: -.015em; }
.contact-disc { position: relative; z-index: 3; width: clamp(140px, 16vw, 168px); aspect-ratio: 1; margin-top: clamp(32px, 4vw, 44px); display: grid; place-content: center; border-radius: 50%; background: var(--ink); color: #fff; font-family: var(--display); font-weight: 500; font-size: clamp(17px, 1.5vw, 20px); line-height: .95; text-align: left; box-shadow: 0 25px 50px rgba(13,14,16,.18); }
.contact-disc i { position: absolute; top: 20px; right: 22px; font-style: normal; }
.contact-foot { position: absolute; left: var(--gutter); right: var(--gutter); bottom: clamp(20px, 3vh, 30px); display: flex; justify-content: space-between; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.letter-field { position: absolute; inset: 0; pointer-events: none; }
.random-letter { position: absolute; left: 0; top: 0; font-family: var(--display); font-size: clamp(22px, 3vw, 48px); font-weight: 700; opacity: 0; transform: translate(-50%,-50%) scale(.45) rotate(var(--r)); animation: letterBurst 1.25s cubic-bezier(.2,.8,.2,1) forwards; }
@keyframes letterBurst { 14% { opacity: 1; transform: translate(-50%,-50%) scale(1) rotate(var(--r)); } 100% { opacity: 0; transform: translate(-50%,-100%) scale(.72) rotate(calc(var(--r) + 24deg)); } }

/* ============ footer ============ */
.footer { padding: clamp(60px, 8vw, 96px) var(--gutter) clamp(28px, 4vw, 44px); overflow: hidden; background: var(--paper); }
.footer-main { display: grid; grid-template-columns: 1.25fr 2fr; gap: clamp(36px, 6vw, 88px); padding-bottom: clamp(40px, 5vw, 60px); }
.footer-brand p { max-width: 34ch; margin: 18px 0 0; color: var(--soft-ink); font-size: 13.5px; line-height: 1.65; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-links > div { display: flex; flex-direction: column; gap: 10px; }
.footer-links span { margin-bottom: 4px; color: var(--soft-ink); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.footer-links a { color: var(--soft-ink); font-size: 13.5px; transition: color .2s ease; }
.footer-links a:hover { color: var(--ink); }
.footer-meta { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 28px; padding: 18px 0; border-top: 1px solid var(--line); color: var(--soft-ink); font-size: 11.5px; }
.footer-meta a:hover { color: var(--ink); }
.footer-sign { margin-top: clamp(20px, 3vw, 40px); font-family: var(--display); font-weight: 600; font-size: clamp(3.25rem, 13vw, 8.5rem); line-height: .82; letter-spacing: .01em; color: var(--ink); opacity: .06; white-space: nowrap; user-select: none; }

/* ============ reveal ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-scale { opacity: 0; clip-path: inset(8% 0 0 round 24px); transform: scale(.98); transition: opacity 1s ease, clip-path 1.1s cubic-bezier(.2,.8,.2,1), transform 1.1s cubic-bezier(.2,.8,.2,1); }
.reveal-scale.is-visible { opacity: 1; clip-path: inset(0 round 24px); transform: scale(1); }
.reveal-card { opacity: 0; clip-path: inset(9% 0 0 round 24px); transform: translateY(48px); transition: opacity .9s ease, clip-path 1.1s cubic-bezier(.2,.8,.2,1), transform 1.1s cubic-bezier(.2,.8,.2,1); }
.reveal-card.is-visible { opacity: 1; clip-path: inset(0 round 24px); transform: translateY(0); }

/* ============ responsive ============ */
@media (max-width: 1180px) {
  .pricing-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 1050px) {
  .main-nav,
  .topbar-actions .simple-link { display: none; }
  .topbar-inner { grid-template-columns: 1fr auto; }
  .topbar-actions { gap: 10px; }
  .nav-toggle { display: grid; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .section-heading > p { max-width: 560px; }
  .feature-scene { grid-template-columns: 1fr .72fr; gap: 34px; }
  .title-line--promise { white-space: normal; }
  .footer-main { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  :root { --gutter: 16px; --section: clamp(58px, 12vw, 84px); }
  .pointer-halo { display: none; }
  .topbar-inner { height: 54px; padding-left: 16px; }
  .topbar-actions .round-cta { display: none; }
  .drawer-cta .round-cta { display: inline-flex; }

  .hero { padding-top: 90px; }
  .hero-inner { padding-inline: 0; }
  .hero-lead > p { font-size: 14.5px; }
  .hero-actions { gap: 14px 18px; }
  .primary-button { width: 100%; justify-content: space-between; }

  .hero-product { padding: 22px 14px; }
  .floating-note { display: none; }
  .product-window { width: 100%; }
  .window-content { grid-template-columns: 1fr; min-height: 0; }
  .meeting-rail { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .meeting-time, .mini-wave, .speaker-stack { display: none; }
  .transcript-panel { padding: 22px 16px 18px; }
  .panel-head h2 { font-size: 20px; }
  .transcript-row { grid-template-columns: auto 1fr; }
  .transcript-row time { display: none; }
  .hero-live-card {
    position: static;
    width: 100%;
    margin-top: 14px;
    animation: none;
  }

  .steps-grid { grid-template-columns: 1fr; border-radius: 18px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 520px; border-radius: 20px; }
  .product-card-copy h3 { font-size: clamp(1.5rem, 7vw, 2rem); }
  .summary-sheet { width: 100%; margin-top: 110px; }

  .feature-lab { height: auto; }
  .feature-stage { position: static; height: auto; padding: 76px var(--gutter) 64px; }
  .feature-progress { display: none; }
  .feature-topline { margin-bottom: 8px; }
  .feature-scene {
    position: static;
    inset: auto;
    max-width: none;
    padding-inline: 0;
    margin: 0;
    grid-template-columns: 1fr;
    gap: 24px;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto;
    padding-block: 40px;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .feature-scene:last-child { border-bottom: 0; }
  .scene-visual { min-height: 230px; }
  .map-core { width: 78px; height: 78px; }
  .map-node { width: 48px; height: 48px; }
  .map-node--a { transform: translate(-98px,-58px); }
  .map-node--b { transform: translate(102px,-22px); }
  .map-node--c { transform: translate(-8px,96px); }
  .map-ring--one { width: 196px; height: 142px; }
  .map-ring--two { width: 244px; height: 224px; }
  .decision-card { width: min(90%, 300px); padding: 16px; }
  .decision-card:nth-child(1) { transform: translate(-22px,-66px) rotate(-5deg); }
  .decision-card:nth-child(2) { transform: translate(24px,6px) rotate(5deg); }
  .decision-card:nth-child(3) { transform: translate(-10px,78px) rotate(-2deg); }
  .dial-ring { width: 200px; }

  .pricing-list li { font-size: 14px; }

  .focus-demo { height: 170vh; }
  .focus-label { top: 24%; font-size: 13px; }
  .focus-label--left { left: 16px; right: auto; }
  .focus-label--right { right: 16px; left: auto; }
  .voice-orbit { width: 88vw; }
  .focus-transcript { width: 82vw; }
  .focus-transcript--left { left: 6%; top: 13%; }
  .focus-transcript--right { right: 6%; bottom: 14%; }
  .focus-caption strong { white-space: normal; width: 86vw; }

  .contact-zone { min-height: 0; padding-block: 90px 84px; }
  .contact-foot { position: static; margin-top: 26px; flex-direction: column; gap: 6px; }

  .footer-links { grid-template-columns: 1fr 1fr; gap: 24px 20px; }
  .footer-meta { flex-direction: column; align-items: flex-start; }
  .footer-sign { font-size: 34vw; }
}

@media (max-width: 760px) {
  :where(section[id]) { scroll-margin-top: 74px; }
}

@media (max-width: 420px) {
  .brand-word { font-size: 16px; }
  .hero-title { letter-spacing: -.02em; }
  .footer-links { grid-template-columns: 1fr; }
  .step::before { width: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .pointer-halo { display: none; }
  .hero-live-card { animation: none; }
  .reveal, .reveal-scale, .reveal-card { opacity: 1; transform: none; clip-path: none; }
}


/* ===== Combined SIMA header + hero ===== */
.mx-section-pad { padding-inline: clamp(18px, 2.1vw, 34px); }
.mx-eyebrow { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.mx-mobile-only { display: none; }

.mx-header {
  position: fixed; z-index: 1100; top: 0; left: 0; width: 100%; height: 66px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 0 clamp(18px, 2.1vw, 34px); border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, transform .45s cubic-bezier(.22,1,.36,1), box-shadow .35s ease;
}
.mx-header.is-scrolled { background: rgba(247,246,242,.86); backdrop-filter: blur(18px) saturate(140%); border-color: rgba(13,14,16,.12); box-shadow: 0 10px 36px rgba(13,14,16,.05); }
.mx-brand { display: inline-flex; align-items: center; gap: 9px; justify-self: start; width: max-content; color: #0d0e10; }
.mx-brand-mark { width: 23px; height: 23px; flex: none; }
.mx-brand-word { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 16px; letter-spacing: .16em; line-height: 1; }
.mx-nav { display: flex; align-items: center; gap: 28px; font-size: 12px; }
.mx-nav a, .mx-text-link { position: relative; }
.mx-nav a::after, .mx-text-link::after { content: ""; position: absolute; left: 0; bottom: -4px; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .35s cubic-bezier(.22,1,.36,1); }
.mx-nav a:hover::after, .mx-text-link:hover::after { transform: scaleX(1); transform-origin: left; }
.mx-header-actions { justify-self: end; display: flex; align-items: center; gap: 18px; font-size: 12px; }
.mx-pill-button { min-height: 42px; display: inline-flex; align-items: center; justify-content: space-between; gap: 24px; padding: 0 10px 0 18px; border-radius: 999px; font-size: 12px; font-weight: 600; transition: transform .3s ease, background .3s ease, color .3s ease, box-shadow .3s ease; }
.mx-pill-button:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0,0,0,.14); }
.mx-pill-button--dark { background: #090909; color: #fff; }
.mx-pill-button--light { background: #fff; color: #000; }
.mx-pill-arrow, .mx-pill-button > span:last-child { display: grid; place-items: center; width: 27px; height: 27px; border-radius: 50%; background: rgba(255,255,255,.16); }
.mx-pill-button--light > span:last-child { background: rgba(0,0,0,.08); }
.mx-menu-toggle { width: 36px; height: 36px; display: none; place-content: center; gap: 5px; padding: 0; border: 0; border-radius: 50%; background: #090909; cursor: pointer; }
.mx-menu-toggle span { width: 14px; height: 1px; background: #fff; }
.mx-menu-panel { position: fixed; z-index: 2100; top: 10px; right: 10px; width: min(520px, calc(100vw - 20px)); height: min(640px, calc(100vh - 20px)); padding: 22px; background: #faf9f6; border-radius: 24px; box-shadow: 0 24px 80px rgba(0,0,0,.16); transform: translateX(110%); visibility: hidden; opacity: 0; }
.mx-menu-panel__top { display: flex; align-items: center; justify-content: space-between; font-size: 12px; }
.mx-menu-close { border: 0; background: transparent; font-size: 34px; font-weight: 300; cursor: pointer; }
.mx-menu-panel__links { display: flex; flex-direction: column; margin-top: 48px; }
.mx-menu-panel__links a { font-family: "Inter Tight", "Space Grotesk", sans-serif; font-size: clamp(36px, 6vw, 64px); line-height: .94; letter-spacing: -.055em; }
.mx-menu-panel__bottom { position: absolute; inset: auto 22px 22px; display: grid; grid-template-columns: 1fr 1.1fr; gap: 20px; align-items: end; }
.mx-menu-panel__bottom > div:first-child { display: flex; flex-direction: column; gap: 7px; }
.mx-mini-demo { min-height: 120px; padding: 16px; border-radius: 14px; background: #0c0c0c; color: #fff; display: flex; flex-direction: column; justify-content: space-between; }
.mx-mini-demo__orb { width: 36px; height: 36px; border: 1px solid #fff; border-radius: 50%; box-shadow: 18px 8px 30px #6f55ff, -14px 6px 32px #ff7043; }
.mx-menu-backdrop { position: fixed; inset: 0; z-index: 2090; background: rgba(0,0,0,.28); backdrop-filter: blur(8px); opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s ease; }
body.mx-menu-open { overflow: hidden; }

.mx-hero { padding-top: 78px; min-height: 100svh; }
.mx-hero-title-row { display: grid; grid-template-columns: 1fr 1fr; align-items: end; margin-bottom: 10px; }
.mx-display-title { margin: 0; font-family: "Inter Tight", "Space Grotesk", sans-serif; font-size: clamp(72px, 10.4vw, 164px); font-weight: 600; line-height: .78; letter-spacing: -.075em; }
.mx-display-title sup { font-size: .14em; vertical-align: top; margin-left: .05em; }
.mx-display-title--right { text-align: right; }
.mx-hero-stage { position: relative; min-height: clamp(500px, 61vh, 650px); overflow: hidden; border-radius: 8px; background: #090909; isolation: isolate; }
#auroraCanvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.mx-hero-stage__shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(0,0,0,.46), transparent 48%, rgba(0,0,0,.32)), linear-gradient(0deg, rgba(0,0,0,.32), transparent 46%); }
.mx-hero-copy { position: absolute; z-index: 3; left: clamp(18px, 2.5vw, 40px); bottom: clamp(20px, 5vw, 68px); max-width: min(760px, 52vw); color: #fff; font-family: "Inter Tight", "Space Grotesk", sans-serif; }
.mx-hero-kicker { display: block; font-size: clamp(19px, 2.2vw, 34px); line-height: 1; }
.mx-rotating-line { display: flex; gap: .25em; align-items: baseline; font-size: clamp(34px, 4.8vw, 76px); line-height: .95; letter-spacing: -.045em; }
.mx-rotating-line strong { font-weight: 600; min-width: 4.6em; }
.mx-hero-meta { display: flex; gap: 12px; margin-top: 18px; font-family: "Manrope", sans-serif; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; opacity: .74; }
.mx-hero-meta span { padding-right: 12px; border-right: 1px solid rgba(255,255,255,.3); }
.mx-hero-meta span:last-child { border: 0; }
.mx-hero-description { position: absolute; z-index: 4; top: clamp(22px, 3vw, 44px); right: clamp(18px, 2.8vw, 46px); width: min(440px, 36vw); padding: 18px; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; background: rgba(8,8,12,.45); color: #fff; backdrop-filter: blur(18px) saturate(125%); }
.mx-hero-description p { margin: 0; color: rgba(255,255,255,.75); font-size: 12px; line-height: 1.65; }
.mx-hero-description__actions { display: flex; align-items: center; gap: 16px; margin-top: 17px; }
.mx-hero-description .mx-pill-button { min-height: 40px; padding-left: 15px; }
.mx-hero-text-action { font-size: 10px; font-weight: 600; white-space: nowrap; }
.mx-hero-text-action span { display: inline-block; margin-left: 5px; }
.mx-live-caption { position: absolute; z-index: 4; top: 47%; right: clamp(18px, 2.8vw, 46px); width: min(390px, 37vw); transform: translateY(-50%); padding: 14px 15px; background: rgba(10,10,10,.64); color: #fff; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; backdrop-filter: blur(14px); }
.mx-live-caption__top { display: flex; align-items: center; gap: 8px; margin-bottom: 13px; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; opacity: .8; }
.mx-status-dot { width: 7px; height: 7px; display: inline-block; border-radius: 50%; background: #ff4b4b; box-shadow: 0 0 0 4px rgba(255,75,75,.12); }
.mx-live-caption p { margin: 7px 0; font-size: 11px; color: rgba(255,255,255,.76); }
.mx-live-caption b { color: #fff; margin-right: 8px; }
.mx-caption-progress { height: 2px; margin-top: 12px; background: rgba(255,255,255,.14); overflow: hidden; }
.mx-caption-progress span { display: block; width: 44%; height: 100%; background: #d8ff56; animation: mxCaption 4s ease-in-out infinite; }
@keyframes mxCaption { 0% { transform: translateX(-105%); } 55%,100% { transform: translateX(245%); } }
.mx-hero-credit-card { position: absolute; z-index: 4; right: clamp(18px, 2.8vw, 46px); bottom: clamp(18px, 2.5vw, 34px); width: min(250px, 28vw); padding: 14px 15px; border-radius: 13px; background: rgba(255,255,255,.9); color: #111; box-shadow: 0 18px 50px rgba(0,0,0,.18); backdrop-filter: blur(12px); }
.mx-hero-credit-card small, .mx-hero-credit-card strong, .mx-hero-credit-card span { display: block; }
.mx-hero-credit-card small { margin-bottom: 5px; font-size: 8px; text-transform: uppercase; letter-spacing: .1em; opacity: .55; }
.mx-hero-credit-card strong { font-family: "Inter Tight", sans-serif; font-size: 18px; letter-spacing: -.03em; }
.mx-hero-credit-card span { margin-top: 3px; font-size: 9px; opacity: .6; }
.mx-hero-bottomline { height: 54px; display: flex; align-items: center; justify-content: space-between; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; border-bottom: 1px solid rgba(13,14,16,.14); }
.mx-scroll-prompt { display: inline-flex; gap: 10px; align-items: center; }
.mx-scroll-prompt span { display: grid; place-items: center; width: 26px; height: 26px; border: 1px solid rgba(13,14,16,.14); border-radius: 50%; }

/* ===== Dark CTA retained from the hybrid version ===== */
.mx-contact-cta { position: relative; min-height: 100vh; overflow: hidden; display: grid; place-items: center; background: #080808; color: #fff; cursor: crosshair; }
.mx-contact-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(111,85,255,.18), transparent 42%); }
.mx-contact-cta__inner { position: relative; z-index: 3; text-align: center; pointer-events: none; }
.mx-contact-cta h2 { margin: 22px 0 50px; font-family: "Inter Tight", "Space Grotesk", sans-serif; font-size: clamp(70px, 10vw, 160px); line-height: .77; letter-spacing: -.077em; font-weight: 500; }
.mx-cta-disc { width: 150px; height: 150px; margin: 0 auto; display: grid; place-items: center; align-content: center; border-radius: 50%; background: #fff; color: #111; pointer-events: auto; font-size: 13px; transition: background .3s ease, color .3s ease; }
.mx-cta-disc:hover { background: #d8ff56; }
.mx-cta-disc small { margin-top: 6px; }
.mx-contact-cta__inner > p { margin-top: 60px; font-size: 9px; text-transform: uppercase; letter-spacing: .12em; opacity: .48; }
.mx-contact-cta .random-letter { color: #d8ff56; z-index: 2; }

@media (min-width: 1500px) and (min-height: 900px) {
  .mx-hero { padding-top: 72px; }
  .mx-display-title { font-size: min(9.8vw, 158px); }
  .mx-hero-stage { min-height: min(61vh, 640px); }
}
@media (max-width: 980px) {
  .mx-nav, .mx-text-link { display: none; }
  .mx-header { grid-template-columns: 1fr auto; }
  .mx-header-actions { grid-column: 2; }
  .mx-menu-toggle { display: grid; }
  .mx-hero-title-row { grid-template-columns: 1fr; }
  .mx-display-title--right { text-align: left; margin-left: 23vw; }
  .mx-hero-description { width: min(440px, 48vw); }
  .mx-live-caption { width: min(390px, 44vw); }
  .mx-hero-copy { max-width: 65vw; }
}
@media (max-width: 700px) {
  .mx-section-pad { padding-inline: 14px; }
  .mx-mobile-only { display: block; }
  .mx-header { height: 58px; }
  .mx-header-actions .mx-pill-button { display: none; }
  .mx-hero { padding-top: 70px; min-height: auto; }
  .mx-display-title { font-size: clamp(64px, 22vw, 105px); line-height: .82; }
  .mx-display-title--right { margin: 2px 0 12px 20vw; }
  .mx-hero-stage { min-height: 690px; border-radius: 6px; }
  .mx-hero-description { top: 16px; left: 16px; right: 16px; width: auto; }
  .mx-hero-description p { font-size: 11px; }
  .mx-hero-description__actions { gap: 12px; }
  .mx-live-caption { top: 285px; left: 16px; right: 16px; width: auto; transform: none; }
  .mx-hero-copy { left: 16px; right: 16px; bottom: 24px; max-width: none; }
  .mx-hero-credit-card { right: 14px; bottom: 147px; width: 205px; }
  .mx-hero-kicker { font-size: 18px; }
  .mx-rotating-line { display: block; font-size: 38px; }
  .mx-rotating-line strong { display: block; min-width: 0; }
  .mx-hero-meta { flex-direction: column; gap: 5px; }
  .mx-hero-meta span { border: 0; }
  .mx-hero-bottomline { align-items: flex-start; padding-top: 16px; }
  .mx-hero-bottomline > span { max-width: 190px; }
  .mx-contact-cta h2 { font-size: 77px; }
  .mx-cta-disc { width: 130px; height: 130px; }
  .mx-menu-panel__bottom { grid-template-columns: 1fr; }
  .mx-mini-demo { display: none; }
}

/* ============================================================
   INTERIOR PAGES — hakkımızda / iletişim / fiyatlandırma /
   kurumsal / yasal / auth / 404. Ana sayfayla aynı token + font.
   ============================================================ */
.page-main { padding-top: 66px; }
@media (max-width: 700px) { .page-main { padding-top: 58px; } }

.page-header { padding: clamp(44px, 8vw, 100px) clamp(18px, 2.1vw, 34px) 0; border-bottom: 1px solid var(--line); }
.page-header__inner { max-width: var(--maxw); margin-inline: auto; }
.page-header .mx-eyebrow { color: var(--soft-ink); }
.page-header h1 {
  margin: 16px 0 0;
  font-family: "Inter Tight", "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: clamp(38px, 6.2vw, 90px);
  line-height: .97;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.page-header__lead { max-width: 60ch; margin: clamp(18px, 2.4vw, 28px) 0 0; color: var(--soft-ink); font-size: clamp(15px, 1.5vw, 17px); line-height: 1.7; }
.page-header__meta { margin-top: clamp(22px, 3vw, 34px); padding: 16px 0; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 8px 24px; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--soft-ink); }

.page-section { padding: clamp(52px, 8vw, 100px) clamp(18px, 2.1vw, 34px); }
.page-section + .page-section { border-top: 1px solid var(--line); }
.page-section__inner { max-width: var(--maxw); margin-inline: auto; }
.page-section__inner--narrow { max-width: var(--maxw-narrow); }
.page-section > .page-section__inner > h2,
.page-section > .page-section__inner--narrow > h2 { margin: 0 0 clamp(22px, 3vw, 38px); font-family: var(--display); font-weight: 600; font-size: var(--fs-h2); line-height: 1.05; letter-spacing: -.02em; }

.page-prose p { margin: 0 0 1.1em; max-width: 68ch; color: var(--soft-ink); font-size: 15px; line-height: 1.75; }
.page-prose p:last-child { margin-bottom: 0; }
.page-prose a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.page-prose strong { color: var(--ink); font-weight: 600; }

.split-row { display: grid; grid-template-columns: minmax(0, 220px) minmax(0, 1fr); gap: clamp(20px, 4vw, 56px); }
.split-row + .split-row { margin-top: clamp(38px, 5vw, 60px); padding-top: clamp(38px, 5vw, 60px); border-top: 1px solid var(--line); }
.split-row > h2 { margin: 0; font-family: var(--display); font-size: clamp(1rem, 1.4vw, 1.15rem); font-weight: 600; letter-spacing: -.01em; }
@media (max-width: 760px) { .split-row { grid-template-columns: 1fr; gap: 14px; } }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.principle-card { display: flex; flex-direction: column; gap: 10px; padding: clamp(20px, 2.4vw, 28px); border: 1px solid var(--line); border-radius: 18px; background: var(--paper-2); }
.principle-card::before { content: ""; width: 26px; height: 3px; background: var(--acid); }
.principle-card h3 { margin: 0; font-family: var(--display); font-weight: 600; font-size: 1rem; letter-spacing: -.01em; }
.principle-card p { margin: 0; color: var(--soft-ink); font-size: 13.5px; line-height: 1.65; }

/* legal / long-form */
.prose-legal { max-width: var(--maxw-narrow); margin-inline: auto; }
.prose-legal .legal-updated { margin: 0 0 clamp(26px, 4vw, 42px); font-size: 12px; color: var(--soft-ink); }
.prose-legal h2 { margin: clamp(34px, 4vw, 50px) 0 14px; padding-top: clamp(22px, 3vw, 30px); border-top: 1px solid var(--line); font-family: var(--display); font-weight: 600; font-size: clamp(1.25rem, 2vw, 1.65rem); letter-spacing: -.02em; }
.prose-legal h2:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
.prose-legal h3 { margin: 24px 0 10px; font-family: var(--display); font-weight: 600; font-size: 1.05rem; }
.prose-legal p, .prose-legal li { color: var(--soft-ink); font-size: 15px; line-height: 1.75; }
.prose-legal p { margin: 0 0 1.1em; max-width: 72ch; }
.prose-legal ul { margin: 0 0 1.2em; padding-left: 1.1em; max-width: 72ch; }
.prose-legal li { margin: 0 0 .5em; }
.prose-legal a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.prose-legal strong { color: var(--ink); font-weight: 600; }
.prose-legal__foot { margin-top: clamp(38px, 5vw, 58px); padding-top: 22px; border-top: 1px solid var(--line); font-size: 12.5px; line-height: 1.7; color: var(--soft-ink); }

/* forms */
.form-card { display: flex; flex-direction: column; gap: 16px; padding: clamp(22px, 3vw, 32px); border: 1px solid var(--line); border-radius: 20px; background: var(--paper); }
.field { display: flex; flex-direction: column; gap: 7px; font-size: 13px; font-weight: 600; color: var(--ink); }
.field .opt { font-weight: 400; color: var(--soft-ink); }
.field input, .field textarea, .field select { font-family: var(--body); font-size: 14px; font-weight: 400; color: var(--ink); padding: 11px 13px; border: 1px solid var(--line); border-radius: 12px; background: #fff; transition: border-color .2s ease; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--ink); }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; } }
.form-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-submit { align-self: flex-start; margin-top: 4px; min-height: 46px; padding: 0 22px; border: 0; border-radius: 999px; background: var(--ink); color: #fff; font-size: 12.5px; font-weight: 600; letter-spacing: .01em; cursor: pointer; transition: transform .3s ease, opacity .2s ease; }
.form-submit:hover { transform: translateY(-2px); }
.form-submit:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.form-status { margin: 0; font-size: 13px; line-height: 1.6; color: var(--soft-ink); }
.form-status[data-tone="ok"] { color: var(--ok); }
.form-status[data-tone="error"] { color: var(--orange); }
.form-note { margin: 14px 0 0; font-size: 12px; line-height: 1.7; color: var(--soft-ink); }
.form-note a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }

/* contact channels */
.channel-list { display: flex; flex-direction: column; gap: 10px; }
.channel-card { display: block; padding: 16px 18px; border: 1px solid var(--line); border-radius: 16px; background: var(--paper); transition: border-color .2s ease, transform .2s ease; }
.channel-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.channel-card .k { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; color: var(--soft-ink); }
.channel-card strong { display: block; margin: 5px 0 3px; font-size: 15px; font-weight: 600; }
.channel-card small { color: var(--soft-ink); font-size: 12px; }

.contact-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(24px, 4vw, 56px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* pricing packages */
.pkg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.pkg-card { display: flex; flex-direction: column; gap: 8px; padding: clamp(22px, 2.6vw, 30px); border: 1px solid var(--line); border-radius: 20px; background: var(--paper); }
.pkg-card--feature { background: var(--ink); color: #fff; border-color: var(--ink); }
.pkg-card__name { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--soft-ink); }
.pkg-card--feature .pkg-card__name { color: rgba(255,255,255,.6); }
.pkg-card__price { font-family: "Inter Tight", sans-serif; font-weight: 600; font-size: clamp(1.8rem, 3vw, 2.4rem); letter-spacing: -.03em; }
.pkg-card__unit { font-size: 12px; color: var(--soft-ink); }
.pkg-card--feature .pkg-card__unit { color: rgba(255,255,255,.6); }
.pkg-card p { margin: 0; font-size: 13px; line-height: 1.6; color: var(--soft-ink); }
.pkg-card--feature p { color: rgba(255,255,255,.7); }
.pkg-card__cta { margin-top: auto; padding-top: 14px; font-size: 12px; font-weight: 600; }
.pkg-card__cta a { text-decoration: underline; text-underline-offset: 3px; }

/* auth pages */
.auth-shell { min-height: 100svh; display: grid; place-items: center; padding: 40px 20px; background: var(--paper); }
.auth-box { width: 100%; max-width: 380px; display: flex; flex-direction: column; align-items: center; }
.auth-box > .brand { margin-bottom: 26px; }
.auth-card { width: 100%; padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 24px 70px -40px rgba(13,14,16,.3); }
.auth-card h1 { margin: 0; font-family: var(--display); font-weight: 600; font-size: 1.3rem; letter-spacing: -.02em; }
.auth-card p.sub { margin: 6px 0 0; font-size: 13px; color: var(--soft-ink); }
.auth-card form { display: flex; flex-direction: column; gap: 14px; margin-top: 22px; }
.auth-card .form-submit { align-self: stretch; text-align: center; }
.auth-foot { margin-top: 20px; font-size: 13px; color: var(--soft-ink); text-align: center; }
.auth-foot a { color: var(--ink); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.auth-micro { margin: 14px 0 0; font-size: 11.5px; color: var(--soft-ink); text-align: center; }

/* 404 */
.nf { min-height: 100svh; display: grid; place-content: center; justify-items: center; gap: 20px; padding: 40px 20px; text-align: center; }
.nf h1 { margin: 0; font-family: "Inter Tight", sans-serif; font-weight: 600; font-size: clamp(56px, 12vw, 120px); line-height: .9; letter-spacing: -.05em; }
.nf p { margin: 0; color: var(--soft-ink); font-size: 15px; }
.nf-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 20px; font-size: 13px; font-weight: 600; }
.nf-links a { text-decoration: underline; text-underline-offset: 3px; }
