/* ── Custom Properties ── */
:root {
  --color-bg: #09090b;
  --color-surface: #111113;
  --color-accent: #6366f1;
  --color-accent-hover: #818cf8;
  --color-text: #e4e4e7;
  --color-text-body: #d4d4d8;
  --color-text-muted: #a1a1aa;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-hover: rgba(255, 255, 255, 0.16);
  --shadow-inset: inset 0 0 20px rgba(255, 255, 255, 0.12);
  --shadow-inset-strong: inset 0 0 20px rgba(255, 255, 255, 0.18);
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --font-stack: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition: 0.25s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 5rem; }
body {
  font-family: var(--font-stack);
  background: var(--color-bg);
  color: var(--color-text-body);
  line-height: 1.6;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(9, 9, 11, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}
.nav--scrolled {
  border-bottom-color: var(--color-border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav__logo-icon {
  animation: logo-pulse 3s ease-in-out infinite;
}
@keyframes logo-pulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
.nav__pill {
  display: flex;
  gap: 1.5rem;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.10);
}
.nav__link {
  font-size: 0.95rem;
  color: var(--color-text-body);
  transition: color var(--transition);
}
.nav__link:hover {
  color: var(--color-text);
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav__signin {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  transition: color var(--transition);
}
.nav__signin:hover {
  color: var(--color-text);
}
.nav__cta {
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.nav__cta:hover {
  background: var(--color-accent-hover);
}

/* Mobile-only nav links (hidden on desktop) */
.nav__link--mobile-only,
.nav__link--mobile-cta {
  display: none;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: transform var(--transition), opacity var(--transition);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-size: 1.1rem;
  transition: all var(--transition);
}
.btn--primary {
  background: var(--color-accent);
  color: #fff;
}
.btn--primary:hover {
  background: var(--color-accent-hover);
  transform: scale(1.02);
}
.btn--secondary {
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  background: transparent;
}
.btn--secondary:hover {
  background: rgba(99, 102, 241, 0.1);
  transform: scale(1.02);
}
.btn--ghost {
  border: 1px solid var(--color-border-hover);
  color: var(--color-text);
  box-shadow: var(--shadow-inset);
}
.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  position: relative;
  overflow: hidden;
}
/* ── Laser Sweeps ── */
.laser-sweep {
  position: absolute;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/* Horizontal sweeps */
.laser-sweep--h1,
.laser-sweep--h2,
.laser-sweep--h3 {
  left: 0;
  width: 100%;
  height: 1px;
}
.laser-sweep--h1 { top: calc(50% + 1rem - 260px); }
.laser-sweep--h2 { top: calc(50% + 1rem); }
.laser-sweep--h3 { top: calc(50% + 1rem + 306px); }

/* Vertical sweeps */
.laser-sweep--v1,
.laser-sweep--v2,
.laser-sweep--v3 {
  top: 0;
  width: 1px;
  height: 100%;
}
.laser-sweep--v1 { left: calc(50% - 360px); }
.laser-sweep--v2 { left: 50%; }
.laser-sweep--v3 { left: calc(50% + 360px); }

/* Horizontal beam styles */
.laser-sweep--h1 .laser-sweep__beam,
.laser-sweep--h2 .laser-sweep__beam,
.laser-sweep--h3 .laser-sweep__beam {
  position: absolute;
  height: 100%;
  width: 25%;
}
.laser-sweep--h1 .laser-sweep__beam--teal { animation: sweep-lr 7s linear infinite; }
.laser-sweep--h2 .laser-sweep__beam--white { animation: sweep-rl 9s linear infinite; }
.laser-sweep--h3 .laser-sweep__beam--teal { animation: sweep-lr 11s linear infinite; }

/* Vertical beam styles */
.laser-sweep--v1 .laser-sweep__beam,
.laser-sweep--v2 .laser-sweep__beam,
.laser-sweep--v3 .laser-sweep__beam {
  position: absolute;
  width: 100%;
  height: 25%;
}
.laser-sweep--v1 .laser-sweep__beam--white { animation: sweep-down 8s linear infinite; }
.laser-sweep--v2 .laser-sweep__beam--teal { animation: sweep-up 10s linear infinite; }
.laser-sweep--v3 .laser-sweep__beam--white { animation: sweep-down 12s linear infinite; }

/* Beam colors */
.laser-sweep__beam--teal {
  background: linear-gradient(to right, transparent, rgba(99, 102, 241, 0.6), transparent);
  box-shadow: 0 0 12px rgba(99, 102, 241, 0.5);
}
.laser-sweep__beam--white {
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}
/* Vertical beams need vertical gradients */
.laser-sweep--v1 .laser-sweep__beam--white,
.laser-sweep--v2 .laser-sweep__beam--teal,
.laser-sweep--v3 .laser-sweep__beam--white {
  background: none;
}
.laser-sweep--v1 .laser-sweep__beam--white {
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.4), transparent);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}
.laser-sweep--v2 .laser-sweep__beam--teal {
  background: linear-gradient(to bottom, transparent, rgba(99, 102, 241, 0.6), transparent);
  box-shadow: 0 0 12px rgba(99, 102, 241, 0.5);
}
.laser-sweep--v3 .laser-sweep__beam--white {
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.4), transparent);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

@keyframes sweep-lr {
  0% { left: -25%; }
  100% { left: 100%; }
}
@keyframes sweep-rl {
  0% { left: 100%; }
  100% { left: -25%; }
}
@keyframes sweep-down {
  0% { top: -25%; }
  100% { top: 100%; }
}
@keyframes sweep-up {
  0% { top: 100%; }
  100% { top: -25%; }
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero__content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 5rem 2.5rem;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-inset);
  background: rgba(9, 9, 11, 0.6);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}
