/* ── Variables ── */
:root {
  --bg: #080808;
  --bg-2: #0f0f0f;
  --bg-3: #141414;
  --fg: #f0e8d8;
  --fg-2: #9a9080;
  --fg-3: #5a5448;
  --accent: #d4a030;
  --accent-dim: rgba(212, 160, 48, 0.12);
  --accent-glow: rgba(212, 160, 48, 0.25);
  --border: rgba(212, 160, 48, 0.15);
  --font-display: 'Syne', sans-serif;
  --font-mono: 'DM Mono', monospace;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { background: var(--bg); color: var(--fg); font-family: var(--font-display); font-weight: 400; line-height: 1.5; overflow-x: hidden; }

/* ── Utility ── */
.section-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--accent);
  opacity: 0.6;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8rem 2rem 6rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,160,48,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,160,48,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}
.glow-1 {
  width: 600px; height: 600px;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(212,160,48,0.08) 0%, transparent 70%);
}
.glow-2 {
  width: 400px; height: 400px;
  bottom: -100px; right: -100px;
  background: radial-gradient(circle, rgba(212,160,48,0.05) 0%, transparent 70%);
}
.ring {
  position: absolute;
  border: 1px solid var(--border);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.ring-1 { width: 500px; height: 500px; opacity: 0.4; }
.ring-2 { width: 800px; height: 800px; opacity: 0.2; }
.ring-3 { width: 1100px; height: 1100px; opacity: 0.08; }

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2.5rem;
  background: var(--accent-dim);
}
.pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-anim 2s ease-in-out infinite;
}
@keyframes pulse-anim {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}
.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: normal; color: var(--accent); }
.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-2);
  font-weight: 400;
  margin-bottom: 3.5rem;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg-2);
}
.stat {
  flex: 1;
  padding: 1.25rem 1rem;
  text-align: center;
}
.stat-val {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-mono);
}
.stat-label {
  display: block;
  font-size: 0.72rem;
  color: var(--fg-3);
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}
.stat-div {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── PROBLEM ── */
.problem { padding: 8rem 2rem; background: var(--bg-2); }
.problem-inner { max-width: 1100px; margin: 0 auto; }
.problem-headline {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 3.5rem;
  letter-spacing: -0.02em;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--border);
}
.pain-card {
  background: var(--bg-2);
  padding: 2.25rem 2rem;
  transition: background 0.2s;
}
.pain-card:hover { background: var(--bg-3); }
.pain-icon {
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.pain-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.pain-card p {
  font-size: 0.875rem;
  color: var(--fg-2);
  line-height: 1.6;
}

/* ── HOW IT WORKS ── */
.howitworks { padding: 8rem 2rem; }
.how-inner { max-width: 1100px; margin: 0 auto; }
.how-headline {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.how-sub {
  font-size: 1.1rem;
  color: var(--fg-2);
  margin-bottom: 4rem;
  max-width: 540px;
}
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 1rem;
}
.step-arrow {
  padding-top: 2rem;
  color: var(--fg-3);
  display: flex;
  align-items: center;
}
.step { border: 1px solid var(--border); border-radius: 16px; padding: 2rem; background: var(--bg-2); }
.step-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.step-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.step-body p {
  font-size: 0.875rem;
  color: var(--fg-2);
  line-height: 1.6;
}

/* ── CAPABILITIES ── */
.capabilities { padding: 8rem 2rem; background: var(--bg-2); }
.cap-inner { max-width: 1100px; margin: 0 auto; }
.cap-headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 3.5rem;
  letter-spacing: -0.02em;
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--border);
  margin-bottom: 2.5rem;
}
.cap-card {
  background: var(--bg-2);
  padding: 2rem 1.5rem;
  transition: background 0.2s;
}
.cap-card:hover { background: var(--bg-3); }
.cap-icon {
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.cap-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.cap-card p {
  font-size: 0.8rem;
  color: var(--fg-2);
  line-height: 1.6;
}
.cap-promise {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--accent-dim);
}
.promise-bar {
  width: 4px;
  height: 40px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}
.cap-promise p {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.03em;
}

/* ── CLOSING ── */
.closing {
  padding: 10rem 2rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.closing-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12vw;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: rgba(212,160,48,0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.closing-inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.closing h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.closing p {
  font-size: 1rem;
  color: var(--fg-2);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto;
}

/* ── FOOTER ── */
footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.footer-logo {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
}
.footer-tagline {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--fg-3);
  letter-spacing: 0.1em;
}
.footer-meta {
  display: flex;
  gap: 2rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--fg-3);
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--fg-3);
  width: 100%;
  text-align: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .problem-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .cap-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-direction: column; }
  .stat-div { width: 60%; height: 1px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .cap-grid { grid-template-columns: 1fr; }
  .hero { padding: 5rem 1.5rem 4rem; }
  .problem, .howitworks, .capabilities { padding: 5rem 1.5rem; }
  .closing { padding: 6rem 1.5rem; }
}