:root {
  --paper: #f4eee7;
  --paper-deep: #e9ded2;
  --ink: #242320;
  --ink-soft: #5d5952;
  --charcoal: #191918;
  --charcoal-soft: #272624;
  --orange: #ed5a1a;
  --orange-bright: #ff6927;
  --line: rgba(36, 35, 32, 0.16);
  --light-line: rgba(255, 249, 241, 0.16);
  --serif: "EB Garamond", Georgia, serif;
  --sans: "Manrope", sans-serif;
  --page-pad: clamp(1.25rem, 4vw, 4.5rem);
  --section-space: clamp(6rem, 13vw, 12rem);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 4.5rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--orange);
  color: #fff;
}

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

button,
input,
select {
  font: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  transform: translateY(-150%);
  background: var(--charcoal);
  color: white;
  font-family: var(--sans);
  font-size: 0.78rem;
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.15rem var(--page-pad);
  border-bottom: 1px solid transparent;
  transition:
    padding 300ms ease,
    background 300ms ease,
    border-color 300ms ease,
    backdrop-filter 300ms ease;
}

.site-header.scrolled {
  padding-top: 0.72rem;
  padding-bottom: 0.72rem;
  border-color: var(--line);
  background: rgba(244, 238, 231, 0.88);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: block;
  width: 8.25rem;
}

.brand img,
.footer-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3.25rem);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav a,
.site-footer nav a {
  position: relative;
}

.desktop-nav a::after,
.site-footer nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.42rem;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--orange);
  transition: transform 250ms ease;
}

.desktop-nav a:hover::after,
.site-footer nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  justify-self: end;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid var(--ink);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    color 200ms ease,
    border-color 200ms ease;
}

.nav-cta:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 1.04fr) minmax(22rem, 0.96fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 5rem);
  padding: clamp(8.5rem, 13vw, 11rem) var(--page-pad) clamp(5rem, 8vw, 7rem);
  isolation: isolate;
}

.hero-landscape,
.access-landscape {
  position: absolute;
  z-index: -3;
  inset: 0;
  background-image: url("assets/inner-landscape.png");
  background-position: center;
  background-size: cover;
}

.hero-landscape {
  opacity: 0.35;
  filter: saturate(0.65) contrast(0.9);
}

.hero::after {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(244, 238, 231, 0.97) 0%, rgba(244, 238, 231, 0.89) 48%, rgba(244, 238, 231, 0.45) 100%),
    linear-gradient(0deg, var(--paper) 0%, transparent 24%);
}

.hero-grain,
.story::before,
.privacy::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.14;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.hero-copy {
  z-index: 2;
  max-width: 50rem;
}

.eyebrow {
  margin: 0 0 1.5rem;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 2.75rem;
  height: 1px;
  margin: 0 1rem 0.22rem 0;
  content: "";
  background: var(--orange);
}

.eyebrow-light {
  color: rgba(255, 249, 241, 0.58);
}

.hero h1,
.section h2,
.early-access h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 0.9;
}

.hero h1 {
  max-width: 13ch;
  font-size: clamp(4rem, 7.45vw, 8.6rem);
}

.hero-intro {
  max-width: 38rem;
  margin: 2.25rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.15rem, 1.65vw, 1.48rem);
  line-height: 1.5;
}

.hero-positioning {
  max-width: 39rem;
  margin: 1rem 0 0;
  font-family: var(--sans);
  font-size: clamp(0.78rem, 1vw, 0.9rem);
  font-weight: 500;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.2rem;
}

