/* ============================================================
   OVANODE — Marketing Landing Page + Login
   Brand: Midnight Slate #1A2530 · Blush #E8A598 · White #F8F9FA
   Fonts: Space Grotesk (headings) · Inter (body)
   ============================================================ */

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

:root {
  --slate:        #1A2530;
  --slate-mid:    #233140;
  --slate-light:  #2E4057;
  --blush:        #E8A598;
  --blush-dark:   #D4856F;
  --blush-light:  #F2C4BB;
  --white:        #FFFFFF;
  --off-white:    #F8F9FA;
  --gray-100:     #F1F3F5;
  --gray-200:     #E9ECEF;
  --gray-400:     #ADB5BD;
  --gray-600:     #6C757D;
  --text:         #1A2530;
  --text-muted:   #5A6B7B;
  --border:       rgba(26, 37, 48, 0.1);
  --border-light: rgba(255,255,255,0.12);

  --font-head:    'Space Grotesk', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --max-w:        1200px;
  --section-y:    112px;
  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── TYPOGRAPHY ────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blush);
}

/* ─── LAYOUT ────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

.section { padding: var(--section-y) 0; }
.section--dark  { background: var(--slate); color: var(--white); }
.section--mid   { background: var(--slate-mid); color: var(--white); }
.section--white { background: var(--white); }
.section--off   { background: var(--off-white); }

.section__header { text-align: center; margin-bottom: 64px; }
.section__header h2 {
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 700;
  margin-top: 10px;
  color: var(--text);
}
.section__header--light h2 { color: var(--white); }
.section__header p {
  margin-top: 14px;
  font-size: 17px;
  color: var(--text-muted);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
.section__header--light p { color: rgba(255,255,255,0.55); }

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.22s var(--ease);
  white-space: nowrap;
  will-change: transform;
}

.btn--primary {
  background: var(--blush);
  color: var(--slate);
}
.btn--primary:hover {
  background: var(--blush-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,165,152,0.4);
}

.btn--dark {
  background: var(--slate);
  color: var(--white);
}
.btn--dark:hover {
  background: var(--slate-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,37,48,0.3);
}

.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.18);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.07);
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--slate);
  border: 1.5px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--slate);
  transform: translateY(-2px);
}

.btn--lg { padding: 16px 32px; font-size: 15px; border-radius: 12px; }

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ─── SKIP LINK ─────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  background: var(--blush);
  color: var(--slate);
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* ─── GLOBAL FOCUS STATES ────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--blush);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Buttons and links — cursor pointer */
a, button, [role="button"],
.btn, .nav__hamburger, .login-pw-toggle,
input[type="submit"], select {
  cursor: pointer;
}

/* ─── MOBILE NAV CLOSE BUTTON ────────────────────────────────── */
.nav__mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 8px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.nav__mobile-close:hover {
  background: rgba(255,255,255,0.14);
}

/* ─── FLUID BACKGROUND SVG ──────────────────────────────────── */
.fluid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.fluid-bg svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ─── NAV ───────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all 0.3s var(--ease);
}

.nav.scrolled {
  background: rgba(26, 37, 48, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo-text {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav__links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--white); }

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

/* Mobile nav drawer */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--slate);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
}
.nav__mobile.open { display: flex; }
.nav__mobile a { color: var(--white); text-decoration: none; }
.nav__mobile a:hover { color: var(--blush); }

/* Mobile hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--slate);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 148px 0 100px;
}

/* Grid texture */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,165,152,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,165,152,0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

/* Radial glows */
.hero__glow-1 {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(232,165,152,0.08) 0%, transparent 70%);
  top: -200px; right: -100px;
  pointer-events: none;
}
.hero__glow-2 {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,37,48,0.6) 0%, transparent 70%);
  bottom: -100px; left: -50px;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 10px;
  background: rgba(232,165,152,0.1);
  border: 1px solid rgba(232,165,152,0.22);
  border-radius: 100px;
  margin-bottom: 30px;
}
.hero__tag .dot {
  width: 6px; height: 6px;
  background: var(--blush);
  border-radius: 50%;
  animation: blink 2.5s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero__tag span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--blush);
}

.hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: normal;
  color: var(--blush);
}

.hero__sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin-bottom: 40px;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero__proof-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  font-weight: 500;
}
.hero__proof-item svg { width: 14px; height: 14px; color: var(--blush); opacity: 0.7; }

