:root {
  color-scheme: dark;
  --space-black: #0a0a0c;
  --slate: #12131c;
  --panel: rgba(18, 19, 28, 0.72);
  --panel-strong: rgba(24, 25, 38, 0.92);
  --text: #f8f9fa;
  --muted: #b8becd;
  --quiet: #7f8798;
  --line: rgba(248, 249, 250, 0.12);
  --indigo: #6c5ce7;
  --cyan: #00cec9;
  --pink: #ff7675;
  --green: #00b894;
  --mark-bg: rgba(18, 19, 28, 0.52);
  --mark-border: rgba(0, 206, 201, 0.22);
  --mark-glow: rgba(108, 92, 231, 0.22);
  --mark-radial: rgba(0, 206, 201, 0.16);
  --logo-filter: saturate(0.92) brightness(1.05);
  --charcoal: #1f2937;
  --radius: 8px;
  --max-width: 1180px;
}


body.theme-light {
  --space-black: #ffffff;
  --slate: #f8f9fa;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-strong: rgba(248, 249, 250, 0.94);
  --text: #1f2937;
  --muted: #4b5563;
  --quiet: #6b7280;
  --line: rgba(31, 41, 55, 0.12);
  --indigo: #4f46e5;
  --cyan: #f97316;
  --pink: #ff7675;
  --green: #10b981;
  --mark-bg: rgba(255, 255, 255, 0.72);
  --mark-border: rgba(79, 70, 229, 0.18);
  --mark-glow: rgba(79, 70, 229, 0.16);
  --mark-radial: rgba(249, 115, 22, 0.12);
  --logo-filter: saturate(1.04) brightness(1.02);
}

body.theme-accessible {
  --space-black: #fafafa;
  --slate: #ebf4ff;
  --panel: rgba(255, 255, 255, 0.88);
  --panel-strong: rgba(250, 250, 250, 0.96);
  --text: #1f2937;
  --muted: #334155;
  --quiet: #64748b;
  --line: rgba(37, 99, 235, 0.18);
  --indigo: #2563eb;
  --cyan: #10b981;
  --pink: #ea580c;
  --green: #10b981;
  --mark-bg: rgba(255, 255, 255, 0.74);
  --mark-border: rgba(37, 99, 235, 0.2);
  --mark-glow: rgba(37, 99, 235, 0.14);
  --mark-radial: rgba(16, 185, 129, 0.12);
  --logo-filter: saturate(1.02) brightness(1.02);
}


body:has(#theme-light:checked) {
  --space-black: #ffffff;
  --slate: #f8f9fa;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-strong: rgba(248, 249, 250, 0.94);
  --text: #1f2937;
  --muted: #4b5563;
  --quiet: #6b7280;
  --line: rgba(31, 41, 55, 0.12);
  --indigo: #4f46e5;
  --cyan: #f97316;
  --pink: #ff7675;
  --green: #10b981;
  --mark-bg: rgba(255, 255, 255, 0.72);
  --mark-border: rgba(79, 70, 229, 0.18);
  --mark-glow: rgba(79, 70, 229, 0.16);
  --mark-radial: rgba(249, 115, 22, 0.12);
  --logo-filter: saturate(1.04) brightness(1.02);
}

body:has(#theme-accessible:checked) {
  --space-black: #fafafa;
  --slate: #ebf4ff;
  --panel: rgba(255, 255, 255, 0.88);
  --panel-strong: rgba(250, 250, 250, 0.96);
  --text: #1f2937;
  --muted: #334155;
  --quiet: #64748b;
  --line: rgba(37, 99, 235, 0.18);
  --indigo: #2563eb;
  --cyan: #10b981;
  --pink: #ea580c;
  --green: #10b981;
  --mark-bg: rgba(255, 255, 255, 0.74);
  --mark-border: rgba(37, 99, 235, 0.2);
  --mark-glow: rgba(37, 99, 235, 0.14);
  --mark-radial: rgba(16, 185, 129, 0.12);
  --logo-filter: saturate(1.02) brightness(1.02);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--space-black);
}

body {
  min-height: 100svh;
  margin: 0;
  background:
    linear-gradient(115deg, rgba(108, 92, 231, 0.16), transparent 30rem),
    linear-gradient(245deg, rgba(0, 206, 201, 0.12), transparent 34rem),
    linear-gradient(180deg, var(--space-black), var(--slate) 54%, var(--space-black));
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(248, 249, 250, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 249, 250, 0.035) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 86%);
}