.button {
  display: inline-flex;
  min-height: 3.65rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.9rem 1.15rem 0.9rem 1.4rem;
  border: 0;
  border-radius: 100vw;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    transform 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

.button .button-icon {
  position: relative;
  display: grid;
  width: 1.85rem;
  height: 1.85rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  transition: transform 220ms ease;
}

.button-icon::before {
  position: absolute;
  width: 0.82rem;
  height: 1.5px;
  content: "";
  background: currentColor;
  transform: rotate(-45deg);
}

.button-icon::after {
  position: absolute;
  width: 0.46rem;
  height: 0.46rem;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  content: "";
  transform: translate(0.18rem, -0.18rem);
}

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

.button:hover .button-icon {
  transform: translate(0.1rem, -0.1rem);
}

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

.button-dark:hover {
  background: var(--orange);
}

.button-orange {
  width: 100%;
  background: var(--orange);
  color: white;
}

.button-orange:hover {
  background: #d8480f;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--orange);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateY(4px);
}

.voice-composition {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(44vw, 38rem);
  aspect-ratio: 1;
  place-items: center;
  justify-self: end;
}

.voice-composition::before {
  position: absolute;
  width: 76%;
  aspect-ratio: 1;
  border-radius: 50%;
  content: "";
  background: rgba(237, 90, 26, 0.055);
  box-shadow: 0 0 0 2.5rem rgba(237, 90, 26, 0.035);
}

.official-enso {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: rotate(-7deg);
  filter: drop-shadow(0 1.5rem 2.5rem rgba(136, 54, 17, 0.09));
  user-select: none;
  animation: enso-arrive 1.35s 200ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.voice-player {
  position: absolute;
  z-index: 3;
  bottom: -2rem;
  left: 50%;
  display: grid;
  width: min(86%, 22rem);
  grid-template-columns: 3.25rem 1fr;
  align-items: center;
  gap: 0.9rem;
  padding: 0.65rem 0.9rem 0.65rem 0.65rem;
  border: 1px solid rgba(36, 35, 32, 0.15);
  border-radius: 1rem;
  background: rgba(248, 243, 237, 0.88);
  box-shadow: 0 1.25rem 3.5rem rgba(57, 43, 32, 0.12);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
}

.voice-button {
  display: grid;
  width: 3.25rem;
  aspect-ratio: 1;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--charcoal);
  color: white;
  cursor: pointer;
  transition:
    transform 220ms ease,
    background 220ms ease;
}

.voice-button:hover {
  background: var(--orange);
  transform: scale(1.04);
}

.voice-button[aria-pressed="true"] {
  background: var(--orange);
}

.voice-bars {
  display: flex;
  height: 1.75rem;
  align-items: center;
  justify-content: center;
  gap: 0.22rem;
}

.voice-bars i {
  width: 2px;
  height: 25%;
  border-radius: 10px;
  background: currentColor;
}

.voice-bars i:nth-child(2),
.voice-bars i:nth-child(6) {
  height: 55%;
}

.voice-bars i:nth-child(3),
.voice-bars i:nth-child(5) {
  height: 85%;
}

.voice-bars i:nth-child(4) {
  height: 100%;
}

.voice-button[aria-pressed="true"] .voice-bars i {
  animation: bar 0.8s ease-in-out infinite alternate;
}

.voice-button[aria-pressed="true"] .voice-bars i:nth-child(2) {
  animation-delay: -0.4s;
}

.voice-button[aria-pressed="true"] .voice-bars i:nth-child(3) {
  animation-delay: -0.65s;
}

.voice-button[aria-pressed="true"] .voice-bars i:nth-child(4) {
  animation-delay: -0.2s;
}

.voice-button[aria-pressed="true"] .voice-bars i:nth-child(5) {
  animation-delay: -0.55s;
}

.voice-button[aria-pressed="true"] .voice-bars i:nth-child(6) {
  animation-delay: -0.35s;
}

.voice-label {
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.voice-time {
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 0.55rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
  opacity: 0.52;
}

.voice-button.is-loading .voice-bars {
  opacity: 0.45;
}

.voice-player-body {
  min-width: 0;
}

.voice-player-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.voice-track {
  display: block;
  height: 2px;
  margin: 0.55rem 0 0.45rem;
  overflow: hidden;
  background: rgba(36, 35, 32, 0.14);
}

.voice-track span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--orange);
}

