/* ============================================================
   ORBIT BRANDS — Design System
   Premium dark space aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500&family=Playfair+Display:wght@700;800;900&display=swap');

/* ── CSS Variables ─────────────────────────────────────── */
:root {
  /* Colors */
  --color-void:       #030306;
  --color-bg:         #07070f;
  --color-surface:    #0d0d1a;
  --color-surface-2:  #121224;
  --color-border:     rgba(255,255,255,0.06);
  --color-border-hover: rgba(255,255,255,0.12);

  --color-text:       #f0ece4;
  --color-muted:      rgba(240,236,228,0.50);
  --color-subtle:     rgba(240,236,228,0.28);

  /* Accents */
  --gold:             #e8a020;
  --gold-dim:         rgba(232,160,32,0.15);
  --gold-glow:        rgba(232,160,32,0.25);
  --cyan:             #00d4ff;
  --cyan-dim:         rgba(0,212,255,0.10);

  /* Typography */
  --font-display:     'Space Grotesk', sans-serif;
  --font-body:        'Inter', sans-serif;
  --font-mono:        'JetBrains Mono', monospace;

  /* Spacing */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;
  --sp-32: 128px;

  /* Radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.5), 0 1px 2px rgba(0,0,0,0.4);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.6), 0 2px 6px rgba(0,0,0,0.4);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.7), 0 8px 20px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 24px rgba(232,160,32,0.20), 0 0 60px rgba(232,160,32,0.08);
  --shadow-cyan: 0 0 20px rgba(0,212,255,0.15);

  /* Transitions */
  --ease-out:    cubic-bezier(0.0, 0.0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast:  150ms var(--ease-in-out);
  --t-base:  250ms var(--ease-in-out);
  --t-slow:  400ms var(--ease-out);

  /* Layout */
  --container: 1200px;
  --nav-h: 72px;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::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.65;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  min-height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: rgba(232,160,32,0.30); border-radius: var(--r-full); }
::-webkit-scrollbar-thumb:hover { background: rgba(232,160,32,0.50); }

/* Selection */
::selection { background: var(--gold-dim); color: var(--gold); }

/* ── Grain Texture ─────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* Ambient mesh background */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 10%, rgba(232,160,32,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(0,212,255,0.03) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 50% 50%, rgba(232,160,32,0.02) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Typography ────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.10;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.125rem; font-weight: 600; }

p { color: var(--color-muted); line-height: 1.75; }

a { color: inherit; text-decoration: none; }

/* ── Layout Utilities ──────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

@media (max-width: 640px) {
  .container { padding: 0 var(--sp-4); }
}

.section {
  padding: var(--sp-32) 0;
  position: relative;
  z-index: 1;
}

.section--lg { padding: calc(var(--sp-32) * 1.5) 0; }

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-cyan { color: var(--cyan); }
.text-muted { color: var(--color-muted); }

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

.nav.scrolled {
  background: rgba(7,7,15,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-color: var(--color-border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--color-text);
  transition: opacity var(--t-fast);
}

.nav__logo:hover { opacity: 0.8; }

.nav__logo-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  list-style: none;
}

@media (max-width: 768px) {
  .nav__links { display: none; }
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-muted);
  transition: color var(--t-fast);
  letter-spacing: 0.01em;
}

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

.nav__cta {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

/* Mobile menu toggle */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--sp-2);
  background: none;
  border: none;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: var(--r-full);
  transition: all var(--t-base);
}

@media (max-width: 768px) {
  .nav__burger { display: flex; }
}

/* Mobile nav */
.nav__mobile {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(7,7,15,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  padding: var(--sp-6);
  display: none;
  flex-direction: column;
  gap: var(--sp-4);
  z-index: 999;
  transform: translateY(-105%);
  transition: transform var(--t-base);
}

@media (max-width: 768px) {
  .nav__mobile { display: flex; }
}

.nav__mobile.open { transform: translateY(0); }

.nav__mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-muted);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--color-border);
  transition: color var(--t-fast);
}

.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a:hover { color: var(--color-text); }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 12px 24px;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all var(--t-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--t-fast);
}

.btn:hover::after { background: rgba(255,255,255,0.05); }

.btn--primary {
  background: var(--gold);
  color: #0a0800;
  font-weight: 700;
  box-shadow: var(--shadow-gold), 0 4px 16px rgba(232,160,32,0.30);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold), 0 8px 28px rgba(232,160,32,0.40);
}

.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--color-muted);
  border: 1px solid var(--color-border);
}

.btn--ghost:hover {
  color: var(--color-text);
  border-color: var(--color-border-hover);
  background: rgba(255,255,255,0.03);
}

.btn--lg {
  padding: 16px 32px;
  font-size: 1rem;
  border-radius: var(--r-full);
}