body.launch-mode .future-section,
body.launch-mode .future-link {
  display: none !important;
}

body.full-mode .future-link {
  display: inline-flex;
}

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

.section-shell,
.site-header {
  width: min(calc(100% - 32px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
}

.brand-logo-shell {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--mark-border);
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--mark-radial), transparent 60%),
    var(--mark-bg);
  box-shadow: 0 12px 34px var(--mark-glow);
}

.brand-logo {
  width: 72%;
  height: 72%;
  object-fit: contain;
  filter: var(--logo-filter);
}


.wordmark {
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.86rem;
}

.site-nav a {
  border-radius: 999px;
  padding: 6px 0;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.site-nav a[aria-current="page"] {
  color: var(--text);
}

.theme-toggle {
  display: inline-grid;
  grid-template-columns: repeat(3, 44px);
  gap: 4px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px;
  background: rgba(248, 249, 250, 0.07);
}

.theme-toggle legend {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.theme-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.theme-toggle label {
  display: grid;
  width: 44px;
  height: 40px;
  place-items: center;
  border-radius: 999px;
  color: var(--quiet);
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.theme-toggle label:hover {
  color: var(--text);
}

.theme-toggle input:checked + label {
  background: linear-gradient(135deg, var(--indigo), var(--cyan));
  color: #ffffff;
  transform: translateY(-1px);
}

.theme-toggle span {
  font-size: 1.26rem;
  line-height: 1;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 86px);
  place-items: center;
  padding: clamp(64px, 8vw, 116px) 0 clamp(84px, 10vw, 142px);
  overflow: hidden;
  text-align: center;
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  content: "";
}

.hero::before {
  inset: 7% -18% auto 46%;
  height: min(38vw, 420px);
  border: 1px solid rgba(0, 206, 201, 0.12);
  border-left: 0;
  border-radius: 0 999px 999px 0;
  background-image:
    radial-gradient(circle at 20% 35%, rgba(0, 206, 201, 0.22) 0 2px, transparent 3px),
    radial-gradient(circle at 42% 58%, rgba(108, 92, 231, 0.24) 0 2px, transparent 3px),
    radial-gradient(circle at 72% 24%, rgba(255, 118, 117, 0.2) 0 2px, transparent 3px);
  opacity: 0.78;
}

.hero::after {
  right: -10%;
  bottom: 8%;
  width: min(62vw, 820px);
  height: 230px;
  background:
    repeating-radial-gradient(ellipse at 18% 100%, transparent 0 18px, rgba(0, 206, 201, 0.13) 19px 20px, transparent 21px 38px),
    repeating-radial-gradient(ellipse at 58% 115%, transparent 0 22px, rgba(108, 92, 231, 0.12) 23px 24px, transparent 25px 48px);
  transform: rotate(-5deg);
  opacity: 0.7;
}


.hero-mark {
  display: grid;
  width: clamp(150px, 18vw, 260px);
  aspect-ratio: 1;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid var(--mark-border);
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--mark-radial), transparent 58%),
    var(--mark-bg);
  box-shadow: 0 0 80px var(--mark-glow);
}

.hero-logo {
  width: 80%;
  height: 80%;
  object-fit: contain;
  filter: var(--logo-filter);
}

.hero-wordmark {
  margin: 0 0 22px;
  color: var(--text);
  font-size: clamp(1.12rem, 2vw, 1.55rem);
  font-weight: 520;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.02;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 900px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 6.2vw, 6.6rem);
}

h2 {
  max-width: 840px;
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 5.8vw, 6.2rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.12rem;
  font-weight: 720;
}

.hero-copy,
.section-intro p,
.story-copy p,
.final-cta p {
  color: var(--muted);
  font-size: clamp(1.04rem, 1.55vw, 1.28rem);
}

