:root {
  --cream: #f6f1ea;
  --cream-strong: #fbf8f3;
  --ink: #151515;
  --ink-soft: rgba(21, 21, 21, 0.72);
  --ink-muted: rgba(21, 21, 21, 0.5);
  --white: #ffffff;
  --panel: rgba(255, 255, 255, 0.18);
  --panel-strong: rgba(255, 255, 255, 0.78);
  --line: rgba(21, 21, 21, 0.1);
  --shadow-soft: 0 18px 50px rgba(24, 20, 16, 0.08);
  --shadow-strong: 0 40px 120px rgba(18, 15, 11, 0.18);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --radius-pill: 999px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

section {
  scroll-margin-top: 110px;
}

.eyebrow {
  margin: 0 0 0.9rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.eyebrow--dark {
  color: rgba(21, 21, 21, 0.48);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  padding: 0.95rem 1.45rem;
  cursor: pointer;
  transition: transform 0.28s ease, opacity 0.28s ease, background-color 0.28s ease, border-color 0.28s ease;
}

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

.button--primary,
.button--nav {
  background: var(--white);
  color: var(--ink);
  white-space: nowrap;
}

.button--primary:hover,
.button--nav:hover {
  opacity: 0.9;
}

.button--ghost-light {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.58);
  border-color: var(--line);
  color: var(--ink);
}

.button--block {
  width: 100%;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  background: var(--cream);
}

.page-loader__brand {
  width: min(360px, 42vw);
  height: auto;
  opacity: 0;
  transform: translateY(20px);
}

.page-loader__meta {
  width: min(240px, 40vw);
  display: grid;
  gap: 0.7rem;
}

.page-loader__counter {
  justify-self: end;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(21, 21, 21, 0.42);
  opacity: 0;
}

.page-loader__line {
  width: 100%;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(21, 21, 21, 0.08);
}

.page-loader__line-fill {
  display: block;
  width: 0;
  height: 100%;
  background: var(--ink);
}

.site-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1100;
  width: min(1120px, calc(100% - 28px));
  opacity: 0;
}

.site-nav__shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem;
  padding: 0.5rem 0.55rem 0.5rem 1rem;
  border-radius: var(--radius-pill);
  min-height: 56px;
  max-width: 1240px;
  margin: 0 auto;
  background: rgba(250, 247, 242, 0.88);
  border: 1px solid rgba(21, 21, 21, 0.08);
  backdrop-filter: blur(26px);
  transition:
    padding 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    max-width 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    gap 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.32s ease,
    border-color 0.32s ease,
    box-shadow 0.32s ease;
}

.site-nav__brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 0.95rem;
  transition: margin 0.4s ease;
}

.site-nav__wordmark {
  height: 18px;
  width: auto;
}

.site-nav__logo-text {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--white);
}

.site-nav__links {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  list-style: none;
  overflow: hidden;
  max-width: 420px;
  opacity: 1;
  margin-left: auto;
  transition:
    max-width 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.3s ease;
}

.site-nav__links a {
  padding: 0.72rem 0.88rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  white-space: nowrap;
  color: rgba(21, 21, 21, 0.68);
  transition: color 0.28s ease, background-color 0.28s ease;
}

.site-nav__links a:hover {
  color: var(--ink);
  background: rgba(21, 21, 21, 0.05);
}

.site-nav.is-compact .site-nav__shell {
  max-width: 470px;
  padding: 0.5rem 0.55rem 0.5rem 1rem;
  gap: 0.15rem;
}

.site-nav.is-compact .site-nav__brand {
  margin-right: 0.95rem;
}

.site-nav.is-compact .site-nav__links {
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  pointer-events: none;
}

.site-nav.is-compact .button--nav {
  background: var(--ink);
  color: var(--cream-strong);
}

.button--nav {
  min-width: 142px;
  flex-shrink: 0;
  margin-left: 0.25rem;
  padding: 0.88rem 1.18rem;
}

.button--nav-label--short {
  display: none;
}

.hero {
  position: relative;
  height: 185vh;
}

.hero-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.hero-main {
  position: absolute;
  inset: 0;
  transform-origin: center center;
  will-change: transform, border-radius;
  background: #111;
}