/* Laser-reactive border shine — JS-driven via requestAnimationFrame */
.hero__shine {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  pointer-events: none;
  z-index: 1;
}
.hero__shine-spot {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
}
/* Horizontal spots (on top/bottom edges) */
.hero__shine-spot--h {
  height: 3px;
  width: 200px;
  transform: translateX(-50%);
}
.hero__shine-spot--h.spot--teal {
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.9), transparent);
  box-shadow: 0 0 15px 3px rgba(99, 102, 241, 0.5), 0 0 30px 6px rgba(99, 102, 241, 0.2);
}
.hero__shine-spot--h.spot--white {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  box-shadow: 0 0 15px 3px rgba(255, 255, 255, 0.4), 0 0 30px 6px rgba(255, 255, 255, 0.15);
}
/* Vertical spots (on left/right edges) */
.hero__shine-spot--v {
  width: 3px;
  height: 200px;
  transform: translateY(-50%);
}
.hero__shine-spot--v.spot--teal {
  background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.9), transparent);
  box-shadow: 0 0 15px 3px rgba(99, 102, 241, 0.5), 0 0 30px 6px rgba(99, 102, 241, 0.2);
}
.hero__shine-spot--v.spot--white {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  box-shadow: 0 0 15px 3px rgba(255, 255, 255, 0.4), 0 0 30px 6px rgba(255, 255, 255, 0.15);
}
/* Bottom and left edges — thinner, subtler */
.hero__shine-spot.spot--bottom {
  height: 1px;
  box-shadow: 0 0 8px 2px rgba(99, 102, 241, 0.35), 0 0 16px 3px rgba(99, 102, 241, 0.12);
}
.hero__shine-spot.spot--left {
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.5), transparent) !important;
  box-shadow: 0 0 12px 4px rgba(255, 255, 255, 0.2), 0 0 25px 8px rgba(255, 255, 255, 0.08);
}
.hero__title {
  font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
  font-weight: 900;
  color: var(--color-text);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.hero__title--accent {
  color: var(--color-accent);
  display: block;
}
.hero__subtitle {
  font-size: clamp(1.15rem, 1.5vw + 0.5rem, 1.5rem);
  color: var(--color-text-body);
  margin-bottom: 0.75rem;
}
.hero__note {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Section Title ── */
.section-title {
  font-size: clamp(2rem, 3vw + 0.5rem, 3rem);
  font-weight: 900;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 3.5rem;
  letter-spacing: -0.02em;
}

/* ── Cards ── */
.card {
  padding: 2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-inset);
  background: var(--color-surface);
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.card:hover {
  border-color: var(--color-border-hover);
  transform: scale(1.02);
}
.card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border-hover);
  border-radius: var(--radius);
  color: var(--color-accent);
  margin: 0 auto 1.25rem;
}
.card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}
.card__text {
  color: var(--color-text-body);
  font-size: 0.95rem;
}

/* ── Features Grid ── */
.features {
  padding: 6rem 0;
}
.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.features__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.pill {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  padding: 0.4rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.03);
}

/* ── Section Subtitle ── */
.section-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  margin-top: -2.5rem;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

