:root {
  --paper: #f2f1e8;
  --ink: #11110f;
  --muted: #696961;
  --line: rgba(17, 17, 15, 0.18);
  --acid: #d9ff43;
  --blue: #3155ff;
  --orange: #ff5b35;
  --lilac: #c4b8ff;
  --white: #fffef8;
  --radius: 28px;
  --page: min(1440px, calc(100vw - 48px));
  --header-height: 92px;
  color-scheme: light;
  font-family: Inter, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, transparent calc(25% - 1px), rgba(17, 17, 15, 0.045) 25%, transparent calc(25% + 1px)),
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(17, 17, 15, 0.045) 50%, transparent calc(50% + 1px)),
    linear-gradient(90deg, transparent calc(75% - 1px), rgba(17, 17, 15, 0.045) 75%, transparent calc(75% + 1px)),
    var(--paper);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.14;
  content: "";
  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='.92' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

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

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

button {
  color: inherit;
  font: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--ink);
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-24px);
  transition: opacity 160ms ease, transform 240ms cubic-bezier(.16, 1, .3, 1);
}

.skip-link:focus {
  clip-path: inset(0);
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--page);
  height: var(--header-height);
  padding: 0;
  border: 1px solid transparent;
  border-bottom-color: var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: translateX(-50%);
  transition:
    top 650ms cubic-bezier(.16, 1, .3, 1),
    width 650ms cubic-bezier(.16, 1, .3, 1),
    height 650ms cubic-bezier(.16, 1, .3, 1),
    padding 650ms cubic-bezier(.16, 1, .3, 1),
    border-color 500ms ease,
    border-radius 650ms cubic-bezier(.16, 1, .3, 1),
    background-color 500ms ease,
    box-shadow 650ms cubic-bezier(.16, 1, .3, 1),
    transform 650ms cubic-bezier(.16, 1, .3, 1),
    backdrop-filter 500ms ease;
}

.site-header.is-scrolled {
  top: 12px;
  width: calc(var(--page) - 16px);
  height: 72px;
  padding: 0 18px;
  border-color: rgba(17, 17, 15, .16);
  border-radius: 24px;
  background: rgba(242, 241, 232, .88);
  box-shadow:
    0 18px 48px rgba(17, 17, 15, .11),
    inset 0 1px 0 rgba(255, 255, 255, .72);
  backdrop-filter: blur(22px) saturate(150%);
}

