:root {
  --bg: #070a14;
  --bg-soft: #0e1324;
  --panel: #12182b;
  --panel-2: #171f36;
  --text: #f6f8ff;
  --muted: #aab3c7;
  --line: rgba(255, 255, 255, 0.12);
  --pink: #f35ad4;
  --cyan: #62dbff;
  --violet: #8e66ff;
  --lime: #c7ff6b;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 78% 10%, rgba(243, 90, 212, 0.22), transparent 28rem),
    radial-gradient(circle at 12% 18%, rgba(98, 219, 255, 0.16), transparent 24rem),
    linear-gradient(180deg, #070a14 0%, #0a1021 45%, #070a14 100%);
}

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

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

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

.skip-link {
  position: absolute;
  top: -80px;
  left: 16px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--cyan);
  color: #06111d;
  border-radius: 8px;
  font-weight: 800;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 10, 20, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-row {
  min-height: 78px;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand img {
  width: 168px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.main-nav a {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 8px;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.header-cta,
.btn,
.panel-button,
.notice-grid a,
.footer-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 900;
}

.header-cta {
  padding: 10px 18px;
  color: #07101d;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  box-shadow: 0 10px 32px rgba(98, 219, 255, 0.22);
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 74px 0 80px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(98, 219, 255, 0.06));
  z-index: -1;
}

.hero-sky {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 82%);
}

.star {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 20px var(--cyan);
}

.star-a { top: 18%; left: 22%; }
.star-b { top: 28%; right: 18%; background: var(--pink); box-shadow: 0 0 20px var(--pink); }
.star-c { bottom: 28%; left: 48%; background: var(--lime); box-shadow: 0 0 20px var(--lime); }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 0.83rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--pink);
  box-shadow: 0 0 18px var(--pink);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 770px;
  margin: 0;
  font-size: clamp(2.45rem, 6vw, 5.55rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-lead {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  padding: 14px 22px;
  border: 1px solid transparent;
}

.btn-primary {
  color: #07101d;
  background: linear-gradient(135deg, var(--cyan), var(--pink) 62%, var(--violet));
  box-shadow: 0 18px 44px rgba(243, 90, 212, 0.22);
}

.btn-secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.trust-list li {
  padding: 8px 12px;
  color: #dce5f7;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 750;
}

.access-panel {
  position: relative;
  isolation: isolate;
  padding: 30px;
  background:
    linear-gradient(145deg, rgba(18, 24, 43, 0.95), rgba(10, 15, 30, 0.95)),
    radial-gradient(circle at 20% 10%, rgba(98, 219, 255, 0.2), transparent 20rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-orbit {
  width: 170px;
  height: 170px;
  position: absolute;
  top: -52px;
  right: -38px;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(circle, #dba5ff 0 28%, #5f42c9 29% 52%, transparent 53%);
  opacity: 0.52;
}

.panel-orbit::after {
  content: "";
  position: absolute;
  inset: 48px -22px;
  border: 9px solid rgba(98, 219, 255, 0.82);
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-22deg);
}

.panel-kicker {
  margin: 0 0 8px;
  color: var(--lime);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.access-panel h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.access-panel p {
  color: var(--muted);
}

.panel-button {
  width: 100%;
  margin-top: 16px;
  padding: 14px 18px;
  color: #07101d;
  background: var(--lime);
}

.panel-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.panel-note span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--pink);
  font-weight: 1000;
}

.panel-note p {
  margin: 0;
  font-size: 0.88rem;
}

.notice-band {
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(98, 219, 255, 0.1), rgba(243, 90, 212, 0.08));
}

.notice-grid {
  min-height: 86px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.notice-grid p {
  margin: 0;
  color: #dce5f7;
}

.notice-grid a {
  padding: 10px 16px;
  color: #07101d;
  background: var(--cyan);
}

.section,
.seo-section {
  padding: 92px 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.025);
  border-block: 1px solid rgba(255, 255, 255, 0.07);
}

.section-head {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-head p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-head.compact {
  max-width: 640px;
}

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

.feature-card,
.category-card {
  min-height: 224px;
  padding: 24px;
  background: rgba(18, 24, 43, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-card .icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 8px;
  color: #07101d;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  font-weight: 1000;
}

.feature-card p,
.category-card p,
.seo-copy p,
.faq-list p,
.site-footer p {
  color: var(--muted);
}

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

.category-card {
  min-height: 210px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025)),
    rgba(18, 24, 43, 0.72);
}

.category-card span {
  display: inline-flex;
  margin-bottom: 32px;
  padding: 7px 10px;
  color: var(--cyan);
  border: 1px solid rgba(98, 219, 255, 0.32);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 1000;
}

.seo-section {
  background: linear-gradient(135deg, rgba(98, 219, 255, 0.08), rgba(142, 102, 255, 0.08));
}

.seo-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 54px;
}