.hero-main__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-main__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 11, 11, 0.22), rgba(11, 11, 11, 0.32) 46%, rgba(11, 11, 11, 0.72)),
    radial-gradient(circle at 18% 70%, rgba(11, 11, 11, 0.42), transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 540px;
  gap: 2rem;
  align-items: end;
  min-height: 100vh;
  padding: 7.5rem 56px 5.2rem;
}

.hero-copy {
  max-width: 660px;
}

.hero-copy h1,
.workflow-copy h2,
.value-section h2,
.cta-copy h2,
.privacy-sheet h2,
.legal-main h1,
.legal-main h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5.7vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 600;
}

.hero-copy__body,
.workflow-copy p:last-child,
.value-section__lead,
.cta-copy p,
.legal-main p,
.legal-main li {
  font-size: 1.02rem;
  line-height: 1.72;
}

.hero-copy__body {
  max-width: 34ch;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.78);
}

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

.hero-listing-panel {
  align-self: center;
  justify-self: end;
  width: min(610px, 100%);
  padding: 1rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 90px rgba(8, 8, 8, 0.12);
}

.hero-listing-panel__label {
  margin: 0 0 0.9rem;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.62);
}

.hero-listing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.hero-listing-tile {
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-listing-tile img {
  width: 100%;
  aspect-ratio: 0.82;
  object-fit: cover;
}

.hero-scatter {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(180px) scale(0.94);
  will-change: transform, opacity;
}

.hero-scatter img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scatter--1 {
  top: 11%;
  left: 3%;
  width: 170px;
  height: 220px;
}

.hero-scatter--2 {
  top: 12%;
  right: 4%;
  width: 156px;
  height: 196px;
}

.hero-scatter--3 {
  top: 46%;
  left: 1.5%;
  width: 144px;
  height: 144px;
}

.hero-scatter--4 {
  top: 50%;
  right: 2.5%;
  width: 172px;
  height: 144px;
}

.hero-scatter--5 {
  bottom: 7%;
  left: 7%;
  width: 196px;
  height: 140px;
}

.hero-scatter--6 {
  bottom: 6%;
  right: 8%;
  width: 148px;
  height: 188px;
}

.workflow-section {
  position: relative;
  height: 225vh;
  margin-top: 8vh;
}

.workflow-pin {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.workflow-layout {
  width: min(1380px, calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 4.5rem;
  align-items: center;
}

.workflow-copy {
  position: relative;
  z-index: 10;
  padding-right: 1rem;
}

.workflow-copy p:last-child {
  margin: 1.2rem 0 0;
  max-width: 34ch;
  color: var(--ink-soft);
}

.workflow-stage {
  position: relative;
  height: 78vh;
  min-height: 700px;
}

.workflow-cards-layer,
.workflow-video-card,
.workflow-mask,
.workflow-infographic {
  position: absolute;
}

.workflow-cards-layer {
  inset: 0;
}

.workflow-card {
  position: absolute;
  width: 232px;
  overflow: hidden;
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.workflow-card img {
  width: 100%;
  aspect-ratio: 0.82;
  object-fit: cover;
}

.workflow-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.85rem 0.95rem 1rem;
  font-size: 0.82rem;
  color: var(--ink-muted);
}

.workflow-card__meta strong {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.76rem;
  color: var(--ink);
}

.workflow-video-card {
  top: 6%;
  right: 1%;
  width: 378px;
  aspect-ratio: 1244 / 1664;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow-strong);
  opacity: 0;
}

.workflow-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workflow-video-card__hud {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.85rem;
  border-radius: 14px;
  background: rgba(17, 17, 17, 0.42);
  backdrop-filter: blur(16px);
  color: var(--white);
  font-size: 0.78rem;
}

.workflow-mask {
  right: 0;
  top: -7%;
  width: 48%;
  height: 26%;
  border-bottom-left-radius: 36px;
  background: linear-gradient(180deg, rgba(246, 241, 234, 0.98), rgba(246, 241, 234, 0.76));
  opacity: 0;
}

.workflow-infographic {
  right: 0;
  bottom: 4%;
  width: 100%;
  padding: 1.2rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(21, 21, 21, 0.08);
  box-shadow: var(--shadow-soft);
  opacity: 0;
}

.workflow-infographic__eyebrow {
  margin: 0 0 0.8rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(21, 21, 21, 0.45);
}

.workflow-infographic__flow {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  gap: 1.15rem;
  align-items: stretch;
}

.workflow-infographic__arrow {
  display: grid;
  place-items: center;
  color: rgba(180, 147, 103, 0.9);
  font-family: "JetBrains Mono", monospace;
  font-size: 1rem;
}

.workflow-infographic__box {
  min-height: 280px;
  padding: 1rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(252, 250, 247, 0.96), rgba(245, 238, 229, 0.86));
  border: 1px solid rgba(21, 21, 21, 0.06);
}

.workflow-infographic__step {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #b49367;
  color: var(--white);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.88rem;
}

.workflow-infographic__box h3 {
  margin: 0.85rem 0 0.4rem;
  font-size: 1.08rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.workflow-infographic__box p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.workflow-media-card {
  display: grid;
  place-items: center;
  min-height: 188px;
  padding: 0.75rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(21, 21, 21, 0.06);
}

.workflow-media-card--input img {
  width: 100%;
  max-width: 164px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(24, 20, 16, 0.08));
}

.workflow-media-card--conversion {
  overflow: hidden;
}

.workflow-circular-mark {
  position: relative;
  width: 164px;
  height: 164px;
  display: grid;
  place-items: center;
}

.workflow-circular-mark__ring {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) opacity(0.78);
  animation: workflowSpin 18s linear infinite;
}