.hero-copy {
  max-width: 760px;
  margin: 0 auto 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 22px;
  font-size: 0.9rem;
  font-weight: 780;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

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

.button-primary {
  border-color: rgba(0, 206, 201, 0.38);
  background: linear-gradient(135deg, var(--indigo), var(--cyan));
  color: #ffffff;
  box-shadow: 0 16px 50px rgba(108, 92, 231, 0.26);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(248, 249, 250, 0.045);
  color: var(--text);
}

.early-access,
.audience,
.value-grid,
.story,
.principles,
.ecosystem,
.deep-dive,
.social-proof,
.preview,
.final-cta,
.page-hero,
.research-section,
.contact-section {
  padding: clamp(76px, 11vw, 146px) 0;
  border-top: 1px solid var(--line);
}

.page-hero {
  min-height: 54svh;
  align-content: end;
  border-top: 0;
  padding-top: clamp(64px, 10vw, 126px);
}

.page-hero .hero-copy {
  margin-right: 0;
  margin-left: 0;
}

.early-access {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: clamp(28px, 7vw, 96px);
}

.section-intro {
  max-width: 780px;
}

.section-intro.centered {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.section-intro p {
  max-width: 680px;
  margin-bottom: 0;
}

.early-access .section-intro p {
  margin-bottom: 0;
}

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

.value-cards,
.principle-grid,
.feature-grid,
.testimonial-grid,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.audience-grid article,
.value-cards article,
.principle-grid article,
.feature-grid article,
.testimonial-grid article,
.resource-grid article,
.bento,
.mockup-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.audience-grid article,
.value-cards article,
.principle-grid article,
.feature-grid article,
.testimonial-grid article,
.resource-grid article,
.bento {
  padding: 24px;
}

.audience-grid span,
.value-cards span,
.resource-grid span {
  display: block;
  margin-bottom: 52px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.audience-grid p,
.value-cards p,
.principle-grid p,
.feature-grid p,
.bento p,
.testimonial-grid p,
.resource-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.resource-grid a {
  display: inline-flex;
  margin-top: 24px;
  color: var(--cyan);
  font-size: 0.88rem;
  font-weight: 760;
}

.asset-table-wrap {
  margin-top: 42px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.asset-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.asset-table th,
.asset-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.asset-table th {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.asset-table td {
  color: var(--text);
}

.asset-table tr:last-child td {
  border-bottom: 0;
}

.asset-table a {
  color: var(--cyan);
  font-weight: 760;
}

.story,
.story.future-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.72fr);
  gap: clamp(36px, 8vw, 104px);
  align-items: center;
  overflow: hidden;
}

.story-copy {
  max-width: 760px;
}

.story-visual {
  position: relative;
  min-height: clamp(320px, 38vw, 520px);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background:
    repeating-radial-gradient(ellipse at 50% 50%, transparent 0 54px, rgba(0, 206, 201, 0.11) 55px 56px, transparent 57px 108px),
    linear-gradient(135deg, rgba(108, 92, 231, 0.12), transparent 45%),
    var(--panel);
}

.ecosystem-map {
  display: grid;
  place-items: center;
}

.map-line {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 1px;
  width: 54%;
  background: linear-gradient(90deg, transparent, rgba(0, 206, 201, 0.58), transparent);
  transform-origin: center;
}

.line-horizontal { transform: translate(-50%, -50%); }
.line-vertical { transform: translate(-50%, -50%) rotate(90deg); }
.line-diagonal-one { width: 62%; transform: translate(-50%, -50%) rotate(45deg); opacity: 0.45; }
.line-diagonal-two { width: 62%; transform: translate(-50%, -50%) rotate(-45deg); opacity: 0.45; }

.map-center {
  position: absolute;
  z-index: 3;
  display: grid;
  width: clamp(86px, 10vw, 124px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--mark-border);
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--mark-radial), transparent 58%),
    var(--mark-bg);
  box-shadow: 0 0 58px var(--mark-glow);
}

.map-center img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  filter: var(--logo-filter);
}

.map-node {
  position: absolute;
  z-index: 2;
  display: grid;
  width: clamp(96px, 10vw, 136px);
  aspect-ratio: 1;
  place-items: center;
  border: 2px solid var(--indigo);
  border-radius: 50%;
  background: rgba(18, 19, 28, 0.84);
  box-shadow: 0 0 34px rgba(108, 92, 231, 0.22);
  text-align: center;
}

