/* ============================================================
   Noble & Lee — styles
   Palette: black, deep purple, grey
   Type: Fraunces (display) + Inter (body)
   ============================================================ */

:root {
  --black: #07060a;
  --bg: #0a090f;
  --bg-2: #0e0c15;
  --bg-3: #131020;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-2: rgba(255, 255, 255, 0.055);
  --purple: #8b5cf6;
  --purple-deep: #5b21b6;
  --purple-dark: #3b1a78;
  --purple-bright: #a78bfa;
  --purple-soft: #c4b5fd;
  --text: #f4f2f8;
  --muted: #a19cb0;
  --muted-2: #6e6a7c;
  --line: rgba(255, 255, 255, 0.08);
  --line-bright: rgba(167, 139, 250, 0.35);
  --radius: 18px;
  --glow: 0 0 60px rgba(139, 92, 246, 0.25);
  --shadow-md: 0 14px 44px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 34px 90px rgba(0, 0, 0, 0.6);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

/* Film grain over everything — the analog touch */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.5;
  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%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.03 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: rgba(139, 92, 246, 0.4); color: #fff; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--purple-deep), var(--purple-dark));
  border-radius: 99px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}
.container.narrow { width: min(820px, 92%); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--text);
}

h1 { font-size: clamp(2.6rem, 5.4vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
h3 { font-size: 1.28rem; }

h1 em, h2 em {
  font-style: italic;
  background: linear-gradient(105deg, var(--purple-soft) 0%, var(--purple) 55%, var(--purple-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple-bright);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-bright));
}
.eyebrow.gold { color: var(--purple-soft); }

/* ============ Buttons ============ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.78rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn-lg { padding: 0.95rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-gold {
  background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 45%, #5b21b6 100%);
  color: #fff;
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 44px rgba(139, 92, 246, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--text);
  background: var(--surface);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: var(--line-bright);
  background: var(--surface-2);
  transform: translateY(-2px);
  box-shadow: var(--glow);
}

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 6, 10, 0.6);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.site-header.scrolled {
  background: rgba(7, 6, 10, 0.85);
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: linear-gradient(145deg, var(--bg-3), var(--black));
  border: 1px solid rgba(167, 139, 250, 0.45);
  box-shadow: 0 0 22px rgba(139, 92, 246, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text);
  letter-spacing: 0.02em;
}
.brand-mark .amp { color: var(--purple-bright); }
.brand-text {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--text);
}
.brand-text .amp-text { color: var(--purple-bright); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}
.main-nav a:not(.btn) {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.18s ease;
}
.main-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: var(--purple-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s ease;
}
.main-nav a:not(.btn):hover { color: var(--text); }
.main-nav a:not(.btn):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.btn-nav { padding: 0.6rem 1.25rem; font-size: 0.88rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ Hero ============ */
.hero {
  position: relative;
  background: var(--black);
  overflow: hidden;
}

/* Aurora orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  will-change: transform;
}
.orb-1 {
  width: 560px;
  height: 560px;
  top: -180px;
  right: -120px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.4), transparent 65%);
  animation: drift1 14s ease-in-out infinite alternate;
}
.orb-2 {
  width: 460px;
  height: 460px;
  bottom: -160px;
  left: -140px;
  background: radial-gradient(circle, rgba(91, 33, 182, 0.35), transparent 65%);
  animation: drift2 18s ease-in-out infinite alternate;
}
.orb-3 {
  width: 300px;
  height: 300px;
  top: 38%;
  left: 42%;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.16), transparent 65%);
  animation: drift1 22s ease-in-out infinite alternate-reverse;
}
@keyframes drift1 {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-60px, 50px) scale(1.12); }
}
@keyframes drift2 {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(70px, -40px) scale(1.08); }
}

.hero-glow {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(167, 139, 250, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(167, 139, 250, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 85% 65% at 50% 35%, black 25%, transparent 72%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 4rem;
  align-items: center;
  padding: 6rem 0 7rem;
}

.hero h1 { margin-bottom: 1.5rem; }

.lede {
  font-size: 1.13rem;
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 2.1rem;
}

.hero-ctas {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 2.3rem;
}

.hero-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.hero-points li {
  position: relative;
  padding-left: 1.7rem;
  font-size: 0.95rem;
  color: var(--muted);
}
.hero-points li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--purple-bright);
}

/* Phone demo card */
.hero-demo {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.phone-card {
  width: 100%;
  max-width: 400px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
  border-radius: 24px;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-lg), var(--glow);
  overflow: hidden;
}

.phone-top {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.2rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--muted);
}
.call-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}
.call-timer { margin-left: auto; font-variant-numeric: tabular-nums; }

