:root {
  --bg: #0f1316;
  --bg-soft: #151b20;
  --text: #f4f3ef;
  --muted: #b8c0c7;
  --accent: #ff6b3d;
  --accent-2: #f3c969;
  --line: rgba(255, 255, 255, 0.1);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  --radius: 22px;
}

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

body {
  font-family: "Space Grotesk", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

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

.bg-gradient {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 107, 61, 0.25), transparent 40%),
    radial-gradient(circle at bottom right, rgba(243, 201, 105, 0.22), transparent 45%);
  z-index: -2;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.12;
  z-index: -1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 6vw;
  position: sticky;
  top: 0;
  background: rgba(15, 19, 22, 0.9);
  backdrop-filter: blur(12px);
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.nav-cta {
  display: flex;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.solid {
  background: var(--accent);
  color: #1a1411;
  box-shadow: 0 14px 30px rgba(255, 107, 61, 0.25);
}

.btn.ghost {
  border: 1px solid var(--line);
  color: var(--text);
}

.btn:hover {
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(260px, 0.8fr);
  gap: 48px;
  padding: 70px 6vw 40px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--accent-2);
  font-weight: 600;
  margin-bottom: 16px;
}

.title {
  font-family: "Fraunces", serif;
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.title span {
  color: var(--accent);
}

.subtitle {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.metric {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 14px;
}

.metric-value {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-2);
}

.metric-label {
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  overflow: hidden;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(255, 107, 61, 0.5);
  animation: pulse 2s infinite;
}

.card-content {
  padding: 22px;
  display: grid;
  gap: 16px;
}

.card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
  color: var(--muted);
}

.chart {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  height: 120px;
}

.bar {
  flex: 1;
  background: linear-gradient(180deg, var(--accent), transparent);
  height: var(--h);
  border-radius: 8px 8px 4px 4px;
}

.card-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.section {
  padding: 70px 6vw;
  display: grid;
  gap: 32px;
}

.section.dark {
  background: #0a0d10;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-header {
  max-width: 720px;
  display: grid;
  gap: 12px;
}

.section-header h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-family: "Fraunces", serif;
}

.section-header p {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 24px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature,
.module {
  background: rgba(255, 255, 255, 0.03);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.feature h3,
.module h3 {
  margin-bottom: 12px;
}

.module ul {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 18px;
}

.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  align-items: start;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}

.step-index {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
}

.price {
  align-items: center;
}

.price-card {
  background: linear-gradient(135deg, rgba(255, 107, 61, 0.2), rgba(243, 201, 105, 0.1));
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  gap: 20px;
  border: 1px solid var(--line);
}

.price-value {
  display: grid;
  gap: 4px;
  font-size: 1.3rem;
}

.price-value strong {
  font-size: 2rem;
  font-weight: 700;
}

.contact {
  padding-bottom: 100px;
}

.contact-card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 32px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer {
  padding: 40px 6vw 60px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
}

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

.footer-brand img {
  height: 36px;
  width: auto;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 61, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(255, 107, 61, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 61, 0);
  }
}

@media (max-width: 960px) {
  .nav {
    flex-direction: column;
    gap: 16px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .grid.three,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .nav {
    padding: 24px 6vw;
  }

  .hero-actions {
    flex-direction: column;
  }

  .contact-card {
    flex-direction: column;
  }
}
