:root {
  --bg: #171A1C;
  --bg-deep: #111416;
  --bg-soft: #1D2225;
  --surface: #202528;
  --surface-2: #252B2F;
  --surface-warm: #2A241D;
  --border: #30363A;
  --border-warm: rgba(242, 138, 36, 0.25);
  --text: #F6EFE7;
  --muted: #CFC7BD;
  --subtle: #9AA3AD;
  --orange: #F28A24;
  --orange-soft: #F2A65A;
  --green: #4ED17A;
  --danger: #FF6B6B;
  --shadow: rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 76% 0%, rgba(242, 138, 36, 0.12), transparent 30%),
    radial-gradient(circle at 4% 14%, rgba(246, 239, 231, 0.055), transparent 22%),
    var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(17, 20, 22, 0.86);
  border-bottom: 1px solid rgba(48, 54, 58, 0.78);
}

.nav {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 184px;
  height: auto;
  max-width: 42vw;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(242, 166, 90, 0.45);
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  background: rgba(242, 138, 36, 0.12);
}

main {
  overflow: hidden;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.narrow-section {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
}

.hero {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 52px;
  align-items: center;
  min-height: 720px;
  padding-top: 56px;
}

.hero-copy {
  max-width: 610px;
}

.eyebrow {
  color: var(--orange-soft);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin: 0 0 22px;
}

h1,
h2,
h3 {
  color: var(--text);
}

h1 {
  margin: 0;
  font-size: clamp(46px, 5.4vw, 76px);
  line-height: 0.98;
  letter-spacing: -3.2px;
}

h1 span,
.accent {
  color: var(--orange);
}

.lead {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.55;
}

.hero-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  font-size: 15px;
}

.button-primary {
  background: var(--orange);
  color: #171A1C;
}

.button-secondary {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.trust-pill {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.035);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--subtle);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.hero-asset-frame {
  width: min(760px, 100%);
  border: 1px solid rgba(246, 239, 231, 0.12);
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(242, 138, 36, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.38);
}

.hero-asset {
  display: block;
  width: 100%;
  height: auto;
}

.section-header {
  max-width: 780px;
  margin-bottom: 36px;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -2.2px;
}

.section-header p {
  color: var(--muted);
  font-size: 18px;
  margin: 16px 0 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.025));
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}

.card-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(242, 138, 36, 0.15);
  color: var(--orange-soft);
  font-weight: 900;
  margin-bottom: 22px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.card p {
  color: var(--muted);
  margin: 0;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}

.statement {
  border: 1px solid rgba(242, 138, 36, 0.24);
  background:
    radial-gradient(circle at 20% 0%, rgba(242, 138, 36, 0.14), transparent 34%),
    rgba(242, 138, 36, 0.08);
  border-radius: 28px;
  padding: 32px;
}

.statement h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -2px;
}

.statement p {
  color: var(--muted);
  font-size: 18px;
}

.bullets {
  display: grid;
  gap: 14px;
}

.bullet {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.035);
  border-radius: 20px;
  padding: 18px 20px;
}

.bullet strong {
  display: block;
  margin-bottom: 5px;
}

.bullet span {
  color: var(--muted);
}

.category-bands {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.category-band {
  min-height: 210px;
  border: 1px solid rgba(242, 138, 36, 0.22);
  border-radius: 28px;
  padding: 28px;
  background:
    radial-gradient(circle at 20% 0%, rgba(242, 138, 36, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.025));
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.category-band span {
  display: inline-flex;
  color: var(--orange-soft);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.category-band h3 {
  margin: 42px 0 0;
  color: var(--text);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.12;
  letter-spacing: -1.2px;
}

.launch-strip {
  border: 1px solid rgba(242, 138, 36, 0.22);
  border-radius: 32px;
  padding: 42px;
  margin-bottom: 28px;
  background:
    radial-gradient(circle at 12% 0%, rgba(242, 138, 36, 0.14), transparent 32%),
    rgba(255, 255, 255, 0.035);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.launch-strip h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.04;
  letter-spacing: -2px;
}

.launch-strip p:last-child {
  color: var(--muted);
  margin: 0;
  font-size: 18px;
}

.premium-strip {
  border: 1px solid rgba(242, 138, 36, 0.26);
  border-radius: 32px;
  padding: 42px;
  margin-bottom: 28px;
  background:
    radial-gradient(circle at 12% 0%, rgba(242, 138, 36, 0.18), transparent 32%),
    rgba(255, 255, 255, 0.035);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.premium-strip h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.04;
  letter-spacing: -2px;
}

.premium-strip p:last-child {
  color: var(--muted);
  margin: 0;
  font-size: 18px;
}

.page-hero {
  padding-top: 72px;
  padding-bottom: 54px;
}

.page-hero h1 {
  max-width: 860px;
}

.page-hero .lead {
  max-width: 760px;
}

.content-card {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.035);
  border-radius: 28px;
  padding: 34px;
  margin: 18px 0;
}

.content-card h2 {
  margin: 0 0 14px;
  font-size: 26px;
  letter-spacing: -0.6px;
}

.content-card p,
.content-card li {
  color: var(--muted);
  font-size: 16px;
}

.content-card p:first-child {
  margin-top: 0;
}

.content-card p:last-child {
  margin-bottom: 0;
}

.content-card ul,
.content-card ol {
  padding-left: 22px;
}

.callout {
  border: 1px solid var(--border-warm);
  background:
    radial-gradient(circle at 0% 0%, rgba(242, 138, 36, 0.16), transparent 34%),
    rgba(242, 138, 36, 0.06);
  border-radius: 24px;
  padding: 24px;
}

.plan-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
  align-items: stretch;
}

.plan-card {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.035);
  border-radius: 28px;
  padding: 30px;
}

