:root {
  --bg: #070A12;
  --panel: rgba(14, 20, 35, 0.82);
  --text: #F4F7FB;
  --muted: #A7B3C8;
  --line: rgba(148, 163, 184, 0.22);
  --blue: #58A6FF;
  --cyan: #5EEAD4;
  --violet: #A78BFA;
  --green: #86EFAC;
  --shadow: 0 30px 90px rgba(0,0,0,0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 110px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(88, 166, 255, 0.18), transparent 32rem),
    radial-gradient(circle at 75% 12%, rgba(167, 139, 250, 0.16), transparent 30rem),
    linear-gradient(180deg, #070A12 0%, #0B1020 54%, #070A12 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

.bg-glow {
  position: fixed;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(30px);
  opacity: 0.32;
  z-index: 0;
}

.glow-a {
  width: 18rem;
  height: 18rem;
  background: var(--blue);
  top: 18%;
  left: -7rem;
}

.glow-b {
  width: 24rem;
  height: 24rem;
  background: var(--violet);
  right: -10rem;
  bottom: 12%;
}

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

.site-header {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 54px;
  height: 54px;
  max-width: 54px;
  max-height: 54px;
  object-fit: contain;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav a:hover {
  color: var(--text);
}

.hero {
  max-width: 1020px;
  margin: 4.5rem auto 5rem;
  padding: 0 1.4rem;
}

.eyebrow,
.section-kicker {
  color: var(--cyan);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.7rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
  margin: 0.7rem 0 1.2rem;
  max-width: 950px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.05em;
  margin: 0.35rem 0 1rem;
}

h3 {
  margin: 0.3rem 0 0.4rem;
  font-size: 1.25rem;
}

.lead {
  max-width: 790px;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.muted {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0 1.25rem;
  border-radius: 999px;
  font-weight: 750;
  border: 1px solid var(--line);
}

.button.primary {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #06101C;
  border-color: transparent;
}

.button.ghost {
  background: rgba(255,255,255,0.04);
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 4rem 1.4rem;
}

.grid.two {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.card,
.question,
.feed-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.card {
  padding: clamp(1.3rem, 3vw, 2rem);
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.question-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.question {
  padding: 1.35rem;
  min-height: 13rem;
}

.question span {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
}

.question p,
.feed-item p {
  color: var(--muted);
  line-height: 1.55;
}

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

.feed-item {
  padding: 1.25rem;
}

.feed-item time {
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 800;
}

.feed-item a {
  color: var(--cyan);
  font-weight: 750;
}

.statement {
  padding-top: 2rem;
  margin-bottom: 140px;
}

.statement p {
  margin: 0;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(94,234,212,0.12), rgba(167,139,250,0.12));
  border: 1px solid var(--line);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.privacy-notice {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 10;
  max-width: 760px;
  margin: 0 auto;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: rgba(7, 10, 18, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.privacy-notice.is-visible {
  display: flex;
}

.privacy-notice p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.privacy-notice button {
  border: 0;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-weight: 800;
  cursor: pointer;
  background: var(--text);
  color: #07101C;
}

.site-footer {
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  min-width: 320px;
  padding: 12px 24px;
  background: rgba(8,15,35,.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(79,216,255,.15);
  border-radius: 999px;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
}

.site-footer p {
  margin: 4px 0;
  font-size: .9rem;
  line-height: 1.3;
}

.site-footer a {
  color: #d7e6ff;
  text-decoration: none;
}

.site-footer a:hover {
  color: #4fd8ff;
}

.footer-line {
  display: none;
}

@media (max-width: 850px) {
  .site-header,
  .grid.two {
    display: block;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .nav {
    margin-top: 1rem;
    flex-wrap: wrap;
  }

  .question-grid {
    grid-template-columns: 1fr;
  }

  .privacy-notice {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  body {
    padding-bottom: 120px;
  }

  .site-footer {
    min-width: 0;
    width: calc(100% - 24px);
    padding: 10px 14px;
    border-radius: 18px;
  }

  .site-footer p {
    font-size: .82rem;
  }
}