.btn--icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn__arrow {
  display: inline-block;
  transition: transform var(--t-base);
}

.btn:hover .btn__arrow { transform: translateX(4px); }

/* ── Tags / Badges ─────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 5px 14px;
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.badge--gold {
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid rgba(232,160,32,0.25);
}

.badge--cyan {
  background: var(--cyan-dim);
  color: var(--cyan);
  border: 1px solid rgba(0,212,255,0.20);
}

.badge--phase {
  background: rgba(255,255,255,0.04);
  color: var(--color-muted);
  border: 1px solid var(--color-border);
}

/* ── Cards ─────────────────────────────────────────────── */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  position: relative;
  overflow: hidden;
  transition: all var(--t-base);
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, transparent 60%);
  pointer-events: none;
}

.card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.card--gold:hover {
  border-color: rgba(232,160,32,0.25);
  box-shadow: var(--shadow-gold);
}

/* ── Section Headers ───────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--sp-16);
}

.section-header .badge {
  margin-bottom: var(--sp-5);
}

.section-header h2 { margin-bottom: var(--sp-5); }
.section-header p { font-size: 1.1rem; }

/* ── Divider ───────────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 0;
}

/* ── Gradient Text ─────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, #ffd060 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
}

.gradient-text-cyan {
  background: linear-gradient(135deg, var(--cyan) 0%, #80eeff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Hero Section ──────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.hero .container {
  max-width: 100%;
  padding-left: clamp(1rem, 5vw, 6rem);
  padding-right: 1rem;
}

.hero__content {
  max-width: 650px;
  position: relative;
  z-index: 2;
}

.hero__badge {
  margin-bottom: var(--sp-6);
}

.hero h1 {
  margin-bottom: var(--sp-6);
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-muted);
  margin-bottom: var(--sp-10);
  max-width: 580px;
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* ── Canvas orbital ────────────────────────────────────── */
#orbital-canvas {
  position: absolute;
  right: 0%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(500px, 50vw, 850px);
  height: clamp(500px, 50vw, 850px);
  z-index: 1;
  opacity: 1;
}

@media (max-width: 1024px) {
  #orbital-canvas {
    right: -15%;
    opacity: 0.40;
    width: 650px;
    height: 650px;
  }

  .hero__content { max-width: 100%; }
}

@media (max-width: 640px) {
  #orbital-canvas { right: -30%; }
}

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

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

.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }
.reveal-delay-5 { transition-delay: 400ms; }

/* ── Problem Section ───────────────────────────────────── */
.problem {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

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

.problem__text h2 { margin-bottom: var(--sp-6); }
.problem__text p { margin-bottom: var(--sp-5); font-size: 1.05rem; }

.problem__quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text);
  letter-spacing: -0.02em;
  padding: var(--sp-8);
  border-left: 3px solid var(--gold);
  background: var(--color-surface-2);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}

.problem__quote em {
  font-style: normal;
  color: var(--gold);
}

/* ── Steps / How it works ──────────────────────────────── */
.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

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

.step {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  position: relative;
  overflow: hidden;
  transition: all var(--t-base);
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-glow), transparent);
  opacity: 0;
  transition: opacity var(--t-base);
}

.step:hover { border-color: rgba(232,160,32,0.20); transform: translateY(-3px); }
.step:hover::before { opacity: 1; }

.step__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-4);
  display: block;
}

.step__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  font-size: 20px;
}

.step h3 { font-size: 1.15rem; margin-bottom: var(--sp-3); }
.step p { font-size: 0.95rem; }

/* ── Modelo Zero / Financial Model ────────────────────── */
.modelo-card {
  background: linear-gradient(135deg, var(--color-surface-2) 0%, var(--color-surface) 100%);
  border: 1px solid rgba(232,160,32,0.20);
  border-radius: var(--r-lg);
  padding: var(--sp-16) var(--sp-20);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}

@media (max-width: 768px) {
  .modelo-card { padding: var(--sp-10) var(--sp-6); }
}

.modelo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.modelo-card__big {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: var(--sp-5);
}

.modelo-card p { font-size: 1.1rem; max-width: 560px; margin: 0 auto var(--sp-6); }

.modelo-card__items {
  display: flex;
  justify-content: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
  margin-top: var(--sp-8);
}

.modelo-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-muted);
}

.modelo-item::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
}

/* ── Nichos Grid ───────────────────────────────────────── */
.nichos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}

@media (max-width: 1024px) {
  .nichos__grid { grid-template-columns: repeat(3, 1fr); }
}

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

.nicho {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-md);
  transition: all var(--t-base);
  cursor: default;
}

.nicho:hover {
  background: var(--color-surface-2);
  border-color: var(--color-border-hover);
  transform: translateY(-2px);
}

.nicho__icon { font-size: 1.3rem; flex-shrink: 0; }

