:root {
  --bg: #0c0c0e;
  --surface: #141416;
  --surface-2: #1c1c1f;
  --accent: #f97316;
  --accent-teal: #14b8a6;
  --text: #f4f4f5;
  --text-muted: #a1a1aa;
  --border: #27272a;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
  gap: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(249, 115, 22, 0.07) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(20, 184, 166, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px 6px 10px;
  margin-bottom: 32px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-teal);
  animation: pulse 2s ease-in-out infinite;
}

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

.badge-text {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(96px, 12vw, 160px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 32px;
}

.hero-headline br { display: block; }

.hero-sub {
  font-size: 18px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.hero-tagline {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* VR Orb */
.vr-orb {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: spin 8s linear infinite;
}

.orb-ring-1 {
  width: 200px;
  height: 200px;
  border-color: rgba(249, 115, 22, 0.3);
}

.orb-ring-2 {
  width: 260px;
  height: 260px;
  border-color: rgba(20, 184, 166, 0.2);
  animation-direction: reverse;
  animation-duration: 12s;
}

.orb-ring-3 {
  width: 320px;
  height: 320px;
  border-color: rgba(249, 115, 22, 0.1);
  animation-duration: 16s;
}

.orb-core {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent) 0%, rgba(249, 115, 22, 0.4) 40%, transparent 70%);
  box-shadow: 0 0 40px rgba(249, 115, 22, 0.4), 0 0 80px rgba(249, 115, 22, 0.15);
  animation: glow 3s ease-in-out infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes glow {
  0%, 100% { transform: scale(1); box-shadow: 0 0 40px rgba(249, 115, 22, 0.4), 0 0 80px rgba(249, 115, 22, 0.15); }
  50% { transform: scale(1.05); box-shadow: 0 0 60px rgba(249, 115, 22, 0.5), 0 0 100px rgba(249, 115, 22, 0.2); }
}

/* Features */
.features {
  padding: 120px 64px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.features-label {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.feature-card {
  background: var(--surface-2);
  padding: 48px;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.feature-card:hover {
  border-color: rgba(249, 115, 22, 0.4);
}

.feature-icon {
  margin-bottom: 24px;
}

.feature-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Experience */
.experience {
  padding: 120px 64px;
  border-top: 1px solid var(--border);
}

.experience-header {
  max-width: 640px;
  margin-bottom: 80px;
}

.section-tag {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-teal);
  margin-bottom: 16px;
}

.experience-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.exp-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.exp-panel {
  padding: 48px 40px;
  border: 1px solid var(--border);
  border-right: none;
  background: var(--bg);
  position: relative;
}

.exp-panel:last-child {
  border-right: 1px solid var(--border);
}

.exp-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  color: var(--surface-2);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.exp-panel h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.exp-panel p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Outcomes */
.outcomes {
  padding: 120px 64px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.outcomes-inner {
  max-width: 800px;
}

.outcomes-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px 6px 10px;
  margin-bottom: 32px;
}

.outcomes h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.outcomes-body {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 64px;
  max-width: 640px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.stat {
  padding: 32px;
  border: 1px solid var(--border);
  border-right: none;
  background: var(--surface-2);
}

.stat:last-child {
  border-right: 1px solid var(--border);
}

.stat-number {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* Closing */
.closing {
  padding: 120px 64px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, rgba(249, 115, 22, 0.03) 100%);
}

.closing-inner {
  max-width: 800px;
}

.closing-text {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 48px;
  font-weight: 400;
}

.closing-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  letter-spacing: 0.04em;
  color: var(--accent);
  opacity: 0.8;
}

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

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.1em;
}

.footer-location {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-tagline {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 80px 24px;
    text-align: center;
  }

  .hero-headline { font-size: 80px; }
  .hero-visual { display: none; }

  .features { padding: 80px 24px; }
  .features-grid { grid-template-columns: 1fr; }

  .experience { padding: 80px 24px; }
  .exp-panels { grid-template-columns: 1fr; }

  .outcomes { padding: 80px 24px; }
  .stats-row { grid-template-columns: 1fr; }

  .closing { padding: 80px 24px; }
  .closing-tagline { font-size: 40px; }

  .footer { padding: 40px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }

  .exp-panel { border-right: 1px solid var(--border); border-bottom: none; }
  .exp-panel:last-child { border-bottom: 1px solid var(--border); }
  .stat { border-right: 1px solid var(--border); border-bottom: none; }
  .stat:last-child { border-bottom: 1px solid var(--border); }

  .feature-card { border-right: 1px solid var(--border); }
}