.workflow-circular-mark__core {
  position: absolute;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.96), rgba(242, 232, 220, 0.86));
  box-shadow: 0 14px 40px rgba(24, 20, 16, 0.08);
}

.workflow-circular-mark__arrow {
  font-size: 1.8rem;
  line-height: 1;
  color: var(--ink);
}

.workflow-media-card--output {
  align-content: start;
}

.workflow-output-video {
  width: min(132px, 100%);
  aspect-ratio: 1244 / 1664;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(24, 20, 16, 0.08);
}

.workflow-output-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workflow-output__formats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.workflow-output__formats span {
  display: grid;
  place-items: center;
  min-height: 56px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(21, 21, 21, 0.06);
  font-size: 0.8rem;
  color: var(--ink-soft);
}

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

.value-section,
.founders-section {
  position: relative;
  width: calc(100% - 24px);
  margin: 12px auto;
  overflow: hidden;
  border-radius: 28px;
}

.value-section {
  min-height: 94vh;
  display: flex;
  align-items: center;
}

.value-section__bg,
.founders-section__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.value-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 25, 34, 0.28), rgba(18, 25, 34, 0.82));
}

.value-section__inner {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 6rem 0;
  text-align: center;
  color: var(--white);
}

.value-section__lead {
  max-width: 760px;
  margin: 1.1rem auto 0;
  color: rgba(255, 255, 255, 0.78);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.stat-card {
  padding: 2rem 1.1rem;
}

.stat-card__value {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat-card__label {
  display: block;
  margin-top: 0.8rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.66);
}

.value-section__footnote {
  max-width: 900px;
  margin: 2rem auto 0;
  padding: 1.4rem 1.6rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.45;
  font-weight: 600;
  color: var(--white);
  text-wrap: balance;
}

.founders-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.founders-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(21, 21, 21, 0.58);
}

.founders-card {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 4rem 2rem;
  text-align: center;
  color: var(--white);
}

.founders-card__quote {
  display: block;
  margin-bottom: 1rem;
  font-size: 6rem;
  line-height: 0.6;
  opacity: 0.14;
}

.founders-card__text {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1.14;
  letter-spacing: -0.05em;
  font-weight: 600;
}

.founders-card__meta {
  margin: 1.2rem 0 0;
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.04em;
}

.cta-section {
  padding: 6rem 12px 4rem;
}

.cta-shell {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  padding: 2rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.cta-copy__list {
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
  color: var(--ink-soft);
}

.cta-copy__list li {
  position: relative;
  padding-left: 1rem;
}

.cta-copy__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b49367;
}

.demo-form {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(21, 21, 21, 0.08);
}

