:root {
  --black: #050505;
  --panel: #161616;
  --panel-soft: #222222;
  --orange: #ff3b12;
  --cyan: #09d5ed;
  --text: #f7f7f7;
  --muted: #b8b8b8;
  --line: #333333;
  --max: 1400px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font: 16px/1.65 Arial, Helvetica, sans-serif;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.wrap {
  width: min(var(--max), calc(100% - 64px));
  max-width: var(--max);
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.split > * { min-width: 0; }
.split img {
  width: 100%;
  height: clamp(320px, 38vw, 540px);
  max-height: none;
  object-fit: cover;
  filter: saturate(.85);
}
.section > .wrap,
.section > .wrap.prose {
  width: min(var(--max), calc(100% - 64px));
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.prose {
  width: 100%;
  max-width: none;
  margin: 0;
}
.prose p { max-width: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 5, 5, .96);
  border-bottom: 1px solid #292929;
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  color: var(--orange);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1;
  text-decoration: none;
}
.brand span { color: #fff; }
.menu { display: flex; align-items: center; gap: 26px; }
.menu a {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.menu a:hover { color: var(--orange); }
.menu .join,
.btn {
  display: inline-flex;
  min-width: 148px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 0;
  text-align: center;
  color: #fff !important;
  background: var(--orange);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  text-transform: none;
  transition: background .2s ease, transform .2s ease;
}
.menu .join:hover,
.btn:hover { background: #ff5a39; color: #fff; transform: translateY(-2px); }
.menu-toggle {
  display: none;
  padding: 7px 10px;
  border: 1px solid #555;
  background: var(--panel-soft);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}
.menu-toggle:focus-visible,
.menu a:focus-visible,
.btn:focus-visible,
a:focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; }

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #111;
}
.hero-slides,
.hero-slide,
.hero-shade {
  position: absolute;
  inset: 0;
}
.hero-slides { z-index: 0; }
.hero-slide {
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 7s ease;
}
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-shade {
  z-index: 1;
  background: linear-gradient(90deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.76) 42%, rgba(0,0,0,.2) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
  margin: 0 auto;
  text-align: center;
}
.hero-content h1,
.hero-content p { margin-left: auto; margin-right: auto; }
.hero-content .btn { margin: 18px auto 0; }
.hero h1 {
  max-width: 780px;
  margin: 16px 0 22px;
  color: #fff;
  font-size: clamp(36px, 5.5vw, 62px);
  line-height: 1.05;
  letter-spacing: -1.5px;
}
.hero p { max-width: 820px;
  margin: 0 auto;
  color: #e6e6e6;
  font-size: 18px; }
.hero .btn.alt { margin-left: 10px; background: transparent; border: 2px solid #fff; }
.hero .btn.alt:hover { background: #fff; color: #111; }

.eyebrow {
  margin: 0 0 10px;
  color: #ff8c7a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.disclosure { color: #aaa; font-size: 12px !important; }

.section { padding: 64px 0; }
.section:has(.btn) {
  text-align: center;
}
.section:has(.btn) h2,
.section:has(.btn) p,
.section:has(.btn) .lead {
  margin-left: auto;
  margin-right: auto;
}
.section:has(.btn) .btn {
  margin-left: auto;
  margin-right: auto;
}
.section:nth-of-type(even) { background: #0b0b0b; }
.section h2,
.page-hero h1 {
  color: #fff;
  line-height: 1.08;
  letter-spacing: -1px;
}
.section h2 { margin: 0 0 18px; font-size: clamp(28px, 3.4vw, 40px); }
.lead { max-width: 780px; color: var(--muted); }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 38px; }
.card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--orange);
  border-radius: 0;
  background: var(--panel);
}
.card:hover { background: var(--panel-soft); }
.card h3 { margin: 0 0 12px; color: #fff; font-size: 19px; }
.card p { color: var(--muted); }
.card a { color: var(--orange); font-weight: 800; text-decoration: none; }
.card img { width: 100%; height: 210px; margin-bottom: 18px; object-fit: cover; }
.pill { color: var(--orange) !important; font-weight: 900; letter-spacing: 1px; }

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(24px, 3vw, 48px); align-items: center; }
.content-image {
  width: 100%;
  height: clamp(240px, 32vw, 460px);
  object-fit: cover;
  margin: 0 auto;
}
.prose { width: 100%; max-width: none; margin: 0; }
.prose p { max-width: none; }
.prose p, .prose li { color: var(--muted); }
.prose a { color: var(--orange); }
.steps { counter-reset: step; padding: 0; }
.step { position: relative; padding: 10px 0 18px 62px; list-style: none; }
.step::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  content: counter(step);
  counter-increment: step;
  font-weight: 900;
  line-height: 38px;
  text-align: center;
}
.notice { margin: 28px 0; padding: 18px 22px; border-left: 4px solid var(--orange); background: #24100c; color: #ddd; }
.pricing-note { width: 100%; max-width: none; margin: 0; }
.table-wrap { overflow-x: auto; margin: 24px 0; }
table { width: 100%; min-width: 720px; border-collapse: collapse; }
th, td { padding: 14px 16px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
th { background: var(--panel-soft); color: #fff; }
td { color: var(--muted); }
.list { padding-left: 22px; }

.page-hero {
  padding: 92px 0 72px;
  background: linear-gradient(135deg, #191919, #070707);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.page-hero h1 {
  max-width: 850px;
  margin: 12px auto;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 700;
}
.page-hero .lead {
  margin-left: auto;
  margin-right: auto;
}
.page-hero .btn {
  margin: 18px auto 0;
}
.section > .wrap.prose {
  width: min(var(--max), calc(100% - 64px));
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.crumb a { color: var(--orange); }

.footer { margin-top: 0; padding: 50px 0; background: #111; border-top: 1px solid var(--line); }
.footer strong { color: var(--orange); font-size: 25px; text-transform: uppercase; }
.footer a { color: var(--orange); }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 18px; }
.footer-links a { text-decoration: none; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--text); text-decoration: underline; }
.small { color: #999; font-size: 13px; }

@media (max-width: 820px) {
  .wrap { width: min(var(--max), calc(100% - 32px)); }
  .hero-content { width: min(720px, 100%); }
  .menu-toggle { display: block; }
  .menu {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 10px 16px 18px;
    background: #090909;
    border-bottom: 1px solid var(--line);
  }
  .menu.open { display: flex; }
  .menu a { padding: 14px 8px; border-bottom: 1px solid #262626; }
  .menu .join { margin-top: 12px; text-align: center; }
  .hero { min-height: 660px; }
  .hero h1 { font-size: clamp(34px, 10vw, 52px); }
  .hero p { font-size: 16px; }
  .hero-content .btn { display: block; width: max-content; max-width: 100%; margin: 14px auto 0; }
  .grid, .split { grid-template-columns: 1fr; }
  .split { gap: 34px; }
  .split img { height: 300px; }
  .section { padding: 56px 0; }
  .page-hero { padding: 56px 0 44px; }
  .section > .wrap,
  .section > .wrap.prose { width: min(var(--max), calc(100% - 32px)); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
