/* ============================================================
   OVTURE — Landing (v4 design system)
   White/black base + fixed brand quad. Every value reads a token,
   so the whole site reskins from :root. Theme = data-theme on <html>.
   ============================================================ */

:root {
  /* Light theme (default) */
  --bg: #FFFFFF;
  --ink: #000000;
  --muted: #666666;
  --line: rgba(0, 0, 0, 0.098);
  --card: #FFFFFF;
  --card2: #F5F5F5;
  --surface: #F5F5F5;
  --contrast-bg: #0A0A0A;
  --contrast-ink: #FFFFFF;
  --contrast-muted: rgba(255, 255, 255, 0.55);
  --contrast-line: rgba(255, 255, 255, 0.16);
  --shadow: 0 20px 50px -25px rgba(0, 0, 0, 0.18);

  /* Brand quad — CONSTANT across themes */
  --orange: #EC7C3D;
  --green: #5ED077;
  --purple: #DCBEFA;
  --purple-deep: #8862D6;
  --lime: #EBFD70;
  --lime-deep: #7E8F1F;
  --accent: #DCBEFA;
  --accent-ink: #000000;

  /* Type */
  --font-base: 'Albert Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --w-xb: 800;
  --w-b: 700;
  --w-sm: 600;
  --w-m: 500;
  --w-r: 400;
}

html[data-theme='dark'] {
  --bg: #0A0A0A;
  --ink: #F5F5F2;
  --muted: #9B9BA1;
  --line: rgba(245, 245, 242, 0.14);
  --card: #161616;
  --card2: #1F1F1F;
  --surface: #111111;
  --contrast-bg: #000000;
  --contrast-ink: #FFFFFF;
  --contrast-muted: rgba(255, 255, 255, 0.5);
  --contrast-line: rgba(255, 255, 255, 0.14);
  --shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.6);
}