.transcript {
  padding: 1.2rem;
  min-height: 275px;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.bubble {
  max-width: 85%;
  padding: 0.6rem 0.9rem;
  border-radius: 14px;
  font-size: 0.86rem;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(8px);
  animation: bubbleIn 0.4s ease forwards;
}
@keyframes bubbleIn {
  to { opacity: 1; transform: translateY(0); }
}
.bubble.caller {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  color: var(--text);
  border-bottom-left-radius: 4px;
}
.bubble.agent {
  align-self: flex-end;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.95), rgba(91, 33, 182, 0.95));
  color: #fff;
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 18px rgba(124, 58, 237, 0.35);
}
.bubble .who {
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.65;
  margin-bottom: 0.15rem;
}

.phone-bottom {
  padding: 1rem 1.2rem;
  border-top: 1px solid var(--line);
}
.phone-result {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.phone-result.show { opacity: 1; }
.result-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.14);
  color: #34d399;
  font-weight: 700;
  flex-shrink: 0;
}
.phone-result strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
}
.phone-result span:not(.result-icon) {
  font-size: 0.78rem;
  color: var(--muted);
}

.demo-badge {
  font-size: 0.8rem;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

/* ============ Stat strip ============ */
.stat-strip {
  position: relative;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 3rem 0;
}
.stat-strip::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: min(700px, 80%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-bright), transparent);
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 0.35rem;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(120deg, var(--purple-soft), var(--purple-bright) 60%, var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 15rem;
  margin: 0 auto;
  display: block;
}

/* ============ Marquee ============ */
.marquee {
  overflow: hidden;
  padding: 1.4rem 0;
  background: var(--black);
  border-bottom: 1px solid var(--line);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 2.6rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--muted-2);
  white-space: nowrap;
}
.marquee-track .dot { color: var(--purple); font-style: normal; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============ Sections ============ */
.section { position: relative; padding: 6.5rem 0; }

.section-head {
  max-width: 46rem;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.section-head .eyebrow::after {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--purple-bright), transparent);
}
.section-sub {
  margin-top: 1.1rem;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Spotlight hover — cards track the cursor */
.card, .step, .why-item, .founder {
  position: relative;
  overflow: hidden;
}
.card::before, .step::before, .why-item::before, .founder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%), rgba(139, 92, 246, 0.13), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.card:hover::before, .step:hover::before, .why-item:hover::before, .founder:hover::before {
  opacity: 1;
}

/* ============ Service cards ============ */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.card {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 1.9rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--line-bright);
  box-shadow: var(--shadow-md), var(--glow);
}
.card.featured {
  border-color: rgba(167, 139, 250, 0.4);
  background: linear-gradient(165deg, rgba(139, 92, 246, 0.1), rgba(255, 255, 255, 0.015));
  box-shadow: 0 10px 40px rgba(91, 33, 182, 0.25);
}
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.3rem;
}
.card-top .card-icon { margin-bottom: 0; }
.card-badge {
  background: linear-gradient(135deg, var(--purple-bright), var(--purple-deep));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.8rem;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.5);
  white-space: nowrap;
}
.card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.22), rgba(91, 33, 182, 0.1));
  border: 1px solid rgba(167, 139, 250, 0.3);
  color: var(--purple-bright);
  margin-bottom: 1.3rem;
}
.card-icon svg { width: 25px; height: 25px; }
.card h3 { margin-bottom: 0.7rem; }
.card > p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.1rem; }

.card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.card-list li {
  position: relative;
  padding-left: 1.55rem;
  font-size: 0.9rem;
  color: var(--text);
}
.card-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--purple-bright);
  font-size: 0.8rem;
}

.card-link {
  margin-top: auto;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--purple-bright);
  transition: color 0.18s ease, letter-spacing 0.18s ease;
}
.card-link:hover { color: var(--purple-soft); letter-spacing: 0.015em; }

