:root {
  --accent: #c0ff00;
  --accent-soft: rgba(192, 255, 0, 0.16);
  --accent-strong: rgba(192, 255, 0, 0.42);
  --bg: #030502;
  --bg-elevated: #080c07;
  --surface: rgba(10, 16, 9, 0.82);
  --surface-strong: rgba(13, 21, 11, 0.94);
  --text: #f4f8ef;
  --muted: #b9c5b2;
  --border: rgba(192, 255, 0, 0.2);
  --shadow: 0 0 38px rgba(192, 255, 0, 0.18);
  --max-width: 1120px;
  --nav-height: 74px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 22px);
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(192, 255, 0, 0.08), transparent 30rem),
    radial-gradient(circle at 18% 100%, rgba(192, 255, 0, 0.06), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

.honeycomb-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.hex-cluster {
  position: absolute;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.2px;
  filter: drop-shadow(0 0 4px var(--accent-soft));
}

.hex-main {
  width: 300px;
  height: 300px;
  left: 5vw;
  bottom: 15vh;
}

.hex-side {
  width: 160px;
  height: 200px;
  left: -2vw;
  top: 30vh;
}

.hex-faint-1 {
  width: 100px;
  height: 100px;
  left: 65vw;
  top: 15vh;
}

.hex-faint-2 {
  width: 100px;
  height: 100px;
  right: 8vw;
  top: 65vh;
}

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

a {
  color: var(--accent);
  text-underline-offset: 0.22em;
}

a:hover {
  color: #dcff64;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
  border-radius: 8px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 0.7rem 0.9rem;
  color: #071005;
  background: var(--accent);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--nav-height);
  border-bottom: 1px solid rgba(192, 255, 0, 0.13);
  background: rgba(3, 5, 2, 0.82);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 32px, var(--max-width));
  min-height: var(--nav-height);
  margin: 0 auto;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
}

.brand span {
  font-family: "Lucida Console", "Courier New", monospace;
  font-size: 1.02rem;
  line-height: 1;
  text-transform: none;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 10px rgba(192, 255, 0, 0.24))
    drop-shadow(0 0 24px rgba(192, 255, 0, 0.12));
}

.nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  gap: 0.25rem;
  list-style: none;
}

.nav a:not(.brand) {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.35rem 0.72rem;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
}

.nav a:not(.brand):hover,
.nav a[aria-current="page"] {
  border-color: var(--border);
  color: var(--text);
  background: rgba(192, 255, 0, 0.065);
}

.hero {
  display: grid;
  min-height: calc(100svh - var(--nav-height));
  padding: clamp(4rem, 9vw, 7rem) 1rem clamp(4rem, 8vw, 6rem);
  place-items: center;
}

.hero-inner {
  width: min(100%, 900px);
  margin: 0 auto;
  text-align: center;
}

.hero-logo {
  width: clamp(196px, 30vw, 344px);
  margin: 0 auto 1.75rem;
  object-fit: contain;
  filter:
    drop-shadow(0 0 12px rgba(192, 255, 0, 0.28))
    drop-shadow(0 0 30px rgba(192, 255, 0, 0.14));
  animation: logoPulse 5s ease-in-out infinite;
}

h1,
h2 {
  margin: 0;
  color: var(--text);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3.25rem, 12vw, 8.5rem);
  font-weight: 850;
}

#hero-title {
  color: var(--accent);
  font-family: "Lucida Console", "Courier New", monospace;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-shadow: 0 0 18px rgba(192, 255, 0, 0.12);
}

h2 {
  max-width: 820px;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 780;
}