.demo-form label {
  display: grid;
  gap: 0.55rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.demo-form input {
  width: 100%;
  padding: 1rem 1rem 1rem 1.05rem;
  border-radius: 16px;
  border: 1px solid rgba(21, 21, 21, 0.12);
  background: rgba(246, 241, 234, 0.92);
  outline: none;
}

.demo-form textarea {
  width: 100%;
  resize: vertical;
  min-height: 132px;
  padding: 1rem 1rem 1rem 1.05rem;
  border-radius: 16px;
  border: 1px solid rgba(21, 21, 21, 0.12);
  background: rgba(246, 241, 234, 0.92);
  outline: none;
  font: inherit;
}

.demo-form input:focus,
.demo-form textarea:focus {
  border-color: rgba(21, 21, 21, 0.28);
}

.demo-form__note {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.58;
  color: var(--ink-muted);
}

.demo-form__note.is-success {
  color: #3f6b4c;
}

.demo-form__note.is-error {
  color: #9a3c3c;
}

.site-footer {
  padding: 0 12px 2rem;
}

.site-footer__shell {
  width: min(1160px, 100%);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.site-footer__brand {
  max-width: 290px;
}

.site-footer__brand img {
  height: 24px;
  width: auto;
}

.site-footer__brand p {
  margin: 1rem 0 0;
  color: var(--ink-muted);
  line-height: 1.65;
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 2rem;
}

.site-footer__label {
  display: block;
  margin-bottom: 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(21, 21, 21, 0.42);
}

.site-footer__links a,
.site-footer__links p,
.site-footer__privacy {
  display: block;
  margin: 0 0 0.52rem;
  color: var(--ink-soft);
  line-height: 1.58;
  background: none;
  border: 0;
  padding: 0;
  text-align: left;
  cursor: pointer;
}

.privacy-sheet[hidden] {
  display: none;
}

.privacy-sheet {
  position: fixed;
  inset: 0;
  z-index: 1400;
}

.privacy-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 21, 21, 0.48);
}

.privacy-sheet__panel {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(460px, calc(100% - 36px));
  padding: 1.4rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-strong);
}

.privacy-sheet__close {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 0.48rem 0.72rem;
  border: 0;
  border-radius: 999px;
  background: rgba(21, 21, 21, 0.06);
  cursor: pointer;
}

.legal-page {
  min-height: 100vh;
}

.legal-page .site-nav {
  opacity: 1;
}

.legal-page .site-nav__shell {
  max-width: 360px;
  margin: 0 auto;
  background: rgba(250, 247, 242, 0.92);
  border-color: rgba(21, 21, 21, 0.08);
}

.legal-page .site-nav__logo-text {
  color: var(--ink);
}

.legal-page .site-nav__wordmark {
  filter: none;
}

.legal-page .button--nav {
  background: var(--ink);
  color: var(--cream-strong);
}

.legal-main {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 9rem 0 5rem;
}

.legal-main h1 {
  margin-bottom: 1.2rem;
}

