:root {
  --ink: #102620;
  --forest: #103a31;
  --forest-deep: #0a2a23;
  --cream: #f6eedf;
  --linen: #efe5d2;
  --white: #fffdf8;
  --mist: #dfece2;
  --sage: #a4c2b0;
  --clay: #b76745;
  --gold: #d3b489;
  --border: rgba(16, 38, 32, 0.1);
  --shadow-soft: 0 22px 54px rgba(12, 33, 28, 0.12);
  --shadow-strong: 0 26px 80px rgba(8, 29, 24, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(183, 103, 69, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(164, 194, 176, 0.18), transparent 24%),
    linear-gradient(180deg, #fcf7ed 0%, #f3ecdf 100%);
}

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

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

.page-shell {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--cream);
  background: linear-gradient(120deg, rgba(16, 58, 49, 0.94), rgba(9, 31, 26, 0.9));
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 34px rgba(10, 42, 35, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(11, 39, 32, 0.18);
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.08rem;
  font-weight: 700;
}

.brand-tag {
  color: rgba(246, 238, 223, 0.72);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto 5px;
  background: var(--cream);
  border-radius: 999px;
  transition: transform 160ms ease;
}

.nav-toggle span:last-child {
  margin-bottom: 0;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero,
.credits-section,
.stack-section,
.thesis-section,
.wedge-section,
.proof-section,
.moat-section,
.founder-section,
.waitlist-section {
  padding: 30px;
  border-radius: 34px;
  background: rgba(255, 253, 248, 0.8);
  box-shadow: var(--shadow-soft);
}

.hero,
.credits-section,
.stack-section,
.thesis-section,
.wedge-section,
.proof-section,
.moat-section,
.founder-section,
.waitlist-section,
.site-footer {
  animation: rise-in 640ms ease both;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  gap: 28px;
  align-items: start;
  overflow: clip;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--clay);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.waitlist-copy h2 {
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(2.85rem, 5.1vw, 4.7rem);
}

.hero h1 span {
  color: var(--forest);
}

.hero-lede,
.section-intro,
.section-heading + *,
.thesis-card p,
.wedge-card p,
.proof-card li,
.compound-copy p,
.compound-list li,
.founder-copy p,
.founder-stats span,
.waitlist-copy p,
.signal-band p,
.form-note,
.site-footer p,
.site-footer span {
  color: rgba(16, 38, 32, 0.78);
  line-height: 1.65;
}

.hero-lede {
  max-width: 50ch;
  margin: 16px 0 0;
  font-size: 1rem;
}

.hero-lede-secondary {
  max-width: 46ch;
  margin-top: 8px;
}

.section-intro {
  max-width: 70ch;
  margin: 0;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--forest), var(--forest-deep));
  color: var(--cream);
  box-shadow: 0 15px 28px rgba(10, 42, 35, 0.22);
}

.button-secondary {
  border: 1px solid rgba(16, 38, 32, 0.12);
  background: rgba(255, 255, 255, 0.84);
}

.hero-metrics {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 4px;
}

.hero-metrics article,
.credits-card,
.wedge-card,
.proof-card,
.thesis-card,
.founder-panel,
.waitlist-panel,
.founder-stats article {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
}

.hero-metrics article {
  padding: 18px;
  border-radius: 22px;
}

.metric-value {
  display: block;
  margin-bottom: 12px;
  color: var(--forest);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.hero-metrics strong,
.wedge-card strong,
.founder-stats strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-metrics article > span:not(.metric-value) {
  color: rgba(16, 38, 32, 0.84);
  font-size: 0.98rem;
}

.hero-visual {
  position: relative;
}

.hero-stage {
  position: relative;
}

.hero-image-frame,
.hero-live-panel,
.hero-next-panel {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.74);
}

.hero-image-frame {
  position: relative;
  min-height: 660px;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  background:
    linear-gradient(180deg, rgba(223, 236, 226, 0.82), rgba(255, 255, 255, 0.96));
}

.hero-overlay-grid {
  position: absolute;
  inset: 22px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto auto 1fr;
  gap: 18px;
}

.card-label {
  margin: 0 0 10px;
  color: rgba(16, 38, 32, 0.6);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.floating-copy {
  margin: 12px 0 0;
  color: rgba(16, 38, 32, 0.78);
  line-height: 1.55;
}

.hero-live-panel,
.hero-next-panel {
  position: relative;
  padding: 24px;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.hero-live-panel h2,
.hero-next-panel h3 {
  margin: 0;
  line-height: 1.15;
}

.hero-live-panel h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.hero-next-panel h3 {
  font-size: 1.45rem;
}

.hero-live-panel {
  grid-column: 1 / -1;
  grid-row: 1;
  align-self: start;
  max-width: 980px;
}

.hero-next-panel {
  grid-column: 5 / -1;
  grid-row: 2;
  align-self: start;
  max-width: none;
  justify-self: end;
}

.hero-stage-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.hero-stage-stats span {
  padding: 10px 12px;
  border: 1px solid rgba(16, 38, 32, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--forest);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.hero-live-panel ul,
.proof-card ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.hero-live-panel li,
.proof-card li {
  position: relative;
  padding-left: 18px;
}

.hero-live-panel li + li,
.proof-card li + li {
  margin-top: 10px;
}

.hero-live-panel li::before,
.proof-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clay);
}

.hero-live-panel {
  background: rgba(255, 255, 255, 0.94);
}

.hero-next-panel {
  background: rgba(255, 255, 255, 0.9);
}

.thesis-section,
.credits-section,
.stack-section,
.wedge-section,
.proof-section,
.moat-section,
.founder-section,
.waitlist-section {
  margin-top: 26px;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.section-heading h2 {
  font-size: clamp(2.4rem, 4vw, 4.4rem);
}

.platform-grid,
.stack-grid,
.wedge-grid,
.proof-grid {
  display: grid;
  gap: 16px;
}

.platform-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  align-items: start;
  margin-bottom: 34px;
}

.stack-grid {
  grid-template-columns: minmax(320px, 1.18fr) minmax(0, 1fr);
  align-items: stretch;
}

.wedge-grid {
  grid-template-columns: 1.15fr 1fr 1fr 1fr;
}

.credits-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 16px;
}

.proof-grid {
  grid-template-columns: 1.15fr 1fr 1fr;
}

.stack-card,
.credits-card,
.wedge-card,
.proof-card {
  padding: 24px;
  border-radius: 24px;
}

.credits-card {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.76);
}

