:root {
  --bg: #070b13;
  --panel: rgba(13, 20, 32, 0.86);
  --panel-strong: rgba(17, 25, 40, 0.96);
  --text: #f4f7fb;
  --muted: #a8b3c4;
  --soft: #d7dee9;
  --cyan: #7dd3fc;
  --gold: #d6b46c;
  --blue: #8fb8ff;
  --border: rgba(185, 198, 217, 0.18);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(125, 211, 252, 0.11), transparent 34rem),
    radial-gradient(circle at 85% 5%, rgba(214, 180, 108, 0.10), transparent 30rem),
    linear-gradient(135deg, #070b13 0%, #0c1320 48%, #111827 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; overflow-wrap: anywhere; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(0.6rem, 1.5vw, 1rem);
  align-items: center;
  padding: 0.9rem clamp(1rem, 3vw, 2.5rem);
  background: rgba(7, 11, 19, 0.86);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(22px);
}
.brand {
  display: inline-flex;
  gap: 0.8rem;
  align-items: center;
  text-decoration: none;
  min-width: max-content;
}
.brand-mark {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(125, 211, 252, 0.55);
  border-radius: 1rem;
  color: var(--cyan);
  font-family: "Orbitron", sans-serif;
  box-shadow: 0 0 30px rgba(125, 211, 252, 0.14);
}
.brand strong {
  display: block;
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.04em;
}
.brand small { color: var(--muted); }
.site-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.25rem;
  justify-content: center;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.site-nav::-webkit-scrollbar { display: none; }