* { box-sizing: border-box; }
/* Clip horizontal overflow on BOTH html and body — the hero-aura bleeds a little past the viewport
   edge by design; clipping on body alone still let html scroll sideways on mobile (page felt loose /
   shifted left). max-width:100% is the belt-and-braces guard. */
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  max-width: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-base);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background .4s ease, color .4s ease;
}
a { text-decoration: none; color: inherit; }
::selection { background: #DCBEFA; color: #000000; }
img { display: block; max-width: 100%; }

/* ---- Wordmark ---- */
.wordmark {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.wordmark .dot { color: var(--lime); font-weight: 600; font-size: 1.15em; }
.accent-deep { color: var(--purple-deep); }

/* ---- Brand color helpers ---- */
.c-orange { color: var(--orange); }
.c-green { color: var(--green); }
.c-purple { color: var(--purple-deep); }
.c-lime { color: var(--lime-deep); }

/* ---- Eyebrow / headings ---- */
.eyebrow {
  font-size: 12px;
  font-weight: var(--w-b);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.h2 {
  font-weight: var(--w-xb);
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 1.07;
  letter-spacing: -0.015em;
  margin: 14px 0 0;
  color: var(--ink);
  text-wrap: balance;
}
.h3 {
  font-weight: var(--w-xb);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.16;
  margin: 0;
  color: var(--ink);
}
.lede {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 680px;
  margin: 20px 0 0;
}

/* ---- Buttons ---- */
.btn-accent, .btn-ghost, .btn-outline, .btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  font-family: var(--font-base);
}
.btn-accent {
  font-size: 14.5px;
  font-weight: var(--w-b);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--accent);
  border-radius: 999px;
  padding: 17px 34px;
  transition: filter .2s ease, transform .2s ease, box-shadow .2s ease;
}
.btn-accent:hover { filter: brightness(1.05); transform: translateY(-2px); box-shadow: 0 10px 24px -8px rgba(0,0,0,0.35); }
.btn-accent:active { transform: translateY(0) scale(0.97); filter: brightness(0.97); }
.btn-ghost {
  font-size: 14.5px;
  font-weight: var(--w-sm);
  color: var(--ink);
  border: 0.5px solid var(--line);
  border-radius: 999px;
  padding: 17px 34px;
  background: transparent;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.btn-ghost:hover { border-color: var(--ink); background: var(--card2); transform: translateY(-2px); }
.btn-ghost:active { transform: translateY(0) scale(0.97); }
.btn-outline {
  font-size: 13px;
  font-weight: var(--w-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--bg);
  border: 0.5px solid var(--ink);
  border-radius: 999px;
  padding: 11px 26px;
  transition: background .25s ease, color .25s ease, transform .2s ease;
}
.btn-outline:hover { background: var(--ink); color: var(--bg); transform: translateY(-1px); }
.btn-outline:active { transform: scale(0.95); }

/* ============================================================
   NAV
   ============================================================ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 60; }
.nav::before {
  content: '';
  position: absolute;
  inset: -1px 0 -16px 0;
  z-index: -1;
  pointer-events: none;
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  background: linear-gradient(to bottom, color-mix(in srgb, var(--bg) 88%, transparent), color-mix(in srgb, var(--bg) 52%, transparent) 62%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent);
  mask-image: linear-gradient(to bottom, black 55%, transparent);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 20px);
  height: clamp(78px, 8vw, 96px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.nav-logo { font-size: clamp(33px, 25px + 1.7vw, 47px); }
.nav-signin {
  font-size: 13.5px; font-weight: var(--w-b); color: var(--ink);
  padding: 10px 14px; border-radius: 999px; transition: color .2s ease;
}
.nav-signin:hover { color: var(--purple-deep); }
.nav-pill {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  background: var(--lime);
  border-radius: 999px;
  padding: 4px;
  height: 42px;
  gap: 4px;
}
.nav-pill a {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 19px;
  font-size: 15px;
  font-weight: var(--w-sm);
  color: #000;
  border-radius: 999px;
  transition: background .18s ease;
}
.nav-pill a:hover { background: rgba(255,255,255,0.9); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  width: 38px; height: 38px; flex-shrink: 0;
  border: 0.5px solid var(--line);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); background: var(--bg);
  cursor: pointer; transition: border-color .2s;
}
.icon-btn:hover { border-color: var(--ink); }
.i-moon { display: none; }
html[data-theme='dark'] .i-sun { display: none; }
html[data-theme='dark'] .i-moon { display: block; }
.nav-burger { display: none; border-color: transparent; }
.burger { display: flex; flex-direction: column; gap: 5px; }
.burger i { width: 20px; height: 1.5px; background: var(--ink); display: block; }

.nav-mobile {
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--bg);
  border-top: 0.5px solid var(--line);
  border-bottom: 0.5px solid var(--line);
}
.nav-mobile nav { display: flex; flex-direction: column; gap: 2px; padding: 14px 20px 20px; }
.nav-mobile a {
  font-size: 17px; font-weight: var(--w-sm); color: var(--ink);
  padding: 12px 4px; transition: color .2s ease, padding-left .2s ease;
}
.nav-mobile a:hover { color: var(--purple-deep); padding-left: 10px; }
.nav-mobile-cta {
  margin-top: 10px; text-align: center; justify-content: center;
  font-size: 13px !important; font-weight: var(--w-sm); letter-spacing: 0.06em;
  text-transform: uppercase; padding: 14px !important;
  border-radius: 8px; background: var(--ink); color: var(--bg) !important;
}
.nav-mobile-cta:hover { padding-left: 14px !important; }

/* ============================================================
   BOOT
   ============================================================ */
.boot {
  position: fixed; inset: 0; z-index: 300;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease .1s;
}
.boot .wordmark { font-size: 34px; animation: ov-boot-in .8s ease both; }
.boot.done { opacity: 0; pointer-events: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(128px, 15vw, 184px) clamp(18px, 4vw, 36px) clamp(56px, 7vw, 88px);
  text-align: center;
}

/* ── Hero mesh-gradient aura ── */
.hero-aura {
  position: absolute;
  inset: -12% -10% 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  /* Fade the whole aura out toward the bottom so it sits BEHIND the hero and melts into the page. */
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 48%, transparent 88%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 48%, transparent 88%);
}
.hero-copy,
.hero-mock { position: relative; z-index: 1; }

.aura-blob {
  position: absolute;
  border-radius: 50%;
  /* Soft, wide blobs; blur fuses them into one flowing mesh. `screen` lets overlapping blobs
     mix into new hues as they cross — the "colors blending" life. Blur scales with the viewport
     (a fixed 60px washes small phone blobs out to nothing → faded colour). */
  filter: blur(clamp(34px, 4.6vw, 62px));
  opacity: 0.55;
  mix-blend-mode: multiply;
  will-change: transform;
}
/* Each blob is centred at the same spot and TRAVELS the whole area on its own long, looping path
   (translate values are large — they cross from side to side), so no colour stays pinned to a
   corner. Different durations keep them out of sync, so the mix never repeats the same frame. */
.aura-1 {
  top: 20%; left: 30%; width: 42vw; height: 42vw;
  background: radial-gradient(circle, var(--purple-deep), transparent 68%);
  animation: aura-roam-1 19s ease-in-out infinite;
}
.aura-2 {
  top: 20%; left: 30%; width: 40vw; height: 40vw;
  background: radial-gradient(circle, var(--lime), transparent 66%);
  opacity: 0.48;
  animation: aura-roam-2 23s ease-in-out infinite;
}
.aura-3 {
  top: 20%; left: 30%; width: 38vw; height: 38vw;
  background: radial-gradient(circle, var(--orange), transparent 68%);
  opacity: 0.4;
  animation: aura-roam-3 17s ease-in-out infinite;
}
.aura-4 {
  top: 20%; left: 30%; width: 36vw; height: 36vw;
  background: radial-gradient(circle, var(--green), transparent 68%);
  opacity: 0.38;
  animation: aura-roam-4 27s ease-in-out infinite;
}
/* Fine grain so the blend reads like a real mesh gradient, not a flat CSS wash. */
.aura-grain {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* Dark: blobs GLOW (screen) instead of deepen (multiply), and sit softer so they never fight the
   white hero text — dimmer overall, with a stronger centre fade carved out behind the copy. */
[data-theme='dark'] .aura-blob { mix-blend-mode: screen; opacity: 0.72; filter: blur(clamp(38px, 5vw, 68px)); }
[data-theme='dark'] .aura-1 { opacity: 0.78; }
[data-theme='dark'] .aura-2 { opacity: 0.62; }
[data-theme='dark'] .aura-3 { opacity: 0.6; }
[data-theme='dark'] .aura-4 { opacity: 0.58; }
[data-theme='dark'] .aura-grain { opacity: 0.26; }
[data-theme='dark'] .hero-aura::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Radial scrim: darken the middle (behind the text) while keeping the edges glowing. Lighter +
     tighter than before so the colour stays vivid and only the text zone is calmed. */
  background: radial-gradient(46% 42% at 50% 46%, rgba(10, 10, 10, 0.62), transparent 72%);
}

/* Roaming paths: translate values are relative to each blob's OWN size, so these big numbers carry
   the colour clear across the hero and back — purple ends up on the right, lime on the left, etc.
   Each has a distinct 5-stop loop so the four colours are constantly re-arranging. */
@keyframes aura-roam-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  20% { transform: translate(150%, 20%) scale(1.15); }
  45% { transform: translate(80%, 90%) scale(0.85); }
  65% { transform: translate(-40%, 60%) scale(1.1); }
  85% { transform: translate(-30%, -20%) scale(0.95); }
}
@keyframes aura-roam-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  22% { transform: translate(-50%, 70%) scale(1.2); }
  48% { transform: translate(60%, 110%) scale(0.85); }
  70% { transform: translate(160%, 30%) scale(1.05); }
  88% { transform: translate(70%, -30%) scale(0.9); }
}
@keyframes aura-roam-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(90%, -30%) scale(1.12); }
  50% { transform: translate(150%, 80%) scale(0.88); }
  75% { transform: translate(20%, 100%) scale(1.15); }
}
@keyframes aura-roam-4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  30% { transform: translate(-60%, 40%) scale(1.18); }
  55% { transform: translate(70%, 100%) scale(0.85); }
  80% { transform: translate(140%, 10%) scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .aura-blob { animation: none !important; }
}
/* Phones: the desktop roam sweeps far DOWN, which on a tall narrow hero pooled the colour in the
   lower half and left the top white. Here the blobs are bigger + stronger, seated across the UPPER
   hero, and roam on gentle upper-biased paths so the colour lives behind the eyebrow + headline. */
