@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
  src: url("/assets/fonts/dm-sans-variable-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/fraunces-variable-latin.woff2") format("woff2");
}

@font-face {
  font-family: "DM Mono";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("/assets/fonts/dm-mono-300-latin.woff2") format("woff2");
}

@font-face {
  font-family: "DM Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/dm-mono-400-latin.woff2") format("woff2");
}

@font-face {
  font-family: "DM Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/dm-mono-500-latin.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --cream: #fffcf7;
  --charcoal: #2c2c2c;
  --dark: #1a1a1a;
  --yellow: #f5a623;
  --yellow-dark: #c0780a;
  --yellow-deep: #93590a;
  --gold: #ffd166;
  --gold-light: #fff8e7;
  --warm-gray: #7a7a7a;
  --subtle-gray: #b9b2a6;
  --light-gray: #f2efeb;
  --body-copy: #4d4842;
  --border: rgba(44, 44, 44, 0.07);
  --page-width: 1250px;
  --page-gutter: 32px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "DM Mono", "SFMono-Regular", Consolas, monospace;
}

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

html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  min-width: 320px;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::after {
  position: fixed;
  z-index: 9999;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.018'/%3E%3C/svg%3E");
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(245, 166, 35, 0.45);
  outline-offset: 3px;
}

img {
  max-width: 100%;
}

a {
  color: var(--yellow-dark);
  text-decoration: none;
}

a:hover {
  color: var(--yellow-deep);
}

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

h1,
h2,
h3,
h4 {
  color: var(--charcoal);
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 0, "WONK" 0;
}

[hidden] {
  display: none !important;
}

.container {
  width: 100%;
  max-width: var(--page-width);
  margin: 0 auto;
  padding-right: var(--page-gutter);
  padding-left: var(--page-gutter);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-nav {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  height: 84px;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 252, 247, 0.88);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}

.nav-inner {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
}