/* Glass dashboard card */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Nano Banana placeholder */
.nano-placeholder {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4/3.4;
  position: relative;
}

.glass-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
}

.glass-card__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.glass-card__dots {
  display: flex;
  gap: 6px;
}
.glass-card__dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.glass-card__dots span:first-child { background: rgba(232,165,152,0.7); }

.glass-card__title {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
}

.glass-card__body {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dashboard-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 14px 18px;
}
.dashboard-stat__label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.dashboard-stat__value {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}
.dashboard-stat__value.blush { color: var(--blush); }

.dashboard-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dashboard-mini {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dashboard-mini__label { font-size: 11px; color: rgba(255,255,255,0.35); }
.dashboard-mini__val {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.ai-insight {
  background: rgba(232,165,152,0.08);
  border: 1px solid rgba(232,165,152,0.18);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.ai-insight__dot {
  width: 8px; height: 8px;
  background: var(--blush);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
  animation: blink 2s infinite;
}
.ai-insight__text {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.ai-insight__text strong { color: var(--blush); font-weight: 600; }

/* Nano Banana label */
.nano-label {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  white-space: nowrap;
  font-family: var(--font-body);
}

/* ─── TRUST BAR ─────────────────────────────────────────────── */
.trust-bar {
  background: var(--slate-mid);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 0;
}

.trust-bar__inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow-x: auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  border-right: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { color: rgba(255,255,255,0.8); }
.trust-item svg { width: 16px; height: 16px; color: var(--blush); flex-shrink: 0; }

/* ─── PROBLEM ───────────────────────────────────────────────── */
.problem {}

.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  will-change: transform;
}
.problem__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(26,37,48,0.08);
}
.problem__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blush), transparent);
}

.problem__icon {
  width: 48px; height: 48px;
  background: rgba(232,165,152,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blush);
  margin-bottom: 18px;
}
.problem__icon svg { width: 22px; height: 22px; }

.problem__card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.problem__card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── FEATURES ──────────────────────────────────────────────── */
.features { background: var(--slate); }

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 28px 24px;
  transition: all 0.3s var(--ease);
  will-change: transform;
}
.feature__card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(232,165,152,0.25);
  transform: translateY(-4px);
}

.feature__icon {
  width: 44px; height: 44px;
  background: rgba(232,165,152,0.1);
  border: 1px solid rgba(232,165,152,0.18);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blush);
  margin-bottom: 16px;
}
.feature__icon svg { width: 20px; height: 20px; }

.feature__card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.feature__card p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ─── HOW IT WORKS ──────────────────────────────────────────── */
.how { background: var(--white); }

.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.how__steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.666% + 24px);
  right: calc(16.666% + 24px);
  height: 1px;
  background: linear-gradient(90deg, var(--blush) 0%, rgba(232,165,152,0.2) 100%);
}

.how__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 32px;
  position: relative;
}

.how__num {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 1.5px solid var(--blush);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--blush);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  transition: all 0.3s var(--ease);
}

.how__step:hover .how__num {
  background: var(--blush);
  color: var(--white);
  transform: scale(1.08);
}

.how__step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.how__step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── AI SPOTLIGHT ──────────────────────────────────────────── */
.ai-spot { background: var(--off-white); }

.ai-spot__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ai-spot__content .eyebrow { margin-bottom: 14px; }

.ai-spot__content h2 {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--text);
  line-height: 1.15;
}

.ai-spot__content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.ai-spot__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.ai-spot__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.ai-spot__list .tick {
  width: 20px; height: 20px;
  background: rgba(232,165,152,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--blush-dark);
}
.ai-spot__list .tick svg { width: 11px; height: 11px; }

/* AI terminal visual */
.ai-terminal {
  background: var(--slate);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(26,37,48,0.18);
}

.ai-terminal__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: var(--slate-mid);
}
.ai-terminal__dots { display: flex; gap: 6px; }
.ai-terminal__dots span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.12); }
.ai-terminal__dots span:first-child { background: rgba(232,165,152,0.6); }
.ai-terminal__name { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.3); letter-spacing: 0.08em; }

.ai-terminal__body { padding: 24px; display: flex; flex-direction: column; gap: 16px; }

.ai-msg {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.ai-msg__avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}
.ai-msg__avatar--system {
  background: rgba(232,165,152,0.15);
  border: 1px solid rgba(232,165,152,0.25);
  color: var(--blush);
}
.ai-msg__avatar--user {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.4);
}

