:root {
  color-scheme: dark;
  --bg: #020812;
  --panel: rgba(5, 19, 34, 0.82);
  --panel-strong: rgba(6, 24, 42, 0.94);
  --ink: #f5fbff;
  --muted: #a9bfd0;
  --blue: #19a8ff;
  --blue-soft: rgba(25, 168, 255, 0.18);
  --gold: #f0c14d;
  --gold-strong: #ffce58;
  --line: rgba(93, 174, 255, 0.28);
  --line-gold: rgba(240, 193, 77, 0.46);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.46);
  --max: 1420px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 0;
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(1, 7, 18, 0.96), rgba(4, 18, 32, 0.92) 44%, rgba(3, 8, 18, 0.98)),
    #020812;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(25, 168, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 168, 255, 0.045) 1px, transparent 1px),
    linear-gradient(118deg, transparent 0 58%, rgba(240, 193, 77, 0.16) 58.2%, transparent 64%);
  background-size: 72px 72px, 72px 72px, 100% 100%;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 80;
  padding: 10px 14px;
  border-radius: 8px;
  color: #06101d;
  background: var(--gold);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(240, 193, 77, 0.25);
  background: rgba(2, 8, 18, 0.86);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(var(--max), calc(100% - 32px));
  min-height: 92px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  box-shadow: 0 0 28px rgba(255, 55, 225, 0.46);
}

.brand-copy strong,
.brand-copy small,
.agency-lockup strong,
.agency-lockup span {
  display: block;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 1.28rem;
  font-weight: 950;
}

.brand-copy small {
  margin-top: 4px;
  color: #c6b5ff;
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
}

.agency-lockup {
  min-width: 210px;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.agency-lockup strong {
  color: var(--gold-strong);
  font-size: 1.45rem;
  font-weight: 950;
}

.agency-lockup span {
  margin-top: 4px;
  color: #fff;
  font-size: 1.02rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  color: #eef7ff;
  font-weight: 850;
}

.nav-menu a {
  white-space: nowrap;
}

.language-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line-gold);
  border-radius: 8px;
  background: rgba(1, 10, 22, 0.8);
}

.language-switch button {
  min-width: 46px;
  height: 34px;
  border: 0;
  border-radius: 6px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.language-switch button.is-active {
  color: #06101d;
  background: linear-gradient(135deg, #ffe58c, #d79a26);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 24, 42, 0.86);
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  border-radius: 8px;
  background: var(--ink);
}

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

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 0.68fr) minmax(230px, 0.36fr);
  gap: 26px;
  align-items: center;
  min-height: 430px;
  padding: 34px 0 28px;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(25, 168, 255, 0.2), transparent 34%),
    linear-gradient(124deg, transparent 0 38%, rgba(240, 193, 77, 0.13) 38.2%, transparent 47%);
  opacity: 0.88;
}

.hero-copy,
.hero-visual,
.hero-rail,
.section-heading,
.support-section,
.faq-section,
.final-cta > div {
  min-width: 0;
}

.eyebrow {
  margin-bottom: 14px;
  color: #4fe0ff;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 3.9rem;
  font-weight: 950;
  line-height: 1.02;
}

.hero h1::first-line {
  color: #fff;
}

.hero-text {
  max-width: 610px;
  margin-bottom: 24px;
  color: #d1dfeb;
  font-size: 1.18rem;
  line-height: 1.5;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn,
.mini-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 58px;
  border-radius: 8px;
  font-weight: 950;
}

.btn {
  min-width: 260px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn:disabled,
.mini-action:disabled {
  cursor: not-allowed;
  opacity: 0.95;
}

.btn-primary {
  color: #07101c;
  background: linear-gradient(135deg, #fff0a1, #f0c14d 48%, #c9871f);
  box-shadow: 0 18px 38px rgba(240, 193, 77, 0.18);
}

.btn-secondary {
  color: #fff;
  background: rgba(5, 19, 34, 0.86);
  border-color: rgba(118, 201, 255, 0.42);
}

.pending-note {
  margin: 12px 0 0;
  color: #84a9c4;
  font-size: 0.9rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.trust-strip article,
.hero-rail a,
.path-card,
.support-section,
.faq-section,
.final-cta {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(8, 31, 54, 0.86), rgba(4, 13, 25, 0.88));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), var(--shadow);
}

.trust-strip article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  padding: 12px;
}

.trust-strip span {
  grid-row: span 2;
  align-self: center;
  min-width: 42px;
  padding: 8px 9px;
  border: 1px solid rgba(25, 168, 255, 0.36);
  border-radius: 8px;
  color: var(--gold);
  background: rgba(25, 168, 255, 0.14);
  font-size: 0.72rem;
  font-weight: 950;
  text-align: center;
}

.trust-strip strong {
  font-size: 0.92rem;
}

.trust-strip small {
  color: var(--muted);
}

.hero-visual {
  position: relative;
  justify-self: center;
}

.hero-visual img {
  width: min(100%, 480px);
  border: 1px solid var(--line-gold);
  border-radius: 8px;
  box-shadow: 0 0 38px rgba(25, 168, 255, 0.22);
}

