:root {
  --bg: #050008;
  --secondary: #12001f;
  --card: #1b0b2e;
  --primary: #8b2cff;
  --accent: #b967ff;
  --text: #ffffff;
  --muted: #b8a8c9;
  --success: #65f0b4;
  --warning: #ffcf66;
  --danger: #ff6b9a;
  --line: rgba(185, 103, 255, 0.22);
  --glass: rgba(27, 11, 46, 0.68);
  --shadow: 0 24px 80px rgba(139, 44, 255, 0.24);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% -20%, rgba(139, 44, 255, 0.24), transparent 36rem),
    linear-gradient(180deg, var(--bg), var(--secondary) 48%, var(--bg));
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: 0;
}

body.no-scroll {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  left: 1rem;
  padding: .7rem 1rem;
  position: fixed;
  top: -5rem;
  z-index: 1000;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  backdrop-filter: blur(18px);
  background: rgba(5, 0, 8, 0.78);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner,
.section-inner,
.footer-inner {
  margin: 0 auto;
  max-width: var(--max);
  padding: 0 1.25rem;
}

.header-inner {
  align-items: center;
  display: flex;
  gap: 1rem;
  min-height: 76px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: .75rem;
  font-weight: 850;
  letter-spacing: .08em;
  min-width: max-content;
}

.brand img {
  filter: drop-shadow(0 0 18px rgba(185, 103, 255, .45));
  height: 40px;
  width: 40px;
}

.nav-toggle {
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  cursor: pointer;
  display: none;
  height: 42px;
  justify-content: center;
  margin-left: auto;
  width: 42px;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  background: var(--text);
  border-radius: 99px;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  transition: transform .2s ease, opacity .2s ease;
  width: 18px;
}

.nav-toggle {
  position: relative;
}

.nav-toggle::before {
  transform: translateY(-6px);
}

.nav-toggle::after {
  transform: translateY(6px);
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: rotate(-45deg);
}

.site-nav {
  align-items: center;
  display: flex;
  gap: .35rem;
  justify-content: flex-end;
  margin-left: auto;
  width: 100%;
}

.site-nav a {
  border-radius: var(--radius);
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
  padding: .6rem .72rem;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(139, 44, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(185, 103, 255, 0.18);
  color: var(--text);
}

.warning-banner {
  background: linear-gradient(90deg, rgba(255, 207, 102, .13), rgba(139, 44, 255, .16));
  border-bottom: 1px solid rgba(255, 207, 102, .24);
}

.warning-banner .section-inner {
  align-items: center;
  display: flex;
  gap: .7rem;
  padding-bottom: .8rem;
  padding-top: .8rem;
}

.warning-icon,
.status-dot {
  align-items: center;
  border-radius: 50%;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: .8rem;
  font-weight: 900;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.warning-icon {
  background: rgba(255, 207, 102, .16);
  color: var(--warning);
}

.status-dot {
  background: rgba(101, 240, 180, .13);
  color: var(--success);
}

main {
  overflow: hidden;
}

.hero {
  padding: 6rem 0 4rem;
  position: relative;
}

.hero::before {
  background: linear-gradient(90deg, transparent, rgba(185, 103, 255, .2), transparent);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .86fr);
}

.eyebrow {
  align-items: center;
  color: var(--accent);
  display: inline-flex;
  font-size: .83rem;
  font-weight: 850;
  gap: .5rem;
  letter-spacing: .16em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.08;
  margin: 0;
}

h1 {
  font-size: 4.2rem;
  max-width: 900px;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 1.15rem;
}

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

.lead {
  font-size: 1.28rem;
  margin-top: 1.15rem;
  max-width: 720px;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.8rem;
}

.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  font-weight: 850;
  gap: .55rem;
  justify-content: center;
  min-height: 46px;
  padding: .76rem 1rem;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 16px 42px rgba(139, 44, 255, .36);
  color: var(--text);
}

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

.btn-small {
  min-height: 40px;
  padding: .56rem .8rem;
}

.trust-strip {
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
  max-width: 790px;
}

.trust-item {
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .85rem;
}

.trust-item strong {
  display: block;
  font-size: .92rem;
}

.trust-item span {
  color: var(--muted);
  display: block;
  font-size: .82rem;
  margin-top: .15rem;
}

.hero-visual {
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual img {
  width: min(100%, 620px);
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 0 45px rgba(139, 44, 255, 0.35);
}

.section {
  padding: 4.8rem 0;
}

.section.alt {
  background: rgba(18, 0, 31, .44);
  border-top: 1px solid rgba(185, 103, 255, .12);
  border-bottom: 1px solid rgba(185, 103, 255, .12);
}

.section-head {
  align-items: end;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) minmax(240px, .45fr);
  margin-bottom: 2rem;
}

.section-head p {
  max-width: 620px;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

.card,
.verify-box,
.breadcrumb,
.notice-panel,
.contact-panel,
.policy-block {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 44px rgba(0, 0, 0, .22);
}

.card {
  padding: 1.25rem;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.card:hover {
  border-color: rgba(185, 103, 255, .52);
  box-shadow: 0 18px 58px rgba(139, 44, 255, .2);
  transform: translateY(-3px);
}

.card h3 {
  margin-top:.65rem;
  margin-bottom: .65rem;
}

.card p + .text-link,
.card p + .cta-row {
  margin-top: .9rem;
}

.text-link {
  color: var(--accent);
  display: inline-flex;
  font-weight: 850;
  gap: .3rem;
}

.verify-box {
  padding: 1.35rem;
}

.verify-form {
  display: grid;
  gap: .75rem;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 1rem;
}

.verify-form input,
.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, .07);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  outline: none;
  padding: .82rem .9rem;
  width: 100%;
}

.verify-form input:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(185, 103, 255, .16);
}