.voice-note {
  overflow: hidden;
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 0.57rem;
  letter-spacing: 0.04em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-whisper {
  position: absolute;
  right: var(--page-pad);
  bottom: 2rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.2;
  text-align: right;
}

.hero-whisper em {
  color: var(--orange);
  font-style: italic;
  font-weight: 600;
}

.section {
  position: relative;
  padding: var(--section-space) var(--page-pad);
  isolation: isolate;
}

.section-index {
  position: absolute;
  top: 3rem;
  right: var(--page-pad);
  color: currentColor;
  font-family: var(--sans);
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  opacity: 0.34;
}

.section-index::before {
  display: inline-block;
  width: 3.25rem;
  height: 1px;
  margin: 0 0.8rem 0.2rem 0;
  content: "";
  background: currentColor;
}

.story {
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(18rem, 0.86fr) minmax(23rem, 0.9fr) minmax(12rem, 0.45fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
  overflow: hidden;
  background: var(--charcoal);
  color: #f8f1e9;
}

.story::after {
  position: absolute;
  z-index: -2;
  top: -15%;
  right: 6%;
  width: min(62vw, 58rem);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 7vw rgba(255, 255, 255, 0.018),
    0 0 0 14vw rgba(255, 255, 255, 0.012);
}

.story h2,
.privacy h2 {
  font-size: clamp(4.5rem, 8.2vw, 9.5rem);
}

.story-body {
  align-self: center;
  max-width: 41rem;
  color: rgba(248, 241, 233, 0.65);
  font-size: clamp(1.15rem, 1.55vw, 1.4rem);
  line-height: 1.58;
}

.story-body .lead {
  color: rgba(248, 241, 233, 0.93);
  font-size: clamp(1.45rem, 2.3vw, 2.1rem);
  line-height: 1.35;
}

.story-declaration,
.privacy-declaration {
  color: var(--orange-bright) !important;
  font-size: clamp(1.7rem, 2.7vw, 2.55rem) !important;
  font-style: italic;
}

.story-orbit {
  position: relative;
  display: grid;
  width: min(17vw, 14rem);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--light-line);
  border-radius: 50%;
  animation: orbit 24s linear infinite;
}

.story-orbit::before {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  content: "";
  background: var(--orange);
  box-shadow: 0 0 2.4rem var(--orange);
}

.story-orbit span {
  position: absolute;
  color: rgba(248, 241, 233, 0.55);
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-orbit span:nth-child(1) {
  top: -0.45rem;
}

.story-orbit span:nth-child(2) {
  right: -2.2rem;
  bottom: 22%;
}

.story-orbit span:nth-child(3) {
  bottom: 6%;
  left: -1.6rem;
}

.companion {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.65fr);
  gap: clamp(4rem, 9vw, 10rem);
  background: var(--paper);
}

.companion-header {
  position: static;
  align-self: start;
}

.companion h2 {
  max-width: 9ch;
  font-size: clamp(4.2rem, 6.4vw, 7rem);
}

.companion-header > p:last-child {
  max-width: 40rem;
  margin: 2.5rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.15rem, 1.5vw, 1.38rem);
  line-height: 1.55;
}

.inner-model {
  align-self: start;
  margin-top: 2rem;
  padding: 2.2rem 0 3.5rem;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.inner-model-label {
  margin: 0 0 1.7rem;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.inner-model-line {
  display: flex;
  height: 4rem;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 2rem;
}

.inner-model-line span {
  flex: 1;
  height: 2px;
  transform: rotate(-2deg);
  background: var(--orange);
}

.inner-model-line span:nth-child(2) {
  transform: translateY(-0.6rem) rotate(3deg);
}

.inner-model-line span:nth-child(3) {
  transform: translateY(0.8rem) rotate(-5deg);
}

.inner-model-line span:nth-child(4) {
  transform: translateY(-1.1rem) rotate(4deg);
}

.inner-model p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.2rem;
  line-height: 1.52;
}

.feature-list {
  grid-column: 1 / -1;
  margin-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--ink);
}

.feature {
  display: grid;
  grid-template-columns: minmax(4rem, 0.35fr) minmax(0, 1.65fr);
  gap: 2rem;
  padding: clamp(1.7rem, 3vw, 2.8rem) 0;
  border-bottom: 1px solid var(--line);
}

.feature-number {
  color: var(--orange);
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
}

.feature > div {
  display: grid;
  grid-template-columns: minmax(15rem, 0.85fr) minmax(18rem, 1.15fr);
  align-items: baseline;
  gap: clamp(2rem, 5vw, 6rem);
}

.feature h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 4.15rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.95;
  transition: color 240ms ease;
}

.feature p {
  max-width: 36rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.12rem;
  line-height: 1.5;
}

.feature:hover h3 {
  color: var(--orange);
}