@media (hover: hover) and (pointer: fine) {
  .site-header.is-scrolled:hover {
    border-color: rgba(17, 17, 15, .24);
    background: rgba(247, 246, 239, .96);
    box-shadow:
      0 24px 68px rgba(17, 17, 15, .14),
      0 0 0 4px rgba(217, 255, 67, .09),
      inset 0 1px 0 rgba(255, 255, 255, .9);
    transform: translateX(-50%) translateY(-2px);
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  flex: 0 0 auto;
}

.brand-monogram {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.monogram-c-outline,
.monogram-c,
.monogram-t {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.monogram-c-outline {
  stroke: var(--ink);
  stroke-width: 7.6;
}

.monogram-c {
  stroke: var(--acid);
  stroke-width: 4.4;
}

.monogram-t {
  stroke: var(--ink);
  stroke-width: 6.6;
  stroke-linecap: butt;
  stroke-linejoin: miter;
}

.brand-name {
  font-size: 11px;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.08em;
}

.main-nav {
  display: flex;
  gap: 34px;
  font-size: 13px;
  font-weight: 650;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 14px;
}

.language-switch {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--ink);
  border-radius: 999px;
}

.language-switch button {
  min-width: 35px;
  padding: 7px 8px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.language-switch button[aria-pressed="true"] {
  color: var(--paper);
  background: var(--ink);
}

.main-nav a,
.footer-meta a {
  position: relative;
}

.main-nav a::after,
.footer-meta a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
  padding: 11px 15px 11px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
  transition: color 180ms ease, background 180ms ease;
}

.header-cta:hover {
  color: var(--paper);
  background: var(--ink);
}

.header-cta svg,
.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.hero {
  position: relative;
  width: var(--page);
  min-height: 1070px;
  margin: 0 auto;
  padding-top: calc(var(--header-height) + 46px);
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 91, 53, 0.13);
}

.edition {
  margin-left: auto;
}

.hero-title {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  margin: 49px 0 0;
  font-size: clamp(5.2rem, 11vw, 10.6rem);
  font-weight: 820;
  line-height: 0.75;
  letter-spacing: -0.082em;
}

.hero-title > span {
  display: block;
}

.hero-title-shift {
  margin-left: 10.8%;
}

.hero-title-last {
  align-self: flex-end;
  margin-right: 2%;
}

.hero-title em,
.section-heading em,
.system-copy em,
.early-content em {
  font-family: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.hero-title em {
  color: var(--blue);
}

.hero-bottom {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 58px;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
}

.hero-intro {
  max-width: 470px;
  margin: 0;
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  line-height: 1.28;
  letter-spacing: -0.025em;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  min-height: 54px;
  padding: 0 21px 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 12px 30px rgba(17, 17, 15, 0.12);
}

.button-primary:hover {
  box-shadow: 0 16px 36px rgba(17, 17, 15, 0.22);
}

.button-light {
  color: var(--ink);
  background: var(--acid);
}

.text-button {
  display: inline-flex;
  gap: 10px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.text-button span {
  transition: transform 180ms ease;
}

.text-button:hover span {
  transform: translate(3px, 3px);
}

.hero-product {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(480px, 700px) 1fr;
  align-items: center;
  min-height: 470px;
  padding: 48px 0 30px;
  perspective: 1100px;
}

.hero-product::before {
  position: absolute;
  z-index: -1;
  top: 42%;
  left: 50%;
  width: 58%;
  height: 51%;
  border-radius: 50%;
  content: "";
  background: var(--acid);
  filter: blur(0);
  transform: translate(-50%, -50%) rotate(-6deg);
}

.hero-product-label {
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 32px;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
}

.voice-shell {
  position: relative;
  z-index: 2;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 32px;
  color: var(--white);
  background: #151514;
  box-shadow: 0 32px 70px rgba(17, 17, 15, 0.28);
  transform: rotate(-1.25deg);
  transform-style: preserve-3d;
  transition: transform 120ms ease-out;
}

.voice-shell::after {
  position: absolute;
  inset: 7px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 25px;
  content: "";
}

.voice-shell-top,
.voice-result,
.identity-top,
.identity-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.micro-label {
  color: rgba(255, 255, 255, 0.56);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.secure-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
}

.secure-pill svg {
  width: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
}

.voice-transcript {
  display: grid;
  grid-template-columns: 34px 1fr;
  min-height: 112px;
  margin-top: 34px;
}

.quote-mark {
  color: var(--acid);
  font-family: Georgia, serif;
  font-size: 43px;
  line-height: 0.8;
}

.voice-transcript p {
  max-width: 540px;
  margin: 0;
  font-size: clamp(1.3rem, 2.1vw, 2rem);
  font-weight: 550;
  line-height: 1.13;
  letter-spacing: -0.035em;
}

.waveform {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 52px;
  margin: 13px 0 26px;
  padding: 0 2px;
  overflow: hidden;
}

.waveform i {
  flex: 1;
  min-width: 2px;
  height: var(--h);
  border-radius: 999px;
  background: var(--acid);
  transform-origin: center;
  animation: pulse-wave 1.1s ease-in-out infinite alternate;
  animation-delay: calc(var(--h) * -0.012s);
}

@keyframes pulse-wave {
  to { transform: scaleY(0.48); opacity: 0.62; }
}

.voice-result {
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.voice-result > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 7px;
}

.voice-result strong {
  font-size: 18px;
  font-weight: 600;
}

.voice-result .voice-total {
  align-items: flex-end;
}

.voice-result .voice-total strong {
  color: var(--acid);
  font-size: 28px;
  letter-spacing: -0.04em;
}

.voice-total small {
  font-size: 12px;
  font-weight: 500;
}

.confirm-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 19px;
  padding: 7px 7px 7px 17px;
  border: 0;
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
}

.confirm-button.is-confirmed {
  background: var(--acid);
}

.confirm-icon {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
}

.signal-card {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  width: 142px;
  padding: 14px;
  border: 1px solid var(--ink);
  background: var(--paper);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  box-shadow: 9px 9px 0 var(--ink);
}

.signal-card span {
  margin-bottom: 18px;
  font-size: 8px;
  font-weight: 800;
}

.signal-card strong {
  font-size: 24px;
  letter-spacing: -0.07em;
}

.signal-card small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.25;
}

.signal-card-top {
  top: 58px;
  right: 0;
  transform: rotate(4deg);
}

.signal-card-bottom {
  right: 6%;
  bottom: 43px;
  color: var(--white);
  background: var(--blue);
  transform: rotate(-3deg);
}

.signal-card-bottom small {
  color: rgba(255, 255, 255, 0.68);
}

.hero-index {
  position: absolute;
  right: 0;
  bottom: 14px;
  color: var(--muted);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 10px;
}

.manifesto {
  overflow: hidden;
  color: var(--paper);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--ink);
  transform: rotate(-1.3deg) scale(1.03);
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 17px 0;
  animation: marquee 24s linear infinite;
}