.verify-result {
  color: var(--muted);
  margin-top: .8rem;
  min-height: 1.6rem;
}

.verify-result.is-safe {
  color: var(--success);
}

.verify-result.is-warning {
  color: var(--warning);
}

.verify-result.is-danger {
  color: var(--danger);
}

.step-list,
.check-list,
.link-list {
  display: grid;
  gap: .8rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.step-list li,
.check-list li,
.link-list li {
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(185, 103, 255, .16);
  border-radius: var(--radius);
  color: var(--muted);
  padding: .95rem 1rem;
}

.step-list strong,
.check-list strong {
  color: var(--text);
}

.breadcrumb {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: .9rem;
  gap: .5rem;
  margin-bottom: 2rem;
  padding: .75rem .95rem;
}

.breadcrumb a {
  color: var(--accent);
  font-weight: 800;
}

.page-hero {
  padding: 4.6rem 0 3rem;
}

.page-hero h1 {
  font-size: 4.2rem;
}

.notice-panel,
.contact-panel,
.policy-block {
  padding: 1.35rem;
}

.notice-panel {
  border-color: rgba(255, 207, 102, .26);
}

.faq-list {
  display: grid;
  gap: .85rem;
}

.faq-item {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item summary {
  color: var(--text);
  cursor: pointer;
  font-weight: 850;
  list-style: none;
  padding: 1.05rem 1.15rem;
}

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

.faq-item p {
  border-top: 1px solid rgba(185, 103, 255, .14);
  padding: 1rem 1.15rem 1.15rem;
}

.contact-form {
  display: grid;
  gap: .8rem;
}

.site-footer {
  background: #050008;
  border-top: 1px solid var(--line);
  padding: 3rem 0 1.4rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.15fr repeat(3, minmax(150px, .55fr));
}

.footer-title {
  color: var(--text);
  font-weight: 850;
  margin-bottom: .8rem;
}

.footer-links {
  display: grid;
  gap: .55rem;
}

.footer-links a {
  color: var(--muted);
  transition: color .18s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(185, 103, 255, .14);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.2rem;
}

.back-to-top {
  align-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: 0;
  border-radius: var(--radius);
  bottom: 1rem;
  box-shadow: var(--shadow);
  color: var(--text);
  cursor: pointer;
  display: flex;
  font-weight: 900;
  height: 44px;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 1rem;
  transform: translateY(12px);
  transition: opacity .18s ease, transform .18s ease;
  width: 44px;
  z-index: 90;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    background: rgba(5, 0, 8, .97);
    border-top: 1px solid var(--line);
    display: none;
    gap: .2rem;
    left: 0;
    padding: .8rem 1.25rem 1.2rem;
    position: absolute;
    right: 0;
    top: 76px;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: .85rem;
  }

  .hero-grid,
  .section-head,
  .grid-2,
  .grid-3,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 4rem;
  }

  h1,
  .page-hero h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .lead {
    font-size: 1.18rem;
  }
}

@media (max-width: 640px) {
  .header-inner,
  .section-inner,
  .footer-inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .trust-strip,
  .verify-form {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .cta-row .btn,
  .verify-form .btn {
    width: 100%;
  }

  .section {
    padding: 3.2rem 0;
  }

  h1,
  .page-hero h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .lead {
    font-size: 1.05rem;
  }

  .footer-bottom {
    display: grid;
  }
}