/* ── Demos ── */
.demos {
  padding: 6rem 0;
  background: var(--color-surface);
}
.demos__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* ── Demo Card ── */
.demo-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-inset);
  overflow: hidden;
  background: var(--color-bg);
  transition: border-color var(--transition), transform var(--transition);
}
.demo-card:hover {
  border-color: var(--color-border-hover);
  transform: scale(1.02);
}
.demo-card__preview {
  aspect-ratio: 16 / 10;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.demo-card__preview img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px) brightness(0.7);
  transition: filter var(--transition);
}
.demo-card:hover .demo-card__preview img {
  filter: blur(0.5px) brightness(0.85);
}
.demo-card__label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text);
  padding: 0.35rem 1rem;
  border: 1px solid var(--color-border-hover);
  border-radius: var(--radius);
  background: rgba(9, 9, 11, 0.6);
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 1;
}
.demo-card__body {
  padding: 1.5rem;
  text-align: center;
}
.demo-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.35rem;
}
.demo-card__text {
  color: var(--color-text-body);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}
.demo-card__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Small Button Variant ── */
.btn--small {
  font-size: 0.85rem;
  padding: 0.5rem 1.15rem;
}

/* ── How It Works ── */
.how-it-works {
  padding: 6rem 0;
}
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.step {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 0 1.5rem;
}
.step__number {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-accent);
}
.step__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}
.step__text {
  color: var(--color-text-body);
  font-size: 0.95rem;
}
.steps__line {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: var(--color-border-hover);
  margin-top: 23px;
}

/* ── Pricing ── */
.pricing {
  padding: 6rem 0;
}
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 820px;
  margin: 0 auto;
}
.pricing__card {
  position: relative;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-inset);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pricing__card--pro {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-inset), 0 0 40px rgba(99, 102, 241, 0.1);
}
.pricing__tier {
  text-align: center;
  padding: 0.75rem 0 0;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
}
.pricing__top {
  text-align: center;
  padding: 1.5rem 1.5rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
}
.pricing__plans {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1.5rem;
}
.pricing__plan {
  text-align: center;
}
.pricing__plan--yearly {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.pricing__divider {
  width: 1px;
  height: 2.5rem;
  background: var(--color-border-hover);
  flex-shrink: 0;
}
.pricing__price {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--color-text);
  line-height: 1;
}
.pricing__unit {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
}
.pricing__save {
  white-space: nowrap;
  background: rgba(99, 102, 241, 0.15);
  color: var(--color-accent-hover);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
}
.pricing__persite {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 0.75rem;
}
.pricing__features {
  list-style: none;
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  flex: 1;
}
.pricing__features li {
  padding: 0.35rem 0;
  font-size: 0.88rem;
  color: var(--color-text-body);
}
.pricing__features li::before {
  content: "\2713";
  margin-right: 0.5rem;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.8rem;
}
.pricing__bottom {
  text-align: center;
  padding: 1.5rem;
  border-top: 1px solid var(--color-border);
}
.pricing__btn {
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
}
.pricing__footnote {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 1.5rem;
}
@media (max-width: 700px) {
  .pricing__grid {
    grid-template-columns: 1fr;
  }
  .pricing__plans {
    gap: 1.25rem;
  }
  .pricing__price {
    font-size: 2rem;
  }
}

/* ── Subscribe ── */
.subscribe {
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid var(--color-border);
}
.subscribe__text {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin: 8px 0 28px;
}
.subscribe__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 520px;
  margin: 0 auto;
}
.subscribe__row {
  display: flex;
  gap: 10px;
  width: 100%;
}
.subscribe__input {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-text);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.subscribe__input:focus {
  border-color: var(--color-accent);
}
.subscribe__input::placeholder {
  color: var(--color-text-muted);
}
.subscribe__btn {
  white-space: nowrap;
}
.subscribe__status {
  margin-top: 12px;
  font-size: 0.875rem;
  min-height: 20px;
}
.subscribe__status--ok {
  color: #22c55e;
}
.subscribe__status--error {
  color: #fca5a5;
}
@media (max-width: 600px) {
  .subscribe__row {
    flex-direction: column;
    gap: 12px;
  }
  .subscribe__input {
    width: 100%;
    min-width: 0;
  }
  .subscribe__btn {
    width: 100%;
    padding: 14px 16px;
  }
}