.hero-id-card {
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: min(82%, 350px);
  padding: 12px 18px;
  border: 1px solid var(--line-gold);
  border-radius: 8px;
  color: #07101c;
  background: linear-gradient(135deg, rgba(255, 232, 139, 0.95), rgba(224, 151, 35, 0.92));
  transform: translateX(-50%);
}

.hero-id-card strong,
.hero-id-card span {
  display: block;
}

.hero-id-card strong {
  font-size: 1rem;
  font-weight: 950;
}

.hero-id-card span {
  margin-top: 3px;
  font-weight: 850;
}

.hero-rail {
  display: grid;
  gap: 12px;
}

.hero-rail a {
  display: grid;
  gap: 8px;
  min-height: 118px;
  padding: 22px;
}

.hero-rail strong {
  color: #fff;
  font-size: 1.18rem;
}

.hero-rail span {
  color: var(--muted);
  line-height: 1.42;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 10px;
}

.path-card {
  padding: 24px;
}

.card-icon {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid var(--line-gold);
  border-radius: 8px;
  color: var(--gold);
  background: rgba(240, 193, 77, 0.08);
  font-size: 0.76rem;
  font-weight: 950;
}

.path-card h2,
.section-heading h2,
.support-section h2,
.faq-section h2,
.final-cta h2 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.55rem;
  line-height: 1.12;
}

.path-card p,
.support-list span,
.faq-section p,
.final-cta p {
  color: var(--muted);
  line-height: 1.52;
}

.mini-action {
  min-width: 150px;
  min-height: 42px;
  margin-top: 12px;
  padding: 0 16px;
  border: 1px solid var(--line-gold);
  color: #07101c;
  background: var(--gold);
}

.live-section,
.support-faq-grid,
.final-cta {
  margin-top: 18px;
}

.live-section {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(4, 13, 25, 0.88);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.section-heading h2 {
  margin-bottom: 0;
}

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

.live-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(2, 8, 18, 0.8);
}

.live-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.support-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 16px;
}

.support-section,
.faq-section {
  padding: 22px;
}

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

.support-list article {
  padding: 14px;
  border: 1px solid rgba(25, 168, 255, 0.2);
  border-radius: 8px;
  background: rgba(2, 8, 18, 0.34);
}

.support-list strong,
.support-list span {
  display: block;
}

.support-list strong {
  margin-bottom: 4px;
}

.faq-section details {
  border: 1px solid rgba(25, 168, 255, 0.24);
  border-radius: 8px;
  background: rgba(2, 8, 18, 0.5);
}

.faq-section details + details {
  margin-top: 10px;
}

.faq-section summary {
  cursor: pointer;
  padding: 13px 14px;
  color: #fff;
  font-weight: 820;
}

.faq-section p {
  margin: 0;
  padding: 0 14px 14px;
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 24px;
  margin-bottom: 28px;
}

@media (max-width: 1120px) {
  .nav-shell {
    grid-template-columns: auto 1fr auto;
  }

  .agency-lockup {
    border-left: 0;
    padding-left: 0;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .nav-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(2, 8, 18, 0.98);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 12px;
  }

  .language-switch {
    margin-top: 8px;
    width: fit-content;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  }

  .hero-rail {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    position: relative;
  }

  .nav-shell {
    grid-template-columns: auto 1fr auto;
    min-height: 70px;
    gap: 10px;
  }

  .brand-copy strong {
    font-size: 0.96rem;
  }

  .brand-copy small {
    font-size: 0.56rem;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .agency-lockup {
    min-width: 0;
    justify-self: center;
  }

  .agency-lockup strong {
    font-size: 0.8rem;
  }

  .agency-lockup span {
    font-size: 0.74rem;
  }

  main {
    width: min(100% - 18px, var(--max));
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: 0;
    padding: 14px 0 16px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-visual img {
    width: min(100%, 326px);
    margin: 0 auto;
  }

  .hero-id-card {
    bottom: 12px;
    width: min(82%, 270px);
    padding: 9px 12px;
  }

  .hero-id-card strong {
    font-size: 0.82rem;
  }

  .hero-id-card span {
    font-size: 0.78rem;
  }

  .hero h1 {
    font-size: 2.22rem;
  }

  .hero-text {
    margin-bottom: 16px;
    font-size: 0.98rem;
  }

  .hero-actions,
  .final-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .btn {
    min-width: 0;
    min-height: 50px;
  }

  .pending-note {
    font-size: 0.78rem;
  }

  .trust-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .trust-strip article {
    display: block;
    padding: 10px;
  }

  .trust-strip span {
    display: inline-flex;
    justify-content: center;
    min-width: 0;
    margin-bottom: 8px;
    padding: 6px 8px;
  }

  .trust-strip strong {
    display: block;
    font-size: 0.75rem;
  }

  .trust-strip small {
    display: block;
    margin-top: 4px;
    font-size: 0.68rem;
  }

  .hero-rail,
  .path-grid,
  .live-grid,
  .support-faq-grid,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero-rail a {
    min-height: 0;
    padding: 14px;
  }

  .path-grid {
    margin-top: 0;
  }

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

  .section-heading {
    display: block;
  }

  .path-card,
  .support-section,
  .faq-section,
  .final-cta {
    padding: 18px;
  }
}
