/* ============================================
   Miguelito — Premium Landing Page Styles
   ============================================ */

:root {
  --bg-primary: #161c28;
  --bg-secondary: #1c2330;
  --bg-card: rgba(28, 33, 48, 0.75);
  --bg-card-hover: rgba(34, 40, 56, 0.85);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-glow: rgba(59, 130, 246, 0.35);
  --text-primary: #f0f2f5;
  --text-secondary: rgba(240, 242, 245, 0.65);
  --text-muted: rgba(240, 242, 245, 0.4);
  --accent-blue: #3b82f6;
  --accent-violet: #8b5cf6;
  --accent-cyan: #06b6d4;
  --accent-green: #10b981;
  --accent-gold: #d4a853;
  --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #06b6d4 100%);
  --gradient-text: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #22d3ee 100%);
  --shadow-glow: 0 0 60px rgba(59, 130, 246, 0.15);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --nav-height: 88px;
  --section-pad: clamp(80px, 12vw, 140px);
  --container: min(1200px, calc(100% - 48px));
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

@media (pointer: fine) {
  body { cursor: none; }
}

@media (pointer: coarse) {
  .cursor, .cursor-dot { display: none !important; }
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

/* ---- Background ---- */
.bg-gradient {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 50% 90%, rgba(6, 182, 212, 0.08) 0%, transparent 50%),
    var(--bg-primary);
  animation: bgShift 20s ease-in-out infinite alternate;
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

@keyframes bgShift {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(15deg); }
}

/* ---- Custom Cursor ---- */
.cursor {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(59, 130, 246, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, border-color 0.2s, background 0.2s;
  mix-blend-mode: difference;
}

.cursor--hover {
  width: 56px;
  height: 56px;
  border-color: rgba(139, 92, 246, 0.8);
  background: rgba(59, 130, 246, 0.08);
}

.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--accent-cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px var(--accent-cyan);
}

/* ---- Loader ---- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.loader__logo {
  width: min(220px, 72vw);
  animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader__logo img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 24px rgba(59, 130, 246, 0.35));
}

.loader__bar {
  width: 160px;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
}

.loader__progress {
  height: 100%;
  width: 0%;
  background: var(--gradient-primary);
  border-radius: 3px;
  animation: loaderProgress 1.8s ease forwards;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes loaderProgress {
  to { width: 100%; }
}

/* ---- Typography ---- */
.eyebrow {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent-cyan);
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.origin-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

.origin-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f97316 0%, #22c55e 50%, #ffffff 100%);
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
  flex-shrink: 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
}

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section__lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 640px;
  margin-top: 1.25rem;
}

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

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

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 24px rgba(59, 130, 246, 0.35);
  position: relative;
  overflow: hidden;
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.45);
}

.btn--primary:hover::before { opacity: 1; }

.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--sm { padding: 10px 18px; font-size: 0.875rem; }
.btn--full { width: 100%; }

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(22, 28, 40, 0.9);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border-subtle);
}

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

.nav__brand {
  display: flex;
  align-items: center;
  transition: opacity var(--transition), transform var(--transition);
}

.nav__brand:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.nav__logo {
  height: 68px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(59, 130, 246, 0.25));
}

@media (max-width: 899px) {
  .nav__logo {
    height: 56px;
  }
}

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

.nav__links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-cyan);
  transition: width var(--transition);
}

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

.nav__links a:hover::after { width: 100%; }

.nav__cta { display: none; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(22, 28, 40, 0.96);
  backdrop-filter: blur(20px);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid var(--border-subtle);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.nav__mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav__mobile a {
  font-size: 1rem;
  color: var(--text-secondary);
  padding: 8px 0;
  transition: color var(--transition);
}

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

@media (min-width: 900px) {
  .nav__cta { display: inline-flex; }
}

@media (max-width: 899px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__mobile { display: flex; }
}

/* ---- Hero ---- */
.hero {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 60px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__title {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  margin-bottom: 1.25rem;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero__actions { margin-bottom: 1.25rem; }

.hero__trust {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero__visual {
  position: relative;
}

.hero__glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 60%);
  z-index: -1;
  animation: glowPulse 4s ease-in-out infinite;
}

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

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 80px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.stat-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.stat-card__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.stat-card__label {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero__visual { order: -1; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
}

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

/* ---- Dashboard Mockup ---- */
.dashboard {
  background: rgba(26, 32, 44, 0.94);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  backdrop-filter: blur(20px);
  transition: transform 0.1s ease-out, box-shadow var(--transition);
}

.dashboard:hover {
  box-shadow: var(--shadow-card), 0 0 80px rgba(59, 130, 246, 0.2);
}

.dashboard__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--border-subtle);
}

.dashboard__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dashboard__dot--red { background: #ff5f57; }
.dashboard__dot--yellow { background: #febc2e; }
.dashboard__dot--green { background: #28c840; }

.dashboard__url {
  margin-left: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: 'SF Mono', 'Fira Code', monospace;
}

.dashboard__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.dashboard__avatar-img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center 12%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-subtle);
}

.dashboard__header strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.status__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  animation: statusPulse 2s ease infinite;
}

.status--working .status__dot { background: var(--accent-blue); }

@keyframes statusPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Chat */
.chat {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 280px;
  overflow-y: auto;
}

.chat__msg {
  max-width: 88%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  line-height: 1.5;
  animation: chatFadeIn 0.5s ease backwards;
}

.chat__msg--user {
  align-self: flex-end;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.2);
  animation-delay: 0.3s;
}