.ai-msg__bubble {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  flex: 1;
}
.ai-msg--system .ai-msg__bubble {
  background: rgba(232,165,152,0.07);
  border-color: rgba(232,165,152,0.15);
  color: rgba(255,255,255,0.75);
}
.ai-msg__bubble strong { color: var(--blush); font-weight: 600; }

.ai-typing {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 4px;
}
.ai-typing__dots { display: flex; gap: 4px; }
.ai-typing__dots span {
  width: 6px; height: 6px;
  background: var(--blush);
  border-radius: 50%;
  opacity: 0.5;
  animation: typing 1.4s ease-in-out infinite;
}
.ai-typing__dots span:nth-child(2) { animation-delay: 0.2s; }
.ai-typing__dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-4px); opacity: 1; }
}
.ai-typing__label { font-size: 11px; color: rgba(255,255,255,0.25); }

/* ─── EARLY ACCESS CTA ──────────────────────────────────────── */
.cta-section { background: var(--slate); position: relative; overflow: hidden; }

.cta-section__glow {
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(232,165,152,0.08) 0%, transparent 65%);
  top: -300px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}
.cta-section__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 48px;
  line-height: 1.65;
}

.access-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px 40px;
  text-align: left;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field--full { grid-column: 1 / -1; }

.form-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.form-input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 11px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  outline: 2px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-input::placeholder { color: rgba(255,255,255,0.25); }
.form-input:focus { border-color: rgba(232,165,152,0.5); box-shadow: 0 0 0 3px rgba(232,165,152,0.15); }

.form-select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 11px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  outline: 2px solid transparent;
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
  cursor: pointer;
}
.form-select:focus { border-color: rgba(232,165,152,0.5); }
.form-select option { background: var(--slate-mid); color: var(--white); }

.form-submit {
  margin-top: 8px;
  width: 100%;
  padding: 15px;
  background: var(--blush);
  color: var(--slate);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.22s var(--ease);
  border: none;
}
.form-submit:hover {
  background: var(--blush-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,165,152,0.35);
}

.access-form__note {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  text-align: center;
}

/* ─── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--slate-mid);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 48px 0 28px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer__brand-text {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  margin-top: 14px;
  line-height: 1.7;
  max-width: 260px;
}

.footer__tagline {
  font-size: 12px;
  font-style: italic;
  color: rgba(232,165,152,0.5);
  margin-top: 10px;
}

.footer__col h5 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}

.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer__col a:hover { color: rgba(255,255,255,0.85); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy { font-size: 12px; color: rgba(255,255,255,0.25); }

.footer__badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.badge-small {
  padding: 3px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
}

/* ─── LOGIN PAGE ────────────────────────────────────────────── */
body.login-page {
  background: var(--slate);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.login-wrap {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

/* Left panel */
.login-left {
  background: var(--slate);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.login-left__fluid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.login-left__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0;
  position: relative;
  z-index: 1;
}

.login-left__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: rgba(232,165,152,0.1);
  border: 1px solid rgba(232,165,152,0.2);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 28px;
  width: fit-content;
}

.login-left h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.login-left h2 em {
  font-style: normal;
  color: var(--blush);
}

.login-left p {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 380px;
  margin-bottom: 40px;
}

.login-stats {
  display: flex;
  gap: 32px;
}

.login-stat { }
.login-stat__val {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
}
.login-stat__label {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.login-left__quote {
  position: relative;
  z-index: 1;
  border-left: 2px solid rgba(232,165,152,0.3);
  padding-left: 16px;
  font-size: 13px;
  font-style: italic;
  color: rgba(255,255,255,0.3);
  line-height: 1.65;
}

/* Right panel */
.login-right {
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
}

.login-form-wrap {
  width: 100%;
  max-width: 400px;
}

.login-form-wrap .login-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.login-form-wrap .login-logo-text {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
}

.login-heading {
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.login-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.login-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.login-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.login-input {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  outline: 2px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.login-input::placeholder { color: var(--gray-400); }
.login-input:focus { border-color: var(--blush); box-shadow: 0 0 0 3px rgba(232,165,152,0.18); }

.login-forgot {
  text-align: right;
  margin-top: -8px;
}
.login-forgot a {
  font-size: 12px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.login-forgot a:hover { color: var(--blush-dark); }

.login-btn {
  width: 100%;
  padding: 14px;
  background: var(--slate);
  color: var(--white);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.22s var(--ease);
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.login-btn:hover {
  background: var(--slate-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,37,48,0.2);
}
.login-btn svg { width: 16px; height: 16px; }

.login-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 4px 0;
}
.login-divider::before, .login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.login-divider span { font-size: 12px; color: var(--gray-400); }

.login-request {
  text-align: center;
  padding: 14px;
  border: 1.5px dashed var(--border);
  border-radius: 10px;
  font-size: 13px;
  color: var(--text-muted);
}
.login-request a {
  color: var(--blush-dark);
  font-weight: 600;
  transition: color 0.2s;
}
.login-request a:hover { color: var(--blush); }

.login-footer {
  margin-top: 32px;
  text-align: center;
  font-size: 12px;
  color: var(--gray-400);
}
.login-footer a { color: var(--text-muted); text-decoration: underline; }

/* ─── SCROLL TEXT SECTION (Full Control — no video) ────────── */
.scroll-text-section {
  position: relative;
  height: 300vh;
  background: var(--slate);
}

.scroll-text-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy, #0A1628);
}

/* Animated glow orbs */
.scroll-text-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.stb-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.stb-glow--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,165,152,0.09) 0%, transparent 70%);
  top: -150px; right: -100px;
  animation: orbFloat1 8s ease-in-out infinite;
}

.stb-glow--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(84,140,170,0.07) 0%, transparent 70%);
  bottom: -100px; left: -80px;
  animation: orbFloat2 11s ease-in-out infinite;
}