.nicho__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

/* ── Phases (Como Funciona) ────────────────────────────── */
.phases {
  position: relative;
}

.phases__timeline {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  position: relative;
}

.phases__timeline::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold-dim) 0%, rgba(232,160,32,0.05) 100%);
}

@media (max-width: 768px) {
  .phases__timeline::before { left: 19px; }
}

.phase {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--sp-6);
  position: relative;
  z-index: 1;
}

.phase__num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phase__circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-muted);
  flex-shrink: 0;
  transition: all var(--t-base);
  position: relative;
}

.phase.active .phase__circle,
.phase:hover .phase__circle {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
  box-shadow: var(--shadow-gold);
}

.phase__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: var(--sp-6) var(--sp-8);
  cursor: pointer;
  transition: all var(--t-base);
  overflow: hidden;
}

.phase__card:hover,
.phase.active .phase__card {
  border-color: rgba(232,160,32,0.20);
  box-shadow: var(--shadow-gold);
}

.phase__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}

.phase__meta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
}

.phase__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.phase__toggle {
  font-size: 1.2rem;
  color: var(--color-muted);
  transition: transform var(--t-base), color var(--t-base);
  flex-shrink: 0;
}

.phase.active .phase__toggle {
  transform: rotate(180deg);
  color: var(--gold);
}

.phase__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), opacity 0.3s var(--ease-out), padding 0.3s;
  opacity: 0;
}

.phase.active .phase__body {
  max-height: 600px;
  opacity: 1;
  padding-top: var(--sp-5);
}

.phase__body-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  border-top: 1px solid var(--color-border);
  padding-top: var(--sp-5);
}

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

.phase__col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-3);
  font-family: var(--font-mono);
}

.phase__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.phase__list li {
  font-size: 0.9rem;
  color: var(--color-muted);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  line-height: 1.5;
}

.phase__list li::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

.phase__deliverables {
  margin-top: var(--sp-4);
  padding: var(--sp-4);
  background: var(--color-surface-2);
  border-radius: var(--r-md);
  border: 1px solid var(--color-border);
}

.phase__deliverables-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan);
  font-family: var(--font-mono);
  margin-bottom: var(--sp-2);
}

.phase__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.phase__tag {
  font-size: 0.78rem;
  padding: 3px 10px;
  background: var(--cyan-dim);
  color: var(--cyan);
  border-radius: var(--r-full);
  border: 1px solid rgba(0,212,255,0.15);
  font-family: var(--font-mono);
}

/* ── Para Quem É ───────────────────────────────────────── */
.ideal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
}

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

.ideal__yes {
  background: var(--color-surface);
  border: 1px solid rgba(232,160,32,0.15);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
}

.ideal__no {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
}

.ideal__label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--sp-5);
}

.ideal__yes .ideal__label { color: var(--gold); }
.ideal__no .ideal__label { color: var(--color-muted); }

.ideal__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.ideal__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.ideal__yes .ideal__list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.ideal__no .ideal__list li::before {
  content: '×';
  color: var(--color-muted);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Cases placeholder ─────────────────────────────────── */
.cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

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

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

.case-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.case-card--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--sp-4);
  border-style: dashed;
  border-color: var(--color-border);
}

.case-card--placeholder::before {
  content: '●';
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.3;
  animation: pulse 2s ease-in-out infinite;
}

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

/* ── About ─────────────────────────────────────────────── */
.principles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-12);
}

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

.principle {
  padding: var(--sp-6);
  border-left: 2px solid var(--gold-dim);
  transition: border-color var(--t-base);
}

.principle:hover { border-left-color: var(--gold); }

.principle__num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-3);
}

.principle h4 { margin-bottom: var(--sp-2); }
.principle p { font-size: 0.92rem; }

/* ── Application / Contact ─────────────────────────────── */
.apply__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}

@media (max-width: 1024px) {
  .apply__grid { grid-template-columns: 1fr; gap: var(--sp-10); }
}

.apply__info h2 { margin-bottom: var(--sp-5); }
.apply__info p { margin-bottom: var(--sp-8); font-size: 1.05rem; }

.apply__steps {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}

.apply__step {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}

.apply__step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid rgba(232,160,32,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.apply__step-text h4 { font-size: 0.95rem; margin-bottom: 2px; }
.apply__step-text p { font-size: 0.88rem; }

/* Form */
.form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: var(--sp-10);
}

@media (max-width: 640px) {
  .form { padding: var(--sp-6); }
}

.form__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: var(--sp-6);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

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

.form__group {
  margin-bottom: var(--sp-5);
}

.form__label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-muted);
  margin-bottom: var(--sp-2);
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--color-void);
  border: 1px solid var(--color-border);
  border-radius: var(--r-md);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
  -webkit-appearance: none;
}