.chat__msg--ai {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  animation-delay: 0.6s;
}

.chat__msg:nth-child(3) { animation-delay: 0.9s; }

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

.chat__input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 16px 16px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.chat__send {
  color: var(--accent-blue);
  padding: 4px;
  transition: color var(--transition);
}

.chat__send:hover { color: var(--accent-cyan); }

/* Console */
.dashboard--console { margin-top: 48px; }

.console-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.console-metric {
  background: rgba(0, 0, 0, 0.2);
  padding: 16px;
  text-align: center;
}

.console-metric__val {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

.console-metric__lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.task-list { padding: 8px 0; }

.task-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition);
}

.task-item:last-child { border-bottom: none; }
.task-item:hover { background: rgba(255, 255, 255, 0.02); }

.task-item__info strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.task-item__info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.task-item__status {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.progress-bar {
  width: 60px;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar__fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 4px;
  animation: progressGrow 1.5s ease forwards;
}

@keyframes progressGrow {
  from { width: 0 !important; }
}

.badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.badge--live {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-green);
  animation: badgePulse 1.5s ease infinite;
}

.badge--ready { background: rgba(59, 130, 246, 0.15); color: var(--accent-blue); }
.badge--done { background: rgba(255, 255, 255, 0.06); color: var(--text-muted); }
.badge--queued { background: rgba(212, 168, 83, 0.15); color: var(--accent-gold); }

@keyframes badgePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ---- Sections ---- */
.section {
  padding-block: var(--section-pad);
  position: relative;
}

.section__header { margin-bottom: 56px; }

/* Problem */
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.problem__copy p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.problem__copy strong { color: var(--text-primary); }

.cost-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(16px);
  transition: var(--transition);
}

.cost-card:hover {
  border-color: rgba(239, 68, 68, 0.3);
  box-shadow: 0 0 40px rgba(239, 68, 68, 0.08);
}

.cost-card h3 {
  font-size: 1.125rem;
  margin-bottom: 24px;
  color: var(--text-secondary);
}

.cost-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.9rem;
}

.cost-list li span:last-child {
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

.cost-list__total {
  border-bottom: none !important;
  padding-top: 16px !important;
  margin-top: 8px;
  border-top: 1px solid var(--border-subtle) !important;
  font-weight: 700;
  font-family: var(--font-display);
}

.cost-list__total span:last-child {
  color: #ef4444;
  font-size: 1.1rem;
}

.cost-card__tax {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.5;
}

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

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-md);
  color: var(--accent-blue);
  margin-bottom: 20px;
  transition: var(--transition);
}

.feature-card:hover .feature-card__icon {
  background: rgba(59, 130, 246, 0.2);
  color: var(--accent-cyan);
}

.feature-card h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

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

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

/* Versus */
.versus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.versus-col {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.versus-col:hover { transform: translateY(-4px); }

.versus-col h3 {
  font-size: 1rem;
  margin-bottom: 24px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.versus-col li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
}

.versus-col li::before {
  content: '×';
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: 700;
}

.versus-col--win {
  border-color: var(--border-glow);
  background: rgba(59, 130, 246, 0.05);
}

.versus-col--win h3 { color: var(--accent-cyan); }

.versus-col--win li::before {
  content: '✓';
  color: var(--accent-green);
}

.activity-feed {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  backdrop-filter: blur(12px);
}

.activity-feed h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-green);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.activity-feed h4::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: statusPulse 2s ease infinite;
}

.activity-feed__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.activity-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  animation: activitySlide 0.5s ease backwards;
}

.activity-item:nth-child(1) { animation-delay: 0.1s; }
.activity-item:nth-child(2) { animation-delay: 0.2s; }
.activity-item:nth-child(3) { animation-delay: 0.3s; }
.activity-item:nth-child(4) { animation-delay: 0.4s; }
.activity-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes activitySlide {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: translateX(0); }
}

.activity-item__type { font-weight: 500; }
.activity-item__time { color: var(--text-muted); font-size: 0.8rem; }

@media (max-width: 768px) {
  .versus-grid { grid-template-columns: 1fr; }
  .activity-item { flex-direction: column; align-items: flex-start; gap: 4px; }
}

/* Comparison Table */
.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  backdrop-filter: blur(12px);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  min-width: 700px;
}

