:root {
  --bg: #070712;
  --surface: #12121f;
  --surface-2: #151528;
  --text: #f4f2ff;
  --muted: #9d96b8;
  --gold: #d4b45c;
  --gold-dark: #a67c2d;
  --accent: #6366f1;
  --accent-dim: color-mix(in srgb, var(--accent) 35%, transparent);
  --border: #2a2840;
  --ok: #22c55e;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", "IBM Plex Sans", system-ui, -apple-system, sans-serif;
}

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

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--border) 75%, transparent);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
}

.lang-btn {
  background: transparent;
  border: 0;
  color: var(--muted);
  padding: 0.4rem 0.62rem;
  font-size: 0.75rem;
  cursor: pointer;
}

.lang-btn.active {
  background: color-mix(in srgb, var(--gold) 14%, transparent);
  color: var(--gold);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.glyph {
  color: var(--gold);
}

.desktop-nav {
  display: none;
  gap: 1.4rem;
  color: var(--muted);
}

.desktop-nav a:hover {
  color: var(--text);
}

.btn {
  border-radius: 999px;
  padding: 0.72rem 1.05rem;
  border: 1px solid transparent;
  font-weight: 600;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #111016;
}

.btn-outline {
  border-color: var(--border);
  color: var(--text);
  background: color-mix(in srgb, var(--surface) 55%, transparent);
}

.btn-ghost {
  border-color: color-mix(in srgb, var(--gold) 28%, transparent);
  color: var(--gold);
  background: color-mix(in srgb, var(--gold) 6%, transparent);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5.6rem 0 4rem;
}

.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(92px);
  opacity: 0.19;
  pointer-events: none;
}

.hero-glow-left {
  top: -150px;
  left: -100px;
  background: var(--gold);
}

.hero-glow-right {
  right: -120px;
  top: 70px;
  background: var(--accent);
}

.hero-grid {
  display: grid;
  gap: 1.5rem;
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  margin: 0.4rem 0 0.8rem;
}

h1 {
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  line-height: 1.05;
}

h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.5rem);
}

h3 {
  font-size: 1.2rem;
}