.seo-copy p {
  margin: 0 0 16px;
}

.social-section {
  background:
    radial-gradient(circle at 80% 18%, rgba(98, 219, 255, 0.1), transparent 26rem),
    radial-gradient(circle at 14% 72%, rgba(243, 90, 212, 0.1), transparent 24rem);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.social-card {
  position: relative;
  display: grid;
  overflow: hidden;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
    rgba(18, 24, 43, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
}

.social-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 86% 18%, currentColor, transparent 15rem);
  opacity: 0.12;
}

.social-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  opacity: 0.62;
}

.social-card:hover,
.social-card:focus-visible {
  transform: translateY(-4px);
  border-color: currentColor;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.social-feature {
  grid-column: span 2;
  min-height: 260px;
  padding: 26px;
  align-content: start;
  gap: 13px;
}

.social-compact {
  grid-column: span 2;
  min-height: 150px;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  row-gap: 6px;
  align-content: center;
  padding: 20px;
}

.social-card strong,
.social-card p,
.social-card em,
.social-card .social-meta,
.social-card .social-icon {
  position: relative;
  z-index: 1;
}

.social-feature strong {
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  line-height: 1.05;
}

.social-compact strong {
  align-self: end;
  font-size: 1.1rem;
}

.social-card p {
  margin: 0;
  color: var(--muted);
}

.social-compact p {
  grid-column: 2;
  align-self: start;
  font-size: 0.94rem;
}

.social-card em {
  width: fit-content;
  margin-top: auto;
  padding: 8px 12px;
  color: #07101d;
  background: var(--text);
  border-radius: 999px;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 1000;
}

.social-meta {
  width: fit-content;
  padding: 6px 10px;
  color: color-mix(in srgb, currentColor 74%, white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.social-icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: inherit;
  background: currentColor;
}

.social-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: #06101d;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.x-twitter .social-icon svg,
.facebook .social-icon svg,
.pinterest .social-icon svg,
.linkedin .social-icon svg {
  fill: #06101d;
  stroke: none;
}

.instagram { color: #f35ad4; }
.x-twitter { color: #f6f8ff; }
.telegram { color: #62dbff; }
.facebook { color: #78a7ff; }
.pinterest { color: #ff667a; }
.linkedin { color: #74c1ff; }

.faq-wrap {
  max-width: 920px;
}

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

details {
  background: rgba(18, 24, 43, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

summary {
  min-height: 58px;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #050712;
  padding: 54px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.65fr 0.7fr;
  gap: 38px;
}

.footer-logo {
  width: 172px;
  margin-bottom: 16px;
}

.site-footer h2 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer nav a {
  color: var(--muted);
}

.footer-cta {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
}

.age {
  margin-top: 16px;
  font-size: 0.9rem;
}

.copyright {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.9rem;
}

.copyright p {
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}

@media (max-width: 920px) {
  .header-row {
    grid-template-columns: 158px auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 12px;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .header-cta {
    justify-self: end;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  .hero-grid,
  .seo-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .feature-grid,
  .category-grid,
  .social-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    position: relative;
  }

  .header-row {
    min-height: auto;
    padding: 14px 0 0;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .brand img {
    width: 156px;
    margin: 0 auto;
  }

  .header-cta {
    width: 100%;
  }

  .main-nav {
    padding: 0 0 14px;
  }

  .main-nav a {
    flex: 0 0 auto;
  }

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

  h1 {
    font-size: clamp(2.15rem, 14vw, 3.45rem);
  }

  .hero-actions,
  .trust-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn,
  .notice-grid a {
    width: 100%;
  }

  .access-panel,
  .feature-card,
  .category-card {
    padding: 20px;
  }

  .notice-grid,
  .feature-grid,
  .category-grid,
  .social-grid,
  .footer-grid,
  .copyright {
    grid-template-columns: 1fr;
  }

  .notice-grid {
    padding: 18px 0;
  }

  .section,
  .seo-section {
    padding: 64px 0;
  }
}

@media (max-width: 360px) {
  .container {
    width: min(100% - 22px, 1160px);
  }

  .access-panel h2 {
    font-size: 1.85rem;
  }

  .panel-note {
    grid-template-columns: 1fr;
  }
}