.marquee-track span {
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.09em;
}

.marquee-track i {
  margin: 0 34px;
  color: var(--acid);
  font-style: normal;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: 150px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 70px;
}

.eyebrow {
  display: block;
  margin-bottom: 24px;
  color: var(--muted);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.56);
}

.section-heading h2,
.system-copy h2,
.early-content h2 {
  margin: 0;
  font-size: clamp(3.2rem, 6.5vw, 6.3rem);
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -0.065em;
}

.section-heading h2 em,
.system-copy h2 em,
.early-content h2 em {
  font-size: 0.96em;
}

.section-heading > p,
.system-copy > p {
  max-width: 480px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

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

.product-card {
  position: relative;
  display: flex;
  min-height: 570px;
  padding: 24px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  isolation: isolate;
  transform: translate3d(0, 0, 0);
  transition:
    border-radius 700ms cubic-bezier(.16, 1, .3, 1),
    transform 700ms cubic-bezier(.16, 1, .3, 1),
    box-shadow 700ms cubic-bezier(.16, 1, .3, 1);
  will-change: transform;
}

.product-card::after {
  position: absolute;
  z-index: 1;
  inset: -35%;
  pointer-events: none;
  content: "";
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.32) 50%, transparent 65%);
  opacity: 0;
  transform: translate3d(-18%, 10%, 0) rotate(4deg);
  transition:
    opacity 650ms ease,
    transform 1000ms cubic-bezier(.16, 1, .3, 1);
}

.product-card-wide {
  grid-column: span 2;
  min-height: 510px;
}

.product-food { background: var(--acid); }
.product-focus { background: var(--lilac); }
.product-auto { background: var(--paper); }
.product-privacy { color: var(--white); background: var(--ink); }
.product-legal { background: var(--orange); }

.product-card-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-number {
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 10px;
  font-weight: 800;
}