.compare-table th,
.compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}

.compare-table th {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.2);
}

.compare-table td:first-child {
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
}

.compare-table td:not(:first-child) {
  color: var(--text-muted);
}

.compare-table__highlight {
  background: rgba(59, 130, 246, 0.08) !important;
  color: var(--text-primary) !important;
  font-weight: 500 !important;
  position: relative;
}

.compare-table thead .compare-table__highlight {
  color: var(--accent-cyan) !important;
  font-weight: 700 !important;
}

.compare-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.compare-table tr:hover .compare-table__highlight {
  background: rgba(59, 130, 246, 0.12) !important;
}

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

.timeline-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(12px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.timeline-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition);
}

.timeline-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.timeline-card:hover::before { opacity: 1; }

.timeline-card__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.timeline-card h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}

.timeline-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

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

/* Founder */
.founder-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: center;
}

.founder-card__visual {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: radial-gradient(circle at 50% 30%, rgba(59, 130, 246, 0.12), rgba(22, 28, 40, 0.95) 70%);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.founder-card__logo {
  width: 85%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 32px rgba(139, 92, 246, 0.25));
}

.founder-card__badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

.founder__content h2 { margin-bottom: 24px; }

.founder__content p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.founder__content blockquote {
  margin: 28px 0;
  padding: 24px 28px;
  border-left: 3px solid var(--accent-violet);
  background: rgba(139, 92, 246, 0.08);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.founder__content blockquote p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0;
  font-style: italic;
}

@media (max-width: 900px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .founder-card__visual { max-width: 280px; margin-inline: auto; }
}

/* Audience */
.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}

.audience-tags span {
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: var(--transition);
  cursor: default;
}

.audience-tags span:hover {
  border-color: var(--border-glow);
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.15);
}

.audience-bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 800px;
  margin-inline: auto;
}

.audience-bullets li {
  padding: 16px 20px 16px 44px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--text-secondary);
  position: relative;
  transition: var(--transition);
}

.audience-bullets li::before {
  content: '→';
  position: absolute;
  left: 18px;
  color: var(--accent-cyan);
  font-weight: 700;
}

.audience-bullets li:hover {
  border-color: var(--border-glow);
  transform: translateX(4px);
}

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

/* Waitlist */
.waitlist-card {
  max-width: 720px;
  margin-inline: auto;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 56px);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.waitlist-card__header {
  text-align: center;
  margin-bottom: 40px;
}

.waitlist-card__header h2 { margin-bottom: 12px; }
.waitlist-card__header p { color: var(--text-secondary); }

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-group input,
.form-group select {
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.form-group input.error,
.form-group select.error {
  border-color: #ef4444;
}

.form-error {
  font-size: 0.75rem;
  color: #ef4444;
  min-height: 1em;
}

.form-compliance {
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: center;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success__icon {
  color: var(--accent-green);
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.form-success h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.form-success p { color: var(--text-secondary); }

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

/* Promises */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.promise-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.promise-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
}

.promise-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.promise-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

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

/* FAQ */
.faq-list {
  max-width: 760px;
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.faq-item summary {
  padding: 24px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--accent-blue);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover { color: var(--accent-cyan); }

.faq-item p {
  padding-bottom: 24px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Final CTA */
.final-cta {
  text-align: center;
  padding: clamp(48px, 8vw, 80px);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta h2 { margin-bottom: 16px; position: relative; }

.final-cta p {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
  position: relative;
}

.final-cta .btn { position: relative; }

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

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__brand-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__logo {
  width: 88px;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
}

.footer__brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 520px;
}

.footer__brand a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__brand a:hover {
  color: var(--text-primary);
  text-decoration: underline;
}

.footer__origin {
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.85;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

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

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal--delay { transition-delay: 0.15s; }

/* ---- Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ---- Legal Pages ---- */
body.legal-page {
  cursor: auto;
}

body.legal-page .cursor,
body.legal-page .cursor-dot {
  display: none !important;
}

.legal-main {
  padding-top: calc(var(--nav-height) + 48px);
  padding-bottom: var(--section-pad);
  min-height: 100vh;
}

.legal-content {
  max-width: 760px;
  margin-inline: auto;
}

.legal-content h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 0.5rem;
}

.legal-content__meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.legal-content h2 {
  font-size: 1.25rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  font-size: 1.05rem;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

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

.legal-content ul,
.legal-content ol {
  margin: 0 0 1.25rem 1.25rem;
  padding-left: 0.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.legal-content ol li {
  list-style: decimal;
}

.legal-content a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: color var(--transition);
}

.legal-content a:hover {
  color: var(--text-primary);
  text-decoration: underline;
}

.legal-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

.legal-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.legal-nav-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.legal-nav-links a:hover {
  color: var(--accent-cyan);
}

.nav--legal .nav__links a[aria-current="page"] {
  color: var(--accent-cyan);
}