.brand-button {
  display: block;
  height: 52px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.brand-button img {
  display: block;
  width: auto;
  height: 52px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 16px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.nav-link:hover {
  background: var(--light-gray);
}

.nav-link.is-active {
  color: var(--yellow);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgba(44, 44, 44, 0.13);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 99px;
  background: var(--charcoal);
  transition: transform 180ms ease;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border: 0;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  cursor: pointer;
  transition:
    transform 220ms ease,
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.button-primary {
  background: var(--yellow);
  color: var(--charcoal);
}

.button-primary:hover {
  transform: translateY(-2px);
  background: #e6971e;
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.25);
}

.button-outline {
  border: 1.5px solid rgba(44, 44, 44, 0.2);
  background: transparent;
  color: var(--charcoal);
}

.button-outline:hover {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: #fff;
}

.button-dark {
  background: var(--charcoal);
  color: #fff;
}

.button-dark:hover {
  transform: translateY(-1px);
  background: var(--dark);
  box-shadow: 0 4px 16px rgba(44, 44, 44, 0.15);
}

.nav-cta {
  min-height: 40px;
  margin-left: 8px;
  padding: 10px 24px;
  border-radius: 10px;
  font-size: 14px;
}

.eyebrow,
.small-eyebrow {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  line-height: 1.6;
  text-transform: uppercase;
}

.small-eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
}

.highlight {
  position: relative;
  z-index: 0;
  white-space: nowrap;
}

.highlight::after {
  position: absolute;
  z-index: -1;
  right: -4px;
  bottom: 4px;
  left: -4px;
  height: 35%;
  border-radius: 4px;
  background: var(--yellow);
  content: "";
  opacity: 0.3;
  transform: rotate(-0.8deg);
}

.hero-section {
  padding: 150px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 560px;
  align-items: center;
  gap: 40px;
}

.hero-copy .eyebrow {
  margin-bottom: 14px;
}

.hero-copy h1 {
  max-width: 590px;
  margin-bottom: 20px;
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -2.2px;
  line-height: 1.04;
}

.hero-intro {
  max-width: 480px;
  margin-bottom: 32px;
  color: var(--warm-gray);
  font-size: 18px;
  line-height: 1.6;
}

.hero-intro strong {
  color: var(--charcoal);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.availability {
  color: var(--subtle-gray);
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 300;
  letter-spacing: 0.14em;
  line-height: 1.6;
  text-transform: uppercase;
}

.orbit {
  position: relative;
  width: 560px;
  max-width: 100%;
  height: 560px;
  margin: 0 auto;
}

.orbit-line {
  position: absolute;
  inset: 35px;
  border: 1.5px dashed rgba(245, 166, 35, 0.45);
  border-radius: 50%;
}

.orbit-spinner {
  position: absolute;
  inset: 0;
  animation: orbit-spin 80s linear infinite;
}

.orbit-node {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: 0;
  height: 0;
  align-items: center;
  justify-content: center;
  transform: rotate(var(--angle)) translateX(245px);
}

.orbit-counter {
  animation: orbit-counter 80s linear infinite;
}

.orbit-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  transform: rotate(var(--counter-angle));
  border: 1px solid rgba(44, 44, 44, 0.1);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(44, 31, 12, 0.1);
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
  white-space: nowrap;
}

.orbit-chip span {
  font-size: 16px;
}

.orbit-mascot {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 330px;
  height: 330px;
  margin-top: -165px;
  margin-left: -165px;
  filter: drop-shadow(0 18px 36px rgba(44, 31, 12, 0.14));
  animation: floaty 6s ease-in-out infinite;
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbit-counter {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.why-section {
  padding: 56px 0;
}

.section-heading {
  margin-bottom: 40px;
  text-align: center;
}

.section-heading .eyebrow {
  margin-bottom: 12px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.2;
}

.card-grid {
  display: grid;
  gap: 22px;
}

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

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

.feature-card,
.contact-card {
  padding: 30px 28px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(44, 31, 12, 0.04);
}

.lift-card {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.lift-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(44, 31, 12, 0.1);
}

.feature-icon {
  margin-bottom: 12px;
  font-size: 34px;
  line-height: 1.4;
}

.feature-card h3,
.contact-card h3 {
  margin-bottom: 8px;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.feature-card p,
.contact-card p {
  margin-bottom: 0;
  color: var(--warm-gray);
  font-size: 14.5px;
  line-height: 1.6;
}

.herd-section {
  padding: 32px 0 56px;
}

.dark-panel {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--charcoal);
}

.centered-panel {
  padding: 52px 56px;
  text-align: center;
}

.centered-panel h2,
.cta-panel h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
}

.centered-panel > p,
.cta-panel p {
  position: relative;
  z-index: 1;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.dark-highlight::after {
  height: 38%;
  bottom: 3px;
  opacity: 0.35;
}

.panel-orb {
  position: absolute;
  top: -90px;
  right: -70px;
  width: 300px;
  height: 300px;
  border-radius: 58% 42% 50% 50% / 48% 55% 45% 52%;
  background: var(--yellow);
  opacity: 0.12;
}

.dark-pills {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.dark-pills span {
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
}

.panel-note {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 12px;
}

.waitlist-section {
  padding: 24px 0 72px;
}

.form-panel {
  border-radius: 24px;
}

.waitlist-panel {
  max-width: 600px;
  margin: 0 auto;
  padding: 44px 48px;
  border: 1px solid rgba(245, 166, 35, 0.25);
  background: var(--gold-light);
  text-align: center;
}

.eyebrow-dark {
  margin-bottom: 12px;
  color: var(--yellow-dark);
}

.waitlist-panel h2 {
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
}

.waitlist-panel > p {
  margin-bottom: 26px;
  color: var(--warm-gray);
  font-size: 15px;
}

.stacked-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.stacked-form input,
.stacked-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(44, 44, 44, 0.12);
  border-radius: 10px;
  outline: 0;
  background: #fff;
  color: var(--charcoal);
  font-size: 15px;
  line-height: 1.6;
}

.stacked-form textarea {
  resize: vertical;
}

.stacked-form input:focus,
.stacked-form textarea:focus {
  border-color: var(--yellow);
}

.form-submit {
  width: 100%;
}

.success-state {
  padding: 14px 0 6px;
  text-align: center;
}

.success-icon {
  margin-bottom: 10px;
  font-size: 40px;
  line-height: 1.3;
}

.success-state h3 {
  margin-bottom: 6px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
}

.success-state p {
  margin-bottom: 0;
  color: var(--warm-gray);
  font-size: 14px;
}

.page-hero {
  padding: 150px 0 24px;
}

.page-hero .eyebrow {
  margin-bottom: 14px;
}

.page-hero h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.04;
}

.page-hero h1.about-title {
  max-width: 800px;
}

.page-hero > .container > p {
  max-width: 540px;
  margin-bottom: 0;
  color: var(--warm-gray);
  font-size: 17px;
}

.platform-section {
  padding: 48px 0;
}

.platform-list {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.platform-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 56px;
}

.platform-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
}

.platform-copy h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
}

