/* Lykora — static site styles */

:root {
  --ink: #070b11;
  --navy: #0b1320;
  --navy-deep: #080c12;
  --surface: #0a0f17;
  --surface-elevated: #101722;
  --gold: #b89a5b;
  --gold-bright: #d2bc81;
  --gold-button: #c4a466;
  --gold-hover: #dcc489;
  --ivory: #f4f0e8;
  --muted: #9ca4ae;
  --muted-soft: #aab1b8;
  --line: rgba(210, 193, 150, 0.18);
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: Manrope, "Avenir Next", system-ui, sans-serif;
  --nav-height: 82px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

::selection {
  background: var(--gold);
  color: var(--ink);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 12px 18px;
  background: var(--gold);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

/* —— Typography —— */
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section h2,
.hero h1,
.statement h2,
.vision h2,
.founder h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.96;
}

.section h2,
.vision h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  max-width: 700px;
}

.lede {
  margin: 25px 0 0;
  max-width: 540px;
  color: var(--muted-soft);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
}

.wordmark {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.32em;
}

/* —— Buttons —— */
.button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 14px 18px 14px 22px;
  background: var(--gold-button);
  color: #0a0c10;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 0.25s var(--ease), background 0.25s ease;
}

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

.button span {
  font-size: 17px;
  line-height: 0;
}

.text-link {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #d6d7d3;
  transition: color 0.2s ease;
}

.text-link:hover {
  color: var(--gold-bright);
}

.text-link span {
  margin-left: 8px;
  color: var(--gold);
}

/* —— Navigation —— */
.nav {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(24px, 5vw, 72px);
  border-bottom: 1px solid transparent;
  background: rgba(7, 11, 17, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background 0.35s ease, border-color 0.35s ease, height 0.35s ease;
}

.nav.is-scrolled {
  height: 68px;
  background: rgba(7, 11, 17, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

.nav-links {
  display: flex;
  gap: 28px;
  color: #bdc0c3;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.nav-links a {
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--gold);
}

.nav-cta {
  flex-shrink: 0;
  border-left: 1px solid var(--line);
  padding-left: 28px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.nav-cta:hover {
  color: var(--gold-bright);
}

.nav-cta span {
  margin-left: 7px;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ivory);
  transition: transform 0.3s var(--ease), opacity 0.2s ease;
}

.nav.is-open .nav-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav.is-open .nav-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* —— Hero —— */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: calc(var(--nav-height) + 48px) 24px 94px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 38%, #152132 0%, #0b1019 34%, #070b11 72%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background: linear-gradient(110deg, transparent 48%, rgba(184, 154, 91, 0.06), transparent 52%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: min(900px, 120vw);
  height: min(900px, 120vw);
  top: -280px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(184, 154, 91, 0.12), transparent 62%);
  filter: blur(10px);
  pointer-events: none;
}

.hero-crest {
  position: relative;
  z-index: 1;
  width: 235px;
  height: 235px;
  margin-bottom: 10px;
}

.hero-crest img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 790px;
}

.hero h1 {
  font-size: clamp(3.4rem, 8vw, 7rem);
}

.hero h1 em {
  color: var(--gold-bright);
  font-style: italic;
}

.hero-lede {
  max-width: 510px;
  margin: 26px auto 0;
  color: #b9c0c6;
  font-size: 16px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 38px;
}

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #838a94;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.scroll-cue i {
  display: inline-block;
  width: 35px;
  height: 1px;
  margin-left: 10px;
  vertical-align: middle;
  background: var(--gold);
}

/* —— Sections shared —— */
.section {
  padding: clamp(90px, 13vw, 180px) clamp(24px, 10vw, 160px);
}

/* —— Problem —— */
.grid-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
  background: var(--surface);
}

.memory-list {
  border-top: 1px solid var(--line);
  align-self: end;
}