/* ── Footer ── */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--color-border);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer__brand {
  text-align: left;
}
.footer__copyright {
  color: var(--color-text-body);
  font-size: 0.95rem;
}
.footer__copyright strong {
  color: var(--color-accent);
}
.footer__tagline {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}
.footer__social {
  display: flex;
  gap: 1rem;
}
.footer__social-link {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--color-border-hover);
  color: var(--color-text);
  box-shadow: var(--shadow-inset);
  transition: all var(--transition);
}
.footer__social-link:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  transform: scale(1.08);
}
.footer__legal {
  display: flex;
  gap: 1.5rem;
}
.footer__legal a {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  transition: color var(--transition);
}
.footer__legal a:hover {
  color: var(--color-text);
}

/* ── Responsive: Tablet (768px+) ── */
@media (min-width: 768px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .demos__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav__pill {
    gap: 0.75rem;
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
  }
  .nav__actions {
    gap: 0.75rem;
  }
  .nav__cta {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}

/* ── Responsive: Desktop (1024px+) ── */
@media (min-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .demos__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .nav__pill {
    gap: 1.5rem;
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
  }
  .nav__actions {
    gap: 1.5rem;
  }
  .nav__cta {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* ── Responsive: Small phones (iPhone 12 Pro and below) ── */
@media (max-width: 430px) {
  .hero {
    padding-top: 7rem;
  }
}
/* ── Responsive: Smallest screens (iPhone SE etc) ── */
@media (max-width: 390px) {
  .hero {
    min-height: auto;
    padding-top: 7rem;
    padding-bottom: 2rem;
  }
  .hero__content {
    min-height: auto;
    padding: 2.5rem 1.5rem;
  }
  .hero__title {
    font-size: 2rem;
  }
  .hero__subtitle {
    font-size: 1rem;
  }
  .hero__actions {
    flex-direction: column;
  }
  .btn {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }
}

/* ── Responsive: Mobile Nav (below 768px) ── */
@media (max-width: 767px) {
  .nav__pill {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(9, 9, 11, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
    padding: 1rem 1.5rem;
    gap: 0.5rem;
  }
  .nav__pill--open {
    display: flex;
  }
  .nav__link {
    padding: 0.75rem 0;
    font-size: 1.1rem;
  }
  .nav__actions {
    display: none;
  }
  .nav__hamburger {
    display: flex;
  }
  .nav__link--mobile-only,
  .nav__link--mobile-cta {
    display: block;
  }
  .nav__link--mobile-cta {
    color: var(--color-accent);
    font-weight: 600;
  }

  /* Steps stack vertically on mobile */
  .steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .steps__line {
    width: 2px;
    height: 40px;
    margin: 0;
  }
  .step {
    max-width: 100%;
  }

  /* Footer stacks on mobile */
  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
  .footer__brand {
    text-align: center;
  }
  .footer__legal {
    justify-content: center;
  }
}

/* ── Legal Pages ── */
.legal-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(9, 9, 11, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}
.legal-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.legal-nav__logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.legal-nav__back {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.legal-nav__back:hover {
  color: var(--color-text);
}
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}
.legal-page__header {
  text-align: center;
  margin-bottom: 3rem;
}
.legal-page__title {
  font-size: clamp(2rem, 4vw + 0.5rem, 3rem);
  font-weight: 900;
  color: var(--color-text);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.legal-page__date {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}
.legal-page__intro {
  font-size: 1.05rem;
  color: var(--color-text-body);
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.legal-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-inset);
  background: var(--color-surface);
  padding: 2.5rem;
}
.legal-card section {
  padding: 2rem 0;
  border-bottom: 1px solid var(--color-border);
}
.legal-card section:first-child {
  padding-top: 0;
}
.legal-card section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.legal-card h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
}
.legal-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}
.legal-card p {
  color: var(--color-text-body);
  margin-top: 0.75rem;
  line-height: 1.7;
}
.legal-card ul {
  margin-top: 0.75rem;
  padding-left: 1.5rem;
  color: var(--color-text-body);
  line-height: 1.7;
}
.legal-card li {
  margin-bottom: 0.4rem;
}
.legal-card a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.legal-card a:hover {
  color: var(--color-accent-hover);
}
.legal-footer {
  padding: 3rem 0;
  border-top: 1px solid var(--color-border);
}
.legal-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.legal-footer__copyright {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
.legal-footer__links {
  display: flex;
  gap: 1.5rem;
}
.legal-footer__links a {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  transition: color var(--transition);
}
.legal-footer__links a:hover {
  color: var(--color-text);
}
.legal-footer__links a[aria-current="page"] {
  color: var(--color-text);
  font-weight: 600;
}
@media (max-width: 767px) {
  .legal-card {
    padding: 1.5rem;
  }
  .legal-footer__inner {
    flex-direction: column;
    text-align: center;
  }
  .legal-footer__links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