.platform-copy > p {
  max-width: 520px;
  margin: 0;
  color: var(--warm-gray);
  font-size: 15.5px;
  line-height: 1.65;
}

.light-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.light-pills span {
  padding: 6px 13px;
  border: 1px solid rgba(44, 44, 44, 0.12);
  border-radius: 999px;
  background: #fff;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.6;
}

.platform-visual {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px;
  border-radius: 20px;
  text-align: center;
}

.platform-icon {
  font-size: 64px;
  line-height: 1;
}

.platform-visual h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
}

.platform-visual p {
  max-width: 280px;
  margin: 0;
  color: var(--warm-gray);
  font-size: 13px;
  line-height: 1.5;
}

.visual-connect {
  background: #fff0cc;
}

.visual-understand {
  background: #ffe9d6;
}

.visual-herd {
  background: #def0e4;
}

.visual-guard {
  background: #e2ecf6;
}

.promo-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: 8px;
  background: rgba(245, 166, 35, 0.1);
  color: var(--yellow-deep);
  font-family: var(--font-mono);
  font-size: 12.5px;
}

.platform-promise {
  font-size: 13.5px;
}

.platform-promise span {
  color: var(--warm-gray);
}

.cta-section {
  padding: 32px 0 72px;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px 56px;
}

.cta-panel h2 {
  margin-bottom: 8px;
  font-size: 30px;
}

.cta-panel p {
  margin-bottom: 0;
}

.cta-panel .button {
  flex-shrink: 0;
}

.about-story-section {
  padding: 48px 0;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: center;
  gap: 64px;
}

.about-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--body-copy);
  font-size: 16.5px;
  line-height: 1.7;
}

.about-copy p {
  margin: 0;
}

.about-copy strong {
  color: var(--charcoal);
}