/* ============ Voice agent feature ============ */
.feature-dark {
  background:
    radial-gradient(900px 500px at 100% 0%, rgba(124, 58, 237, 0.16), transparent 55%),
    radial-gradient(700px 500px at 0% 100%, rgba(91, 33, 182, 0.12), transparent 55%),
    var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.feature-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4.5rem;
  align-items: center;
}
.feature-dark h2 { margin-bottom: 1.3rem; }
.feature-copy > p { font-size: 1.04rem; margin-bottom: 1.8rem; max-width: 33rem; }

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.2rem;
}
.check-list li {
  position: relative;
  padding-left: 2rem;
  font-size: 0.97rem;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.18);
  border: 1px solid rgba(167, 139, 250, 0.3);
  color: var(--purple-bright);
  font-size: 0.7rem;
  font-weight: 700;
}
.check-list strong { color: var(--text); }

.feature-ctas {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  flex-wrap: wrap;
}
.demo-note {
  font-size: 0.85rem;
  max-width: 210px;
  line-height: 1.45;
}
.demo-note em { color: var(--purple-bright); font-style: italic; }

/* Resume card visual */
.resume-card {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-lg), var(--glow);
  backdrop-filter: blur(14px);
  overflow: hidden;
  color: var(--text);
  transform: rotate(1.6deg);
  transition: transform 0.3s ease;
}
.resume-card:hover { transform: rotate(0deg) scale(1.015); }

.resume-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.6rem;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.35), rgba(59, 26, 120, 0.5));
  border-bottom: 1px solid var(--line);
}
.resume-avatar {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-bright), var(--purple-deep));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}
.resume-head strong { display: block; font-size: 1.02rem; color: #fff; }
.resume-head span { font-size: 0.8rem; color: var(--purple-soft); }

.resume-rows { padding: 0.6rem 0; }
.resume-row {
  display: flex;
  justify-content: space-between;
  padding: 0.62rem 1.6rem;
  font-size: 0.9rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}
.resume-row:last-child { border-bottom: none; }
.resume-row span:first-child { color: var(--muted); }
.resume-row span:last-child { font-weight: 600; color: var(--text); }

.resume-foot {
  padding: 0.9rem 1.6rem;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
}

/* ============ Process ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.step {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.6rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.step:hover {
  transform: translateY(-4px);
  border-color: var(--line-bright);
  box-shadow: var(--glow);
}
.step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--purple-bright);
  border: 1px solid rgba(167, 139, 250, 0.4);
  border-radius: 999px;
  padding: 0.2rem 0.75rem;
  margin-bottom: 1.1rem;
  background: rgba(139, 92, 246, 0.08);
}
.step h3 { margin-bottom: 0.6rem; }
.step p { font-size: 0.92rem; color: var(--muted); }

/* ============ Why band ============ */
.why-band {
  background:
    radial-gradient(800px 400px at 15% 20%, rgba(124, 58, 237, 0.09), transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.why-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}
.why-copy h2 { margin-bottom: 1.1rem; }
.why-copy p { color: var(--muted); font-size: 1.03rem; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.why-item {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.why-item:hover { transform: translateY(-3px); border-color: var(--line-bright); }
.why-item h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.why-item p { font-size: 0.88rem; color: var(--muted); }

/* ============ Founders ============ */
.founders {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  max-width: 860px;
  margin: 0 auto;
}
.founder {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.4rem 2rem;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.founder:hover {
  transform: translateY(-5px);
  border-color: var(--line-bright);
  box-shadow: var(--shadow-md), var(--glow);
}
.founder-photo {
  width: 96px;
  height: 96px;
  margin: 0 auto 1.3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--bg-3), var(--black));
  border: 2px solid rgba(167, 139, 250, 0.45);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}
.founder-photo span {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  background: linear-gradient(120deg, var(--purple-soft), var(--purple-bright));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.founder-role {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--purple-bright);
  margin: 0.35rem 0 1rem;
}
.founder > p:last-child { font-size: 0.94rem; color: var(--muted); }

/* ============ FAQ ============ */
.faq-section { background: var(--bg); }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.faq-item {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-item[open] {
  border-color: var(--line-bright);
  box-shadow: var(--glow);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.4rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--purple-bright);
  transition: transform 0.25s ease;
}
.faq-icon::before { width: 14px; height: 2px; }
.faq-icon::after { width: 2px; height: 14px; }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); }
.faq-item p {
  padding: 0 1.4rem 1.3rem;
  font-size: 0.94rem;
  color: var(--muted);
  max-width: 62ch;
}

/* ============ CTA / Contact ============ */
.cta-section {
  background:
    radial-gradient(1000px 550px at 20% 0%, rgba(124, 58, 237, 0.2), transparent 55%),
    radial-gradient(800px 500px at 90% 100%, rgba(91, 33, 182, 0.15), transparent 60%),
    var(--black);
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.cta-copy h2 { margin-bottom: 1.2rem; }
.cta-copy > p { font-size: 1.05rem; margin-bottom: 2rem; max-width: 30rem; }
.cta-contacts { display: flex; flex-direction: column; gap: 0.8rem; }
.cta-line {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1rem;
  color: var(--text);
}
a.cta-line:hover { color: var(--purple-bright); }
.cta-ico { font-size: 1.05rem; }
.booking-line {
  color: var(--purple-bright);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(167, 139, 250, 0.5);
}

.contact-form {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2.2rem;
  box-shadow: var(--shadow-lg), var(--glow);
  backdrop-filter: blur(14px);
  color: var(--text);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 1rem;
}
.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 0.94rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--muted-2); }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.22);
}
.form-note {
  margin-top: 0.9rem;
  font-size: 0.8rem;
  color: var(--muted-2);
  text-align: center;
}
.form-success {
  text-align: center;
  padding: 2rem 1rem;
}
.form-success h3 { margin-bottom: 0.6rem; }
.form-success p { color: var(--muted); font-size: 0.95rem; }