.stb-glow--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(232,165,152,0.05) 0%, transparent 70%);
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  animation: orbFloat3 6s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-30px, 20px) scale(1.08); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(20px, -25px) scale(1.05); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50%       { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

/* Fluid wave at bottom */
.stb-fluid {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 120px;
  pointer-events: none;
}

/* ─── AUTOPLAY VIDEO (cOS Platform) ────────────────────────── */
.cos-video-wrap {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  position: relative;
}

.cos-video {
  display: block;
  width: 100%;
  height: auto;
}

/* ─── SCROLL-DRIVEN VIDEO ───────────────────────────────────── */
.scroll-vid-section {
  position: relative;
  height: 300vh;          /* 3× viewport = ~scroll room for 5s video */
  background: var(--slate);
}

.scroll-vid-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-vid-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

/* Vignette darkens edges so text is always readable */
.scroll-vid-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(10,22,40,0.72) 100%),
    linear-gradient(to bottom, rgba(10,22,40,0.45) 0%, transparent 20%, transparent 80%, rgba(10,22,40,0.55) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Text overlays */
.scroll-vid-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.scroll-vid-overlay.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-vid-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 14px;
  display: block;
}

.scroll-vid-h2 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 32px rgba(0,0,0,0.5);
}

/* ─── SCROLL TEXT LOGO (static OvaNode mark in lower viewport) ── */
.scroll-text-logo {
  position: absolute;
  bottom: 96px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 2;
  pointer-events: none;
  user-select: none;
}

.scroll-text-logo svg {
  opacity: 0.55;
  filter: drop-shadow(0 0 20px rgba(232,165,152,0.2));
}

.scroll-text-logo-name {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
}

/* Slim progress bar at bottom */
.scroll-vid-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.08);
  z-index: 3;
}

.scroll-vid-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--blush);
  transition: width 0.05s linear;
  will-change: width;
}

/* Scroll cue */
.scroll-vid-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 0.4s;
}

.scroll-vid-cue svg {
  animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ─── SCROLL ANIMATIONS ─────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(36px); }
.reveal-left { opacity: 0; transform: translateX(-36px); }
.reveal-right { opacity: 0; transform: translateX(36px); }

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 480px; margin: 0 auto; }
  .ai-spot__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .login-wrap { grid-template-columns: 1fr; }
  .login-left { display: none; }
  .login-right { min-height: 100vh; padding: 40px 24px; }
}

@media (max-width: 768px) {
  :root { --section-y: 64px; }
  .container { padding: 0 20px; }
  .problem__grid,
  .features__grid,
  .how__steps { grid-template-columns: 1fr; }
  .how__steps::before { display: none; }
  .how__step { padding: 0 0 48px; }
  .nav__links, .nav__actions .btn--ghost { display: none; }
  .nav__hamburger { display: flex; }
  .hero h1 { font-size: 34px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 24px; }
  .trust-bar__inner { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right { opacity: 1 !important; transform: none !important; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .stb-glow { animation: none !important; }
  .scroll-vid-cue svg { animation: none !important; }
}