.tagline {
  max-width: 760px;
  margin: 1.1rem auto 2rem;
  color: var(--muted);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  line-height: 1.5;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.15rem;
  border: 1px solid var(--accent);
  border-radius: 8px;
  font-size: 0.98rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.primary-button {
  color: #071005;
  background: var(--accent);
  box-shadow: 0 0 28px rgba(192, 255, 0, 0.24);
}

.primary-button:hover {
  color: #071005;
  background: #dcff64;
  box-shadow: 0 0 36px rgba(192, 255, 0, 0.32);
  transform: translateY(-1px);
}

.content-band {
  padding: clamp(4rem, 9vw, 7rem) 1rem;
  border-top: 1px solid rgba(192, 255, 0, 0.09);
}

.section-shell {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.section-label {
  margin: 0 0 0.8rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.prose {
  max-width: 860px;
  margin-top: 1.7rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.14rem);
}

.prose p {
  margin: 0 0 1.1rem;
}

.pronunciation {
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 650;
  opacity: 0.92;
}

.support-band {
  background:
    linear-gradient(135deg, rgba(192, 255, 0, 0.06), transparent 42%),
    rgba(8, 12, 7, 0.58);
}

.split-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.support-panel {
  position: relative;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.support-panel::before {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 78px;
  height: 42px;
  border-top: 1px solid var(--accent-strong);
  border-right: 1px solid var(--accent-strong);
  content: "";
  opacity: 0.62;
}

.support-panel p {
  margin: 0 0 1.35rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-note {
  margin-top: 1.25rem;
  font-size: 0.98rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: 1.8rem 0 2.2rem;
  border-top: 1px solid rgba(192, 255, 0, 0.13);
  gap: 1rem;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

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

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

.legal-main {
  padding: clamp(3rem, 7vw, 5rem) 1rem clamp(4rem, 8vw, 6rem);
}

.legal-shell {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(192, 255, 0, 0.14);
  border-radius: 8px;
  background: var(--surface-strong);
  box-shadow: 0 0 42px rgba(0, 0, 0, 0.28);
}

.legal-header {
  padding-bottom: 1.7rem;
  margin-bottom: 1.8rem;
  border-bottom: 1px solid rgba(192, 255, 0, 0.16);
}

.legal-header h1 {
  font-size: clamp(2.4rem, 7vw, 5.2rem);
}

.last-updated {
  margin: 1rem 0 0;
  color: var(--muted);
  font-weight: 700;
}

.legal-shell section {
  padding: 1rem 0;
}

.legal-shell h2 {
  max-width: none;
  margin-bottom: 0.7rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.legal-shell p {
  margin: 0 0 0.95rem;
  color: var(--muted);
  font-size: 1rem;
}

.legal-shell p:last-child {
  margin-bottom: 0;
}

@keyframes logoPulse {
  0%,
  100% {
    filter:
      drop-shadow(0 0 12px rgba(192, 255, 0, 0.26))
      drop-shadow(0 0 30px rgba(192, 255, 0, 0.12));
  }

  50% {
    filter:
      drop-shadow(0 0 15px rgba(192, 255, 0, 0.32))
      drop-shadow(0 0 36px rgba(192, 255, 0, 0.16));
  }
}

@media (max-width: 760px) {
  :root {
    --nav-height: 92px;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 0.8rem 0;
    gap: 0.65rem;
  }

  .nav ul {
    justify-content: flex-start;
    width: 100%;
    gap: 0.15rem;
  }

  .nav a:not(.brand) {
    min-height: 38px;
    padding: 0.28rem 0.58rem;
    font-size: 0.9rem;
  }

  .hero {
    min-height: auto;
    padding-top: 4.5rem;
  }

  .hex-main {
    width: 200px;
    height: 200px;
    left: -5vw;
    bottom: 5vh;
    opacity: 0.7;
  }

  .hex-side {
    width: 100px;
    height: 125px;
    left: -5vw;
    top: 15vh;
    opacity: 0.6;
  }

  .hex-faint-1 {
    display: none;
  }

  .hex-faint-2 {
    width: 60px;
    height: 60px;
    right: -2vw;
    top: 65vh;
  }

  .split-shell {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

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