:root {
  --bg: #0b1220;
  --surface: #0f1728;
  --surface-2: #121d31;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-2: #ffffff;
  --line: rgba(148, 163, 184, 0.18);
  --text: #e5edf7;
  --text-dark: #102034;
  --muted: #9db0c6;
  --muted-dark: #5f7389;
  --accent: #c7a76c;
  --accent-2: #7db3ff;
  --light-bg: #f5f7fb;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(3, 10, 25, 0.28);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(125, 179, 255, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(199, 167, 108, 0.12), transparent 24%),
    var(--bg);
  color: var(--text);
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(11, 18, 32, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #e6d0a1);
  color: #0d1422;
  font-weight: 800;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

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

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.hero {
  padding: 72px 0 52px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 42px;
  align-items: center;
}

.eyebrow,
.section-label,
.tiny-label {
  margin: 0 0 12px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.hero h1,
.section h2,
.dashboard-head h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(2.9rem, 7vw, 5.5rem);
}

.hero-text {
  max-width: 58ch;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.hero-actions,
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.18s ease, opacity 0.18s ease, border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #0d1626;
  background: linear-gradient(135deg, #e8d2a5, var(--accent));
  box-shadow: 0 18px 32px rgba(199, 167, 108, 0.22);
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.dark-outline {
  color: var(--text-dark);
  border-color: rgba(16, 32, 52, 0.14);
  background: transparent;
}

.hero-trust {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.hero-trust span,
.pill-list span,
.status-pill,
.featured-tag {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.92rem;
}

.hero-panel {
  position: relative;
}

.dashboard-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.dashboard-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.dashboard-head h2 {
  font-size: 1.5rem;
}

.status-pill {
  color: var(--text);
}

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

.metric-tile,
.info-card,
.step-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
}

.metric-tile {
  padding: 18px;
}

.metric-tile span,
.metric-tile small {
  display: block;
}

.metric-tile span,
.metric-tile small {
  color: var(--muted);
}

.metric-tile strong {
  display: block;
  margin: 10px 0 6px;
  font-size: 1.9rem;
  line-height: 1;
}

.chart-block,
.insight-box {
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 12px;
  height: 170px;
}

.bar {
  height: var(--h);
  min-height: 36px;
  border-radius: 14px 14px 6px 6px;
  background: linear-gradient(180deg, rgba(125, 179, 255, 0.55), rgba(125, 179, 255, 0.22));
}

.bar.active {
  background: linear-gradient(180deg, #e3d0a7, rgba(199, 167, 108, 0.42));
}

.insight-title {
  margin: 0 0 10px;
  font-weight: 700;
}

.insight-box ul,
.price-card ul {
  margin: 0;
  padding-left: 18px;
}

.insight-box li,
.price-card li {
  margin-bottom: 10px;
  color: var(--muted);
}

.section {
  padding: 34px 0 34px;
}

.section-light {
  background: var(--light-bg);
  color: var(--text-dark);
}

.section-dark {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.04));
}

.section-heading,
.section-grid {
  display: grid;
  gap: 20px;
  align-items: end;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2,
.section-grid h2,
.founder-card h2,
.cta-card h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.intro-grid {
  grid-template-columns: 1fr 1fr;
  padding: 18px 0;
}

.intro-copy p,
.founder-card p,
.cta-card p,
.info-card p,
.step-card p,
.price-card li {
  line-height: 1.75;
}

.card-grid,
.steps-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
}

.three-up,
.steps-grid,
.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.info-card,
.step-card,
.price-card {
  padding: 24px;
}

.info-card h3,
.step-card h3,
.price-card h3 {
  margin: 0 0 12px;
  font-size: 1.28rem;
}

.info-card p,
.step-card p {
  margin: 0;
  color: var(--muted);
}

.light-text h2,
.light-text p,
.section-dark .step-card h3 {
  color: var(--text);
}

.narrow {
  max-width: 760px;
}

.step-number {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.feature-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 14px 0;
}

.pill-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.section-light .pill-list span,
.section-light .featured-tag,
.section-light .status-pill,
.section-light .hero-trust span {
  border-color: rgba(16, 32, 52, 0.1);
}

.section-light .section-label,
.section-light .intro-copy p,
.section-light .info-card p,
.section-light .price-card li,
.section-light .price span,
.section-light .founder-card p,
.section-light .cta-card p,
.section-light .feature-copy p,
.section-light .pill-list span {
  color: var(--muted-dark);
}

.pricing-grid {
  align-items: stretch;
}

.price-card {
  background: var(--white);
  color: var(--text-dark);
  border-radius: 24px;
  border: 1px solid rgba(16, 32, 52, 0.08);
  box-shadow: 0 16px 36px rgba(16, 32, 52, 0.07);
}

.price-card.featured {
  border: 2px solid rgba(125, 179, 255, 0.5);
  transform: translateY(-8px);
}

.featured-tag {
  display: inline-block;
  margin-bottom: 14px;
  color: #24456d;
  background: rgba(125, 179, 255, 0.14);
  border-color: rgba(125, 179, 255, 0.2);
}

.price {
  margin: 0 0 18px;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.price span {
  font-size: 1rem;
  font-weight: 600;
}

.founder-card,
.cta-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  padding: 32px;
  border-radius: 28px;
}

.founder-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.cta-section {
  padding-bottom: 74px;
}

.cta-card {
  background: var(--white);
  color: var(--text-dark);
  box-shadow: 0 20px 50px rgba(7, 15, 26, 0.18);
}

@media (max-width: 980px) {
  .hero-grid,
  .intro-grid,
  .feature-band,
  .founder-card,
  .cta-card,
  .three-up,
  .steps-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 760px) {
  .nav {
    display: none;
  }

  .hero {
    padding-top: 44px;
  }

  .container {
    width: min(1120px, calc(100% - 28px));
  }

  .hero h1 {
    max-width: none;
  }

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

  .dashboard-card,
  .founder-card,
  .cta-card,
  .price-card,
  .info-card,
  .step-card {
    border-radius: 22px;
  }
}
