/* StreamFlow — Enterprise marketing site (Aura design system) */

:root {
  --bg: #09090f;
  --surface: #111119;
  --surface-raised: #18181f;
  --surface-high: #222230;
  --border: rgba(255, 255, 255, 0.08);
  --accent: #6366f1;
  --accent-soft: #818cf8;
  --accent-glow: rgba(99, 102, 241, 0.35);
  --text: #ffffff;
  --text-secondary: #adb5c7;
  --text-muted: #5a6174;
  --live: #ef4444;
  --success: #10b981;
  --gold: #f59e0b;
  --radius: 16px;
  --radius-lg: 24px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --max: 1200px;
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--accent-soft); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--text); }

img { max-width: 100%; display: block; }

.container {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

/* ── Ambient background ── */
.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.ambient__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.45;
  animation: float 18s ease-in-out infinite;
}

.ambient__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #6366f1 0%, transparent 70%);
  top: -200px; left: -100px;
}

.ambient__orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #4f46e5 0%, transparent 70%);
  bottom: -150px; right: -80px;
  animation-delay: -6s;
}

.ambient__orb--3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #818cf8 0%, transparent 70%);
  top: 40%; left: 50%;
  animation-delay: -12s;
  opacity: 0.25;
}

.ambient__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black, transparent);
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}

.nav--scrolled {
  background: rgba(9, 9, 15, 0.85);
  backdrop-filter: blur(20px);
  border-color: var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.nav__logo {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  display: grid;
  place-items: center;
  box-shadow: 0 0 24px var(--accent-glow);
}

.nav__logo svg { width: 20px; height: 20px; fill: white; }

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

.nav__links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

.nav__links a:hover { color: var(--text); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--accent);
  color: white !important;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: 0 4px 24px var(--accent-glow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 32px var(--accent-glow);
  color: white !important;
}

.nav__menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
}

/* ── Hero ── */
.hero {
  padding: calc(var(--nav-h) + 80px) 0 100px;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-soft);
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}

.hero__badge-dot {
  width: 8px; height: 8px;
  background: var(--live);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  max-width: 900px;
  margin: 0 auto 24px;
  animation: fadeUp 0.8s 0.1s ease both;
}

.hero__title span {
  background: linear-gradient(135deg, #fff 30%, var(--accent-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 40px;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 64px;
  animation: fadeUp 0.8s 0.3s ease both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn--primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 24px var(--accent-glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}

.btn--ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* Hero mockup */
.hero__mockup {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  animation: fadeUp 1s 0.4s ease both;
}

.mockup-frame {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 40px 80px -20px rgba(0,0,0,0.6),
    0 0 120px var(--accent-glow);
}

.mockup-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: var(--surface-raised);
  border-bottom: 1px solid var(--border);
}

.mockup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--surface-high);
}

.mockup-dot--r { background: #ef4444; }
.mockup-dot--y { background: #f59e0b; }
.mockup-dot--g { background: #10b981; }

.mockup-body {
  display: grid;
  grid-template-columns: 72px 1fr;
  min-height: 420px;
}

.mockup-rail {
  background: var(--surface);
  border-right: 1px solid var(--border);
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.mockup-rail-item {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--surface-raised);
  opacity: 0.6;
}

.mockup-rail-item--active {
  background: rgba(99,102,241,0.2);
  border: 1px solid rgba(99,102,241,0.4);
  opacity: 1;
}

.mockup-content { padding: 24px; }

.mockup-hero-bar {
  height: 180px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #1a1a2e, #0f3460);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.mockup-hero-bar::after {
  content: "LIVE NOW";
  position: absolute;
  bottom: 16px; left: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--live);
}

.mockup-row-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mockup-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.mockup-card {
  aspect-ratio: 16/10;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--surface-raised), var(--surface-high));
  border: 1px solid var(--border);
  animation: shimmer 3s ease-in-out infinite;
}

.mockup-card:nth-child(2) { animation-delay: 0.2s; }
.mockup-card:nth-child(3) { animation-delay: 0.4s; }
.mockup-card:nth-child(4) { animation-delay: 0.6s; }