.credits-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.credits-card p {
  margin: 0;
  color: rgba(16, 38, 32, 0.78);
  line-height: 1.6;
}

.credits-card ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.credits-card li {
  position: relative;
  padding-left: 18px;
  color: rgba(16, 38, 32, 0.82);
  line-height: 1.55;
}

.credits-card li + li {
  margin-top: 10px;
}

.credits-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clay);
}

.credits-card-primary {
  background: linear-gradient(160deg, rgba(223, 236, 226, 0.84), rgba(255, 255, 255, 0.92));
}

.credits-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.credits-tags span {
  padding: 10px 12px;
  border: 1px solid rgba(16, 38, 32, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--forest);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.3;
}

.stack-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
}

.platform-visual {
  position: relative;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background:
    radial-gradient(circle at 16% 18%, rgba(183, 103, 69, 0.12), transparent 26%),
    radial-gradient(circle at 88% 20%, rgba(164, 194, 176, 0.24), transparent 24%),
    linear-gradient(165deg, rgba(255, 251, 245, 0.94), rgba(255, 255, 255, 0.86));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.platform-visual::before,
.platform-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.platform-visual::before {
  inset: 24px 30px auto auto;
  width: 180px;
  height: 180px;
  background: rgba(16, 58, 49, 0.06);
}

.platform-visual::after {
  inset: auto auto 22px 24px;
  width: 132px;
  height: 132px;
  background: rgba(183, 103, 69, 0.08);
}

.platform-layer {
  position: relative;
  z-index: 1;
  padding: 24px;
  border: 1px solid rgba(16, 38, 32, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 42px rgba(10, 42, 35, 0.1);
}

.platform-layer-top {
  max-width: 430px;
  margin-left: auto;
  background: linear-gradient(160deg, rgba(223, 236, 226, 0.9), rgba(255, 255, 255, 0.96));
}

.platform-layer-bottom {
  max-width: 520px;
  background: linear-gradient(160deg, rgba(255, 251, 245, 0.92), rgba(255, 255, 255, 0.98));
}

.platform-layer h3 {
  margin: 0;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.12;
}

.platform-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.platform-tags span,
.platform-proof span {
  padding: 11px 14px;
  border: 1px solid rgba(16, 38, 32, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
}

.platform-arrow {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 8px;
  margin: -2px 0;
  padding: 10px 0;
}

.platform-arrow::before {
  content: "";
  width: 2px;
  height: 52px;
  background: linear-gradient(180deg, rgba(16, 58, 49, 0.2), rgba(16, 58, 49, 0.62));
}

.platform-arrow::after {
  content: "";
  width: 12px;
  height: 12px;
  margin-top: -6px;
  border-right: 2px solid rgba(16, 58, 49, 0.62);
  border-bottom: 2px solid rgba(16, 58, 49, 0.62);
  transform: rotate(45deg);
}

.platform-arrow span {
  padding: 8px 12px;
  border: 1px solid rgba(16, 38, 32, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: rgba(16, 38, 32, 0.7);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.platform-copy {
  display: grid;
  gap: 18px;
}

.platform-copy p {
  margin: 0;
}

.platform-focus {
  padding: 18px 20px;
  border: 1px solid rgba(16, 38, 32, 0.1);
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(223, 236, 226, 0.68), rgba(255, 255, 255, 0.84));
}

.platform-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.platform-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(16, 38, 32, 0.82);
  line-height: 1.55;
}

.platform-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clay);
}

.platform-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.stack-card-featured {
  background: linear-gradient(165deg, rgba(223, 236, 226, 0.9), rgba(255, 255, 255, 0.94));
}

.stack-side-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.stack-label {
  display: block;
  margin-bottom: 10px;
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stack-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.stack-card p {
  margin: 0;
  color: rgba(16, 38, 32, 0.78);
  line-height: 1.6;
}

.stack-feature-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.stack-feature-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(16, 38, 32, 0.82);
  line-height: 1.55;
}

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

.stack-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clay);
}