@media (max-width: 700px) {
  .hero-aura { inset: -16% -12% 0; }
  .aura-1 { top: -10%; left: -6%; width: 82vw; height: 82vw; opacity: 0.72; animation: aura-m1 16s ease-in-out infinite; }
  .aura-2 { top: -14%; left: 42%; width: 78vw; height: 78vw; opacity: 0.66; animation: aura-m2 19s ease-in-out infinite; }
  .aura-3 { top: 16%; left: 20%; width: 74vw; height: 74vw; opacity: 0.58; animation: aura-m3 14s ease-in-out infinite; }
  .aura-4 { top: 4%; left: -12%; width: 70vw; height: 70vw; opacity: 0.54; animation: aura-m4 21s ease-in-out infinite; }
  [data-theme='dark'] .aura-1 { opacity: 0.82; }
  [data-theme='dark'] .aura-2 { opacity: 0.5; }  /* lime — the brightest; tamed so it never blows out the muted sub-text */
  [data-theme='dark'] .aura-3 { opacity: 0.6; }
  [data-theme='dark'] .aura-4 { opacity: 0.46; } /* green — same reason */
  /* Taller, stronger scrim over the whole TEXT column so wherever a bright blob roams, the copy
     keeps a dark bed under it (edges still glow). */
  [data-theme='dark'] .hero-aura::after {
    background: radial-gradient(96% 50% at 50% 32%, rgba(10, 10, 10, 0.82), rgba(10, 10, 10, 0.4) 58%, transparent 82%);
  }
}
/* Upper-biased mobile paths: colours still cross + blend, but stay in the top band. */
@keyframes aura-m1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50%, 18%) scale(1.12); }
  66% { transform: translate(20%, -14%) scale(0.92); }
}
@keyframes aura-m2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40% { transform: translate(-45%, 22%) scale(1.15); }
  70% { transform: translate(-15%, -12%) scale(0.9); }
}
@keyframes aura-m3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  35% { transform: translate(40%, -20%) scale(1.1); }
  65% { transform: translate(-30%, 14%) scale(0.94); }
}
@keyframes aura-m4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  45% { transform: translate(55%, 16%) scale(1.14); }
  75% { transform: translate(25%, -16%) scale(0.9); }
}

.hero-copy { max-width: 1000px; margin: 0 auto; }
.hero h1 {
  font-weight: var(--w-xb);
  font-size: clamp(46px, 7.6vw, 108px);
  line-height: 1.03;
  letter-spacing: -0.025em;
  margin: 22px auto 0;
  color: var(--ink);
  text-wrap: balance;
}
.hero-sub {
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 560px;
  margin: 26px auto 0;
}
.hero-cta { display: flex; justify-content: center; align-items: center; gap: 14px; margin-top: 38px; flex-wrap: wrap; }