@keyframes shimmer {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Stats ── */
.stats {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(17, 17, 25, 0.5);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat__value {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff, var(--accent-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat__label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ── Sections ── */
.section {
  padding: 100px 0;
}

.section__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 12px;
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section__desc {
  color: var(--text-secondary);
  max-width: 560px;
  font-size: 1.05rem;
}

.section__header {
  margin-bottom: 56px;
}

.section__header--center {
  text-align: center;
}

.section__header--center .section__desc {
  margin-inline: auto;
}

/* Feature cards */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .features__grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-glow-color, rgba(99, 102, 241, 0.3));
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.5), 0 0 20px -4px var(--card-glow-color-soft, rgba(99, 102, 241, 0.1));
}

.feature-card__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 10%, var(--card-glow-color-soft, rgba(99, 102, 241, 0.08)), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 1;
}

.feature-card:hover .feature-card__glow {
  opacity: 1;
}

.feature-card__icon {
  position: relative;
  z-index: 2;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--card-icon-bg, rgba(99, 102, 241, 0.12));
  border: 1px solid var(--card-icon-border, rgba(99, 102, 241, 0.2));
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  transition: transform 0.3s;
}

.feature-card:hover .feature-card__icon {
  transform: scale(1.05) rotate(2deg);
}

.feature-card__icon svg {
  width: 28px;
  height: 28px;
  display: block;
}

.feature-card__title {
  position: relative;
  z-index: 2;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card__text {
  position: relative;
  z-index: 2;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Platforms Grid and Cards */
.platforms__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .platforms__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .platforms__grid {
    grid-template-columns: 1fr;
  }
}

.platform-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  cursor: default;
}

.platform-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-glow-color, rgba(99, 102, 241, 0.4));
  box-shadow: 0 16px 32px -8px rgba(0, 0, 0, 0.5), 0 0 20px -4px var(--brand-glow-color-soft, rgba(99, 102, 241, 0.15));
}

.platform-card__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 50%, var(--brand-glow-color-soft, rgba(99, 102, 241, 0.12)), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 1;
}

.platform-card:hover .platform-card__glow {
  opacity: 1;
}

.platform-card__icon-wrap {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--brand-icon-bg, rgba(99, 102, 241, 0.1));
  border: 1px solid var(--brand-icon-border, rgba(99, 102, 241, 0.2));
  display: grid;
  place-items: center;
  transition: transform 0.3s;
}

.platform-card:hover .platform-card__icon-wrap {
  transform: scale(1.05);
}

.platform-card__icon {
  width: 28px;
  height: 28px;
  display: block;
}

.platform-card__info {
  position: relative;
  z-index: 2;
}

.platform-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}

.platform-card__subtitle {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* CTA */
.cta {
  padding: 80px 0;
}

.cta__box {
  background: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(79,70,229,0.08));
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta__box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--accent-glow), transparent 60%);
  pointer-events: none;
}

.cta__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
}

.cta__text {
  color: var(--text-secondary);
  margin-bottom: 32px;
  position: relative;
}

.cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* Store download badges */
.download-group__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 28px 0 14px;
  position: relative;
}

.download-group__label:first-of-type {
  margin-top: 8px;
}

.store-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  position: relative;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
  padding: 12px 18px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff !important;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.store-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  color: #fff !important;
}

.store-badge__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.store-badge__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}

.store-badge__text small {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.78;
  text-transform: uppercase;
}