.mascot-card {
  padding: 36px 32px;
  border: 1px solid rgba(44, 44, 44, 0.08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(44, 31, 12, 0.08);
  text-align: center;
}

.mascot-card img {
  display: block;
  width: 240px;
  margin: 0 auto 14px;
}

.mascot-kicker {
  color: var(--subtle-gray);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  line-height: 1.6;
  text-transform: uppercase;
}

.mascot-card p {
  margin: 10px 0 0;
  color: var(--warm-gray);
  font-size: 13.5px;
  line-height: 1.55;
}

.beliefs-section {
  padding: 40px 0;
}

.beliefs-section .section-heading {
  margin-bottom: 36px;
}

.beliefs-section .section-heading h2 {
  font-size: 32px;
  letter-spacing: -1px;
}

.beliefs-section .feature-card h3 {
  font-size: 20px;
}

.about-cta-section {
  padding-top: 40px;
}

.contact-hero > .container > p {
  max-width: 520px;
}

.contact-cards-section {
  padding: 40px 0;
}

.contact-card {
  padding: 32px;
}

.contact-card h3 {
  margin-bottom: 6px;
}

.contact-card p {
  margin-bottom: 14px;
}

.contact-card a {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 500;
}

.partnership-card {
  border-color: rgba(245, 166, 35, 0.25);
  background: var(--gold-light);
  box-shadow: none;
}

.contact-form-section {
  padding: 24px 0 72px;
}

.contact-form-panel {
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 44px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 2px 10px rgba(44, 31, 12, 0.04);
}

.contact-form-panel > h2 {
  margin-bottom: 6px;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.25;
}

.contact-form-panel > p {
  margin-bottom: 24px;
  color: var(--warm-gray);
  font-size: 14px;
}

.contact-form-panel input,
.contact-form-panel textarea {
  background: var(--cream);
}

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

.contact-success {
  padding: 16px 0;
}

.site-footer {
  padding: 44px 0 28px;
  border-top: 1px solid var(--border);
  background: var(--cream);
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-brand {
  max-width: 340px;
}

.footer-brand img {
  display: block;
  width: auto;
  height: 46px;
  margin-bottom: 12px;
}

.footer-brand p {
  margin: 0;
  color: var(--warm-gray);
  font-size: 13.5px;
  line-height: 1.6;
}

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

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-heading {
  margin-bottom: 4px;
  color: var(--subtle-gray);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-column button,
.footer-column a {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--charcoal);
  font-size: 13.5px;
  line-height: 1.6;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.footer-column button:hover,
.footer-column a:hover {
  color: var(--yellow-dark);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: var(--subtle-gray);
  font-size: 12.5px;
}

.footer-status {
  color: var(--yellow-dark);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 480px;
    gap: 22px;
  }

  .orbit {
    width: 480px;
    height: 480px;
  }

  .orbit-line {
    inset: 30px;
  }

  .orbit-node {
    transform: rotate(var(--angle)) translateX(210px);
  }

  .orbit-mascot {
    width: 290px;
    height: 290px;
    margin-top: -145px;
    margin-left: -145px;
  }

  .about-story-grid {
    grid-template-columns: minmax(0, 1fr) 370px;
    gap: 44px;
  }
}

@media (max-width: 820px) {
  :root {
    --page-gutter: 24px;
  }

  body.menu-open {
    overflow: hidden;
  }

  .site-nav {
    height: 74px;
  }

  .brand-button,
  .brand-button img {
    height: 46px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    top: 74px;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100dvh - 74px);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    overflow-y: auto;
    padding: 18px 24px 24px;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 252, 247, 0.98);
    box-shadow: 0 16px 28px rgba(44, 31, 12, 0.08);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-link {
    min-height: 46px;
    text-align: left;
  }

  .nav-cta {
    width: 100%;
    min-height: 48px;
    margin: 8px 0 0;
  }

  .hero-section,
  .page-hero {
    padding-top: 118px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-copy {
    position: relative;
    z-index: 1;
  }

  .hero-copy h1 {
    max-width: 640px;
  }

  .hero-intro {
    max-width: 600px;
  }

  .orbit {
    width: min(560px, 100%);
    height: auto;
    aspect-ratio: 1;
  }

  .orbit-line {
    inset: 6.25%;
  }

  .orbit-node {
    transform: rotate(var(--angle)) translateX(min(42vw, 245px));
  }

  .orbit-mascot {
    width: 59%;
    height: auto;
    aspect-ratio: 1;
    margin-top: -29.5%;
    margin-left: -29.5%;
  }

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

  .platform-row,
  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .platform-row:nth-child(even) .platform-visual,
  .platform-row:nth-child(4) .platform-visual {
    order: 2;
  }

  .platform-row:nth-child(even) .platform-copy,
  .platform-row:nth-child(4) .platform-copy {
    order: 1;
  }

  .mascot-card {
    max-width: 520px;
    margin: 0 auto;
  }

  .cta-panel {
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  :root {
    --page-gutter: 20px;
  }

  .hero-section {
    padding-bottom: 32px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(40px, 12vw, 52px);
    letter-spacing: -1.6px;
  }

  .hero-intro {
    font-size: 16.5px;
  }

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

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

  .availability {
    font-size: 10.5px;
  }

  .orbit-chip {
    gap: 5px;
    padding: 7px 10px;
    font-size: 11px;
  }

  .orbit-chip span {
    font-size: 13px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2 {
    font-size: 31px;
  }

  .centered-panel,
  .cta-panel {
    padding: 38px 24px;
  }

  .centered-panel h2,
  .cta-panel h2 {
    font-size: 28px;
  }

  .waitlist-panel,
  .contact-form-panel {
    padding: 34px 24px;
  }

  .two-columns,
  .form-row {
    grid-template-columns: 1fr;
  }

  .platform-list {
    gap: 48px;
  }

  .platform-row {
    gap: 28px;
  }

  .platform-copy h2 {
    font-size: 29px;
  }

  .platform-visual {
    min-height: 240px;
  }

  .about-copy {
    font-size: 15.5px;
  }

  .cta-panel {
    flex-direction: column;
  }

  .cta-panel .button {
    width: 100%;
  }

  .footer-links {
    width: 100%;
    gap: 48px;
  }

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

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

  [data-anim] {
    animation: none !important;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