.product-stage {
  padding: 7px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-copy {
  position: relative;
  z-index: 2;
  max-width: 510px;
  margin-top: auto;
}

.product-card-wide .product-copy {
  max-width: 670px;
}

.product-type {
  margin: 0 0 14px;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-copy h3 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.product-focus .product-copy h3,
.product-privacy .product-copy h3,
.product-legal .product-copy h3 {
  font-size: clamp(2.35rem, 4.2vw, 4.4rem);
}

.product-copy > p:last-child {
  max-width: 530px;
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: -0.018em;
}

.product-open {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 0 8px;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: inherit;
  background: none;
  cursor: pointer;
  font-size: 11px;
  font-weight: 750;
  opacity: .76;
  text-transform: uppercase;
  transition:
    opacity 450ms ease,
    transform 600ms cubic-bezier(.16, 1, .3, 1);
}

.product-open span:last-child {
  font-size: 17px;
  transition: transform 500ms cubic-bezier(.16, 1, .3, 1);
}

.product-open:hover span:last-child {
  transform: translate(3px, -3px);
}

.product-icon-wave {
  position: absolute;
  top: 70px;
  right: 7%;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 46%;
  height: 225px;
}

.product-icon-wave i {
  flex: 1;
  height: calc(35% + var(--offset, 0%));
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: rgba(255,255,255,.22);
  transform: rotate(13deg);
}

.product-icon-wave i:nth-child(2) { --offset: 24%; }
.product-icon-wave i:nth-child(3) { --offset: 48%; }
.product-icon-wave i:nth-child(4) { --offset: 65%; }
.product-icon-wave i:nth-child(5) { --offset: 43%; }
.product-icon-wave i:nth-child(6) { --offset: 19%; }
.product-icon-wave i:nth-child(7) { --offset: 4%; }

.task-stack {
  position: absolute;
  top: 82px;
  right: -8%;
  left: 12%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: rotate(-4deg);
}

.task-stack div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--ink);
  border-radius: 13px;
  background: rgba(255, 254, 248, 0.82);
  box-shadow: 6px 6px 0 var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.task-stack div:nth-child(2) { margin-left: 9%; }
.task-stack div:nth-child(3) { margin-left: 17%; }

.task-stack div > span:first-child {
  width: 14px;
  height: 14px;
  border: 1px solid var(--ink);
  border-radius: 4px;
}

.car-viz {
  position: absolute;
  top: 82px;
  right: 8%;
  left: 8%;
}

.car-viz svg {
  width: 100%;
  fill: var(--paper);
  stroke: var(--ink);
  stroke-linejoin: round;
  stroke-width: 2;
}

.car-viz span {
  display: block;
  margin-top: 14px;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.07em;
}

.car-viz small {
  color: var(--muted);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 8px;
  text-transform: uppercase;
}

.privacy-viz {
  position: absolute;
  top: 68px;
  right: 6%;
  width: 76%;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
}

.privacy-row {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
}

.privacy-row i {
  color: var(--acid);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 8px;
  font-style: normal;
  text-transform: uppercase;
}

.privacy-score {
  margin-top: 18px;
  color: var(--acid);
  font-size: 58px;
  font-weight: 750;
  letter-spacing: -0.08em;
}

.privacy-score small {
  color: rgba(255,255,255,.45);
  font-size: 14px;
}

.scan-line {
  position: absolute;
  z-index: -1;
  right: 0;
  left: 0;
  height: 70px;
  background: linear-gradient(transparent, rgba(217,255,67,.16), transparent);
  animation: scan 3.4s ease-in-out infinite;
}

@keyframes scan {
  0%, 100% { transform: translateY(-80px); }
  50% { transform: translateY(180px); }
}

.legal-viz {
  position: absolute;
  top: 64px;
  right: 7%;
  left: 9%;
  height: 275px;
}

.legal-paper {
  position: relative;
  width: 76%;
  min-height: 218px;
  padding: 20px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--white);
  box-shadow: 8px 8px 0 var(--ink);
  transform: rotate(-3deg);
}

.legal-paper > span,
.legal-draft span {
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
}

.legal-paper > i {
  display: block;
  width: 86%;
  height: 7px;
  margin-top: 13px;
  border-radius: 999px;
  background: rgba(17, 17, 15, .16);
}

.legal-paper > i:nth-of-type(2) { width: 68%; }
.legal-paper > i:nth-of-type(3) { width: 92%; }
.legal-paper > i:nth-of-type(4) { width: 58%; }

.legal-highlight {
  position: absolute;
  top: 92px;
  right: 17px;
  left: 16px;
  height: 26px;
  background: rgba(217, 255, 67, .72);
  mix-blend-mode: multiply;
  transform: rotate(1deg);
}

.legal-note {
  position: absolute;
  right: -55px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 9px;
  max-width: 180px;
  padding: 10px 12px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--acid);
  box-shadow: 4px 4px 0 var(--ink);
}

.legal-note b {
  display: grid;
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-size: 12px;
}

.legal-note small {
  font-size: 8px;
  font-weight: 750;
  line-height: 1.15;
}

.legal-draft {
  position: absolute;
  right: 0;
  bottom: 2px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 16px;
  border: 1px solid var(--ink);
  color: var(--white);
  background: var(--blue);
  box-shadow: 5px 5px 0 var(--ink);
  transform: rotate(2deg);
}

.legal-draft b {
  color: var(--acid);
  font-size: 18px;
}

.product-icon-wave,
.task-stack,
.car-viz,
.privacy-viz,
.legal-viz {
  transition: transform 850ms cubic-bezier(.16, 1, .3, 1);
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .product-card:hover {
    border-radius: calc(var(--radius) - 6px);
    box-shadow: 0 32px 72px rgba(17, 17, 15, .13);
    transform: translate3d(0, -8px, 0) scale(1.006);
  }

  .product-card:hover::after {
    opacity: .2;
    transform: translate3d(18%, -8%, 0) rotate(4deg);
  }

  .product-card:hover .product-open {
    opacity: 1;
    transform: translate3d(-2px, 0, 0);
  }

  .product-card:hover .product-icon-wave {
    transform: translate3d(-8px, -5px, 0) rotate(-.5deg);
  }

  .product-card:hover .task-stack {
    transform: translate3d(5px, -6px, 0) rotate(-2.5deg);
  }

  .product-card:hover .car-viz,
  .product-card:hover .privacy-viz {
    transform: translate3d(0, -6px, 0);
  }

  .product-card:hover .legal-viz {
    transform: translate3d(3px, -6px, 0);
  }
}

