:root {
  --bg: #0a0a0a;
  --panel: #141414;
  --panel-soft: #1c1c1c;
  --text: #ffffff;
  --muted: #b8b8b8;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #ff6b00;
  --accent-soft: rgba(255, 107, 0, 0.12);
  --surface: #f6f3ee;
  --surface-text: #171717;
  --surface-muted: #666666;
  --max: 1120px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(255, 107, 0, 0.18), transparent 18%),
    linear-gradient(180deg, #080808 0%, #121212 32%, var(--surface) 32%, var(--surface) 100%);
}

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

.shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(10, 10, 10, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.18), rgba(255, 255, 255, 0.02));
  color: #ffd7bf;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.brand-copy strong {
  display: block;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  transition: 180ms ease;
}

.site-nav a:hover,
.site-nav a.current {
  background: rgba(255, 107, 0, 0.16);
  border-color: rgba(255, 107, 0, 0.4);
}

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

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 22px;
}

.hero-main,
.hero-side {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.hero-main {
  padding: 34px;
}

.hero-side {
  padding: 26px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #ffd7bf;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero p,
.page-hero p {
  margin: 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  font-weight: 700;
  transition: 180ms ease;
}

.button-primary {
  background: linear-gradient(135deg, #ff7d1f, #ff6b00);
  color: #ffffff;
}

.button-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(255, 107, 0, 0.24);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}

.meta-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.meta-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
}

.meta-list li:last-child {
  border-bottom: 0;
}

.page-hero {
  padding: 72px 0 38px;
  color: var(--surface-text);
}

.page-hero h1 {
  color: var(--surface-text);
}

.page-hero p {
  color: var(--surface-muted);
}

.content {
  padding: 0 0 80px;
  color: var(--surface-text);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.card {
  background: #ffffff;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.card h2,
.card h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.card p {
  margin: 0;
  color: var(--surface-muted);
  line-height: 1.7;
}

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

.notice {
  padding: 18px 20px;
  background: #fff3ea;
  border: 1px solid rgba(255, 107, 0, 0.18);
  border-radius: 18px;
  color: #5d2f0b;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.pricing-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.pricing-card.popular {
  border-color: rgba(255, 107, 0, 0.35);
  box-shadow: 0 24px 50px rgba(255, 107, 0, 0.12);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #b85100;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price {
  margin: 16px 0 6px;
  font-size: 36px;
  font-weight: 800;
  color: var(--surface-text);
}

.subtle {
  color: var(--surface-muted);
  font-size: 14px;
}

.feature-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
  margin-top: 10px;
  color: var(--surface-text);
  line-height: 1.6;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.policy {
  background: #ffffff;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.policy h2 {
  margin: 28px 0 12px;
  font-size: 26px;
}

.policy h2:first-child {
  margin-top: 0;
}

.policy p {
  margin: 0 0 14px;
  line-height: 1.8;
  color: #2b2b2b;
}

.policy ul {
  margin: 0 0 18px;
  padding-left: 20px;
  color: #2b2b2b;
}

.policy li {
  margin: 8px 0;
  line-height: 1.7;
}

.footer {
  padding: 26px 0 50px;
  color: var(--surface-muted);
}

.footer-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(23, 23, 23, 0.08);
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .site-header .shell {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 42px;
  }
}