.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(240,236,228,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form__input::placeholder,
.form__textarea::placeholder { color: var(--color-subtle); }

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: rgba(232,160,32,0.40);
  box-shadow: 0 0 0 3px var(--gold-dim);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__note {
  font-size: 0.82rem;
  color: var(--color-subtle);
  margin-top: var(--sp-3);
  text-align: center;
}

/* ── CTA Section ───────────────────────────────────────── */
.cta-section {
  text-align: center;
  padding: var(--sp-32) 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(232,160,32,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 { max-width: 700px; margin: 0 auto var(--sp-5); }
.cta-section p { max-width: 500px; margin: 0 auto var(--sp-10); font-size: 1.05rem; }

/* ── Footer ────────────────────────────────────────────── */
.footer {
  background: var(--color-void);
  border-top: 1px solid var(--color-border);
  padding: var(--sp-16) 0 var(--sp-8);
  position: relative;
  z-index: 1;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-16);
  padding-bottom: var(--sp-10);
  margin-bottom: var(--sp-8);
  border-bottom: 1px solid var(--color-border);
}

@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr; gap: var(--sp-10); }
}

.footer__brand p {
  font-size: 0.92rem;
  margin-top: var(--sp-4);
  max-width: 300px;
  line-height: 1.7;
}

.footer__col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  font-family: var(--font-mono);
  margin-bottom: var(--sp-4);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer__links a {
  font-size: 0.9rem;
  color: var(--color-subtle);
  transition: color var(--t-fast);
}

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

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.footer__copy {
  font-size: 0.82rem;
  color: var(--color-subtle);
}

.footer__legal {
  display: flex;
  gap: var(--sp-6);
}

.footer__legal a {
  font-size: 0.82rem;
  color: var(--color-subtle);
  transition: color var(--t-fast);
}

.footer__legal a:hover { color: var(--color-muted); }

/* ── Page Hero (sub-pages) ─────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + var(--sp-20)) 0 var(--sp-16);
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-hero h1 { max-width: 800px; margin: var(--sp-5) auto; }
.page-hero p { max-width: 600px; margin: 0 auto; font-size: 1.1rem; }

/* ── Stats Bar ─────────────────────────────────────────── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  margin-top: var(--sp-16);
}

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

.stat {
  background: var(--color-surface);
  padding: var(--sp-8);
  text-align: center;
}

.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.stat__label {
  font-size: 0.88rem;
  color: var(--color-muted);
}

/* ── Responsibilidades (vs table) ──────────────────────── */
.vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
}

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

.vs-col {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
}

.vs-col--orbit { border-color: rgba(232,160,32,0.20); }
.vs-col--creator { border-color: rgba(0,212,255,0.15); }

.vs-col__header {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-5);
  border-bottom: 1px solid var(--color-border);
}

.vs-col__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.vs-col--orbit .vs-col__dot { background: var(--gold); box-shadow: var(--shadow-gold); }
.vs-col--creator .vs-col__dot { background: var(--cyan); box-shadow: var(--shadow-cyan); }

.vs-col__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

.vs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.vs-list li {
  font-size: 0.92rem;
  color: var(--color-muted);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  line-height: 1.5;
}

.vs-col--orbit .vs-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.6em;
  flex-shrink: 0;
  margin-top: 4px;
}

.vs-col--creator .vs-list li::before {
  content: '◆';
  color: var(--cyan);
  font-size: 0.6em;
  flex-shrink: 0;
  margin-top: 4px;
}

/* ── Utility: spacer ───────────────────────────────────── */
.spacer { height: var(--sp-16); }
.spacer--sm { height: var(--sp-8); }

/* ── Animations ────────────────────────────────────────── */
@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 16px rgba(232,160,32,0.20); }
  50% { box-shadow: 0 0 36px rgba(232,160,32,0.45); }
}

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

@keyframes shimmer {
  to { background-position: 200% center; }
}

.anim-float-1 { animation: float-up 0.7s var(--ease-out) 0.1s both; }
.anim-float-2 { animation: float-up 0.7s var(--ease-out) 0.25s both; }
.anim-float-3 { animation: float-up 0.7s var(--ease-out) 0.4s both; }
.anim-float-4 { animation: float-up 0.7s var(--ease-out) 0.55s both; }

/* ── Responsive helpers ────────────────────────────────── */
@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
  h1 { font-size: 2.4rem; }
}

@media (min-width: 769px) {
  .show-mobile { display: none !important; }
}

/* ── Floating WhatsApp Button ─────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9998;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.40), 0 2px 8px rgba(0,0,0,0.3);
  transition: all var(--t-base);
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.50), 0 4px 12px rgba(0,0,0,0.4);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.30);
  animation: wa-pulse 2s ease-in-out infinite;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

@keyframes wa-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0; }
}

@media (max-width: 640px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}