.map-node strong {
  color: var(--indigo);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.map-node small {
  display: block;
  margin-top: 8px;
  color: var(--quiet);
  font-size: 0.68rem;
}

.map-node-top { top: 10%; left: 50%; transform: translateX(-50%); }
.map-node-right { right: 7%; top: 50%; transform: translateY(-50%); }
.map-node-bottom { bottom: 10%; left: 50%; transform: translateX(-50%); }
.map-node-left { left: 7%; top: 50%; transform: translateY(-50%); }


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

.bento.large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 280px;
}

.bento.accent {
  background:
    linear-gradient(145deg, rgba(0, 206, 201, 0.14), transparent 60%),
    var(--panel-strong);
}

.audience-grid article:nth-child(2),
.principle-grid article:nth-child(4),
.feature-grid article:nth-child(4) {
  border-color: rgba(0, 206, 201, 0.36);
}

.principle-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.partner-row span {
  display: grid;
  min-height: 70px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--quiet);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mockup-frame {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  min-height: 430px;
  margin-top: 42px;
  overflow: hidden;
}

.mockup-sidebar {
  display: grid;
  gap: 14px;
  align-content: start;
  border-right: 1px solid var(--line);
  padding: 28px 24px;
  background:
    linear-gradient(180deg, rgba(108, 92, 231, 0.16), transparent),
    rgba(10, 10, 12, 0.46);
}

.mockup-sidebar span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: rgba(248, 249, 250, 0.11);
}

.mockup-sidebar span:nth-child(1) { width: 68%; background: linear-gradient(135deg, var(--indigo), var(--cyan)); }
.mockup-sidebar span:nth-child(2) { width: 82%; }
.mockup-sidebar span:nth-child(3) { width: 56%; }
.mockup-sidebar span:nth-child(4) { width: 74%; }


.mockup-main {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 28px;
}

.mockup-topbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 4px;
}

.mockup-topbar span,
.mockup-row {
  display: block;
  border-radius: 999px;
  background: rgba(248, 249, 250, 0.08);
}

.mockup-topbar span {
  height: 18px;
}

.mockup-topbar span:first-child { width: min(240px, 48%); }
.mockup-topbar span:last-child { width: 92px; }

.mockup-row {
  height: 28px;
}

.row-one { width: 44%; }
.row-two { width: 76%; }
.row-three { width: 60%; }

.mockup-panel {
  min-height: 230px;
  margin-top: 16px;
  border: 1px solid rgba(0, 206, 201, 0.26);
  border-radius: var(--radius);
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(0, 206, 201, 0.16), rgba(108, 92, 231, 0.12)),
    var(--panel-strong);
}

.mockup-panel strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  line-height: 1.05;
}

.mockup-panel p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
}

.panel-kicker {
  display: block;
  margin-bottom: 58px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}


.final-cta {
  text-align: center;
}

.final-cta h2 {
  margin-inline: auto;
}

.link-directory {
  display: grid;
  grid-template-columns: 1.25fr repeat(5, minmax(108px, 0.7fr)) 1.1fr;
  gap: clamp(24px, 4vw, 54px);
  padding: clamp(70px, 9vw, 118px) 0 54px;
  border-top: 1px solid var(--line);
}

.directory-brand p,
.directory-column h2,
.directory-connect h2 {
  margin: 0 0 14px;
}