.privacy {
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(22rem, 0.92fr) minmax(23rem, 0.72fr);
  align-items: center;
  gap: clamp(4rem, 10vw, 12rem);
  overflow: hidden;
  background: var(--charcoal-soft);
  color: #f8f1e9;
}

.privacy::after {
  position: absolute;
  z-index: -2;
  right: -12%;
  bottom: -33%;
  width: 58vw;
  aspect-ratio: 1;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(237, 90, 26, 0.2), transparent 65%);
}

.privacy-copy > p:not(.eyebrow, .privacy-declaration) {
  max-width: 43rem;
  margin: 2rem 0 0;
  color: rgba(248, 241, 233, 0.65);
  font-size: clamp(1.08rem, 1.4vw, 1.28rem);
  line-height: 1.58;
}

.privacy-copy em {
  color: #fff;
}

.privacy-visual {
  perspective: 1000px;
}

.device {
  width: min(100%, 31rem);
  margin-left: auto;
  overflow: hidden;
  transform: rotateY(-6deg) rotateZ(1deg);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2.5rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow: 2rem 3rem 7rem rgba(0, 0, 0, 0.36);
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
  backdrop-filter: blur(18px);
}

.device:hover {
  transform: rotateY(0) rotateZ(0) translateY(-0.6rem);
}

.device-top {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.4rem 1.6rem;
  border-bottom: 1px solid var(--light-line);
}

.device-top span {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: #75cf83;
  box-shadow: 0 0 1rem rgba(117, 207, 131, 0.6);
}

.device-top p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--sans);
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.device-center {
  position: relative;
  display: grid;
  min-height: 31rem;
  place-content: center;
  text-align: center;
}

.device-enso {
  display: block;
  width: 10rem;
  height: 10rem;
  margin: 0 auto 2rem;
  object-fit: contain;
  filter: drop-shadow(0 0.75rem 1.5rem rgba(237, 90, 26, 0.12));
}

.device-center p {
  margin: 0;
  font-size: 2rem;
  line-height: 1.05;
}

.device-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--light-line);
}

.device-footer span {
  padding: 1.25rem 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--sans);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.device-footer span + span {
  border-left: 1px solid var(--light-line);
}

.early-access {
  position: relative;
  display: grid;
  min-height: 92svh;
  place-items: center;
  padding: var(--section-space) var(--page-pad);
  text-align: center;
  isolation: isolate;
}

.access-landscape {
  opacity: 0.48;
  filter: saturate(0.65);
}

.early-access::after {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background: rgba(244, 238, 231, 0.76);
  backdrop-filter: blur(2px);
}

.access-content {
  width: min(100%, 53rem);
}

.early-access h2 {
  font-size: clamp(4.3rem, 8.5vw, 9.5rem);
}

.access-intro {
  max-width: 37rem;
  margin: 2.3rem auto 0;
  color: var(--ink-soft);
  font-size: 1.25rem;
  line-height: 1.5;
}

.access-form {
  display: grid;
  max-width: 43rem;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  margin: 3.5rem auto 0;
  padding: 1rem;
  border: 1px solid rgba(36, 35, 32, 0.12);
  border-radius: 1.7rem;
  background: rgba(255, 252, 248, 0.72);
  box-shadow: 0 2rem 5rem rgba(74, 57, 43, 0.12);
  text-align: left;
  backdrop-filter: blur(18px);
}

.field {
  padding: 0.4rem 0.5rem;
}

