:root {
  --bg: #090c13;
  --bg-alt: #140e17;
  --panel: #131722;
  --panel-light: #1b202e;
  --accent: #cc404a;
  --gold: #ebb857;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.64);
  --muted-strong: rgba(255, 255, 255, 0.78);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --radius-lg: 20px;
  --radius-md: 14px;
  --max: 1040px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic",
    "Segoe UI", sans-serif;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(9, 12, 19, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
}

.brand img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.brand:hover {
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 26px;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  color: var(--muted-strong);
}

.nav-links a:hover {
  color: var(--gold);
  text-decoration: none;
}

@media (max-width: 640px) {
  .nav-links {
    gap: 16px;
    font-size: 13px;
  }
}

/* Hero */

.hero {
  padding: 84px 0 56px;
  text-align: center;
}

.hero img.icon {
  width: 116px;
  height: 116px;
  border-radius: 26px;
  margin: 0 auto 28px;
  box-shadow: 0 18px 50px rgba(235, 184, 87, 0.22);
}

.hero h1 {
  font-size: clamp(30px, 5vw, 44px);
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.hero .tagline {
  font-size: clamp(16px, 2.4vw, 19px);
  color: var(--muted-strong);
  max-width: 560px;
  margin: 0 auto 34px;
}

.badge-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted-strong);
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 999px;
}

/* CTA button */

.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
  background: var(--gold);
  color: #241a06;
  border: none;
  cursor: default;
}

.cta.disabled {
  opacity: 0.55;
  cursor: default;
}

.cta-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}

/* Sections */

section {
  padding: 64px 0;
}

section + section {
  border-top: 1px solid var(--border);
}

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 44px;
}

.section-head .eyebrow {
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.section-head h2 {
  font-size: clamp(24px, 3.4vw, 32px);
  margin: 0 0 14px;
  font-weight: 800;
}

.section-head p {
  color: var(--muted-strong);
  margin: 0;
}

/* Cards */

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 760px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
}

.card.highlight {
  border-color: rgba(235, 184, 87, 0.45);
  background: linear-gradient(160deg, rgba(235, 184, 87, 0.08), var(--panel) 55%);
}

.card .icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--panel-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
}

.card p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 14.5px;
}

/* Steps */

.steps {
  counter-reset: step;
  display: grid;
  gap: 14px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}

.step .num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}

.step h4 {
  margin: 0 0 4px;
  font-size: 15.5px;
  font-weight: 700;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Pricing */

.price-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  position: relative;
}

.price-card.best {
  border-color: rgba(235, 184, 87, 0.6);
}

.price-card .ribbon {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #241a06;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.price-card .credits {
  font-size: 30px;
  font-weight: 800;
  margin: 10px 0 2px;
}

.price-card .credits span {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  margin-left: 4px;
}

.price-card .price {
  color: var(--muted-strong);
  font-size: 14px;
  margin-bottom: 4px;
}

/* Trust list */

.trust-list {
  display: grid;
  gap: 12px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted-strong);
  font-size: 14.5px;
}

.trust-item .mark {
  flex-shrink: 0;
  color: var(--gold);
  font-weight: 800;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 36px 0 48px;
}

.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.site-footer .links {
  display: flex;
  gap: 20px;
  font-size: 13.5px;
  flex-wrap: wrap;
}

.site-footer .meta {
  font-size: 13px;
  color: var(--muted);
}

/* Legal document pages */

.legal {
  padding: 56px 0 90px;
}

.legal .legal-header {
  margin-bottom: 40px;
}

.legal .legal-header h1 {
  font-size: clamp(26px, 4vw, 34px);
  margin: 0 0 10px;
  font-weight: 800;
}

.legal .legal-header .meta {
  color: var(--muted);
  font-size: 13.5px;
}

.legal-body {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px clamp(20px, 5vw, 48px);
}

.legal-body h2 {
  font-size: 18px;
  font-weight: 800;
  margin: 34px 0 12px;
  padding-top: 6px;
}

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

.legal-body p {
  color: var(--muted-strong);
  font-size: 15px;
  margin: 0 0 14px;
}

.legal-body ul,
.legal-body ol {
  color: var(--muted-strong);
  font-size: 15px;
  padding-left: 22px;
  margin: 0 0 14px;
}

.legal-body li {
  margin-bottom: 6px;
}

.legal-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 20px;
  font-size: 14px;
}

.legal-body th,
.legal-body td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  color: var(--muted-strong);
  vertical-align: top;
}

.legal-body th {
  color: var(--text);
  font-weight: 700;
  width: 30%;
}

.legal-body strong {
  color: var(--text);
}

.callout {
  background: var(--panel-light);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  font-size: 14px;
  color: var(--muted-strong);
  margin: 18px 0;
}

.callout strong {
  color: var(--gold);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}
