:root {
  color-scheme: light;
  --sky: #e8f0f4;
  --sky-deep: #d6e3e9;
  --milk: #f9f7f2;
  --cream: #f0e8db;
  --ink: #171715;
  --muted: #72736f;
  --muted-text: #5f605d;
  --warm: #e7a564;
  --live: #b9df68;
  --line: rgb(23 23 21 / 16%);
  --page-gutter: 15px;
  --radius-hero: clamp(37.5px, 3.75vw, 48px);
  --radius-module: clamp(28px, 2.8vw, 44px);
  --radius-card: clamp(22px, 2vw, 32px);
  --font-display: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  --font-sans: Inter, "Helvetica Neue", Arial, sans-serif;
  --font-mono: SFMono-Regular, Consolas, "Liberation Mono", monospace;
  --motion-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-fast: 420ms;
  --motion-standard: 720ms;
  --motion-expressive: 900ms;
  --motion-stagger: 80ms;
  --pulse-live: 2.8s;
  --pulse-next: 1.7s;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--sky); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--sky);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-180%);
  padding: 0.75rem 1rem;
  background: var(--milk);
  color: var(--ink);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #1f6f8b; outline-offset: 4px; }
.site-shell {
  display: flow-root;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: clip;
  background: var(--sky);
}
.wordmark {
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  width: max-content;
  font: 500 44px/1 var(--font-display);
  letter-spacing: -0.055em;
  text-decoration: none;
}
.site-header nav {
  grid-column: 1 / -1;
  grid-row: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.nav-group {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-group-left { justify-self: start; }
.nav-group-right { justify-self: end; }
.nav-toggle { display: none; }

body,
button {
  font-family: var(--font-sans);
}

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

p,
h1,
h2,
h3,
figure {
  margin: 0;
}

.site-shell {
  position: relative;
}

.proof-bar,
.implementations,
.expansion,
.company-story,
.contact,
footer {
  width: min(90%, 1300px);
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 5;
  top: var(--page-gutter);
  right: var(--page-gutter);
  left: var(--page-gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 30px 40px;
  border-radius: var(--radius-hero) var(--radius-hero) 0 0;
  color: var(--milk);
  background-color: rgb(23 23 21 / 68%);
  background: linear-gradient(
    180deg,
    rgb(7 8 8 / 72%) 0%,
    rgb(7 8 8 / 42%) 58%,
    rgb(7 8 8 / 0%) 100%
  );
}

.site-header nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.site-header nav a::after,
.implementation-card > a::after {
  display: block;
  width: 0;
  height: 1px;
  margin-top: 4px;
  background: currentColor;
  content: "";
  transition: width 180ms ease;
}

.site-header nav a:hover::after,
.implementation-card > a:hover::after {
  width: 100%;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: end;
  min-height: calc(100svh - (2 * var(--page-gutter)));
  margin: var(--page-gutter);
  padding: 148px 48px 52px;
  overflow: hidden;
  border-radius: var(--radius-hero);
  color: var(--milk);
  background-color: var(--ink);
}

.hero-image,
.hero-scrim {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 54% 50%;
  filter: brightness(1.06) saturate(0.94);
  animation: quiet-drift 22s ease-in-out infinite alternate;
}

.hero-scrim {
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgb(7 8 8 / 82%) 0%,
    rgb(7 8 8 / 53%) 46%,
    rgb(7 8 8 / 12%) 78%,
    rgb(7 8 8 / 8%) 100%
  );
}

.hero-copy {
  grid-column: 1 / span 8;
  align-self: end;
}

.hero-aside {
  grid-column: 10 / -1;
  align-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  padding-bottom: 7px;
}

.system-label,
.section-kicker,
.status,
.console-head,
.product-planes article > p {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.system-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: rgb(249 247 242 / 76%);
}

.system-label span,
.status span {
  display: inline-block;
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 0 4px rgb(185 223 104 / 14%);
}

.hero h1 {
  max-width: 10ch;
  font-family: var(--font-display);
  font-size: clamp(64px, 7.2vw, 112px);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.hero-aside > p {
  max-width: 32ch;
  font-size: 16px;
  line-height: 1.55;
  color: rgb(249 247 242 / 82%);
}

.pill-action {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 50px;
  padding: 0 18px 0 22px;
  border: 1px solid rgb(249 247 242 / 40%);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.pill-action span {
  display: inline-block;
  font-size: 17px;
  transition: transform var(--motion-fast) var(--motion-ease-out);
}

.pill-action:hover {
  border-color: var(--milk);
  color: var(--ink);
  background: var(--milk);
}

.hero .pill-action:hover span {
  transform: translate3d(3px, 3px, 0);
}

.implementation-card > a span,
.contact-actions button span {
  display: inline-block;
  transition: transform var(--motion-fast) var(--motion-ease-out);
}

.implementation-card > a:hover span,
.contact-actions button:hover span {
  transform: translate3d(3px, -3px, 0);
}

.proof-bar {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 0;
  padding: 34px 42px 62px;
}

.proof-bar h2,
.proof-bar > p {
  min-height: 104px;
  padding: 23px 26px 20px 0;
  border-top: 1px solid var(--line);
}

.proof-bar h2 {
  padding-right: 44px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.proof-bar > p {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.proof-bar > p span,
.platform-line {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-bar > p span::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--live);
  content: "";
}

.proof-bar strong {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 27px);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.platform-line {
  display: block;
  margin-top: 17px;
  color: var(--muted-text);
}

.implementations {
  padding: 124px 42px 132px;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(260px, 0.7fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 62px;
}

.section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -20px;
  color: var(--muted-text);
}

.section-kicker::before {
  display: inline-block;
  width: 26px;
  height: 1px;
  margin: 0 10px 3px 0;
  background: currentColor;
  content: "";
}

.section-intro h2,
.expansion-intro h2,
.contact h2 {
  font-family: var(--font-display);
  font-size: clamp(52px, 6.4vw, 92px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.section-intro > p:last-child,
.expansion-intro > p {
  max-width: 39ch;
  padding-bottom: 7px;
  color: var(--muted-text);
  font-size: 15px;
  line-height: 1.65;
}

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

.implementation-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 770px;
  padding: 38px;
  overflow: hidden;
  border-radius: var(--radius-card);
}

.bellhopping-card {
  background: var(--milk);
}

.api-card {
  color: var(--milk);
  background: var(--ink);
}

.status {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 54px;
  color: var(--muted-text);
}

.api-card .status {
  color: rgb(249 247 242 / 58%);
}

.implementation-card h3 {
  max-width: 10ch;
  font-family: var(--font-display);
  font-size: clamp(43px, 4.25vw, 64px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.implementation-card > h3 + p {
  max-width: 39ch;
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted-text);
}

.api-card > h3 + p {
  color: rgb(249 247 242 / 64%);
}

.implementation-card > a {
  align-self: flex-start;
  margin-top: 28px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.product-preview {
  position: relative;
  flex: 1;
  min-height: 320px;
  margin: 44px -8px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px 22px 8px 8px;
  background: var(--cream);
}

.product-preview::before {
  display: block;
  height: 26px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 13px 50%, var(--warm) 0 3px, transparent 3.5px),
    radial-gradient(circle at 25px 50%, var(--muted) 0 3px, transparent 3.5px),
    radial-gradient(circle at 37px 50%, var(--live) 0 3px, transparent 3.5px);
  content: "";
}

.product-preview img {
  width: 100%;
  height: calc(100% - 26px);
  object-fit: cover;
  object-position: top center;
}

.product-preview figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgb(249 247 242 / 90%);
  backdrop-filter: blur(8px);
}

.action-console {
  position: relative;
  flex: 1;
  min-height: 350px;
  margin-top: 44px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgb(249 247 242 / 13%);
  border-radius: 22px;
  background: #0d0d0c;
  box-shadow: inset 0 1px 0 rgb(249 247 242 / 6%);
}

.console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgb(249 247 242 / 12%);
  color: rgb(249 247 242 / 48%);
}

.console-head strong {
  color: var(--live);
  font: inherit;
}

.console-head strong::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.agent-prompt {
  width: min(84%, 440px);
  margin: 34px 0 18px auto;
  padding: 15px 17px;
  border-radius: 15px 15px 3px 15px;
  color: var(--ink);
  background: var(--cream);
  font-size: 12px;
  line-height: 1.5;
}

.tool-result {
  display: inline-block;
  margin: 4px 0 18px;
  padding: 8px 10px;
  border: 1px solid rgb(185 223 104 / 30%);
  border-radius: 999px;
  color: var(--live);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.04em;
}

.action-console ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: action;
}

.action-console li {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  min-height: 42px;
  border-top: 1px solid rgb(249 247 242 / 9%);
  color: rgb(249 247 242 / 74%);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.03em;
  counter-increment: action;
}

.action-console li::before {
  color: rgb(249 247 242 / 30%);
  content: "0" counter(action);
}

.expansion {
  padding: 112px 42px 76px;
  border-radius: var(--radius-module);
  background: var(--cream);
}

.expansion-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(270px, 0.7fr);
  gap: 52px;
  align-items: end;
  margin-bottom: 82px;
}

.expansion-intro .section-kicker {
  margin: 0 0 26px;
}

.product-planes {
  display: grid;
  grid-template-columns: repeat(14, minmax(0, 1fr));
  align-items: end;
  min-height: 410px;
  padding: 34px 22px 0;
}

.product-planes article {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 328px;
  padding: 28px;
  border: 1px solid rgb(23 23 21 / 10%);
  border-radius: var(--radius-card);
  box-shadow: 0 18px 45px rgb(23 23 21 / 8%);
}

.product-planes article:nth-child(1) {
  z-index: 1;
  grid-column: 1 / span 5;
  grid-row: 1;
  transform: rotate(-3deg) translate(12px, 18px);
  background: var(--milk);
}

.product-planes article:nth-child(2) {
  z-index: 3;
  grid-column: 5 / span 5;
  grid-row: 1;
  transform: translateY(-30px);
  color: var(--milk);
  background: var(--ink);
}

.product-planes article:nth-child(3) {
  z-index: 2;
  grid-column: 10 / span 5;
  grid-row: 1;
  transform: rotate(3deg) translate(-12px, 15px);
  background: var(--sky-deep);
}

.product-planes article > p {
  color: var(--muted-text);
}

.product-planes article:nth-child(2) > p {
  color: var(--live);
}

.product-planes article > p::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 7px 1px 0;
  border-radius: 50%;
  background: var(--live);
  content: "";
}

.product-planes article:nth-child(3) > p::before {
  background: var(--warm);
}

.system-label span,
.status span,
.proof-bar > p span::before,
.console-head strong::before,
.product-planes article:nth-child(-n + 2) > p::before {
  animation: live-pulse var(--pulse-live) var(--motion-ease-out) infinite;
}

.proof-bar > p:nth-of-type(1) span::before {
  animation-delay: -0.7s;
}

.proof-bar > p:nth-of-type(2) span::before {
  animation-delay: -1.4s;
}

.bellhopping-card .status span {
  animation-delay: -0.35s;
}

.api-card .status span {
  animation-delay: -1.05s;
}

.console-head strong::before {
  animation-delay: -1.75s;
}

.product-planes article:nth-child(1) > p::before {
  animation-delay: -0.55s;
}

.product-planes article:nth-child(2) > p::before {
  animation-delay: -1.15s;
}

.product-planes article:nth-child(3) > p::before {
  animation: next-pulse var(--pulse-next) var(--motion-ease-out) infinite;
}

.product-planes h3 {
  margin-top: auto;
  font-family: var(--font-display);
  font-size: clamp(34px, 3.6vw, 54px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.product-planes article > span {
  max-width: 30ch;
  margin-top: 20px;
  color: var(--muted-text);
  font-size: 12px;
  line-height: 1.55;
}

.product-planes article:nth-child(2) > span {
  color: rgb(249 247 242 / 58%);
}

.company-story {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.6fr);
  gap: 80px;
  margin-top: 14px;
  padding: 120px 58px 130px;
  border-radius: var(--radius-module);
  color: var(--milk);
  background: var(--ink);
}

.company-story > p {
  padding-top: 9px;
  color: var(--warm);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.company-story h2 {
  max-width: 19ch;
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(58px, 8vw, 128px);
  margin-top: 14px;
  padding: 112px 58px 120px;
  border-radius: var(--radius-module);
  background: var(--milk);
}

.contact-intro,
.contact-form,
.contact-fields,
.contact-field {
  min-width: 0;
}

.contact-intro .section-kicker {
  margin: 0 0 38px;
}

.contact h2 {
  max-width: 8ch;
}

.contact h2:focus {
  outline: none;
}

.contact-intro > p:last-child {
  max-width: 38ch;
  margin-top: 34px;
  color: var(--muted-text);
  font-size: 14px;
  line-height: 1.65;
}

.contact-form {
  align-self: start;
  padding-top: 8px;
}

.contact-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 28px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-field > span,
.contact-guidance,
.contact-nojs,
[data-contact-status] {
  color: var(--muted-text);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  min-width: 0;
  padding: 10px 0 12px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  font: 500 15px/1.45 var(--font-sans);
}

.contact-field select {
  min-height: 45px;
}

.contact-field textarea {
  min-height: 146px;
  resize: vertical;
}

.contact-field input:focus-visible,
.contact-field select:focus-visible,
.contact-field textarea:focus-visible {
  border-bottom-color: var(--ink);
  outline: 2px solid #1f6f8b;
  outline-offset: 5px;
}

.contact-message {
  grid-column: 1 / -1;
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-guidance {
  margin-top: 20px;
  text-transform: none;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
}

.contact-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 50px;
  padding: 0 18px 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--milk);
  background: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.contact-actions button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.contact-actions button span {
  font-size: 17px;
}

[data-contact-status] {
  max-width: 28ch;
  text-transform: none;
}

.contact-nojs {
  max-width: 28ch;
  margin: 0;
  color: #9a3d31;
  text-transform: none;
}

[data-contact-state="sent"] [data-contact-status] {
  color: #3b6025;
}

[data-contact-state="error"] [data-contact-status] {
  color: #9a3d31;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 34px;
  align-items: end;
  padding: 34px 8px 12px;
  border-top: 1px solid var(--line);
  color: var(--muted-text);
}

footer .wordmark {
  color: var(--ink);
}

footer p {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.js .site-header nav,
.js .hero-copy .system-label,
.js .hero-copy h1,
.js .hero-aside > p,
.js .hero-aside > .pill-action {
  animation: hero-settle var(--motion-standard) var(--motion-ease-out) both;
}

.js .site-header nav {
  animation-delay: 1980ms;
}

.js .hero-copy .system-label {
  animation-delay: 2100ms;
}

.js .hero-copy h1 {
  animation-delay: 2180ms;
}

.js .hero-aside > p {
  animation-delay: 2340ms;
}

.js .hero-aside > .pill-action {
  animation-delay: 2460ms;
}

.js [data-reveal] {
  transform: translate3d(0, 22px, 0);
  transition: transform var(--motion-standard) var(--motion-ease-out);
}

.js [data-reveal].is-visible {
  transform: none;
}

.js [data-reveal="proof"],
.js [data-reveal="planes"] {
  transform: none;
}

.js [data-reveal="proof"] > p {
  transform: translate3d(0, 16px, 0);
  transition: transform var(--motion-standard) var(--motion-ease-out);
}

.js [data-reveal="proof"] > p:nth-of-type(2) {
  transition-delay: var(--motion-stagger);
}

.js [data-reveal="proof"].is-visible > p {
  transform: none;
}

.js [data-reveal="card-left"] {
  transform: translate3d(-24px, 22px, 0);
}

.js [data-reveal="card-right"] {
  transform: translate3d(24px, 22px, 0);
  transition-delay: var(--motion-stagger);
}

.js [data-reveal="card-right"] .console-head,
.js [data-reveal="card-right"] .agent-prompt,
.js [data-reveal="card-right"] .tool-result,
.js [data-reveal="card-right"] .action-console li {
  transform: translate3d(0, 10px, 0);
  transition: transform var(--motion-fast) var(--motion-ease-out);
}

.js [data-reveal="card-right"] .console-head {
  transition-delay: 160ms;
}

.js [data-reveal="card-right"] .agent-prompt {
  transition-delay: 240ms;
}

.js [data-reveal="card-right"] .tool-result {
  transition-delay: 320ms;
}

.js [data-reveal="card-right"] .action-console li:nth-child(1) {
  transition-delay: 400ms;
}

.js [data-reveal="card-right"] .action-console li:nth-child(2) {
  transition-delay: 480ms;
}

.js [data-reveal="card-right"] .action-console li:nth-child(3) {
  transition-delay: 560ms;
}

.js [data-reveal="card-right"].is-visible .console-head,
.js [data-reveal="card-right"].is-visible .agent-prompt,
.js [data-reveal="card-right"].is-visible .tool-result,
.js [data-reveal="card-right"].is-visible .action-console li {
  transform: none;
}

.js [data-reveal="planes"] article {
  transition: transform var(--motion-expressive) var(--motion-ease-out);
}

.js [data-reveal="planes"] article:nth-child(1) {
  transform: translate3d(-32px, 34px, 0) rotate(-5deg);
}

.js [data-reveal="planes"] article:nth-child(2) {
  transform: translate3d(0, 20px, 0);
  transition-delay: var(--motion-stagger);
}

.js [data-reveal="planes"] article:nth-child(3) {
  transform: translate3d(32px, 34px, 0) rotate(5deg);
  transition-delay: calc(var(--motion-stagger) * 2);
}

.js [data-reveal="planes"].is-visible article:nth-child(1) {
  transform: rotate(-3deg) translate(12px, 18px);
}

.js [data-reveal="planes"].is-visible article:nth-child(2) {
  transform: translateY(-30px);
}

.js [data-reveal="planes"].is-visible article:nth-child(3) {
  transform: rotate(3deg) translate(-12px, 15px);
}

@keyframes hero-settle {
  from { opacity: 0; transform: translate3d(0, 14px, 0); }
  to { opacity: 1; transform: none; }
}

.site-header .wordmark {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.js .site-header .wordmark-lead {
  display: inline-flex;
  align-items: center;
  animation:
    wordmark-chip var(--motion-fast) var(--motion-ease-out) 300ms both,
    wordmark-shed 820ms var(--motion-ease-out) 980ms both;
}

.js .site-header .wordmark-rest {
  display: inline-block;
  overflow: hidden;
  animation: wordmark-wipe 720ms var(--motion-ease-out) 1180ms both;
}

.js .site-header .wordmark-dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--live);
  opacity: 0;
  animation: wordmark-dot 1900ms var(--motion-ease-out) 420ms both;
}

@keyframes wordmark-chip {
  from { opacity: 0; transform: scale(0.7); }
  to { opacity: 1; transform: none; }
}

@keyframes wordmark-shed {
  0%, 34% {
    padding: 0 0.3em;
    background-color: rgb(23 23 21 / 100%);
    border-radius: 12px;
  }
  100% {
    padding: 0 0;
    background-color: rgb(23 23 21 / 0%);
    border-radius: 0;
  }
}

@keyframes wordmark-wipe {
  from { clip-path: inset(0 100% -25% 0); opacity: 0; }
  30% { opacity: 1; }
  to { clip-path: inset(0 -8% -25% 0); opacity: 1; }
}

@keyframes wordmark-dot {
  0% { transform: translate3d(30px, -3px, 0); opacity: 0; }
  16% { opacity: 1; }
  62% { transform: translate3d(128px, 7px, 0); opacity: 1; }
  100% { transform: translate3d(128px, 7px, 0); opacity: 0; }
}

.hero h1[data-hero-type] {
  min-height: 0;
}

.hero-caret {
  display: none;
}

.js .hero h1[data-hero-writing] .hero-caret {
  display: inline-block;
  width: 0.09em;
  height: 0.62em;
  margin-left: 0.06em;
  background: currentColor;
  opacity: 1;
  vertical-align: baseline;
}

@keyframes live-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgb(185 223 104 / 34%);
  }
  48% {
    box-shadow: 0 0 0 7px rgb(185 223 104 / 0%);
  }
}

@keyframes next-pulse {
  0%, 55%, 100% {
    box-shadow: 0 0 0 0 rgb(231 165 100 / 38%);
  }
  26% {
    box-shadow: 0 0 0 8px rgb(231 165 100 / 0%);
  }
}

@keyframes quiet-drift {
  from { transform: scale(1.01) translate3d(0, 0, 0); }
  to { transform: scale(1.045) translate3d(-0.6%, -0.25%, 0); }
}

@media (max-width: 1100px) {
  .site-header {
    padding-inline: 30px;
  }

  .hero {
    padding-inline: 36px;
  }

  .hero-copy {
    grid-column: 1 / span 9;
  }

  .hero-aside {
    grid-column: 10 / -1;
  }

  .proof-bar,
  .implementations {
    padding-inline: 26px;
  }

  .implementation-card {
    padding: 30px;
  }
}

@media (max-width: 900px) {
  .hero-copy, .hero-aside { grid-column: 1 / -1; }
  .hero-aside {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 28px;
    margin-top: 38px;
  }
  .proof-bar, .implementation-grid, .expansion-intro, .company-story {
    grid-template-columns: 1fr;
  }
  .proof-bar > p {
    border-left: 0;
  }
  .proof-bar h2,
  .proof-bar > p {
    min-height: 92px;
    padding-inline: 0;
  }
  .section-intro {
    grid-template-columns: 1fr;
  }
  .section-kicker {
    margin-bottom: -16px;
  }
  .implementation-card {
    width: 94%;
    min-height: 720px;
    box-shadow: 0 18px 44px rgb(23 23 21 / 8%);
  }
  .bellhopping-card {
    justify-self: start;
  }
  .api-card {
    justify-self: end;
  }
  .expansion {
    padding-inline: 28px;
  }
  .product-planes { display: grid; gap: 12px; }
  .product-planes {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 0;
  }
  .product-planes article {
    width: 92%;
    min-height: 260px;
  }
  .product-planes article:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }
  .product-planes article:nth-child(1) {
    justify-self: start;
    transform: rotate(-1.1deg) translateX(1%);
  }
  .product-planes article:nth-child(2) {
    justify-self: end;
    transform: rotate(0.8deg) translateX(-1%);
  }
  .product-planes article:nth-child(3) {
    justify-self: start;
    transform: rotate(-0.45deg) translateX(2%);
  }
  .js [data-reveal="planes"] article:nth-child(1) {
    transform: translate3d(0, 18px, 0) rotate(-1.1deg) translateX(1%);
  }
  .js [data-reveal="planes"] article:nth-child(2) {
    transform: translate3d(0, 18px, 0) rotate(0.8deg) translateX(-1%);
  }
  .js [data-reveal="planes"] article:nth-child(3) {
    transform: translate3d(0, 18px, 0) rotate(-0.45deg) translateX(2%);
  }
  .js [data-reveal="planes"].is-visible article:nth-child(1) {
    transform: rotate(-1.1deg) translateX(1%);
  }
  .js [data-reveal="planes"].is-visible article:nth-child(2) {
    transform: rotate(0.8deg) translateX(-1%);
  }
  .js [data-reveal="planes"].is-visible article:nth-child(3) {
    transform: rotate(-0.45deg) translateX(2%);
  }
  .company-story {
    gap: 34px;
    padding: 88px 42px 98px;
  }
  .contact {
    grid-template-columns: 1fr;
    gap: 64px;
    padding-inline: 42px;
  }
}

@media (max-width: 600px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 18px;
  }
  .site-header .wordmark {
    grid-column: 1;
    justify-self: start;
    font-size: 25px;
  }
  html:not(.js) [data-daleko-nav] {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-top: 18px;
  }
  html:not(.js) [data-daleko-nav] .nav-group {
    display: contents;
  }
  .js .nav-toggle {
    grid-column: 2;
    grid-row: 1;
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid rgb(249 247 242 / 42%);
    border-radius: 999px;
    color: inherit;
    background: transparent;
    font-size: 11px;
    font-weight: 700;
  }
  .js [data-daleko-nav] {
    position: absolute;
    inset: 64px 14px auto;
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 18px;
    border-radius: 18px;
    color: var(--ink);
    background: rgb(249 247 242 / 96%);
  }
  .js .site-header nav {
    animation: none;
  }
  .js [data-daleko-nav] .nav-group {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .js [data-daleko-nav][data-open="true"] { display: flex; }
  .hero {
    padding: 122px 20px 24px;
  }
  .hero-image { object-position: 74% 50%; }
  .hero-scrim {
    background: linear-gradient(
      90deg,
      rgb(7 8 8 / 70%) 0%,
      rgb(7 8 8 / 42%) 72%,
      rgb(7 8 8 / 10%) 100%
    );
  }
  .hero h1 {
    font-size: clamp(54px, 15.5vw, 62px);
    letter-spacing: -0.08em;
  }
  .system-label {
    max-width: 26ch;
    margin-bottom: 18px;
  }
  .hero-aside {
    align-self: end;
    display: flex;
    gap: 20px;
    margin-top: 30px;
  }
  .hero-aside > p {
    max-width: 35ch;
    font-size: 13px;
  }
  .proof-bar { gap: 24px; padding: 30px 14px; }
  .proof-bar h2,
  .proof-bar > p {
    min-height: 82px;
    padding-top: 18px;
  }
  .implementations { padding: 74px 12px; }
  .expansion { padding: 74px 20px; }
  .section-intro {
    gap: 32px;
    margin-bottom: 42px;
  }
  .section-kicker {
    margin-bottom: -12px;
  }
  .section-intro h2,
  .expansion-intro h2,
  .contact h2 {
    font-size: clamp(44px, 13vw, 56px);
  }
  .implementation-grid {
    gap: 8px;
  }
  .implementation-card { min-height: auto; padding: 24px 20px; }
  .status {
    margin-bottom: 40px;
  }
  .implementation-card h3 {
    font-size: 44px;
  }
  .product-preview,
  .action-console {
    min-height: 290px;
    margin-top: 36px;
  }
  .product-preview {
    margin-inline: 0;
  }
  .agent-prompt {
    width: 92%;
  }
  .expansion {
    border-radius: var(--radius-module);
  }
  .expansion-intro {
    gap: 30px;
    margin-bottom: 54px;
  }
  .product-planes article {
    min-height: 235px;
    padding: 24px;
    border-radius: var(--radius-card);
  }
  .company-story {
    padding: 74px 24px 82px;
    border-radius: var(--radius-module);
  }
  .company-story h2 {
    font-size: 39px;
  }
  .contact {
    gap: 48px;
    padding: 74px 24px 82px;
    border-radius: var(--radius-module);
  }
  .contact-intro .section-kicker {
    margin-bottom: 30px;
  }
  .contact-intro > p:last-child {
    margin-top: 26px;
  }
  .contact-fields {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .contact-message {
    grid-column: auto;
  }
  .contact-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
  footer {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 10px 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition-delay: 0ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
}