.store-badge__text strong {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.store-badge--play:hover { border-color: rgba(52, 211, 153, 0.5); }
.store-badge--apple:hover,
.store-badge--appletv:hover { border-color: rgba(147, 197, 253, 0.5); }
.store-badge--google-tv:hover,
.store-badge--android-tv:hover { border-color: rgba(96, 165, 250, 0.5); }
.store-badge--fire-tv:hover { border-color: rgba(251, 146, 60, 0.55); }
.store-badge--windows:hover { border-color: rgba(56, 189, 248, 0.5); }

.store-badge--play .store-badge__icon { color: #34d399; }
.store-badge--apple .store-badge__icon,
.store-badge--appletv .store-badge__icon { color: #93c5fd; }
.store-badge--google-tv .store-badge__icon,
.store-badge--android-tv .store-badge__icon { color: #60a5fa; }
.store-badge--fire-tv .store-badge__icon { color: #fb923c; }
.store-badge--windows .store-badge__icon { color: #38bdf8; }

@media (max-width: 600px) {
  .store-badge {
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
  }
}

/* Footer */
.footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--border);
}

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

.footer__brand p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 12px;
  max-width: 280px;
}

.footer__col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 10px; }
.footer__col a { color: var(--text-secondary); font-size: 0.875rem; }
.footer__col a:hover { color: var(--text); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Legal pages */
.legal {
  padding: calc(var(--nav-h) + 48px) 0 80px;
}

.legal__header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.legal__title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.legal__updated { color: var(--text-muted); font-size: 0.9rem; }

.legal section {
  margin-bottom: 36px;
}

.legal h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.legal p, .legal li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal ul { padding-left: 20px; margin-bottom: 16px; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__menu-btn { display: block; }

  .nav__links--open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(9,9,15,0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .features__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .mockup-cards { grid-template-columns: repeat(3, 1fr); }
  .mockup-body { min-height: 300px; }
}

@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero { padding-top: calc(var(--nav-h) + 48px); }
}

/* ---- Pricing ---- */
.pricing { padding: 90px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -0.02em; }
.section-sub { color: #9a9aad; font-size: 18px; margin-top: 12px; line-height: 1.6; }
.pricing__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
@media (max-width: 960px) { .pricing__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .pricing__grid { grid-template-columns: 1fr; } }
.plan {
  position: relative; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px; padding: 28px 24px; display: flex; flex-direction: column;
}
.plan--popular { border-color: #6366f1; box-shadow: 0 20px 60px rgba(99,102,241,0.25); }
.plan__tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: #6366f1; color: #fff; font-size: 12px; font-weight: 700;
  padding: 4px 12px; border-radius: 999px; white-space: nowrap;
}
.plan__name { font-size: 20px; font-weight: 700; }
.plan__devices { color: #9a9aad; font-size: 14px; margin-top: 2px; }
.plan__price { font-size: 18px; color: #9a9aad; margin: 16px 0 18px; }
.plan__price span { font-size: 40px; font-weight: 800; color: #fff; }
.plan__feats { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 10px; }
.plan__feats li { color: #c7c7d4; font-size: 15px; padding-left: 24px; position: relative; }
.plan__feats li::before { content: "✓"; position: absolute; left: 0; color: #6366f1; font-weight: 800; }
.plan__btn { margin-top: auto; justify-content: center; width: 100%; }
.pricing__note { text-align: center; color: #9a9aad; margin-top: 32px; font-size: 15px; }
.pricing__note a { color: #8b8bf5; }

/* ── Auth / Activate Screen ── */
.auth-container {
  padding: calc(var(--nav-h) + 60px) 0 80px;
  max-width: 500px;
  margin: 0 auto;
}

.auth-header {
  text-align: center;
  margin-bottom: 32px;
}

.auth-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.auth-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
}

.auth-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.auth-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: block;
}

.social-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.social-btn svg {
  width: 20px;
  height: 20px;
}

.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 24px 0;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--border);
}

.auth-divider:not(:empty)::before {
  margin-right: .75em;
}

.auth-divider:not(:empty)::after {
  margin-left: .75em;
}

.form-group {
  margin-bottom: 20px;
}

.form-input {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-soft);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.form-row .btn {
  flex: 1;
  justify-content: center;
}

.auth-error {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 12px;
  min-height: 20px;
  text-align: center;
}

.auth-info-list {
  padding-left: 20px;
  line-height: 1.8;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.auth-info-list li {
  margin-bottom: 12px;
}

.auth-info-list b {
  color: var(--text);
}

.device-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding: 16px 0;
}

.device-info {
  display: flex;
  flex-direction: column;
}

.device-name {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

.device-platform {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 2px;
}

.status-pill {
  display: inline-block;
  background: rgba(99, 102, 241, 0.15);
  color: var(--accent-soft);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Also customize SVG behavior inside .platform-pill */
.platform-pill .platform-pill__icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: color 0.2s;
  flex-shrink: 0;
}

.platform-pill:hover .platform-pill__icon {
  color: var(--text);
}