/* ---- Dashboard mock ---- */
.hero-mock { margin-top: clamp(56px, 7vw, 84px); }
.mock-stage { position: relative; max-width: 1020px; margin: 0 auto; }
.browser {
  position: relative;
  border-radius: 16px;
  background: var(--card);
  border: 0.5px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-align: left;
}
.browser-bar { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 16px; border-bottom: 0.5px solid var(--line); }
.dots { display: flex; gap: 6px; }
.dots i { width: 10px; height: 10px; border-radius: 50%; display: block; }
.d-o { background: var(--orange); }
.d-l { background: var(--lime); }
.d-g { background: var(--green); }
.url { position: absolute; left: 50%; transform: translateX(-50%); font-size: 11.5px; color: var(--muted); background: var(--card2); border-radius: 999px; padding: 5px 16px; white-space: nowrap; }
.avatar-badge {
  width: 24px; height: 24px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--purple));
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: var(--w-b); color: #fff; flex-shrink: 0;
}
.browser-body { display: flex; min-height: 380px; }
.mock-side {
  width: 176px; flex-shrink: 0;
  border-right: 0.5px solid var(--line);
  padding: 16px 10px; display: flex; flex-direction: column; gap: 2px;
}
.mock-logo { font-weight: var(--w-xb); font-size: 16px; color: var(--ink); padding: 0 10px 12px; }
.mock-nav { font-size: 12.5px; color: var(--muted); padding: 8px 10px; border-radius: 8px; }
.mock-nav.active { font-weight: var(--w-b); color: var(--purple-deep); background: color-mix(in srgb, var(--accent) 22%, transparent); }
.pip { font-size: 10px; font-weight: var(--w-b); color: #fff; background: var(--orange); border-radius: 999px; padding: 1px 6px; margin-left: 6px; }
.mock-main { flex: 1; min-width: 0; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.mock-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.mh-title { font-size: 15px; font-weight: var(--w-b); color: var(--ink); }
.mh-meta { font-size: 11.5px; color: var(--muted); }
.mock-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); gap: 10px; }
.stat { background: var(--card2); border-radius: 12px; padding: 12px; }
.stat b { display: block; font-weight: var(--w-xb); font-size: 26px; line-height: 1; color: var(--ink); }
.stat span { display: block; font-size: 10.5px; color: var(--muted); margin-top: 6px; }
.stat em { display: block; font-size: 10px; font-weight: var(--w-b); font-style: normal; margin-top: 4px; }
.mock-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); gap: 10px; flex: 1; }
/* Real Leaflet map inside the mockup — dark tiles, draggable, venue pins with creator faces. */
.mock-map {
  position: relative;
  border: 0.5px solid var(--line);
  border-radius: 12px;
  min-height: 240px;
  height: 100%;
  overflow: hidden;
  background-color: #0d0f13;
  z-index: 0; /* own stacking context so the map panes stay contained */
}
.mock-map :global(.leaflet-container) { background: #0d0f13; font-family: var(--font-base); }
/* Trim Leaflet's default chrome to fit the mini mockup. */
.mock-map :global(.leaflet-control-zoom) { border: none; margin: 10px; }
.mock-map :global(.leaflet-control-zoom a) {
  width: 26px; height: 26px; line-height: 26px;
  background: rgba(20, 22, 27, 0.9); color: #fff; border: 0.5px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.mock-map :global(.leaflet-control-zoom a:first-child) { border-radius: 8px 8px 0 0; }
.mock-map :global(.leaflet-control-zoom a:last-child) { border-radius: 0 0 8px 8px; }
.mock-map :global(.leaflet-control-attribution) {
  background: rgba(10, 10, 10, 0.55); color: rgba(255, 255, 255, 0.4); font-size: 9px;
}
.mock-map :global(.leaflet-control-attribution a) { color: rgba(255, 255, 255, 0.55); }
/* Venue pin: name chip on top, a stack of creator faces below (mirrors the app's VenueMap). */
.mock-map :global(.hero-pin) {
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
  width: max-content; transform: translate(-6px, -100%);
}
.pin-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(10,10,10,0.66);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  border-radius: 999px; padding: 6px 12px; white-space: nowrap;
  font-size: 10.5px; font-weight: var(--w-b); color: #fff;
}
.ring { position: relative; width: 6px; height: 6px; flex-shrink: 0; }
.ring::before, .ring::after { content: ''; position: absolute; inset: 0; border-radius: 50%; }
.ring-o::before { background: var(--orange); }
.ring-o::after { border: 0.5px solid var(--orange); animation: ov-ring 3.4s ease-out infinite; }
.ring-p::before { background: var(--purple-deep); }
.ring-p::after { border: 0.5px solid var(--purple-deep); animation: ov-ring 3.8s ease-out infinite .9s; }
.stack { display: inline-flex; align-items: center; margin-top: 7px; }
.pin-br .stack { justify-content: flex-end; }
.mock-map :global(.leaflet-div-icon),
.mock-map :global(.hero-pin-icon) { background: transparent; border: 0; }
.stack .av { width: 20px; height: 20px; border: 2px solid #0d0f13; }
.stack .av + .av { margin-left: -7px; }
.stack .more { background: rgba(10,10,10,0.72); color: #fff; font-size: 9.5px; font-weight: var(--w-b); border-radius: 999px; padding: 3px 8px; margin-left: 4px; }

/* avatars (gradient fallback + optional photo on top) */
.av {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  background: linear-gradient(135deg, var(--purple), var(--orange));
}
.av-a { background: linear-gradient(135deg, #f0997b, #d4537e); }
.av-b { background: linear-gradient(135deg, #85b7eb, #534ab7); }
.av-c { background: linear-gradient(135deg, #97c459, #0f6e56); }
.av-d { background: linear-gradient(135deg, #fac775, #ba7517); }
/* Bias the crop toward the top so faces (not torsos) fill these tiny circular avatars. */
.av img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; }
.av-lg { width: 52px; height: 52px; }
.sm2 { width: 18px; height: 18px; }

.mock-recent { border: 0.5px solid var(--line); border-radius: 12px; padding: 12px; display: flex; flex-direction: column; gap: 9px; }
.mr-head { display: flex; justify-content: space-between; align-items: baseline; }
.kicker { font-size: 11px; font-weight: var(--w-b); letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.mr-head .sm { font-size: 10.5px; font-weight: var(--w-sm); }
.mr-row { display: flex; align-items: center; gap: 9px; }
.mr-who { flex: 1; min-width: 0; }
.mr-who b { display: block; font-size: 12px; font-weight: var(--w-b); color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mr-who i { display: block; font-size: 10.5px; font-style: normal; color: var(--muted); }
.add { font-size: 10.5px; font-weight: var(--w-b); }
.mr-bars { border-top: 0.5px solid var(--line); padding-top: 9px; display: flex; flex-direction: column; gap: 7px; }
.bar { display: flex; align-items: center; gap: 8px; }
.bar > span:first-child { width: 64px; font-size: 10px; color: var(--muted); }
.track { flex: 1; height: 7px; border-radius: 99px; background: var(--card2); overflow: hidden; }
.fill { display: block; height: 100%; border-radius: 99px; transform-origin: left; animation: ov-grow 1.2s ease .5s backwards; }
.bar b { font-size: 10px; color: var(--ink); width: 22px; text-align: right; font-weight: var(--w-r); }

/* floating cards */
.float {
  position: absolute;
  background: var(--card);
  border: 0.5px solid var(--line);
  box-shadow: var(--shadow);
  text-align: left;
}
.float-rev { right: -34px; top: 36px; border-radius: 14px; padding: 14px 16px; animation: ov-float 7s ease-in-out infinite; }
.fr-num { display: flex; align-items: baseline; gap: 8px; margin-top: 6px; }
.fr-num b { font-weight: var(--w-xb); font-size: 22px; color: var(--ink); }
.fr-num em { font-size: 11.5px; font-weight: var(--w-b); font-style: normal; }
.spark { display: flex; align-items: flex-end; gap: 3px; height: 26px; margin-top: 9px; }
.spark i { width: 6px; border-radius: 2px; background: var(--purple); display: block; }
.float-reply {
  left: -38px; bottom: 52px; border-radius: 999px;
  padding: 9px 16px 9px 10px; display: flex; align-items: center; gap: 9px;
  animation: ov-float 8s ease-in-out infinite 1s; font-size: 12px; color: var(--ink);
}
.float-reply b { font-weight: var(--w-b); }
.ping-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { border-top: 0.5px solid var(--line); border-bottom: 0.5px solid var(--line); padding: 18px 0; overflow: hidden; }
.marquee:hover { background: var(--card2); }
.marquee-track { display: flex; width: max-content; animation: ov-marquee 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-set { display: flex; align-items: center; gap: 42px; padding-right: 42px; font-weight: var(--w-b); font-size: 19px; color: var(--ink); white-space: nowrap; }
.dia { font-size: 9px; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { max-width: 1240px; margin: 0 auto; padding: clamp(72px, 9vw, 116px) clamp(18px, 4vw, 36px); }

/* How it works */
.how { max-width: 1320px; }
/* Always a clean 2×2 on tablet/desktop (auto-fit was letting a 3rd/4th column slip in on wide
   screens → an ugly 3-up + 1 orphan). One column on phones. */
.steps { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: clamp(44px, 6vw, 64px); }
@media (min-width: 700px) { .steps { grid-template-columns: 1fr 1fr; } }
.step { border-radius: 24px; padding: 40px 34px 44px; position: relative; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.step:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -18px rgba(0,0,0,0.35); }
.step-orange { background: var(--orange); }
.step-green { background: var(--green); }
.step-purple { background: var(--purple); }
.step-lime { background: var(--lime); }
.step-num { font-weight: var(--w-xb); font-size: clamp(58px, 7vw, 84px); line-height: 1; color: rgba(0,0,0,0.28); }
.step-h { font-weight: var(--w-xb); font-size: clamp(24px, 2.6vw, 32px); color: #000; margin: 18px 0 0; }
.step p { font-size: 15.5px; line-height: 1.62; color: rgba(0,0,0,0.72); margin: 14px 0 0; max-width: 360px; }

/* Manifesto */
.manifesto { border-top: 0.5px solid var(--line); max-width: 900px; margin: 0 auto; padding: clamp(80px, 10vw, 124px) clamp(18px, 4vw, 36px); }
.manifesto p { font-weight: var(--w-sm); font-size: clamp(24px, 3.2vw, 38px); line-height: 1.4; margin: 0; color: var(--ink); text-wrap: pretty; }

/* Workspace deep-dive */
.deep { border-top: 0.5px solid var(--line); background: var(--surface); max-width: none; transition: background .4s ease; }
.deep > * { max-width: 1240px; margin-left: auto; margin-right: auto; }
.deep { padding: 0; }
.deep-head, .deep .row { padding-left: clamp(18px, 4vw, 36px); padding-right: clamp(18px, 4vw, 36px); }
.deep-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: clamp(72px, 9vw, 116px); }
.deep-head .h2 { max-width: 620px; }
.row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); gap: clamp(28px, 4vw, 64px); align-items: center; margin-top: clamp(64px, 8vw, 100px); }
.row:last-child { padding-bottom: clamp(72px, 9vw, 116px); }
.row-copy { position: relative; }
.ghost-num { position: absolute; top: -64px; left: -4px; font-weight: var(--w-xb); font-size: clamp(100px, 12vw, 156px); line-height: 1; color: var(--line); pointer-events: none; }
.ghost-num.right { left: auto; right: -4px; }
.row-copy .eyebrow { margin-bottom: 15px; }
.row-copy p { font-size: 15px; line-height: 1.68; color: var(--muted); margin: 16px 0 0; max-width: 420px; }

/* generic mock card */
.card { position: relative; border: 0.5px solid var(--line); border-radius: 16px; background: var(--card); box-shadow: var(--shadow); overflow: hidden; }

/* scan mock */
.mock-scan { padding: 18px; }
.ms-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.chip { font-size: 11.5px; color: var(--ink); background: var(--card2); border-radius: 999px; padding: 6px 14px; }
.ms-row { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 0.5px solid var(--line); }
.ms-row.last { border-bottom: none; }
.ms-who { flex: 1; min-width: 0; }
.ms-who b { display: block; font-size: 14px; font-weight: var(--w-b); color: var(--ink); }
.ms-who i { display: block; font-size: 11px; font-style: normal; color: var(--muted); margin-top: 2px; }
.stack.sm .av { width: 22px; height: 22px; border-color: var(--card); }
.stack.sm .av + .av { margin-left: -8px; }
.ms-more { font-size: 11px; color: var(--muted); }
.ms-track { width: 64px; height: 5px; border-radius: 99px; background: var(--card2); overflow: hidden; flex-shrink: 0; }
.ms-track i { display: block; height: 100%; border-radius: 99px; }
.ms-score { font-weight: var(--w-xb); font-size: 15px; color: var(--ink); width: 24px; text-align: right; }

/* profile mock */
.mock-profile { max-width: 400px; justify-self: center; width: 100%; }
.mp-cover { height: 64px; background-color: #b58b6a; background-size: cover; background-position: 50% 8%; }
.mp-cover::after { content: ''; display: block; height: 100%; background: linear-gradient(180deg, rgba(10,10,8,0.05), rgba(10,10,8,0.4)); }
.mp-body { padding: 0 18px 18px; position: relative; }
.mp-top { display: flex; align-items: flex-end; justify-content: space-between; margin-top: -26px; }
.mp-top .av-lg { border: 3px solid var(--card); }
.mp-name { display: flex; align-items: center; gap: 7px; margin-top: 4px; font-size: 17px; font-weight: var(--w-b); color: var(--ink); }
.verified { width: 15px; height: 15px; border-radius: 50%; background: var(--green); color: #000; font-size: 9px; font-weight: var(--w-xb); display: flex; align-items: center; justify-content: center; }
.mp-handle { font-size: 12px; color: var(--muted); margin-top: 2px; }
.mp-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin-top: 15px; border-top: 0.5px solid var(--line); padding-top: 13px; }
.mp-stats b { display: block; font-weight: var(--w-xb); font-size: 19px; color: var(--ink); }
.mp-stats i { display: block; font-size: 9.5px; font-style: normal; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
.mp-tags { display: flex; gap: 7px; margin-top: 13px; flex-wrap: wrap; }
.mp-actions { display: flex; gap: 9px; margin-top: 15px; }

/* tags & chips */
.tag-green { font-size: 10.5px; font-weight: var(--w-sm); color: var(--green); border: 0.5px solid color-mix(in srgb, var(--green) 55%, transparent); border-radius: 999px; padding: 4px 11px; }
.tag-line { font-size: 10.5px; color: var(--muted); border: 0.5px solid var(--line); border-radius: 999px; padding: 4px 11px; }
.tag-orange { font-size: 10.5px; font-weight: var(--w-b); color: #fff; background: var(--orange); border-radius: 999px; padding: 4px 11px; }
.mini-accent { font-size: 12.5px; font-weight: var(--w-b); color: var(--accent-ink); background: var(--accent); border-radius: 9px; padding: 10px; text-align: center; }
.mini-accent.pill { border-radius: 999px; padding: 7px 18px; }
.mini-line { font-size: 12.5px; font-weight: var(--w-sm); color: var(--ink); border: 0.5px solid var(--line); border-radius: 9px; padding: 10px 14px; text-align: center; }
.mp-actions .mini-accent { flex: 1; }

/* kanban mock */
.mock-kanban { padding: 18px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.kcol { min-width: 0; }
.kcol-h { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; font-size: 10.5px; font-weight: var(--w-b); letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.kcol-h i { font-style: normal; }
.kdot { width: 7px; height: 7px; border-radius: 50%; }
.kcard { background: var(--card2); border-radius: 10px; padding: 10px; margin-bottom: 8px; }
.kc-top { display: flex; align-items: center; gap: 7px; }
.kc-top b { font-size: 11.5px; font-weight: var(--w-b); color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.kc-meta { font-size: 10px; color: var(--muted); margin-top: 5px; }
.kcard-tilt { border: 0.5px solid color-mix(in srgb, var(--green) 50%, transparent); transform: rotate(-1.5deg); box-shadow: 0 12px 28px rgba(0,0,0,0.14); }

/* inbox mock */
.mock-inbox { max-width: 440px; justify-self: center; width: 100%; padding: 18px; display: flex; flex-direction: column; gap: 12px; }
.mi-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.mi-tags { display: flex; gap: 6px; }
.mi-msg { display: flex; align-items: flex-end; gap: 8px; }
.bubble { max-width: 85%; background: var(--card2); border-radius: 12px 12px 12px 4px; padding: 10px 13px; }
.b-meta { font-size: 10px; color: var(--muted); }
.b-text { font-size: 12.5px; line-height: 1.5; color: var(--ink); margin-top: 4px; }
.ai-draft { border: 0.5px dashed color-mix(in srgb, var(--lime-deep) 55%, transparent); border-radius: 12px; padding: 12px 13px; background: color-mix(in srgb, var(--lime) 18%, transparent); }
.ai-head { display: flex; align-items: center; gap: 7px; font-size: 10.5px; font-weight: var(--w-b); letter-spacing: 0.1em; text-transform: uppercase; color: var(--lime-deep); }
.spark-i { font-size: 12px; }
.ai-text { font-size: 12.5px; line-height: 1.55; color: var(--ink); margin-top: 7px; }
.caret { color: var(--lime-deep); animation: ov-blink 1s steps(2, start) infinite; }
.mi-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.mi-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.tag-line { white-space: nowrap; }

/* Feature grid */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: 20px; margin-top: clamp(48px, 6vw, 68px); }
.feat { border: 0.5px solid var(--line); border-radius: 16px; padding: 32px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.feat:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.feat-ic { width: 26px; height: 26px; color: var(--muted); display: flex; align-items: center; justify-content: center; }
.feat-ic.solid { color: var(--ink); }
.feat h3 { font-weight: var(--w-xb); font-size: 23px; color: var(--ink); margin: 22px 0 0; }
.feat p { font-size: 14.5px; line-height: 1.62; color: var(--muted); margin: 10px 0 0; }

/* Platform preview (dark) */
.preview { background: var(--contrast-bg); padding: clamp(72px, 9vw, 116px) clamp(18px, 4vw, 36px) 0; transition: background .4s ease; }
.preview-inner { max-width: 1240px; margin: 0 auto; }
.on-dark { color: var(--contrast-ink); }
.preview .eyebrow.on-dark { color: var(--contrast-muted); }
.preview .lede.on-dark { color: var(--contrast-muted); max-width: 520px; }
.preview .h2.on-dark { font-size: clamp(34px, 5vw, 66px); line-height: 1.05; }
.preview-card { margin-top: clamp(44px, 6vw, 64px); margin-bottom: -110px; position: relative; z-index: 2; max-width: 640px; margin-left: auto; margin-right: auto; }
.preview-card .browser { box-shadow: 0 40px 90px -30px rgba(0,0,0,0.5); }
.pc-body { padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.pc-line { display: flex; justify-content: space-between; align-items: center; }
.pc-line .mini-accent { border-radius: 999px; padding: 4px 11px; font-size: 10.5px; }
.pc-field { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.pc-field > span:first-child { font-size: 12.5px; color: var(--muted); }
.pc-pill { font-size: 12.5px; font-weight: var(--w-b); color: var(--ink); background: var(--card2); border-radius: 9px; padding: 8px 14px; }
.pc-slider { display: flex; flex-direction: column; gap: 8px; }
.pc-line2 { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--muted); }
.pc-line2 b { color: var(--ink); }
.slider { position: relative; height: 6px; border-radius: 99px; background: var(--card2); }
.s-fill { position: absolute; left: 0; top: 0; bottom: 0; width: 62%; border-radius: 99px; background: linear-gradient(90deg, var(--orange), var(--purple)); }
.s-knob { position: absolute; left: 62%; top: 50%; width: 15px; height: 15px; margin: -7.5px 0 0 -7.5px; border-radius: 50%; background: var(--purple-deep); border: 3px solid var(--card); box-shadow: 0 2px 8px rgba(0,0,0,0.25); }
.pc-cat { display: flex; flex-direction: column; gap: 8px; }
.pc-cat > span:first-child { font-size: 12.5px; color: var(--muted); }
.pc-chips { display: flex; gap: 7px; flex-wrap: wrap; }
.pc-chips .mini-accent { border-radius: 999px; padding: 6px 14px; font-size: 11px; }
.pc-chips .tag-line { padding: 6px 14px; font-size: 11px; }
.pc-foot { border-top: 0.5px solid var(--line); padding-top: 14px; display: flex; justify-content: flex-end; }
.pc-foot .mini-accent { padding: 9px 22px; font-size: 12px; }

/* Why Ovture */
.why { padding-top: clamp(150px, 16vw, 190px); border-top: 0.5px solid var(--line); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr)); gap: 20px; margin-top: clamp(48px, 6vw, 64px); }
.why-card { border-radius: 24px; padding: clamp(28px, 3vw, 40px); transition: transform .25s ease, box-shadow .25s ease; }
.why-old { border: 0.5px solid var(--line); }
.why-old:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.why-new { background: var(--lime); }
.why-new:hover { transform: translateY(-5px); box-shadow: 0 20px 40px -18px rgba(0,0,0,0.25); }
.why-card .eyebrow { letter-spacing: 0.14em; }
.on-lime { color: rgba(0,0,0,0.6); }
.why-list { display: flex; flex-direction: column; gap: 24px; margin-top: 28px; }
.why-list span { font-weight: var(--w-b); font-size: clamp(19px, 2vw, 24px); line-height: 1.3; color: #000; }
.why-old .why-list span { font-weight: var(--w-sm); color: var(--muted); }
.strike { text-decoration: line-through; text-decoration-color: color-mix(in srgb, var(--muted) 55%, transparent); }

/* Pricing */
.pricing { border-top: 0.5px solid var(--line); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: clamp(44px, 6vw, 60px); align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; gap: 22px; border: 0.5px solid var(--line); border-radius: 24px; background: var(--card); padding: clamp(26px, 3vw, 34px) clamp(22px, 2.6vw, 28px); transition: transform .25s ease, box-shadow .25s ease; }
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.price-featured { border: 1.5px solid var(--purple-deep); }
.price-tag { position: absolute; top: -13px; left: 24px; font-size: 10.5px; font-weight: var(--w-b); letter-spacing: 0.1em; text-transform: uppercase; color: #000; background: var(--lime); border-radius: 999px; padding: 6px 14px; white-space: nowrap; }
.price-head { display: flex; flex-direction: column; gap: 8px; }
.price-name { font-size: 12.5px; font-weight: var(--w-b); letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.price-amount { display: flex; align-items: baseline; gap: 7px; }
.price-num { font-size: clamp(34px, 3.4vw, 44px); font-weight: var(--w-xb); letter-spacing: -0.02em; color: var(--ink); }
.price-per { font-size: 12.5px; color: var(--muted); }
.price-blurb { margin: 0; font-size: 14.5px; font-weight: var(--w-sm); color: var(--ink); }
.price-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; font-size: 14px; color: var(--ink); flex: 1; }
.price-list li { position: relative; padding-left: 24px; line-height: 1.45; }
.price-list li::before { content: '✓'; position: absolute; left: 0; top: 0; font-weight: var(--w-b); color: var(--purple-deep); }
.price-list li.off { color: var(--muted); }
.price-list li.off::before { content: '—'; color: var(--muted); font-weight: var(--w-r); }
.price-btn { display: block; text-align: center; font-size: 13px; font-weight: var(--w-b); letter-spacing: 0.05em; text-transform: uppercase; border: 1px solid var(--ink); border-radius: 12px; padding: 15px 20px; color: var(--ink); transition: transform .2s ease, background .2s ease, color .2s ease; }
.price-btn:hover { background: var(--ink); color: var(--bg); transform: translateY(-1px); }
.price-btn-featured { background: var(--purple-deep); border-color: var(--purple-deep); color: #fff; }
.price-btn-featured:hover { background: var(--purple-deep); color: #fff; opacity: 0.92; }
.price-note { margin: clamp(26px, 4vw, 36px) auto 0; text-align: center; font-size: 12.5px; color: var(--muted); max-width: 680px; }
@media (max-width: 900px) {
  .price-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

/* Roadmap */
.roadmap { border-top: 0.5px solid var(--line); background: var(--surface); max-width: none; transition: background .4s ease; }
.roadmap > * { max-width: 1240px; margin-left: auto; margin-right: auto; }
.road-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: clamp(38px, 6vw, 58px); }
.road-head .h2 { max-width: 680px; }
.road-row { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding: 20px 0; border-top: 0.5px solid var(--line); flex-wrap: wrap; }
.road-row.last { border-bottom: 0.5px solid var(--line); }
.road-name { font-weight: var(--w-xb); font-size: 21px; color: var(--ink); white-space: nowrap; }
.road-desc { font-size: 13.5px; color: var(--muted); flex: 1 1 240px; padding: 0 4px; }
.pill-now { font-size: 10.5px; font-weight: var(--w-b); letter-spacing: 0.1em; text-transform: uppercase; color: #000; background: var(--lime); border-radius: 999px; padding: 6px 14px; white-space: nowrap; }
.pill-live { font-size: 10.5px; font-weight: var(--w-b); letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); border: 0.5px solid var(--line); border-radius: 999px; padding: 6px 14px; white-space: nowrap; }

/* CTA */
.cta { background: var(--purple-deep); }
.cta-inner { max-width: 900px; margin: 0 auto; padding: clamp(88px, 12vw, 150px) clamp(18px, 4vw, 36px); text-align: center; }
.cta h2 { font-weight: var(--w-xb); font-size: clamp(36px, 6vw, 72px); line-height: 1.08; letter-spacing: -0.015em; margin: 0; color: #fff; text-wrap: balance; }
.cta p { font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.78); max-width: 480px; margin: 22px auto 0; }
.cta-actions { margin-top: 36px; display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; }
.btn-cta { font-size: 14px; font-weight: var(--w-b); letter-spacing: 0.05em; text-transform: uppercase; color: var(--purple-deep); background: #fff; border-radius: 12px; padding: 19px 34px; transition: transform .2s ease, box-shadow .2s ease; }
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -8px rgba(0,0,0,0.35); }
.btn-cta:active { transform: translateY(0) scale(0.97); }
.cta-link { font-size: 15px; font-weight: var(--w-sm); color: #fff; text-decoration: underline; text-underline-offset: 4px; transition: opacity .2s ease; }
.cta-link:hover { opacity: 0.7; }

/* Footer */
.footer { border-top: 0.5px solid var(--line); }
.footer-inner { max-width: 1240px; margin: 0 auto; padding: clamp(56px, 7vw, 84px) clamp(18px, 4vw, 36px) 0; }
.foot-lede { font-size: clamp(18px, 2vw, 22px); font-weight: var(--w-sm); line-height: 1.5; color: var(--ink); max-width: 460px; margin: 14px 0 0; }
.foot-form { display: flex; align-items: center; gap: 14px; margin-top: 22px; flex-wrap: wrap; }
.foot-input { display: flex; align-items: center; gap: 10px; border: 0.5px solid var(--line); border-radius: 999px; padding: 15px 22px; background: var(--card); flex: 1 1 300px; max-width: 380px; }
.foot-input input { flex: 1; min-width: 0; border: none; outline: none; background: transparent; font-size: 14.5px; color: var(--ink); font-family: var(--font-base); }
.foot-input input::placeholder { color: var(--muted); }
.foot-sub { font-size: 13.5px; font-weight: var(--w-b); letter-spacing: 0.05em; text-transform: uppercase; color: var(--bg); background: var(--ink); border: none; border-radius: 999px; padding: 16px 30px; white-space: nowrap; cursor: pointer; transition: filter .2s ease, transform .2s ease; font-family: var(--font-base); }
.foot-sub:hover { filter: brightness(1.3); }
.foot-sub:active { transform: scale(0.97); }
.foot-big { margin-top: clamp(48px, 6vw, 72px); border-top: 0.5px solid var(--line); padding-top: clamp(28px, 4vw, 44px); font-weight: var(--w-xb); font-size: clamp(46px, 7vw, 92px); line-height: 1; letter-spacing: -0.02em; color: var(--ink); }
.block-caret { display: inline-block; width: 3px; height: 0.72em; background: var(--ink); margin-left: 6px; vertical-align: -0.08em; animation: ov-blink 1.1s steps(2, start) infinite; }
.foot-cols { margin-top: clamp(44px, 6vw, 64px); display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); gap: 32px; }
.foot-wm { font-size: 20px; font-weight: var(--w-xb); color: var(--ink); }
.foot-wm .dot { color: var(--lime); font-weight: 600; font-size: 1.15em; }
.foot-cols p { font-size: 14.5px; line-height: 1.55; color: var(--muted); margin: 14px 0 0; max-width: 260px; }
.foot-col-h { font-size: 11px; font-weight: var(--w-b); letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.foot-cols > div > a { display: block; margin-top: 10px; font-size: 14px; color: var(--ink); transition: color .2s; }
.foot-cols > div .foot-col-h + a { margin-top: 15px; }
.foot-cols > div > a:hover { color: var(--purple-deep); }
.foot-bar {
  display: flex;
  max-width: 1240px;
  margin: clamp(40px, 6vw, 56px) auto 0;
  padding: 18px clamp(18px, 4vw, 36px);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  border-top: 0.5px solid var(--line);
}
.foot-copy { font-size: 12.5px; color: var(--muted); }
.foot-social { display: flex; gap: 10px; flex-wrap: wrap; }
.foot-social a { font-size: 12.5px; color: var(--ink); border: 0.5px solid var(--line); border-radius: 999px; padding: 8px 16px; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.foot-social a:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .9s ease, transform .9s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .06s; }
.reveal.d2 { transition-delay: .12s; }
.reveal.d3 { transition-delay: .18s; }
.reveal.d4 { transition-delay: .24s; }

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes ov-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes ov-ring { 0% { transform: scale(0.5); opacity: 0.85; } 80% { transform: scale(2.6); opacity: 0; } 100% { transform: scale(2.6); opacity: 0; } }
@keyframes ov-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes ov-grow { 0% { transform: scaleX(0); } 100% { transform: scaleX(1); } }
@keyframes ov-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes ov-boot-in { 0% { opacity: 0; transform: scale(0.88); } 100% { opacity: 1; transform: scale(1); } }

/* ============================================================
   RESPONSIVE — single breakpoint at 1020px (per spec)
   ============================================================ */
@media (max-width: 1020px) {
  .nav-pill { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .float { display: none; }
  .deep-head { flex-direction: column; }
}

/* If the mobile menu was left open and the viewport grows past the burger breakpoint,
   the burger disappears and nothing can close it — never show the dropdown on desktop. */
@media (min-width: 1021px) {
  .nav-mobile { display: none !important; }
}

@media (max-width: 860px) {
  /* Workspace rows collapse to one column here: always read text first, then the product shot
     (the desktop zig-zag puts the card first in the DOM on .row-rev). */
  .row-rev .row-copy { order: -1; }
}

@media (max-width: 700px) {
  /* Hero mock: the sidebar has no room at phone width — give the dashboard the full frame. */
  .mock-side { display: none; }
  .mock-main { padding: 14px; }
  /* One clean column inside the mock so cards never fight for half-width. */
  .mock-grid { grid-template-columns: 1fr; }
  .mr-head .sm { white-space: nowrap; }
  /* Ghost section numbers: smaller so they read as texture, not a collision with the eyebrow. */
  .ghost-num { font-size: 72px; top: -48px; }
  /* Roadmap rows: stack name / description / status the same way on every row. */
  .road-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .road-desc { flex: none; padding: 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