/* ============ Footer ============ */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
.footer-brand p {
  margin-top: 1.1rem;
  font-size: 0.88rem;
  max-width: 20rem;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.footer-col a, .footer-col span {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.18s ease;
}
.footer-col a:hover { color: var(--purple-bright); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding-top: 1.8rem;
  font-size: 0.82rem;
  color: var(--muted-2);
}
.footer-bottom a { transition: color 0.18s ease; }
.footer-bottom a:hover { color: var(--purple-bright); }

/* ============ Legal pages ============ */
.legal-main { padding: 4.5rem 0 6rem; }
.legal-main h1 {
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  margin-bottom: 0.5rem;
}
.legal-updated {
  color: var(--muted-2);
  font-size: 0.85rem;
  margin-bottom: 2.6rem;
}
.legal-main h2 {
  font-size: 1.3rem;
  margin: 2.3rem 0 0.7rem;
}
.legal-main p, .legal-main li {
  color: var(--muted);
  font-size: 0.96rem;
  max-width: 70ch;
}
.legal-main p + p { margin-top: 0.7rem; }
.legal-main ul {
  padding-left: 1.3rem;
  margin: 0.6rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.legal-main a {
  color: var(--purple-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(167, 139, 250, 0.4);
}
.legal-main a:hover { color: var(--purple-soft); }

/* ============ Reveal animations ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .bubble { animation: none; opacity: 1; transform: none; }
  .orb { animation: none; }
  .marquee-track { animation: none; }
}

/* ============ Responsive ============ */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 0; }
  .hero-demo { order: 2; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .feature-inner { grid-template-columns: 1fr; gap: 3rem; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .cta-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .section { padding: 4.5rem 0; }
  .main-nav {
    position: fixed;
    inset: 63px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(7, 6, 10, 0.97);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    padding: 0.6rem 4%;
    transform: translateY(-130%);
    transition: transform 0.3s ease;
    z-index: 99;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a:not(.btn) { padding: 0.85rem 0.4rem; font-size: 1rem; }
  .main-nav a:not(.btn)::after { display: none; }
  .btn-nav { margin: 0.7rem 0.4rem 0.9rem; justify-content: center; }
  .nav-toggle { display: flex; }
  .steps { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .founders { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .stat-grid { gap: 1.6rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form { padding: 1.6rem; }
  .orb { filter: blur(70px); }
}