.legal-main h2 {
  margin-top: 2.4rem;
  margin-bottom: 0.7rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.legal-main p,
.legal-main li {
  color: var(--ink-soft);
}

.legal-main ul {
  padding-left: 1.15rem;
}

.legal-note {
  margin: 1.7rem 0 2rem;
  padding: 1.1rem 1.2rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(21, 21, 21, 0.08);
}

.legal-note strong {
  display: block;
  margin-bottom: 0.4rem;
}

@media (max-width: 1100px) {
  .hero-content {
    grid-template-columns: minmax(0, 1fr) 720px;
    padding-left: 28px;
    padding-right: 28px;
  }

  .workflow-layout {
    grid-template-columns: 330px minmax(0, 1fr);
    width: calc(100% - 40px);
    gap: 3rem;
  }

  .workflow-card {
    width: 214px;
  }

  .workflow-infographic__flow,
  .stats-grid,
  .site-footer__links {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow-infographic__arrow {
    display: none;
  }
}

@media (max-width: 960px) {
  .site-nav {
    width: calc(100% - 20px);
  }

  .site-nav__links {
    display: none;
  }

  .site-nav__shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    width: min(100%, 340px);
    max-width: none;
    min-height: 54px;
    padding: 0.45rem 0.45rem 0.45rem 0.85rem;
  }

  .site-nav.is-compact .site-nav__shell {
    width: min(100%, 340px);
    max-width: none;
    padding: 0.45rem 0.45rem 0.45rem 0.85rem;
    gap: 0.15rem;
  }

  .site-nav__brand {
    min-width: 0;
    margin-right: 0.55rem;
  }

  .site-nav__wordmark {
    width: min(100%, 154px);
    height: auto;
  }

  .button--nav {
    min-width: 126px;
    margin-left: 0;
    padding: 0.78rem 1rem;
    font-size: 0.92rem;
  }

  .hero {
    height: auto;
  }

  .hero-pin {
    position: relative;
    height: auto;
  }

  .hero-main {
    position: relative;
    min-height: 100vh;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    align-items: end;
    padding: 7rem 20px 2rem;
  }

  .hero-copy__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-listing-panel {
    width: 100%;
    justify-self: stretch;
  }

  .hero-scatter {
    display: none;
  }

  .workflow-section {
    height: auto;
    margin-top: 3rem;
  }

  .workflow-pin {
    position: static;
    min-height: auto;
    display: block;
  }

  .workflow-layout {
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .workflow-stage {
    height: auto;
    min-height: 0;
    display: grid;
    gap: 1rem;
  }

  .workflow-cards-layer,
  .workflow-video-card,
  .workflow-mask,
  .workflow-infographic {
    position: relative;
    inset: auto;
    top: auto;
    right: auto;
    bottom: auto;
    opacity: 1;
    transform: none;
  }

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

  .workflow-card {
    position: relative;
    width: 100%;
  }

  .workflow-video-card {
    width: min(360px, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  .workflow-mask {
    display: none;
  }

  .workflow-infographic {
    width: 100%;
  }

  .workflow-infographic__flow {
    grid-template-columns: 1fr;
  }

  .value-section,
  .founders-section {
    width: calc(100% - 16px);
    border-radius: 22px;
  }

  .value-section__inner {
    width: calc(100% - 32px);
    padding: 4.5rem 0;
  }

  .stats-grid,
  .cta-shell,
  .site-footer__shell,
  .site-footer__links {
    grid-template-columns: 1fr;
  }

  .stat-card {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .stat-card:last-child {
    border-bottom: 0;
  }

  .founders-section {
    min-height: 68vh;
  }

  .cta-section {
    padding-top: 4rem;
  }

  .cta-shell {
    padding: 1rem;
  }

  .site-footer__shell {
    display: grid;
  }
}

@media (max-width: 640px) {
  .site-nav {
    width: min(calc(100% - 24px), 320px);
  }

  .site-nav__shell {
    width: 100%;
    padding: 0.42rem 0.42rem 0.42rem 0.75rem;
  }

  .site-nav.is-compact .site-nav__shell {
    width: 100%;
    padding: 0.42rem 0.42rem 0.42rem 0.75rem;
  }

  .site-nav__brand {
    margin-right: 0.35rem;
  }

  .site-nav__wordmark {
    width: min(100%, 148px);
  }

  .button--nav {
    min-width: 108px;
    padding: 0.72rem 0.9rem;
    font-size: 0.88rem;
  }

  .button--nav-label--full {
    display: none;
  }

  .button--nav-label--short {
    display: inline;
  }

  .button--nav-label {
    white-space: nowrap;
  }

  .page-loader__meta {
    width: min(220px, 64vw);
  }

  .page-loader__brand {
    width: min(280px, 70vw);
  }

  .hero-copy h1,
  .workflow-copy h2,
  .value-section h2,
  .cta-copy h2,
  .privacy-sheet h2,
  .legal-main h1 {
    font-size: clamp(2.1rem, 10vw, 2.8rem);
  }

  .hero-listing-grid,
  .workflow-cards-layer {
    grid-template-columns: 1fr 1fr;
  }

  .value-section__footnote {
    padding: 1.1rem 1rem;
  }

  .legal-main {
    width: calc(100% - 24px);
    padding-top: 8rem;
  }
}

@media (max-width: 430px) {
  .site-nav {
    width: min(calc(100% - 24px), 304px);
  }

  .site-nav__shell {
    padding: 0.42rem 0.38rem 0.42rem 0.68rem;
  }

  .site-nav.is-compact .site-nav__shell {
    padding: 0.42rem 0.38rem 0.42rem 0.68rem;
  }

  .site-nav__wordmark {
    width: min(100%, 138px);
  }

  .button--nav {
    min-width: 102px;
    padding: 0.68rem 0.82rem;
    font-size: 0.84rem;
  }

  .site-nav__brand {
    margin-right: 0.3rem;
  }
}