.memory-row {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
  color: #e4e0d8;
  font-family: var(--font-serif);
  font-size: 26px;
  transition: color 0.25s ease, padding-left 0.25s var(--ease);
}

.memory-row:hover {
  color: var(--gold-bright);
  padding-left: 8px;
}

.memory-row span {
  font-family: var(--font-sans);
  font-size: 10px;
  color: var(--gold);
}

.memory-row i {
  margin-left: auto;
  color: #636c75;
  font-style: normal;
  font-size: 15px;
}

/* —— Statement —— */
.statement {
  padding: clamp(110px, 15vw, 220px) 24px;
  text-align: center;
  background: linear-gradient(180deg, var(--surface), #0d1520);
}

.statement > p {
  margin: 0 0 8px;
  color: #89919a;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 3.1rem);
}

.statement h2 {
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  color: #d1b471;
}

.statement-words {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin-top: 52px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #c4c5c2;
}

.statement-words span::before {
  content: "✦";
  margin-right: 8px;
  color: var(--gold);
}

/* —— Institutions —— */
.institution {
  background: var(--navy-deep);
}

.institution .intro {
  margin-bottom: 55px;
}

.institution-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
}

.institution-grid article {
  min-height: 235px;
  padding: 25px 22px;
  border-right: 1px solid var(--line);
}

.institution-grid article:last-child {
  border-right: 0;
}

.institution-grid span {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.06em;
}

.institution-grid h3 {
  margin: 55px 0 12px;
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.1;
}

.institution-grid p {
  margin: 0;
  color: #9199a2;
  font-size: 12px;
  line-height: 1.7;
}

.institution-close {
  margin: 80px 0 0;
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.55rem);
  color: #aab0b5;
}

.institution-close strong {
  color: #d2b777;
  font-weight: 500;
}

/* —— Vision —— */
.vision {
  padding: clamp(100px, 16vw, 225px) 24px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 40%, #202535 0%, #0c1018 45%, #080c12 78%);
}

.vision-inner {
  max-width: 780px;
  margin: 0 auto;
}

.vision h2,
.vision .lede {
  margin-left: auto;
  margin-right: auto;
}

.vision .lede {
  max-width: 600px;
}

/* —— Roadmap —— */
.roadmap {
  background: var(--navy-deep);
}

.timeline {
  margin-top: 65px;
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.timeline > div {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  min-height: 72px;
}

.timeline i {
  position: absolute;
  left: -35px;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #52606e;
}

.timeline .current i {
  background: var(--gold);
  box-shadow: 0 0 16px rgba(184, 154, 91, 0.65);
}

.timeline span {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.06em;
  padding-top: 4px;
}

.timeline strong {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
}

.timeline .current strong {
  color: #e7d9b8;
}

.timeline b {
  position: absolute;
  left: -35px;
  bottom: 7px;
  color: #59616c;
  font-size: 11px;
  font-weight: 400;
}

/* —— Founding —— */
.founding {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 9vw;
  background: var(--surface-elevated);
}

.founding .button {
  margin-top: 36px;
}

.founding ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  align-self: end;
}

.founding li {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: #d3d5d5;
  font-size: 13px;
}

.founding li span {
  color: var(--gold);
}

/* —— Founding Members page —— */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-height) + 72px) 24px 80px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 38%, #152132 0%, #0b1019 34%, #070b11 72%);
}

.page-hero h1 {
  margin: 0 auto;
  max-width: 820px;
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.96;
}

.page-hero h1 em {
  color: var(--gold-bright);
  font-style: italic;
}

.page-hero .hero-lede {
  max-width: 520px;
  margin: 26px auto 0;
}

.page-hero-crest {
  position: relative;
  z-index: 1;
  width: 120px;
  height: 120px;
  margin: 0 auto 18px;
}

.page-hero-crest img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
}

/* —— Legal pages —— */
.section.legal {
  padding-top: 80px;
  padding-bottom: 120px;
  background: var(--surface-elevated);
}