.wedge-card span {
  color: var(--forest);
  font-weight: 700;
}

.wedge-card-featured {
  background: linear-gradient(160deg, rgba(223, 236, 226, 0.84), rgba(255, 255, 255, 0.9));
}

.proof-card-primary {
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.9), rgba(255, 255, 255, 0.82));
}

.compound-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 26px;
  align-items: center;
}

.compound-orbit {
  position: relative;
  min-height: 640px;
  border-radius: 34px;
  background:
    conic-gradient(from 180deg, rgba(16, 58, 49, 0.04), rgba(183, 103, 69, 0.06), rgba(16, 58, 49, 0.04), rgba(164, 194, 176, 0.08), rgba(16, 58, 49, 0.04)),
    radial-gradient(circle at center, rgba(16, 58, 49, 0.06), transparent 42%),
    radial-gradient(circle at 20% 78%, rgba(183, 103, 69, 0.08), transparent 30%),
    rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  overflow: hidden;
}

.compound-orbit::before,
.compound-orbit::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(160deg, rgba(16, 58, 49, 0.94), rgba(183, 103, 69, 0.88));
  box-shadow: 0 12px 24px rgba(10, 42, 35, 0.18);
}

.compound-orbit::before {
  top: 22%;
  right: 25%;
}

.compound-orbit::after {
  bottom: 23%;
  left: 24%;
}

.compound-ring {
  position: absolute;
  inset: 13% 15%;
  border-radius: 50%;
  pointer-events: none;
}

.compound-ring-outer {
  border: 2px dashed rgba(16, 58, 49, 0.26);
}

.compound-ring-inner {
  inset: 23% 25%;
  border: 1.5px solid rgba(16, 58, 49, 0.12);
}

.compound-node,
.compound-center {
  position: absolute;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.compound-node {
  width: 216px;
  padding: 18px 18px 16px;
}

.compound-node span,
.compound-center span {
  display: block;
  margin-bottom: 8px;
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.compound-node p,
.compound-center p {
  margin: 0;
  color: rgba(16, 38, 32, 0.78);
  line-height: 1.55;
}

.compound-node-top {
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
}

.compound-node-right {
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
}

.compound-node-bottom {
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
}

.compound-node-left {
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
}

.compound-center {
  top: 50%;
  left: 50%;
  width: 260px;
  padding: 26px 24px;
  text-align: center;
  transform: translate(-50%, -50%);
  background: linear-gradient(160deg, rgba(223, 236, 226, 0.92), rgba(255, 255, 255, 0.96));
}

.compound-center strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.48rem;
  line-height: 1.15;
}

.compound-copy {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
}

.compound-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.compound-list li {
  position: relative;
  padding-left: 18px;
}

.compound-list li + li {
  margin-top: 12px;
}

.compound-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clay);
}

