:root {
  color-scheme: dark;
  --bg: #020204;
  --panel: rgba(7, 9, 14, 0.86);
  --text: #eefaff;
  --muted: #9aa8b8;
  --cyan: #00f5ff;
  --magenta: #ff2bd6;
  --green: #42ff7b;
  --violet: #9a5cff;
  --line: rgba(0, 245, 255, 0.22);
  --shadow-cyan: rgba(0, 245, 255, 0.18);
  font-family: "Aptos", "Segoe UI Variable", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 14%, rgba(0, 245, 255, 0.12), transparent 24rem),
    radial-gradient(circle at 82% 10%, rgba(255, 43, 214, 0.12), transparent 22rem),
    linear-gradient(180deg, #020204 0%, #05070d 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(0, 245, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 43, 214, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 78%);
}

a {
  color: var(--cyan);
  text-decoration: none;
  text-underline-offset: 0.22em;
}

a:hover {
  color: var(--green);
  text-decoration: underline;
}

a:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 20;
  padding: 0.65rem 0.8rem;
  color: #001014;
  background: var(--green);
  border-radius: 0.4rem;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  padding: 0.8rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  max-width: 68rem;
  margin: 0 auto;
}

.nav a {
  min-height: 2.5rem;
  padding: 0.7rem 0.85rem;
  color: rgba(238, 250, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
  background: rgba(2, 2, 4, 0.58);
  border: 1px solid rgba(0, 245, 255, 0.18);
  border-radius: 0.4rem;
  box-shadow: 0 0 22px rgba(0, 245, 255, 0.05);
  backdrop-filter: blur(14px);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--text);
  border-color: rgba(66, 255, 123, 0.45);
  box-shadow: 0 0 24px rgba(66, 255, 123, 0.12);
  text-decoration: none;
}

.home-nav {
  opacity: 0.34;
}

.home-nav a {
  min-height: auto;
  padding: 0.35rem 0.45rem;
  color: rgba(238, 250, 255, 0.58);
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.home-nav a:hover {
  color: rgba(66, 255, 123, 0.84);
  box-shadow: none;
}

.home-page {
  overflow: hidden;
  background: #000;
}

.home-page::before {
  opacity: 0.34;
}

.hero {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(4.25rem, 8vh, 5.5rem) 1.25rem clamp(5.25rem, 10vh, 6.5rem);
  place-items: center;
}

.hero-stack {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: clamp(0.85rem, 2.5vh, 1.4rem);
}

.hero-logo {
  display: block;
  width: min(82vw, 42rem);
  max-height: min(64vh, 34rem);
  max-height: min(64svh, 34rem);
  object-fit: contain;
  border: 0;
  box-shadow: none;
  filter: none;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.social-icon {
  display: inline-grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  color: rgba(238, 250, 255, 0.42);
  opacity: 0.72;
  transition: color 160ms ease, opacity 160ms ease, filter 160ms ease, transform 160ms ease;
}

.social-icon svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.social-icon:hover {
  color: var(--magenta);
  opacity: 1;
  filter: drop-shadow(0 0 12px rgba(255, 43, 214, 0.52));
  transform: translateY(-1px);
  text-decoration: none;
}

.site-footer {
  display: grid;
  gap: 0.35rem;
  padding: 0 1rem max(0.9rem, env(safe-area-inset-bottom));
  text-align: center;
}

.home-page .site-footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
}

.site-footer p {
  max-width: none;
  margin: 0;
  color: var(--text);
  font-size: 0.78rem;
  opacity: 0.25;
}

.content-shell {
  width: min(100%, 72rem);
  margin: 0 auto;
  padding: 6.8rem 1rem 4rem;
}

.legal-page {
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  flex-direction: column;
  background: #000;
}

.legal-page::before {
  opacity: 0.34;
}

.legal-page .content-shell {
  flex: 1;
  width: min(100%, 50rem);
  padding: clamp(5.25rem, 9vh, 6.5rem) 1.25rem clamp(2.25rem, 5vh, 3.5rem);
}

.legal-content {
  position: relative;
  padding: clamp(0.25rem, 2vw, 1.25rem) 0;
}

.legal-content .eyebrow {
  opacity: 0.58;
}

.legal-content h1 {
  margin-bottom: 1.75rem;
  font-size: clamp(2.15rem, 8vw, 4.25rem);
  font-weight: 650;
  letter-spacing: 0;
}

.legal-content {
  font-feature-settings: "ss01" 1, "cv01" 1;
}

.legal-content h2 {
  margin-top: 2.35rem;
  color: rgba(0, 245, 255, 0.74);
  font-size: clamp(1rem, 2.5vw, 1.18rem);
  font-weight: 650;
}

.legal-content p {
  color: rgba(238, 250, 255, 0.74);
  font-size: clamp(1rem, 2vw, 1.06rem);
  line-height: 1.82;
}



.panel {
  position: relative;
  overflow: hidden;
  padding: clamp(1.25rem, 4vw, 3rem);
  background:
    linear-gradient(135deg, rgba(0, 245, 255, 0.08), transparent 22rem),
    linear-gradient(315deg, rgba(255, 43, 214, 0.08), transparent 24rem),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  box-shadow:
    0 0 38px var(--shadow-cyan),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.panel::after {
  position: absolute;
  right: -12rem;
  bottom: -12rem;
  width: 24rem;
  height: 24rem;
  content: "";
  background: radial-gradient(circle, rgba(154, 92, 255, 0.18), transparent 68%);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  margin: 0 0 1.35rem;
  color: var(--text);
  font-size: clamp(2rem, 8vw, 4.75rem);
  line-height: 0.98;
  text-shadow:
    0 0 18px rgba(0, 245, 255, 0.28),
    0 0 34px rgba(255, 43, 214, 0.2);
}

h2 {
  margin: 2rem 0 0.65rem;
  color: var(--cyan);
  font-size: clamp(1.1rem, 4vw, 1.35rem);
}

p {
  max-width: 68ch;
  margin: 0 0 1rem;
  color: rgba(238, 250, 255, 0.82);
  line-height: 1.7;
}

.contact-list {
  display: grid;
  gap: 0.95rem;
  max-width: 44rem;
  margin: 1.65rem 0 2.35rem;
  font-style: normal;
}

.contact-item {
  display: grid;
  gap: 0.22rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(238, 250, 255, 0.08);
}

.contact-label {
  color: rgba(66, 255, 123, 0.56);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-value {
  color: rgba(238, 250, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.08rem);
  line-height: 1.55;
}

@media (min-width: 620px) {
  .contact-item {
    grid-template-columns: 8rem minmax(0, 1fr);
    gap: 1.5rem;
    align-items: baseline;
  }
}

.notice {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  color: var(--muted);
  border-top: 1px solid rgba(0, 245, 255, 0.16);
}

.legal section {
  position: relative;
  z-index: 1;
}

@media (min-width: 700px) {
  .site-header {
    padding: 1.2rem;
  }

  .nav a {
    padding-inline: 1rem;
  }

  .content-shell {
    padding-top: 8rem;
  }
}

.site-footer {
  width: 100%;
}

.site-footer > p {
  max-width: none;
  margin: 0;
  color: var(--text);
  font-size: 0.78rem;
  line-height: 1.2;
  text-align: center;
  opacity: 0.25;
}

.site-footer .social-links {
  margin-inline: auto;
}
.address-lines {
  display: grid;
  gap: 0.12rem;
}

.address-lines span {
  display: block;
}
