@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg: #f6f3ea;
  --bg-deep: #ece6d8;
  --card: rgba(255, 255, 255, 0.78);
  --ink: #161616;
  --muted: #575347;
  --line: rgba(22, 22, 22, 0.12);
  --accent: #9dff20;
  --accent-deep: #74cc00;
  --shadow: 0 24px 80px rgba(22, 22, 22, 0.08);
  --radius: 24px;
  --mono: 'IBM Plex Mono', monospace;
  --sans: 'Space Grotesk', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(157, 255, 32, 0.24), transparent 28%),
    radial-gradient(circle at top right, rgba(22, 22, 22, 0.05), transparent 24%),
    linear-gradient(180deg, #fbf9f3 0%, var(--bg) 52%, var(--bg-deep) 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(22, 22, 22, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 22, 22, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 68%);
}

a {
  color: inherit;
}

.site-shell {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 22px 72px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 42px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-note {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.topnav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.topnav a {
  text-decoration: none;
  font-size: 15px;
  color: var(--muted);
}

.topnav a:hover,
.topnav a.active {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.hero,
.panel,
.policy-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero {
  padding: 34px;
  margin-bottom: 28px;
}

.hero::after,
.panel::after,
.policy-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(157, 255, 32, 0.16), transparent 28%, transparent 74%, rgba(22, 22, 22, 0.04));
}

.eyebrow {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

h1,
h2,
h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  line-height: 1.05;
}

h1 {
  max-width: 14ch;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
}

h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

p,
li {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero .lede {
  max-width: 60ch;
  margin-bottom: 18px;
  font-size: 1.15rem;
}

.button-row {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 24px 0 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  text-decoration: none;
  font-weight: 600;
  background: var(--ink);
  color: #fff;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.button:hover {
  border-color: var(--accent-deep);
  background: var(--accent);
  color: var(--ink);
}

.statement {
  position: relative;
  z-index: 1;
  padding: 22px 22px 18px;
  border-radius: 20px;
  border: 1px solid rgba(22, 22, 22, 0.1);
  background: rgba(255, 255, 255, 0.72);
}

.statement h3 {
  margin-bottom: 10px;
  font-family: var(--mono);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.statement p {
  margin: 0;
  color: var(--ink);
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.panel,
.policy-panel {
  padding: 26px;
}

.span-5 {
  grid-column: span 5;
}

.span-7 {
  grid-column: span 7;
}

.span-6 {
  grid-column: span 6;
}

.span-12 {
  grid-column: 1 / -1;
}

ol,
ul {
  margin: 0;
  padding-left: 22px;
}

li + li {
  margin-top: 10px;
}

.tight-list li + li {
  margin-top: 8px;
}

.microcopy {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 0.9rem;
  color: var(--muted);
}

.faq {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.faq-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.faq-item p {
  margin: 6px 0 0;
}

.policy-panel p,
.policy-panel li {
  max-width: 72ch;
}

.policy-section + .policy-section {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.note {
  padding: 16px 18px;
  border-left: 4px solid var(--accent-deep);
  background: rgba(157, 255, 32, 0.12);
}

blockquote {
  margin: 16px 0 0;
  padding: 16px 18px;
  border-left: 4px solid var(--ink);
  background: rgba(22, 22, 22, 0.04);
  color: var(--ink);
}

.footer {
  padding: 20px 6px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer p,
.footer a {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

@media (max-width: 900px) {
  .span-5,
  .span-6,
  .span-7 {
    grid-column: 1 / -1;
  }

  .hero,
  .panel,
  .policy-panel {
    padding: 22px;
  }

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

@media (max-width: 560px) {
  body {
    line-height: 1.55;
  }

  .site-shell {
    padding: 18px 14px 56px;
  }

  .brand-mark {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-pill {
    min-width: 0;
  }

  .button {
    width: 100%;
  }
}