.founder-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 18px;
  padding: 22px;
  border-radius: 28px;
}

.founder-copy p + p {
  margin-top: 14px;
}

.founder-stats {
  display: grid;
  gap: 14px;
}

.founder-stats article {
  padding: 18px;
  border-radius: 20px;
}

.waitlist-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  padding: 28px;
  border-radius: 30px;
}

.waitlist-form {
  display: grid;
  gap: 16px;
}

.waitlist-form label {
  display: grid;
  gap: 8px;
  font-size: 0.96rem;
  font-weight: 500;
}

.waitlist-form span em {
  color: rgba(16, 38, 32, 0.56);
  font-style: normal;
}

.waitlist-form input {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(16, 38, 32, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
}

.waitlist-form input:focus {
  outline: 2px solid rgba(16, 58, 49, 0.16);
  border-color: rgba(16, 58, 49, 0.28);
}

.button-submit {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.form-note {
  font-size: 0.92rem;
}

.form-note.is-success {
  color: var(--forest);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 18px 22px;
  border-radius: 26px;
  background: linear-gradient(120deg, rgba(16, 58, 49, 0.96), rgba(9, 31, 26, 0.94));
  color: var(--cream);
}

.site-footer strong {
  display: block;
  margin-bottom: 6px;
}

.site-footer p,
.site-footer span,
.site-footer a {
  color: rgba(246, 238, 223, 0.82);
}

.footer-links {
  display: grid;
  gap: 6px;
  justify-items: end;
  text-align: right;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .hero,
  .platform-grid,
  .founder-panel,
  .waitlist-panel,
  .compound-layout {
    grid-template-columns: 1fr;
  }

  .stack-grid,
  .credits-grid,
  .stack-side-grid,
  .wedge-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-frame {
    min-height: 720px;
  }
}

@media (max-width: 860px) {
  .page-shell {
    padding: 16px;
  }

  .site-header {
    top: 10px;
    border-radius: 28px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .site-nav {
    position: absolute;
    inset: calc(100% + 10px) 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    background: rgba(10, 42, 35, 0.96);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .hero,
  .thesis-section,
  .credits-section,
  .stack-section,
  .wedge-section,
  .proof-section,
  .moat-section,
  .founder-section,
  .waitlist-section {
    padding: 22px;
    border-radius: 28px;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .platform-visual {
    padding: 22px;
  }

  .platform-proof {
    grid-template-columns: 1fr 1fr;
  }

  .hero-overlay-grid {
    inset: 16px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    align-content: space-between;
  }

  .hero-next-panel,
  .hero-live-panel {
    grid-column: auto;
    grid-row: auto;
    max-width: none;
  }

  .hero-stage-stats {
    grid-template-columns: 1fr 1fr;
  }

  .compound-orbit {
    min-height: 720px;
  }

  .compound-node-right {
    right: 8px;
  }

  .compound-node-left {
    left: 8px;
  }

  .site-footer,
  .footer-links {
    justify-items: start;
    text-align: left;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .brand-copy {
    display: none;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.85rem, 14vw, 4.4rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .button-submit {
    width: 100%;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .platform-proof {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-image-frame,
  .hero-live-panel,
  .hero-next-panel,
  .compound-copy,
  .platform-visual,
  .platform-layer {
    border-radius: 22px;
  }

  .platform-layer {
    padding: 20px;
  }

  .hero-stage-stats {
    grid-template-columns: 1fr;
  }

  .compound-layout {
    gap: 18px;
  }

  .compound-orbit {
    min-height: auto;
    display: grid;
    gap: 14px;
    padding: 18px;
  }

  .compound-ring {
    display: none;
  }

  .compound-node,
  .compound-center {
    position: static;
    width: auto;
    transform: none;
  }

  .compound-center {
    order: -1;
    text-align: left;
  }

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