.footer-wordmark {
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.directory-brand p:not(.footer-wordmark),
.directory-brand a,
.directory-column a,
.directory-column small {
  color: var(--quiet);
}

.directory-column,
.directory-connect {
  display: grid;
  align-content: start;
  gap: 10px;
}

.directory-column h2,
.directory-connect h2 {
  color: var(--text);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.directory-column a {
  display: grid;
  gap: 2px;
  font-size: 0.94rem;
  transition: color 180ms ease;
}

.directory-column a:hover,
.directory-brand a:hover {
  color: var(--cyan);
}

.directory-column span {
  color: var(--muted);
}

.directory-column small {
  font-size: 0.72rem;
}

.directory-connect .button {
  width: fit-content;
  margin-top: 4px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--quiet);
  font-size: 0.9rem;
}

.site-footer p {
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
}

.footer-links a {
  transition: color 180ms ease;
}

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

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(360px, 1fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
}

.contact-section .section-intro p {
  max-width: none;
}

.contact-form {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 32px);
  background:
    linear-gradient(145deg, rgba(248, 249, 250, 0.05), transparent 42%),
    linear-gradient(315deg, rgba(0, 206, 201, 0.06), transparent 38%),
    var(--panel);
  box-shadow:
    inset 0 1px 0 rgba(248, 249, 250, 0.08),
    0 24px 80px rgba(0, 0, 0, 0.22);
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field-full,
.form-actions {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 760;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: rgba(248, 249, 250, 0.06);
  color: var(--text);
  font: inherit;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: rgba(248, 249, 250, 0.22);
  background: rgba(248, 249, 250, 0.08);
}

.form-field textarea {
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(0, 206, 201, 0.52);
  outline: 2px solid rgba(0, 206, 201, 0.16);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px rgba(0, 206, 201, 0.08);
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.form-status {
  margin: 0;
  color: var(--muted);
}

.form-status[data-state="success"] {
  color: var(--green);
}

.form-status[data-state="error"] {
  color: var(--pink);
}

.button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

@media (max-width: 980px) {
  .early-access {
    display: grid;
  }

  .audience-grid,
  .value-cards,
  .principle-grid,
  .feature-grid,
  .testimonial-grid,
  .resource-grid,
  .bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bento.large {
    grid-column: span 2;
  }

  .mockup-frame {
    grid-template-columns: 1fr;
  }

  .mockup-sidebar {
    display: none;
  }

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

  .link-directory {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header {
    gap: 14px;
  }

  .link-directory {
    grid-template-columns: 1fr;
  }

  .site-nav {
    order: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    font-size: 0.78rem;
  }

  .site-nav a {
    border: 1px solid var(--line);
    padding: 7px 10px;
    background: rgba(248, 249, 250, 0.045);
  }

  .site-nav a[aria-current="page"] {
    border-color: rgba(0, 206, 201, 0.34);
    background: rgba(0, 206, 201, 0.08);
  }

  .theme-toggle {
    grid-template-columns: repeat(3, 40px);
  }

  .theme-toggle label {
    width: 40px;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
    text-align: left;
    place-items: start;
  }

  .hero-mark {
    margin-inline: 0;
  }

  h1 {
    font-size: clamp(2.7rem, 13vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2.45rem, 12vw, 4.2rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .audience-grid,
  .value-cards,
  .principle-grid,
  .feature-grid,
  .testimonial-grid,
  .resource-grid,
  .bento-grid,
  .partner-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .bento.large {
    grid-column: auto;
    min-height: auto;
  }

  .story-visual {
    min-height: 360px;
  }

  .map-node {
    width: 92px;
  }

  .map-node strong {
    font-size: 0.66rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
/* 2026-06-01 brand refresh */
.wordmark-image {
  display: block;
  width: clamp(112px, 12vw, 152px);
  height: auto;
  object-fit: contain;
  filter: var(--wordmark-filter, var(--logo-filter));
}

body.theme-light,
body.theme-accessible,
body:has(#theme-light:checked),
body:has(#theme-accessible:checked) {
  --wordmark-filter: invert(1) saturate(0.85) brightness(0.92);
}

.hero-brand-lockup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 24px);
  margin-bottom: clamp(24px, 4vw, 42px);
}

.hero-brand-lockup .hero-mark {
  width: clamp(82px, 8.5vw, 122px);
  margin: 0;
}

.hero-wordmark-image {
  display: block;
  width: clamp(178px, 24vw, 320px);
  height: auto;
  object-fit: contain;
  filter: var(--wordmark-filter, var(--logo-filter));
}

.hero-wordmark {
  display: none;
}

.hero {
  min-height: calc(100svh - 86px);
  align-content: center;
  padding: clamp(38px, 5.5vw, 74px) 0 clamp(58px, 7vw, 96px);
}

.hero h1,
h1,
h2 {
  max-width: 880px;
  font-size: clamp(2.85rem, 5.25vw, 5.55rem);
}

.hero h1 {
  margin-bottom: 22px;
}

.hero-copy {
  max-width: 780px;
  margin-bottom: 0;
}

.hero::before {
  inset: 2% -7% auto 42%;
  height: min(42vw, 490px);
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 18% 62%, rgba(0, 206, 201, 0.68) 0 3px, transparent 4px),
    radial-gradient(circle at 45% 38%, rgba(198, 185, 255, 0.7) 0 3px, transparent 4px),
    radial-gradient(circle at 74% 22%, rgba(255, 183, 126, 0.62) 0 2px, transparent 3px),
    linear-gradient(132deg, transparent 0 27%, rgba(198, 185, 255, 0.22) 27.2% 27.7%, transparent 28%),
    linear-gradient(52deg, transparent 0 42%, rgba(0, 206, 201, 0.2) 42.2% 42.7%, transparent 43%),
    linear-gradient(96deg, transparent 0 57%, rgba(255, 183, 126, 0.14) 57.2% 57.6%, transparent 58%),
    repeating-linear-gradient(90deg, transparent 0 46px, rgba(248, 249, 250, 0.045) 47px 48px),
    repeating-linear-gradient(0deg, transparent 0 46px, rgba(248, 249, 250, 0.04) 47px 48px);
  clip-path: polygon(14% 0, 100% 0, 86% 100%, 0 100%);
  opacity: 0.5;
}

.hero::after {
  right: -8%;
  bottom: -3%;
  width: min(82vw, 980px);
  height: 260px;
  border-top: 1px solid rgba(0, 206, 201, 0.15);
  border-left: 1px solid rgba(198, 185, 255, 0.12);
  border-radius: 0;
  background:
    linear-gradient(118deg, transparent 0 23%, rgba(0, 206, 201, 0.13) 23.3% 23.8%, transparent 24%),
    linear-gradient(28deg, transparent 0 52%, rgba(108, 92, 231, 0.11) 52.2% 52.8%, transparent 53%),
    repeating-linear-gradient(90deg, rgba(0, 206, 201, 0.08) 0 1px, transparent 1px 32px),
    linear-gradient(90deg, rgba(0, 206, 201, 0.1), rgba(108, 92, 231, 0.08), transparent);
  clip-path: polygon(10% 0, 100% 18%, 92% 100%, 0 84%);
  transform: rotate(-2deg);
  opacity: 0.5;
}

body:has(#theme-light:checked) .hero::before,
body:has(#theme-accessible:checked) .hero::before,
body:has(#theme-light:checked) .hero::after,
body:has(#theme-accessible:checked) .hero::after {
  opacity: 0.18;
}

.social-links,
.directory-social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(248, 249, 250, 0.045);
  color: var(--muted);
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease, background 180ms ease;
}

.social-links a:hover {
  border-color: rgba(0, 206, 201, 0.42);
  background: rgba(0, 206, 201, 0.08);
  color: var(--text);
  transform: translateY(-2px);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.directory-social-links {
  flex-wrap: wrap;
  margin-top: 10px;
}

.directory-social-links a {
  color: var(--quiet);
  font-size: 0.82rem;
  transition: color 180ms ease;
}

.directory-social-links a:hover {
  color: var(--cyan);
}

@media (max-width: 720px) {
  .hero-brand-lockup {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero h1,
  h1,
  h2 {
    font-size: clamp(2.45rem, 11vw, 4rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .social-links {
    order: 3;
  }
}
/* 2026-06-01 hero spacing refinement */
.hero-brand-lockup .hero-mark {
  width: clamp(98px, 9.8vw, 146px);
}

.hero-wordmark-image {
  width: clamp(220px, 28vw, 380px);
}

.hero-copy {
  max-width: 960px;
  margin-bottom: 26px;
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  line-height: 1.72;
  text-wrap: balance;
}

.hero-actions {
  margin-top: 4px;
}

@media (max-width: 720px) {
  .hero-brand-lockup .hero-mark {
    width: clamp(88px, 24vw, 116px);
  }

  .hero-wordmark-image {
    width: clamp(190px, 58vw, 280px);
  }

  .hero-copy {
    max-width: 100%;
    margin-bottom: 24px;
    line-height: 1.62;
    text-wrap: pretty;
  }
}
/* 2026-06-02 Core Web Vitals refinements */
.brand-logo,
.hero-logo,
.wordmark-image,
.hero-wordmark-image,
.map-center img {
  display: block;
}

body.full-mode .future-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 760px;
}
/* 2026-06-03 SEO support */
.not-found {
  display: grid;
  min-height: 100svh;
  align-content: center;
  justify-items: start;
  padding: clamp(56px, 9vw, 120px) 0;
}

.not-found .brand {
  margin-bottom: clamp(48px, 8vw, 92px);
}

.not-found h1 {
  margin-bottom: 22px;
}

.not-found .hero-copy {
  margin: 0 0 30px;
  text-align: left;
}