.system {
  width: 100%;
  max-width: none;
  padding: 0;
  color: var(--white);
  background: var(--blue);
}

.system-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 70px 100px;
  width: var(--page);
  margin: 0 auto;
  padding: 150px 0;
}

.system-copy > p {
  margin-top: 38px;
  color: rgba(255, 255, 255, 0.68);
}

.identity-card {
  align-self: center;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 28px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 15px 15px 0 var(--acid);
  transform: rotate(2deg);
}

.identity-top {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 9px;
  font-weight: 700;
}

.identity-active {
  display: flex;
  align-items: center;
  gap: 6px;
}

.identity-active i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #44b763;
}

.identity-main {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 24px 0;
}

.identity-avatar {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-size: 20px;
  font-weight: 800;
}

.identity-main > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.identity-main strong { font-size: 18px; }
.identity-main span { color: var(--muted); font-size: 11px; }

.identity-products {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
}

.identity-products div {
  display: grid;
  grid-template-columns: 15px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}

.identity-products div:last-child { border: 0; }
.identity-products i { width: 9px; height: 9px; border-radius: 50%; }
.identity-products b { font-size: 9px; font-weight: 600; color: var(--muted); }
.dot-food { background: #bce020; }
.dot-focus { background: #9a86ff; }

.identity-footer {
  padding-top: 20px;
  color: var(--muted);
  font-size: 9px;
}

.identity-footer svg {
  width: 20px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.3;
}

.system-journey {
  position: relative;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 58px;
  min-height: 330px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.journey-path {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: rgba(255, 255, 255, 0.42);
  stroke-dasharray: 5 9;
  stroke-linecap: round;
  stroke-width: 1.5;
}

.journey-step {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 19px;
  max-width: 330px;
  padding: 22px;
  border-radius: 24px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(19, 31, 122, 0.22);
}

.journey-step-one { align-self: end; transform: rotate(-2deg); }
.journey-step-two { align-self: start; justify-self: center; color: var(--white); background: var(--ink); transform: rotate(1.5deg); }
.journey-step-three { align-self: center; justify-self: end; background: var(--acid); transform: rotate(-1deg); }

.journey-number {
  flex: 0 0 auto;
  color: var(--blue);
  font: 800 32px/1 ui-monospace, monospace;
  letter-spacing: -0.08em;
}

.journey-step-two .journey-number { color: var(--acid); }
.journey-step strong { font-size: 20px; }
.journey-step p { margin: 10px 0 0; color: var(--muted); font-size: 12px; line-height: 1.4; }
.journey-step-two p { color: rgba(255,255,255,.62); }

.principle-list {
  border-top: 1px solid var(--ink);
}

.principle {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(260px, .85fr) 1fr 120px;
  gap: 34px;
  align-items: center;
  min-height: 190px;
  border-bottom: 1px solid var(--ink);
}

.principle-index {
  align-self: start;
  padding-top: 35px;
  color: var(--blue);
  font: 800 34px/1 ui-monospace, monospace;
  letter-spacing: -0.08em;
}

.principle h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.principle p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.principle-symbol {
  justify-self: end;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.symbol-voice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: var(--acid);
}

.symbol-voice i {
  width: 5px;
  height: 20px;
  border-radius: 5px;
  background: var(--ink);
}

.symbol-voice i:nth-child(2) { height: 37px; }
.symbol-voice i:nth-child(3) { height: 27px; }
.symbol-confirm { color: var(--white); background: var(--orange); font-size: 27px; }
.symbol-privacy { background: var(--lilac); }
.symbol-privacy span { width: 25px; height: 30px; border: 2px solid var(--ink); border-radius: 7px; }
.symbol-privacy span::before { display: block; width: 14px; height: 14px; margin: -12px auto 0; border: 2px solid var(--ink); border-bottom: 0; border-radius: 12px 12px 0 0; content: ""; }

.early-access {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 700px;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.early-access::before {
  position: absolute;
  top: -20%;
  right: -11%;
  width: 58vw;
  height: 58vw;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 7vw rgba(255,255,255,.025), 0 0 0 14vw rgba(255,255,255,.025), 0 0 0 21vw rgba(255,255,255,.025);
}

.early-content {
  position: relative;
  z-index: 2;
  width: var(--page);
  margin: 0 auto;
  padding: 150px 0;
}

.early-content h2 em { color: var(--acid); }
.early-content p { max-width: 520px; margin: 32px 0 36px; color: rgba(255,255,255,.64); font-size: 17px; line-height: 1.45; }
.early-code { position: absolute; right: 4%; bottom: 5%; display: flex; flex-direction: column; color: rgba(255,255,255,.42); font: 700 9px ui-monospace, monospace; text-align: right; }

.site-footer {
  display: grid;
  grid-template-columns: .85fr .8fr 1.45fr auto;
  align-items: end;
  gap: 40px;
  width: var(--page);
  min-height: 210px;
  margin: 0 auto;
  padding: 50px 0;
}

.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand strong { font-size: 12px; letter-spacing: .06em; }
.site-footer > p { max-width: 330px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.4; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 10px 20px; align-content: end; }
.footer-legal a { color: var(--muted); font-size: 10px; font-weight: 650; }
.footer-legal a:hover { color: var(--ink); }
.footer-meta { display: flex; gap: 25px; font: 700 10px ui-monospace, monospace; }

dialog {
  max-width: none;
  border: 0;
}

dialog::backdrop {
  background: rgba(17, 17, 15, 0.64);
  backdrop-filter: blur(9px);
}

.product-dialog,
.access-dialog {
  position: fixed;
  width: min(620px, calc(100vw - 32px));
  padding: 42px;
  border: 1px solid var(--ink);
  border-radius: 24px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 14px 14px 0 var(--acid);
}

.product-dialog[open],
.access-dialog[open] {
  animation: dialog-in 250ms cubic-bezier(.2,.8,.2,1);
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(20px) scale(.98); }
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.dialog-index { margin-bottom: 48px; color: var(--blue); font: 800 11px ui-monospace, monospace; }
.product-dialog h2, .access-dialog h2 { margin: 0; font-size: clamp(2.8rem, 7vw, 5rem); line-height: .9; letter-spacing: -.065em; }
.dialog-lead, .access-dialog p { max-width: 480px; margin: 25px 0; color: var(--muted); font-size: 16px; line-height: 1.45; }
.product-dialog ul { display: grid; gap: 10px; margin: 0 0 34px; padding: 0; list-style: none; }
.product-dialog li { padding: 12px 0; border-top: 1px solid var(--line); font-size: 13px; }
.product-dialog li::before { margin-right: 10px; color: var(--blue); content: "↳"; }
.access-dialog { text-align: left; }
.access-dialog .button { margin-top: 8px; }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.75,.2,1);
}

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

.product-card.reveal {
  transition:
    opacity 700ms ease,
    border-radius 700ms cubic-bezier(.16, 1, .3, 1),
    transform 700ms cubic-bezier(.16, 1, .3, 1),
    box-shadow 700ms cubic-bezier(.16, 1, .3, 1);
}

@media (hover: hover) and (pointer: fine) {
  .product-card.reveal.is-visible:hover {
    border-radius: calc(var(--radius) - 6px);
    box-shadow: 0 32px 72px rgba(17, 17, 15, .13);
    transform: translate3d(0, -8px, 0) scale(1.006);
  }
}

@media (max-width: 1050px) {
  :root { --page: calc(100vw - 36px); }
  .hero { min-height: 1010px; }
  .hero-title { font-size: clamp(4.4rem, 11vw, 8rem); }
  .hero-product { grid-template-columns: 100px 1fr 100px; }
  .signal-card-top { right: -4px; }
  .signal-card-bottom { right: 0; }
  .product-card-wide { min-height: 530px; }
  .product-copy { padding-right: 95px; }
  .system-grid { gap: 60px; }
}

@media (max-width: 760px) {
  :root { --page: calc(100vw - 24px); --header-height: 72px; --radius: 21px; }
  body { background: var(--paper); }
  .site-header { grid-template-columns: 1fr auto; }
  .site-header.is-scrolled { top: 8px; width: calc(var(--page) - 4px); padding: 0 10px; border-radius: 20px; }
  .brand-name, .main-nav { display: none; }
  .header-actions { gap: 7px; }
  .language-switch button { min-width: 31px; padding: 7px 6px; }
  .header-cta { padding: 9px 12px; }
  .header-cta span { display: none; }
  .hero { min-height: 1000px; padding-top: calc(var(--header-height) + 30px); }
  .hero-kicker { font-size: 8px; }
  .edition { display: none; }
  .hero-title { margin-top: 38px; font-size: clamp(3.85rem, 16.5vw, 4.45rem); line-height: .79; }
  .hero-title-shift { margin-left: 0; }
  .hero-title-last { align-self: flex-start; margin-right: 0; }
  .hero-title-last em { display: block; margin-left: 18%; }
  .hero-bottom { grid-template-columns: 1fr; margin-top: 40px; }
  .hero-intro { font-size: 17px; }
  .hero-actions { align-items: flex-start; justify-content: flex-start; flex-direction: column; gap: 8px; }
  .hero-product { display: block; min-height: 440px; padding-top: 62px; }
  .hero-product::before { top: 50%; width: 93%; height: 59%; }
  .hero-product-label { position: absolute; top: 20px; left: 0; }
  .voice-shell { padding: 18px; border-radius: 24px; transform: rotate(-1deg); }
  .voice-transcript { min-height: 88px; margin-top: 25px; grid-template-columns: 24px 1fr; }
  .quote-mark { font-size: 32px; }
  .voice-transcript p { font-size: 19px; }
  .waveform { gap: 4px; height: 38px; margin: 9px 0 16px; }
  .voice-result { gap: 9px; }
  .voice-result strong { font-size: 13px; }
  .voice-result .voice-total strong { font-size: 20px; }
  .signal-card { display: none; }
  .manifesto { transform: rotate(-1.3deg) scale(1.05); }
  .section { padding: 100px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 28px; margin-bottom: 48px; }
  .section-heading h2, .system-copy h2, .early-content h2 { font-size: clamp(3rem, 14vw, 5rem); }
  .section-heading > p, .system-copy > p { font-size: 15px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card, .product-card-wide { grid-column: auto; min-height: 510px; }
  .product-card-wide .product-copy, .product-copy { max-width: none; padding-right: 0; }
  .product-copy { padding-bottom: 55px; }
  .product-copy h3 { font-size: 48px; }
  .product-copy > p:last-child { font-size: 14px; }
  .product-icon-wave { top: 72px; right: 4%; width: 71%; height: 190px; }
  .task-stack { right: -18%; left: 9%; }
  .privacy-viz { top: 76px; right: 7%; width: 76%; }
  .legal-viz { top: 68px; right: 6%; left: 7%; }
  .legal-paper { width: 78%; }
  .legal-note { right: -42px; }
  .system-grid { grid-template-columns: 1fr; gap: 60px; padding: 100px 0; }
  .identity-card { transform: rotate(1deg); box-shadow: 8px 8px 0 var(--acid); }
  .identity-products div { grid-template-columns: 12px 1fr; }
  .identity-products b { grid-column: 2; }
  .system-journey { grid-column: auto; grid-template-columns: 1fr; gap: 28px; min-height: auto; padding-left: 34px; }
  .journey-path { width: 70px; height: 100%; transform: rotate(90deg) translateY(-5px); transform-origin: top left; }
  .journey-step, .journey-step-one, .journey-step-two, .journey-step-three { align-self: auto; justify-self: stretch; max-width: none; transform: rotate(0); }
  .principle { grid-template-columns: 35px 1fr 74px; gap: 13px; min-height: 220px; padding: 25px 0; }
  .principle-index { padding-top: 8px; font-size: 26px; }
  .principle h3 { font-size: 27px; }
  .principle p { grid-column: 2 / -1; font-size: 13px; }
  .principle-symbol { grid-column: 3; grid-row: 1; width: 64px; height: 64px; }
  .early-access { min-height: 650px; }
  .early-content { padding: 110px 0; }
  .early-access::before { top: 38%; right: -45%; width: 100vw; height: 100vw; }
  .site-footer { grid-template-columns: 1fr auto; min-height: 340px; }
  .site-footer > p { grid-column: 1 / -1; grid-row: 2; }
  .footer-legal { grid-column: 1 / -1; grid-row: 3; }
  .product-dialog, .access-dialog { padding: 32px 24px; box-shadow: 7px 7px 0 var(--acid); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .product-card.reveal.is-visible:hover { transform: none; }
  .product-card:hover::after { opacity: 0; }
  .product-card:hover .product-icon-wave,
  .product-card:hover .task-stack,
  .product-card:hover .car-viz,
  .product-card:hover .privacy-viz,
  .product-card:hover .legal-viz { transform: none; }
}