.field label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field select {
  width: 100%;
  min-height: 3rem;
  padding: 0.3rem 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.field input:focus,
.field select:focus {
  border-color: var(--orange);
}

.field input::placeholder {
  color: #969088;
}

.access-form .button {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0.25rem 0 0.45rem;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 0.68rem;
  text-align: center;
}

.form-note.success {
  color: #28773a;
  font-weight: 600;
}

.form-note.error {
  color: #a63c24;
  font-weight: 600;
}

.site-footer {
  display: grid;
  grid-template-columns: 0.6fr 1.1fr 1.4fr 0.7fr;
  align-items: end;
  gap: 2rem;
  padding: 3rem var(--page-pad);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-brand {
  width: 7.4rem;
}

.site-footer > p {
  max-width: 19rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.4;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.8rem;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom {
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 0.62rem;
  text-align: right;
}

.footer-bottom p {
  margin: 0.45rem 0 0;
}

.reveal {
  opacity: 0;
  transform: translateY(2.2rem);
  transition:
    opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@keyframes enso-arrive {
  from {
    transform: rotate(-13deg) scale(0.9);
    opacity: 0;
  }
}

@keyframes voice-pulse {
  0% {
    transform: scale(0.92);
    opacity: 0;
  }
  25% {
    opacity: 0.5;
  }
  100% {
    transform: scale(1.22);
    opacity: 0;
  }
}

@keyframes bar {
  from {
    transform: scaleY(0.45);
  }
  to {
    transform: scaleY(1.05);
  }
}

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    place-content: center;
    gap: 0.35rem;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(244, 238, 231, 0.72);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 1rem;
    height: 1px;
    background: var(--ink);
    transition: transform 250ms ease;
  }

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

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

  .mobile-menu {
    position: fixed;
    z-index: -1;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding: 7rem var(--page-pad) 3rem;
    background: var(--paper);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu a {
    font-size: clamp(2.4rem, 8vw, 4rem);
    line-height: 1;
  }

  .hero {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .hero-copy {
    max-width: 46rem;
  }

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

  .voice-composition {
    position: relative;
    z-index: 1;
    top: auto;
    right: auto;
    width: min(78vw, 32rem);
    margin: 1rem auto 4.25rem;
    justify-self: center;
    opacity: 1;
  }

  .voice-player {
    bottom: -3.35rem;
    width: min(90%, 22rem);
  }

  .hero-whisper {
    display: none;
  }

  .story {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .story-orbit {
    display: none;
  }

  .story-body {
    max-width: 47rem;
  }

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

  .companion-header {
    position: static;
  }

  .inner-model {
    max-width: 43rem;
  }

  .feature > div {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .privacy {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .device {
    width: min(100%, 34rem);
    margin: 0 auto;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    text-align: left;
  }
}

@media (max-width: 640px) {
  :root {
    --section-space: 6.25rem;
  }

  .brand {
    width: 6.9rem;
  }

  .hero {
    min-height: 100svh;
    padding-top: 7.5rem;
    padding-bottom: 4rem;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(244, 238, 231, 0.97), rgba(244, 238, 231, 0.78)),
      linear-gradient(0deg, var(--paper), transparent 30%);
  }

  .hero h1 {
    font-size: clamp(4.25rem, 20vw, 6.1rem);
  }

  .hero-intro {
    margin-top: 1.7rem;
    font-size: 1.1rem;
  }

  .hero-positioning {
    font-size: 0.72rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.3rem;
  }

  .voice-composition {
    top: auto;
    right: auto;
    width: min(92vw, 28rem);
    margin-top: 1.15rem;
    margin-bottom: 3.75rem;
  }

  .voice-player {
    bottom: -2.85rem;
    width: 94%;
    grid-template-columns: 3rem 1fr;
    padding: 0.55rem 0.75rem 0.55rem 0.55rem;
  }

  .voice-button {
    width: 3rem;
  }

  .voice-note {
    font-size: 0.52rem;
  }

  .section-index {
    top: 1.6rem;
  }

  .story h2,
  .privacy h2,
  .companion h2,
  .early-access h2 {
    font-size: clamp(4rem, 20vw, 6rem);
  }

  .story-body .lead {
    font-size: 1.42rem;
  }

  .feature {
    grid-template-columns: 2.5rem 1fr;
    gap: 0.5rem;
  }

  .feature > div {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature h3 {
    font-size: 2.4rem;
  }

  .feature p {
    font-size: 1rem;
  }

  .privacy {
    gap: 4.5rem;
  }

  .device-center {
    min-height: 24rem;
  }

  .device-center p {
    font-size: 1.6rem;
  }

  .device-footer span {
    font-size: 0.47rem;
  }

  .early-access {
    text-align: left;
  }

  .access-intro {
    font-size: 1.1rem;
  }

  .access-form {
    grid-template-columns: 1fr;
    margin-top: 2.5rem;
  }

  .field {
    padding: 0.3rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer nav {
    gap: 1rem 1.4rem;
  }
}

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

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

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