.hero-copy {
  max-width: 58ch;
  color: var(--muted);
  margin-bottom: 1.4rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.stats {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.stats div {
  background: color-mix(in srgb, var(--surface) 62%, transparent);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0.8rem;
}

.stats strong {
  display: block;
  color: var(--text);
}

.stats span {
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-card {
  background: linear-gradient(160deg, color-mix(in srgb, var(--surface) 85%, #1f1f3d), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1rem;
}

.card-title {
  margin: 0 0 0.7rem;
  color: var(--muted);
  font-weight: 600;
}

.idea-chip {
  padding: 0.62rem 0.72rem;
  border-radius: 12px;
  margin-bottom: 0.52rem;
  background: color-mix(in srgb, var(--gold) 8%, var(--surface-2));
  border: 1px solid color-mix(in srgb, var(--gold) 22%, var(--border));
}

.full {
  width: 100%;
}

.card-footnote {
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.section {
  padding: 4.1rem 0;
}

.section-alt {
  background: color-mix(in srgb, var(--surface) 38%, transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.feature-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
}

.panel {
  background: color-mix(in srgb, var(--surface) 72%, transparent);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem;
}

.panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.lead-form {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
  background: color-mix(in srgb, var(--surface) 70%, transparent);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem;
}

.lead-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.honeypot {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
}

.lead-form input,
.lead-form textarea,
.lead-form select {
  width: 100%;
  background: color-mix(in srgb, var(--surface-2) 78%, transparent);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.7rem 0.75rem;
  font: inherit;
}

.lead-form textarea {
  resize: vertical;
}

.full-row {
  grid-column: 1 / -1;
}

.consent {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
}

.form-note {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.two-col {
  display: grid;
  gap: 1.2rem;
}

.steps {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.64rem;
}

.steps li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface-2) 65%, transparent);
}

.steps span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: color-mix(in srgb, var(--gold) 85%, #000 15%);
  color: #120f18;
  font-weight: 700;
  font-size: 0.9rem;
}

.proof-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem;
}

.proof-card ul {
  margin: 0.7rem 0 0;
  padding: 0 0 0 1.1rem;
}

.proof-card li {
  margin: 0.4rem 0;
  color: var(--muted);
}

/* —— Pricing (tier cards + mesh) —— */
.section-pricing {
  position: relative;
  overflow: hidden;
}

.pricing-mesh {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 50%, color-mix(in srgb, var(--gold) 12%, transparent), transparent 45%),
    linear-gradient(180deg, color-mix(in srgb, var(--bg) 40%, #0a0a14) 0%, var(--bg) 100%);
  opacity: 1;
  pointer-events: none;
}

.pricing-inner {
  position: relative;
  z-index: 1;
}

.pricing-head {
  max-width: 52rem;
  margin-bottom: 1.5rem;
}

.pricing-lead {
  margin: 0.5rem 0 0;
  max-width: 56ch;
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.05rem;
}

.uchguns-gloss {
  margin: 1.25rem 0 1.5rem;
  padding: 1.15rem 1.25rem;
  border-radius: 18px;
  border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--border));
  background: linear-gradient(135deg, color-mix(in srgb, var(--surface-2) 88%, var(--accent) 12%), var(--surface));
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 12%, transparent), 0 24px 60px color-mix(in srgb, #000 55%, transparent);
}

.uchguns-gloss__title {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
}

.uchguns-gloss__body {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.uchgun-meter {
  border-color: color-mix(in srgb, var(--border) 90%, var(--accent));
}

.pricing-grid--tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.1rem;
  margin-top: 1.35rem;
}

.price-card-v2 {
  position: relative;
  background: linear-gradient(165deg, color-mix(in srgb, var(--surface) 92%, #1e1e32), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.25rem 1.2rem 1.15rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.price-card-v2:hover {
  border-color: color-mix(in srgb, var(--border) 70%, var(--gold));
  box-shadow: 0 18px 48px color-mix(in srgb, #000 45%, transparent);
  transform: translateY(-2px);
}

.price-card-v2--featured {
  border-color: color-mix(in srgb, var(--gold) 45%, var(--border));
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--gold) 25%, transparent),
    0 20px 56px color-mix(in srgb, var(--gold) 14%, transparent);
}

.price-card-v2--featured .badge {
  margin-bottom: 0.5rem;
}

.price-card-v2--wide {
  grid-column: 1 / -1;
}

.price-card-v2__name {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.price-card-v2__usd {
  margin: 0.35rem 0 0;
  font-family: "Playfair Display", serif;
  font-size: 2.35rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.price-card-v2__uchguns {
  margin: 0.65rem 0 0;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}

.uchgun-spark {
  display: inline-block;
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
  background: linear-gradient(145deg, var(--gold), var(--accent));
  clip-path: polygon(50% 0%, 65% 35%, 100% 50%, 65% 65%, 50% 100%, 35% 65%, 0% 50%, 35% 35%);
}

.price-card-v2__tagline {
  margin: 0.45rem 0 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.45;
}

.price-card-v2__rule {
  height: 1px;
  margin: 0.95rem 0 0.75rem;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.price-card-v2__list {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  flex: 1;
}

.price-card-v2__list li {
  position: relative;
  padding-left: 1.1rem;
  margin: 0.5rem 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.price-card-v2__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.78rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.credit-costs {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: color-mix(in srgb, var(--surface-2) 62%, transparent);
}

.credit-costs h3 {
  margin-top: 0;
}

.credit-costs ul {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0.5rem;
  display: grid;
  gap: 0.55rem;
}

.credit-costs li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

.credit-costs li strong {
  color: var(--text);
  font-weight: 600;
}

.credit-note {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.1rem;
}

.price-card ul {
  margin: 1rem 0;
  color: var(--muted);
  padding-left: 1rem;
}

.price-card li {
  margin: 0.45rem 0;
}

.price {
  font-size: 2rem;
  margin: 0.25rem 0;
  color: var(--gold);
  font-weight: 700;
}

.price span {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
}

.featured {
  outline: 1px solid color-mix(in srgb, var(--gold) 36%, transparent);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--gold) 22%, transparent), 0 20px 50px color-mix(in srgb, var(--gold) 15%, transparent);
}

.badge {
  margin: 0;
  color: #111016;
  display: inline-block;
  background: var(--gold);
  border-radius: 999px;
  padding: 0.25rem 0.62rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.faq-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.8rem;
}

summary {
  cursor: pointer;
  font-weight: 600;
}

details p {
  color: var(--muted);
  margin: 0.7rem 0 0;
}

.cta {
  padding-top: 3.4rem;
}

.cta-inner {
  background: linear-gradient(130deg, color-mix(in srgb, var(--surface-2) 86%, #2e2e62), var(--surface));
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.2rem;
  display: grid;
  gap: 1rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-footer {
  padding: 1.4rem 0 2.4rem;
  color: var(--muted);
}

.footer-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.footer-wrap div {
  display: flex;
  gap: 1rem;
}

@media (min-width: 820px) {
  .desktop-nav {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
  }

  .two-col {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }

  .cta-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 1.5rem;
  }

  .footer-wrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
