:root {
  --bg: #050505;
  --panel: #10100f;
  --text: #fff8f2;
  --muted: #a49b92;
  --line: rgba(255, 255, 255, 0.12);
  --orange: #ff6a00;
  --orange-hot: #ff3d00;
  --green: #43d17a;
  --cream: #fff8f2;
  --ink: #0f0e0d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  letter-spacing: 0;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(5, 5, 5, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
  color: var(--cream);
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.24);
}

.brand span {
  font-size: 18px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

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

.nav-cta,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
}

.nav-cta {
  justify-self: end;
  background: rgba(255, 106, 0, 0.12);
  border: 1px solid rgba(255, 106, 0, 0.34);
  color: var(--cream);
}

.primary-action {
  background: linear-gradient(135deg, var(--orange), var(--orange-hot));
  color: white;
  box-shadow: 0 18px 46px rgba(255, 106, 0, 0.26);
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--cream);
  background: rgba(255, 255, 255, 0.06);
}

.hero {
  min-height: 94svh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 104px clamp(22px, 6vw, 84px) 86px;
  isolation: isolate;
}

#heroScene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #050505;
  z-index: -3;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.68) 34%, rgba(5, 5, 5, 0.18) 72%, rgba(5, 5, 5, 0.64) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 1) 0%, rgba(5, 5, 5, 0) 34%);
}

.hero-content {
  width: min(680px, 100%);
  padding-top: 6svh;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(76px, 12vw, 166px);
  line-height: 0.84;
  font-weight: 950;
}

.hero-copy {
  max-width: 580px;
  color: rgba(255, 248, 242, 0.78);
  font-size: clamp(18px, 2.3vw, 25px);
  line-height: 1.45;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.scroll-cue {
  position: absolute;
  left: clamp(22px, 6vw, 84px);
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 750;
  font-size: 13px;
}

.scroll-cue svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2.5;
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(22px, 6vw, 84px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

h2 {
  font-size: clamp(34px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
  margin-bottom: 18px;
}

h3 {
  font-size: 21px;
  margin-bottom: 12px;
}

.section p,
.feature-grid p,
.price-panel li,
.step span {
  color: var(--muted);
  line-height: 1.65;
}

.feature-band {
  background: var(--cream);
  color: var(--ink);
}

.feature-band .eyebrow {
  color: #d74f00;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(15, 14, 13, 0.12);
  border: 1px solid rgba(15, 14, 13, 0.12);
}

.feature-grid article {
  min-height: 260px;
  padding: 26px;
  background: var(--cream);
}

.feature-icon {
  display: inline-flex;
  margin-bottom: 56px;
  color: #d74f00;
  font-weight: 950;
  font-size: 13px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(36px, 8vw, 100px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  gap: 8px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.step strong {
  color: var(--green);
  font-size: 18px;
}

.pricing-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: clamp(32px, 7vw, 90px);
  align-items: start;
  background: #0b0b0a;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-panel {
  padding: 30px;
  border: 1px solid rgba(255, 106, 0, 0.28);
  background: #11100f;
  border-radius: 8px;
}

.price {
  display: block;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.92;
  font-weight: 950;
  color: var(--cream);
}

.price-note {
  display: block;
  color: var(--orange);
  margin-top: 8px;
  font-weight: 850;
}

.price-panel ul {
  list-style: none;
  padding: 24px 0;
  margin: 0;
}

.price-panel li {
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.price-panel .primary-action {
  width: 100%;
}

.trust-section {
  background: var(--cream);
  color: var(--ink);
}

.trust-section .eyebrow {
  color: #d74f00;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(15, 14, 13, 0.12);
  border: 1px solid rgba(15, 14, 13, 0.12);
}

.trust-row p {
  margin: 0;
  padding: 28px;
  min-height: 130px;
  background: var(--cream);
  color: #4f4841;
  font-weight: 750;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(22px, 6vw, 84px);
  color: var(--muted);
  background: var(--bg);
}

.site-footer a {
  color: var(--orange);
  font-weight: 850;
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 92svh;
    align-items: end;
  }

  .hero-vignette {
    background:
      linear-gradient(0deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.72) 42%, rgba(5, 5, 5, 0.12) 100%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.28), rgba(5, 5, 5, 0.2));
  }

  .hero-content {
    padding-top: 0;
    padding-bottom: 40px;
  }

  h1 {
    font-size: clamp(70px, 22vw, 110px);
  }

  .feature-grid,
  .trust-row,
  .split-section,
  .pricing-section {
    grid-template-columns: 1fr;
  }

  .feature-grid article {
    min-height: 210px;
  }

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

@media (max-width: 520px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand span {
    font-size: 16px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 14px;
  }

  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

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

  .scroll-cue {
    left: 18px;
  }
}
