:root {
  --bg: #07131a;
  --bg-deep: #041015;
  --panel: rgba(7, 25, 31, 0.78);
  --panel-strong: rgba(10, 32, 39, 0.92);
  --line: rgba(120, 255, 203, 0.18);
  --line-bright: rgba(122, 255, 206, 0.42);
  --text: #e6fff5;
  --muted: #98c9b8;
  --accent: #79ffc9;
  --accent-strong: #37ff9d;
  --accent-soft: rgba(121, 255, 201, 0.12);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(54, 130, 110, 0.25), transparent 30%),
    linear-gradient(180deg, #08131b 0%, #041015 48%, #06151b 100%);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: #c4ffe7;
}

.site-shell {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.page-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(74, 244, 183, 0.18), transparent 22%),
    radial-gradient(circle at 84% 12%, rgba(114, 193, 255, 0.12), transparent 20%),
    radial-gradient(circle at 50% 70%, rgba(66, 255, 198, 0.07), transparent 28%);
  z-index: 0;
}

.hero,
.legal-header,
main,
.footer {
  position: relative;
  z-index: 1;
}

.hero {
  padding: 24px clamp(20px, 4vw, 48px) 20px;
}

.topbar {
  max-width: 1220px;
  margin: 0 auto 20px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(4, 14, 19, 0.56);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Orbitron", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 0 16px var(--accent-strong);
}

.top-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.top-links a {
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-panel {
  max-width: 1220px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 52px);
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(3, 17, 21, 0.68), rgba(5, 19, 24, 0.88)),
    url("banner.png") center/cover no-repeat;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  line-height: 1.05;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  text-shadow: 0 0 30px rgba(121, 255, 201, 0.15);
}

.lead {
  margin: 20px 0 0;
  max-width: 58ch;
  color: #d3f9ea;
  line-height: 1.75;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid var(--line-bright);
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, rgba(76, 255, 182, 0.22), rgba(40, 199, 143, 0.28));
  color: white;
}

.button-secondary {
  background: rgba(4, 15, 19, 0.62);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-visual img {
  width: min(100%, 420px);
  border-radius: 32px;
  border: 1px solid rgba(128, 255, 205, 0.32);
  box-shadow: 0 25px 70px rgba(1, 8, 10, 0.6);
}

main {
  max-width: 1220px;
  margin: 0 auto;
  padding: 20px clamp(20px, 4vw, 48px) 56px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(6, 21, 27, 0.88), rgba(5, 16, 21, 0.92));
  box-shadow: var(--shadow);
}

.banner-showcase {
  overflow: hidden;
}

.banner-showcase img {
  display: block;
  width: 100%;
  height: auto;
}

.info-grid,
.link-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.feature-card,
.split-panel {
  padding: 28px;
}

.card-label {
  margin: 0 0 14px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-family: "Orbitron", sans-serif;
}

.feature-card h2,
.split-panel h2,
.link-card h3,
.legal-hero h1 {
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  margin-bottom: 14px;
}

.feature-card p,
.split-panel p,
.link-card p,
.prose-panel p,
.prose-panel li {
  color: #d6f8eb;
  line-height: 1.78;
}

.signal-list {
  margin: 0;
  padding-left: 20px;
  color: #d6f8eb;
}

.signal-list li + li {
  margin-top: 10px;
}

.split-panel {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.contact-block {
  padding: 22px;
  border-radius: 22px;
  background: rgba(10, 31, 38, 0.72);
  border: 1px solid rgba(121, 255, 201, 0.16);
}

.contact-block p {
  margin: 0;
}

.contact-block p + p {
  margin-top: 16px;
}

.contact-block span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.link-card {
  padding: 24px;
  transition: transform 160ms ease, border-color 160ms ease;
}

.link-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-bright);
}

.footer {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px) 34px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
}

.legal-shell {
  padding: 24px clamp(20px, 4vw, 48px) 52px;
}

.legal-header {
  max-width: 1220px;
  margin: 0 auto 24px;
}

.legal-hero {
  margin-top: 18px;
  padding: 28px 6px 10px;
}

.legal-page {
  max-width: 920px;
  margin: 0 auto;
}

.prose-panel {
  padding: 34px;
}

.prose-panel h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.prose-panel ul {
  padding-left: 22px;
  margin: 12px 0;
}

.prose-panel li + li {
  margin-top: 8px;
}

@media (max-width: 960px) {
  .hero-panel,
  .split-panel,
  .info-grid,
  .link-cards {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: auto;
  }

  .hero-visual {
    order: -1;
  }
}

@media (max-width: 640px) {
  .topbar {
    border-radius: 24px;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-panel,
  .feature-card,
  .split-panel,
  .link-card,
  .prose-panel {
    padding: 22px;
  }

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