.legal-body {
  max-width: 720px;
}

.legal-scope {
  margin: 0 0 10px;
  color: var(--gold-bright);
  font-size: 14px;
  font-weight: 600;
}

.legal-updated {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-body h2 {
  margin: 40px 0 14px;
  max-width: none;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.legal-body h2:first-of-type {
  margin-top: 32px;
}

.legal-body p {
  margin: 0 0 16px;
  color: var(--muted-soft);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
}

.legal-body strong {
  color: var(--ivory);
  font-weight: 600;
}

.legal-caps {
  font-size: 13px;
  letter-spacing: 0.01em;
  line-height: 1.75;
}

.legal-body ul {
  margin: 0 0 20px;
  padding: 0 0 0 20px;
  color: var(--muted-soft);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
}

.legal-body li {
  margin-bottom: 8px;
}

.legal-body a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-body a:hover {
  color: var(--gold-hover);
}

.waitlist {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 9vw;
  align-items: start;
  background: var(--surface-elevated);
}

.waitlist .discord-cta {
  margin-top: 36px;
}

.waitlist-benefits {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.waitlist-benefits li {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: #d3d5d5;
  font-size: 13px;
}

.waitlist-benefits li span {
  color: var(--gold);
}

.waitlist-panel {
  padding: 36px 32px;
  border: 1px solid var(--line);
  background: rgba(7, 11, 17, 0.45);
}

.waitlist-form-title {
  margin: 0 0 28px;
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
}

.waitlist-form label {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.waitlist-form input,
.waitlist-form select,
.waitlist-form textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease;
}

.waitlist-form input:focus,
.waitlist-form select:focus,
.waitlist-form textarea:focus {
  border-bottom-color: var(--gold);
}

.waitlist-form input.is-invalid,
.waitlist-form select.is-invalid,
.waitlist-form textarea.is-invalid {
  border-bottom-color: #c47a6a;
}

.waitlist-form select {
  appearance: none;
  cursor: pointer;
  color-scheme: dark;
  padding-right: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23b89a5b' stroke-width='1.5' d='M1 1.5L6 6.5L11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
}

.waitlist-form select:invalid {
  color: var(--muted);
}

.waitlist-form option {
  background: var(--surface-elevated);
  color: var(--ivory);
}

.waitlist-form textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-consent {
  margin: 8px 0 28px;
  color: #8d949c;
  font-size: 12px;
  line-height: 1.6;
}

.form-consent a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-consent a:hover {
  color: var(--gold-hover);
}

.waitlist-form .button {
  width: 100%;
  justify-content: center;
}

.waitlist-form.is-submitting .button {
  pointer-events: none;
  opacity: 0.7;
}

.btn-busy {
  display: none;
}

.waitlist-form.is-submitting .btn-idle {
  display: none;
}

.waitlist-form.is-submitting .btn-busy {
  display: inline;
}

.form-status {
  min-height: 1.4em;
  margin: 16px 0 0;
  color: #c47a6a;
  font-size: 13px;
}

.form-status.is-ok {
  color: var(--gold-bright);
}

.waitlist-panel.is-complete .waitlist-form {
  display: none;
}

.waitlist-success[hidden] {
  display: none;
}

.waitlist-panel.is-complete .waitlist-success {
  display: block;
}

.waitlist-success h2 {
  max-width: none;
}

.waitlist-success .text-link {
  display: inline-block;
  margin-top: 28px;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* —— Founder —— */
.founder {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 100px;
  align-items: center;
  background: var(--navy-deep);
}

.portrait {
  position: relative;
  height: 380px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #2b302e, #111722);
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-fallback {
  display: none;
  color: #c9af76;
  font-family: var(--font-serif);
  font-size: 70px;
}

.portrait.is-placeholder .portrait-fallback,
.portrait:not(:has(img)) .portrait-fallback {
  display: block;
}

.founder h2 {
  font-size: clamp(2.6rem, 5vw, 4.25rem);
}

.role {
  margin: 3px 0 35px;
  color: #c0a86f;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.founder .text-link {
  display: inline-block;
  margin-top: 28px;
}

.founder blockquote {
  margin: 0;
  max-width: 480px;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.25;
  color: #e4e0d8;
}

/* —— Footer —— */
footer {
  padding: 70px clamp(24px, 10vw, 160px) 28px;
  background: #06090e;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 60px;
}

.footer-top p {
  margin: 10px 0 0;
  color: #8d949c;
  font-size: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #737c86;
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

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

/* —— Motion —— */
.reveal-ready {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-reveal {
  transition-duration: 1.1s;
}

.hero-reveal.delay-1 {
  transition-delay: 0.18s;
}

.hero-reveal.delay-2 {
  transition-delay: 0.36s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button:hover {
    transform: none;
  }
}

/* —— Responsive —— */
@media (max-width: 1100px) {
  .institution-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .institution-grid article:nth-child(3) {
    border-right: 0;
  }

  .institution-grid article:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

  .institution-grid article:nth-child(5) {
    border-right: 0;
  }
}

@media (max-width: 900px) {
  :root {
    --nav-height: 68px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 12px 24px 28px;
    background: var(--ink);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s var(--ease);
  }

  .nav.is-open .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
  }

  .nav-cta {
    display: none;
  }

  .grid-section,
  .founding,
  .founder,
  .waitlist {
    grid-template-columns: 1fr;
    gap: 55px;
  }

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

  .institution-grid article {
    border-bottom: 1px solid var(--line);
  }

  .institution-grid article:nth-child(2n) {
    border-right: 0;
  }

  .institution-grid article:nth-child(3) {
    border-right: 1px solid var(--line);
  }

  .portrait {
    max-width: 350px;
  }

  .founder {
    gap: 45px;
  }
}

@media (max-width: 560px) {
  .nav {
    padding: 0 18px;
  }

  .wordmark {
    font-size: 17px;
    letter-spacing: 0.24em;
  }

  .hero {
    min-height: 780px;
    padding-bottom: 110px;
  }

  .hero-crest {
    width: 185px;
    height: 185px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 20px;
  }

  .section {
    padding-left: 24px;
    padding-right: 24px;
  }

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

  .institution-grid article {
    min-height: 0;
    border-right: 0;
  }

  .institution-grid h3 {
    margin-top: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .waitlist-panel {
    padding: 28px 20px;
  }

  .timeline strong {
    font-size: 22px;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .footer-bottom {
    gap: 13px;
  }
}

/* Accessible content, compact proof section, and distinct participation paths. */
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid var(--gold-bright); outline-offset: 5px; }
html { scroll-padding-top: 100px; }
section[id] { scroll-margin-top: 16px; }
body { font-size: 16px; }
.lede, .hero-lede, .legal-body p, .legal-body ul { font-weight: 400; }
.eyebrow, .waitlist-form label { font-size: 12px; }
.button, .text-link, .nav-cta, .nav-links, .footer-top p, .footer-bottom { font-size: 13px; }
.button { min-height: 48px; border: 0; cursor: pointer; line-height: 1.5; }
.button span { line-height: inherit; }
.button .btn-idle, .button .btn-busy { font-size: inherit; }
.nav-links { gap: 20px; }
.nav-links a, .footer-bottom a { display: inline-flex; align-items: center; min-height: 32px; }
.footer-bottom { color: #aab1b8; }
.form-consent { color: #aab1b8; font-size: 13px; }
.waitlist-form input, .waitlist-form select, .waitlist-form textarea { border-bottom-color: #78828f; font-size: 16px; }
.waitlist-form input:focus-visible, .waitlist-form select:focus-visible, .waitlist-form textarea:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 4px; }
.field-error { display: block; margin-top: 8px; color: #efad9d; text-transform: none; letter-spacing: normal; font-size: 13px; font-weight: 400; }
.form-status { color: #efad9d; }
.hero { min-height: 0; padding-top: calc(var(--nav-height) + 35px); padding-bottom: 65px; }
.hero-crest { width: 155px; height: 155px; margin-bottom: 24px; }
.hero h1 { font-size: clamp(3.4rem, 7vw, 6.4rem); }
.hero-lede { max-width: 660px; }
.hero-note { margin-top: 24px; color: var(--muted-soft); font-size: 14px; }
.hero-note a, .lede a, .prototype-transcript a, .community-follow a { text-decoration: underline; text-underline-offset: 4px; }
.section { padding-top: clamp(64px, 8vw, 112px); padding-bottom: clamp(64px, 8vw, 112px); }
.principles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 40px; }
.principles-grid article { border-top: 1px solid var(--line); padding-top: 25px; }
.principles-grid h3, .community-grid h3, .recognition-note h3 { font-family: var(--font-serif); font-size: 32px; font-weight: 500; line-height: 1.1; margin: 0 0 20px; }
.principles-grid p:not(.eyebrow), .community-grid p, .recognition-note p { color: var(--muted-soft); }
.institution-close { margin-top: 44px; }
.prototype { background: #0d111c; }
.prototype h2 { max-width: 880px; }
.prototype-disclosure { border-left: 3px solid var(--gold); padding: 18px 22px; background: #171d2b; color: var(--ivory); margin: 32px 0 24px; }
.prototype video { width: 100%; height: auto; aspect-ratio: 16/9; display: block; background: #070b11; border: 1px solid var(--line); }
.prototype-transcript { margin-top: 20px; color: var(--muted-soft); }
.prototype-transcript summary { cursor: pointer; color: var(--gold-bright); padding: 12px 0; }
.community { background: var(--surface-elevated); }
.community-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); gap: 30px; margin-top: 40px; }
.community-grid article { padding: 28px; border: 1px solid var(--line); display: flex; flex-direction: column; align-items: flex-start; }
.community-grid article p { flex: 1; margin: 0 0 25px; }
.community-grid .text-link { margin-top: 20px; }
.community-follow { margin: 35px 0 0; color: var(--muted-soft); }
.recognition-note { border-left: 1px solid var(--gold); padding-left: 28px; }
.roadmap-list { list-style: none; padding: 0; margin: 40px 0 0; max-width: 850px; }
.roadmap-list li { display: grid; grid-template-columns: 170px 1fr; gap: 25px; padding: 22px 0; border-top: 1px solid var(--line); }
.roadmap-list strong { color: var(--gold-bright); }
.roadmap-list span { color: var(--muted-soft); }
.error-actions { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 30px; }
@media (max-width: 1100px) { .nav-cta { display: none; } }
@media (max-width: 900px) {
  .principles-grid { grid-template-columns: 1fr; gap: 24px; }
  .nav-links { max-height: calc(100dvh - var(--nav-height)); overflow-y: auto; }
  .nav-toggle { min-width: 44px; height: 44px; }
  html:not(.js) .nav { position: relative; height: auto; flex-wrap: wrap; padding-top: 20px; }
  html:not(.js) .nav-toggle { display: none; }
  html:not(.js) .nav-links { position: static; flex-basis: 100%; transform: none; opacity: 1; visibility: visible; pointer-events: auto; max-height: none; }
}
@media (max-width: 560px) {
  .hero { min-height: 0; padding-top: 100px; padding-bottom: 55px; }
  .hero-crest { width: 120px; height: 120px; }
  .page-hero { padding-top: 115px; padding-bottom: 55px; }
  .roadmap-list li { grid-template-columns: 1fr; gap: 8px; }
  .community-grid article { padding: 24px; }
  .founder { grid-template-columns: minmax(0, 1fr); }
  .portrait { width: 100%; height: 240px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal-ready { opacity: 1; transform: none; }
}
