:root {
  --bg: #0b0c10;
  --surface: #151821;
  --surface-alt: #1f2331;
  --text: #ffffff;
  --muted: #9ca3af;
  --border: rgba(255, 255, 255, 0.08);
  --accent: #ffb800;
  --accent-alt: #00f0ff;
  --accent-strong: #ef1c5a;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, color-mix(in srgb, var(--accent) 14%, transparent) 0%, transparent 45%),
    var(--bg);
  color: var(--text);
  font-family: "Inter", "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
  color: transparent;
  font-size: 0;
  line-height: 0;
}

.site-shell {
  min-height: 100vh;
  position: relative;
  overflow-x: clip;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(11, 12, 16, 0.82);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
}

.logo {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1.05rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav__link,
.header__login {
  color: color-mix(in srgb, var(--text) 78%, transparent);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.nav__link:hover,
.header__login:hover {
  color: var(--accent);
}

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

.locale-switcher {
  position: relative;
}

.locale-switcher summary {
  list-style: none;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.locale-switcher[open] summary {
  border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
}

.locale-switcher summary::-webkit-details-marker {
  display: none;
}

.locale-switcher__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 180px;
  padding: 8px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(21, 24, 33, 0.96);
  box-shadow: var(--shadow-soft);
}

.locale-switcher__item {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
}

.locale-switcher__item:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.header__login {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--border));
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: transparent;
  color: var(--text);
}

.mobile-panel {
  display: none;
}

.hero {
  padding: 56px 0 40px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "★";
  color: var(--accent);
}

.hero h1 {
  margin: 14px 0 8px;
  font-size: clamp(1.95rem, 4vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-family: "Space Grotesk", "Inter", sans-serif;
  text-wrap: balance;
}

.hero__highlight {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: clamp(1.08rem, 2vw, 1.55rem);
  line-height: 1.1;
  font-weight: 700;
  font-family: "Space Grotesk", "Inter", sans-serif;
  max-width: 720px;
}

.hero__description,
.section__subtitle,
.copy-block p,
.steps-block__lead,
.faq__lead,
.footer__text {
  color: var(--muted);
}

.hero__description {
  max-width: 640px;
  font-size: 0.96rem;
  margin: 14px 0 0;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn--primary {
  color: #000;
  background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 70%, #fff 30%));
  box-shadow: 0 18px 34px color-mix(in srgb, var(--accent) 26%, transparent);
}

.btn--secondary,
.btn--ghost {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.btn--secondary:hover,
.btn--ghost:hover {
  border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.hero__metric-value {
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  font-weight: 800;
  font-family: "Space Grotesk", "Inter", sans-serif;
}

.hero__metric-label {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__visual,
.media-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent) 26%, var(--border));
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.hero__visual img {
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.media-frame img {
  aspect-ratio: 16 / 12;
  object-fit: cover;
}

.glass-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(21, 24, 33, 0.65);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}

.section {
  padding: 72px 0;
}

.section--alt {
  background: color-mix(in srgb, var(--surface) 86%, #000 14%);
}

.section-title {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  line-height: 1.08;
  font-family: "Space Grotesk", "Inter", sans-serif;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.section-title .accent {
  color: var(--accent);
}

.copy-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.92fr);
  gap: 40px;
  align-items: center;
}

.copy-block--text-only {
  grid-template-columns: 1fr;
}

.copy-block--image-left {
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1fr);
}

.copy-block--image-left .copy-block__visual {
  order: -1;
}

.copy-block__content {
  padding: 28px;
}

.copy-block--text-only .copy-block__content {
  max-width: 920px;
  margin: 0 auto;
}

.copy-block__visual img {
  aspect-ratio: 16 / 12;
  object-fit: cover;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.card {
  padding: 24px;
}

.card__icon {
  font-size: 1.7rem;
  margin-bottom: 16px;
}

.card h3,
.step-card h3,
.faq__question {
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-family: "Space Grotesk", "Inter", sans-serif;
}

.card p,
.step-card p,
.faq__answer {
  margin: 0;
  color: var(--muted);
}

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

.step-card {
  position: relative;
  padding: 28px 24px 24px;
}

.step-card__index {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  font-weight: 800;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
}

.faq-item[open] {
  border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--accent);
  flex: 0 0 auto;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq__answer {
  padding: 0 24px 24px;
}

.footer {
  padding: 72px 0 120px;
  border-top: 1px solid var(--border);
  background: #050608;
}

.footer__banner {
  margin-bottom: 36px;
  padding: 36px;
  text-align: center;
}

.footer__banner h2,
.footer__heading {
  margin: 0 0 14px;
  font-family: "Space Grotesk", "Inter", sans-serif;
}

.footer__body {
  padding: 30px;
}

.footer__copy {
  max-width: 860px;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.footer__legal-link {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.18s ease;
}

.footer__legal-link:hover {
  color: var(--accent);
}

.footer__base {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.sticky-offer {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
}

.sticky-offer__text {
  font-weight: 700;
}

.root-redirect {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
}

.root-redirect a {
  color: var(--accent);
}

@media (max-width: 1080px) {
  .hero__grid,
  .copy-block,
  .copy-block--image-left {
    grid-template-columns: 1fr;
  }

  .copy-block--image-left .copy-block__visual {
    order: 0;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  body.menu-open {
    overflow: hidden;
  }

  .mobile-panel {
    position: fixed;
    inset: 80px 16px auto 16px;
    padding: 18px;
    display: none;
    z-index: 35;
  }

  body.menu-open .mobile-panel {
    display: grid;
    gap: 12px;
  }

  .mobile-panel__link {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
  }

  .header__controls .locale-switcher,
  .header__controls .header__login {
    display: none;
  }

  .footer__legal,
  .footer__base {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 44px;
  }

  .cards-grid,
  .hero__metrics {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.55rem);
  }

  .hero__highlight {
    font-size: 1rem;
  }

  .hero__description {
    font-size: 0.92rem;
  }

  .footer {
    padding-bottom: 160px;
  }

  .sticky-offer {
    flex-direction: column;
    align-items: stretch;
  }
}

.eyebrow::before {
  content: "*";
}

.faq-item[open] summary::after {
  content: "-";
}