.plan-card.featured {
  border-color: rgba(242, 138, 36, 0.34);
  background:
    radial-gradient(circle at 16% 0%, rgba(242, 138, 36, 0.16), transparent 34%),
    rgba(255,255,255,0.04);
}

.plan-card h2 {
  margin: 0 0 10px;
  font-size: 34px;
}

.plan-card p {
  color: var(--muted);
}

.plan-card ul {
  padding-left: 20px;
  color: var(--muted);
}

.disclaimer {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.025);
}

.disclaimer .section {
  padding: 48px 0;
}

.disclaimer p {
  max-width: 980px;
  color: var(--subtle);
  margin: 0;
}

.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 44px 0 56px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  color: var(--subtle);
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}

.footer-meta a {
  color: var(--muted);
  text-decoration: none;
}

.footer-meta a:hover {
  color: var(--text);
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text);
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .brand-logo {
    width: 170px;
    max-width: 56vw;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 64px;
    gap: 44px;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-asset-frame {
    width: 100%;
    border-radius: 28px;
  }

  .steps,
  .split,
  .launch-strip,
  .premium-strip,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .category-bands {
    grid-template-columns: 1fr;
  }

  .category-band {
    min-height: 160px;
  }
}

@media (max-width: 560px) {
  .section,
  .narrow-section,
  .nav,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    min-height: 70px;
  }

  .brand-logo {
    width: 154px;
    max-width: 66vw;
  }

  .section {
    padding: 50px 0;
  }

  .hero {
    padding-top: 40px;
    gap: 28px;
  }

  .page-hero {
    padding-top: 54px;
    padding-bottom: 42px;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 1.7px;
    margin-bottom: 18px;
  }

  h1 {
    font-size: clamp(42px, 12vw, 50px);
    line-height: 0.98;
    letter-spacing: -2.2px;
  }

  .lead {
    font-size: 18px;
    line-height: 1.58;
  }

  .hero-actions,
  .page-actions {
    flex-direction: column;
    margin-top: 30px;
  }

  .button {
    width: 100%;
    min-height: 54px;
  }

  .trust-row {
    gap: 10px;
    margin-top: 28px;
  }

  .trust-pill {
    font-size: 12px;
    padding: 8px 12px;
  }

  .hero-asset-frame {
    border-radius: 22px;
  }

  .content-card,
  .statement,
  .launch-strip,
  .premium-strip,
  .plan-card {
    padding: 24px;
    border-radius: 22px;
  }

  .statement h2,
  .launch-strip h2,
  .premium-strip h2 {
    font-size: clamp(28px, 8.5vw, 34px);
    line-height: 1.05;
    letter-spacing: -1.2px;
  }

  .statement p,
  .launch-strip p:last-child,
  .premium-strip p:last-child {
    font-size: 17px;
    line-height: 1.55;
  }

  .bullet {
    padding: 20px;
  }

  .bullet span {
    font-size: 16px;
    line-height: 1.55;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .section-header h2 {
    font-size: clamp(32px, 10vw, 40px);
    line-height: 1.03;
    letter-spacing: -1.5px;
  }

  .section-header p {
    font-size: 17px;
    line-height: 1.55;
  }

  .category-band {
    min-height: 132px;
    padding: 22px;
    border-radius: 22px;
  }

  .category-band h3 {
    font-size: clamp(23px, 7.2vw, 28px);
    line-height: 1.1;
    letter-spacing: -0.8px;
    margin-top: 30px;
  }

  .launch-strip {
    margin-bottom: 24px;
  }

  .premium-strip {
    margin-bottom: 28px;
  }

  .disclaimer .section {
    padding: 34px 0;
  }

  .disclaimer p {
    font-size: 13px;
    line-height: 1.6;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 34px 0 44px;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 14px 18px;
  }
}