.site-nav a {
  flex: 0 0 auto;
  padding: 0.5rem 0.65rem;
  border-radius: 999px;
  color: #d7dee9;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #07111d;
  background: linear-gradient(135deg, #d6b46c, #7dd3fc);
}
.nav-toggle { display: none; }
.language-picker {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}
.language-picker select,
input,
select,
textarea {
  color: var(--text);
  background: rgba(10, 16, 27, 0.94);
  border: 1px solid var(--border);
  border-radius: 0.85rem;
}
.language-picker select {
  max-width: 12.5rem;
  padding: 0.65rem 0.85rem;
}
.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  max-width: 1240px;
  min-height: calc(100vh - 6rem);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 8rem) clamp(1.25rem, 4vw, 3rem);
}
.hero-content {
  max-width: 820px;
}
.hero-content h1,
.subhero h1 {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(2.5rem, 5.2vw, 5rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
  text-wrap: balance;
  overflow-wrap: anywhere;
}
.subhero h1 { font-size: clamp(2.3rem, 5vw, 4.25rem); }
.hero-lede,
.subhero p,
.intro-band p,
.trust-panel p,
.cta-card p {
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  line-height: 1.72;
  max-width: 68ch;
  overflow-wrap: anywhere;
}
.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-actions,
.payment-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 3rem;
  padding: 0.85rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button.primary {
  color: #07111d;
  background: linear-gradient(135deg, #d6b46c, #9bd4ff);
  box-shadow: 0 16px 45px rgba(214, 180, 108, 0.16);
}
.button.ghost {
  color: var(--text);
  background: rgba(13, 20, 32, 0.72);
  border-color: var(--border);
}
.button:hover { transform: translateY(-1px); }
.hero-panel,
.feature-card,
.step-card,
.content-card,
.cta-card,
.form-shell form,
.thanks-card {
  min-width: 0;
  background: linear-gradient(180deg, rgba(17, 25, 40, 0.90), rgba(10, 16, 27, 0.96));
  border: 1px solid var(--border);
  border-radius: 1.35rem;
  box-shadow: var(--shadow);
  overflow-wrap: anywhere;
}
.hero-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(1.35rem, 3vw, 2rem);
}
.signal {
  display: block;
  width: 4.75rem;
  height: 4.75rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(125, 211, 252, 0.34);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 211, 252, 0.26), rgba(214, 180, 108, 0.06) 55%, transparent 58%);
  box-shadow: 0 0 55px rgba(125, 211, 252, 0.20);
}
.hero-panel h2 { font-size: clamp(1.35rem, 2vw, 1.85rem); line-height: 1.2; }
.hero-panel p { color: var(--muted); line-height: 1.65; overflow-wrap: anywhere; }
.stat-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.stat-grid span {
  padding: 0.9rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  color: var(--soft);
  background: rgba(7, 11, 19, 0.45);
  overflow-wrap: anywhere;
}
.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.25rem, 4vw, 3rem);
}
.intro-band,
.trust-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: center;
}
.intro-band h2,
.section-heading h2,
.trust-panel h2,
.content-card h2 {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.8rem, 3.4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-wrap: balance;
  overflow-wrap: anywhere;
}
.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}
.feature-grid,
.step-grid,
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.05rem;
}
.feature-card,
.step-card,
.content-card {
  min-width: 0;
  padding: clamp(1.15rem, 2.2vw, 1.55rem);
  transition: transform 180ms ease, border-color 180ms ease;
}
.feature-card:hover,
.step-card:hover,
.content-card:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 180, 108, 0.52);
}
.feature-card h3,
.step-card h3 {
  color: var(--soft);
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  line-height: 1.25;
  margin-top: 0;
  overflow-wrap: anywhere;
}
.feature-card p,
.step-card p,
.content-card li {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
  word-break: normal;
}
.step-card span {
  color: var(--gold);
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 900;
  font-size: 0.9rem;
}
.subhero {
  max-width: 1060px;
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 8rem) clamp(1.25rem, 4vw, 3rem) clamp(2.5rem, 6vw, 4rem);
  text-align: center;
}
.content-card ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}
[dir="rtl"] .content-card ul { padding-right: 1.2rem; padding-left: 0; }
.form-shell { max-width: 940px; }
.form-shell.compact { max-width: 720px; }
.form-shell form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 4vw, 2rem);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.crypto-payment {
  display: grid;
  gap: 1rem;
}
.crypto-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.crypto-badges span {
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(214, 180, 108, 0.36);
  border-radius: 999px;
  color: var(--soft);
  background: rgba(214, 180, 108, 0.08);
  font-weight: 800;
  overflow-wrap: anywhere;
}
.crypto-payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
label {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
  color: var(--soft);
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
input,
select,
textarea {
  width: 100%;
  min-width: 0;
  padding: 0.9rem 1rem;
  font: inherit;
  line-height: 1.45;
}
textarea { resize: vertical; }
.checkbox {
  display: flex;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.7rem;
}
.checkbox input { width: auto; }
.notice {
  padding: 1rem;
  border: 1px solid rgba(214, 180, 108, 0.34);
  border-radius: 1rem;
  color: var(--soft);
  background: rgba(214, 180, 108, 0.08);
  line-height: 1.6;
  overflow-wrap: anywhere;
}
.site-footer {
  padding: 2rem;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--border);
}
.footer-links {
  display: inline-flex;
  gap: 1rem;
  margin: 0.3rem 0 0;
}
.thanks-body {
  display: grid;
  place-items: center;
  padding: 1rem;
}
.thanks-card {
  max-width: 680px;
  padding: clamp(1.5rem, 5vw, 3rem);
  text-align: center;
}
.standalone {
  justify-content: center;
  margin: 1.25rem 0;
}

@media (max-width: 920px) {
  .site-header { grid-template-columns: auto auto; }
  .brand { grid-column: 1; }
  .nav-toggle {
    display: inline-flex;
    justify-self: end;
    padding: 0.7rem 1rem;
    color: var(--text);
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid var(--border);
    border-radius: 999px;
  }
  .site-nav,
  .language-picker {
    grid-column: 1 / -1;
  }
  .site-nav {
    display: none;
    justify-content: flex-start;
    flex-wrap: wrap;
    overflow-x: visible;
  }
  .site-nav.is-open { display: flex; }
  .language-picker { justify-content: flex-start; }
  .hero-shell,
  .intro-band,
  .trust-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-shell {
    padding-top: 3.5rem;
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .payment-links,
  .button { width: 100%; }
  .site-nav a { width: 100%; }
  .language-picker { display: grid; }
  .language-picker select { max-width: none; }
  .brand small { display: none; }
  .feature-grid,
  .step-grid,
  .content-grid,
  .form-grid,
  .crypto-payment-grid {
    grid-template-columns: 1fr;
  }
  .hero-content h1,
  .subhero h1 {
    font-size: clamp(2.05rem, 12vw, 3.1rem);
    letter-spacing: -0.04em;
  }
}
