@font-face {
  font-family: "Pindo Display";
  src: url("/fonts/pindo-display.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  --paper: oklch(96.8% 0.018 86);
  --paper-deep: oklch(92.8% 0.028 82);
  --surface: oklch(98.8% 0.012 88);
  --ink: oklch(20.4% 0.018 58);
  --ink-soft: oklch(35% 0.02 60);
  --muted: oklch(48% 0.018 68);
  --line: oklch(82% 0.025 75);
  --teal: oklch(66% 0.145 183);
  --teal-deep: oklch(38% 0.09 183);
  --mint: oklch(86% 0.095 173);
  --yellow: oklch(83% 0.16 79);
  --orange: oklch(72% 0.17 55);
  --coral: oklch(69% 0.19 31);
  --coral-deep: oklch(46% 0.14 29);
  --violet: oklch(66% 0.13 306);
  --violet-soft: oklch(86% 0.07 306);
  --green: oklch(70% 0.13 140);
  --shadow-hard: 7px 8px 0 oklch(20.4% 0.018 58);
  --shadow-soft: 0 22px 70px oklch(20% 0.02 58 / 0.17);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --content: min(1440px, calc(100vw - 64px));
  --display: "Pindo Display", "Arial Narrow", "PingFang SC", sans-serif;
  --body: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color-scheme: light;
  font-synthesis: none;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8px 8px, oklch(20% 0.02 60 / 0.035) 1.2px, transparent 1.3px) 0 0 / 18px 18px,
    var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select {
  color: inherit;
  font: inherit;
}

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

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

button {
  border: 0;
}

p,
h1,
h2,
h3,
dl,
dd,
figure,
ol,
ul {
  margin: 0;
}

ol,
ul {
  padding: 0;
  list-style: none;
}

::selection {
  background: var(--yellow);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--ink);
  color: var(--surface);
  transition: transform 160ms ease-out;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only,
.sr-only:not(:focus):not(:active) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 16px;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1320px, calc(100vw - 32px));
  min-height: 70px;
  padding: 8px 10px 8px 12px;
  transform: translateX(-50%);
  border: 1px solid oklch(20% 0.02 58 / 0.18);
  border-radius: 18px;
  background: oklch(97% 0.018 86 / 0.92);
  box-shadow: 0 12px 34px oklch(20% 0.02 58 / 0.08);
  backdrop-filter: blur(14px);
  transition:
    top 220ms ease-out,
    box-shadow 220ms ease-out,
    background-color 220ms ease-out;
}

.site-header.is-scrolled {
  top: 8px;
  background: oklch(97% 0.018 86 / 0.97);
  box-shadow: 0 14px 44px oklch(20% 0.02 58 / 0.14);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 13px;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.brand-copy small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
}

.desktop-nav a {
  position: relative;
  padding: 12px 2px;
  font-size: 14px;
  font-weight: 760;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--teal);
  content: "";
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: 12px;
  font-weight: 820;
  line-height: 1.1;
  box-shadow: 4px 5px 0 var(--ink);
  transition:
    transform 160ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 160ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 160ms ease-out;
}

.button span {
  margin-left: 18px;
  font-size: 1.1em;
}

.button:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 3px 0 var(--ink);
}

.button:active {
  transform: translate(4px, 5px);
  box-shadow: 0 0 0 var(--ink);
}

.button-dark {
  background: var(--ink);
  color: var(--surface);
  box-shadow: 4px 5px 0 var(--coral);
}

.button-dark:hover {
  background: var(--teal-deep);
  box-shadow: 2px 3px 0 var(--coral);
}

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

.header-cta {
  min-width: 136px;
}

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

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  min-height: 100svh;
  padding: clamp(130px, 15vh, 180px) max(32px, calc((100vw - 1440px) / 2)) 90px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.9%, oklch(20% 0.02 58 / 0.06) 50%, transparent 50.1%),
    linear-gradient(transparent 49.9%, oklch(20% 0.02 58 / 0.05) 50%, transparent 50.1%);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, transparent, black 18%, black 82%, transparent);
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -2;
  right: -12vw;
  bottom: -19vw;
  width: 58vw;
  height: 58vw;
  border: 1px solid oklch(20% 0.02 58 / 0.1);
  border-radius: 50%;
  background: var(--yellow);
  content: "";
}

.hero-pixels {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
}

.hero-pixels span {
  position: absolute;
  width: var(--size);
  height: var(--size);
  transform: translate3d(0, 0, 0) rotate(var(--turn));
  border: 1px solid var(--ink);
  border-radius: 24%;
  background: var(--color);
  box-shadow: 2px 3px 0 var(--ink);
  animation: pixel-drift var(--duration) ease-in-out var(--delay) infinite alternate;
}

@keyframes pixel-drift {
  to {
    transform: translate3d(var(--move-x), var(--move-y), 0) rotate(calc(var(--turn) + 12deg));
  }
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 690px;
  padding-right: clamp(24px, 4vw, 72px);
}

.eyebrow,
.section-index {
  display: flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: 0.08em;
}

.hero-eyebrow {
  margin-bottom: 24px;
  padding: 8px 12px;
  border: 1px solid var(--ink);
  background: var(--mint);
  box-shadow: 3px 4px 0 var(--ink);
}

.status-dot {
  width: 10px;
  height: 10px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--coral);
}

.hero-title {
  display: grid;
  align-items: start;
  font-family: var(--display);
  font-size: clamp(58px, 6.5vw, 108px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.hero-title span:first-child {
  white-space: nowrap;
}

.hero-title-sticker {
  width: fit-content;
  margin: 12px 0 8px clamp(42px, 7vw, 110px);
  padding: 2px 12px 7px;
  transform: rotate(-2deg);
  border: 1px solid var(--ink);
  background: var(--yellow);
  box-shadow: 5px 6px 0 var(--ink);
  font-size: 0.66em;
  letter-spacing: -0.02em;
}

.hero-title em {
  color: var(--teal-deep);
  font-style: normal;
  white-space: nowrap;
}

.hero-lead {
  max-width: 630px;
  margin-top: 32px;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  border-bottom: 2px solid currentColor;
  font-weight: 820;
}

.text-link span {
  transition: transform 160ms ease-out;
}

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

.hero-proof {
  display: flex;
  gap: clamp(20px, 4vw, 48px);
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hero-proof div {
  min-width: 108px;
}

.hero-proof dt {
  font-family: var(--display);
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1;
}

.hero-proof dt span {
  color: var(--coral);
}

.hero-proof dd {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-art {
  position: relative;
  z-index: 2;
  min-height: min(680px, 72vh);
  perspective: 1200px;
}

.photo-collage {
  position: absolute;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--surface);
  box-shadow: var(--shadow-hard);
}

.photo-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-store-photo {
  top: 6%;
  right: 2%;
  width: 77%;
  height: 72%;
  transform: rotate(2.5deg);
  border-radius: 26px 8px 30px 12px;
}

.hero-store-photo img {
  object-position: 58% center;
}

.hero-store-photo figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  padding: 10px 13px;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 3px 4px 0 var(--ink);
  font-size: 12px;
  line-height: 1.4;
}

.hero-store-photo figcaption span {
  color: var(--muted);
}

.hero-store-photo figcaption strong {
  margin-top: 2px;
}

.hero-ai-demo {
  position: absolute;
  z-index: 4;
  bottom: 1%;
  left: 0;
  width: 54%;
  padding: 10px 10px 12px;
  transform: rotate(-4deg);
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 6px 7px 0 var(--ink);
}

.hero-ai-demo > figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 2px 9px;
  font-size: 10px;
  font-weight: 820;
  line-height: 1;
}

.hero-ai-demo > figcaption span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-ai-demo > figcaption span i {
  width: 8px;
  height: 8px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--coral);
}

.hero-ai-demo > figcaption strong {
  padding: 4px 6px;
  border: 1px solid var(--ink);
  background: var(--teal);
  font-size: 10px;
}

.hero-ai-frames {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr);
  align-items: center;
  gap: 7px;
}

.hero-ai-frame {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--paper-deep);
}

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

.hero-ai-source img {
  object-position: 50% 28%;
}

.hero-ai-frame b {
  position: absolute;
  right: 5px;
  bottom: 5px;
  padding: 2px 5px;
  border: 1px solid var(--ink);
  background: var(--paper);
  font-size: 8px;
  line-height: 1.35;
}

.hero-ai-arrow {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
}

.hero-logo-tile {
  position: absolute;
  z-index: 5;
  top: 2%;
  left: 6%;
  display: grid;
  justify-items: center;
  width: 142px;
  padding: 9px 9px 10px;
  transform: rotate(-7deg);
  border: 2px solid var(--ink);
  background: var(--coral);
  box-shadow: 5px 6px 0 var(--ink);
}

.hero-logo-tile img {
  width: 112px;
  height: 112px;
  border-radius: 22px;
}

.hero-logo-tile span {
  margin-top: 6px;
  font-family: var(--display);
  font-size: 14px;
}

.hero-tape {
  position: absolute;
  z-index: 8;
  width: 98px;
  height: 28px;
  background: oklch(90% 0.05 84 / 0.88);
  box-shadow: 0 1px 5px oklch(20% 0.02 58 / 0.11);
}

.hero-tape-one {
  top: 7%;
  right: 25%;
  transform: rotate(7deg);
}

.hero-hand-note {
  position: absolute;
  z-index: 7;
  right: 1%;
  bottom: 3%;
  transform: rotate(3deg);
  color: var(--ink);
  font-family: var(--display);
  font-size: 18px;
}

.service-ticker {
  overflow: hidden;
  border-block: 2px solid var(--ink);
  background: var(--ink);
  color: var(--surface);
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 15px 0;
  animation: ticker 28s linear infinite;
}

.ticker-track span {
  padding-inline: 22px;
  font-family: var(--display);
  font-size: clamp(20px, 2.1vw, 32px);
  letter-spacing: 0.03em;
}

.ticker-track i {
  width: 14px;
  height: 14px;
  transform: rotate(45deg);
  border: 1px solid var(--surface);
  background: var(--coral);
}

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

.section-dark {
  background:
    radial-gradient(circle at 50% 0, oklch(66% 0.13 306 / 0.16), transparent 38%),
    var(--ink);
  color: var(--surface);
}

.ai-lab {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(50px, 7vw, 120px);
  padding: 150px max(32px, calc((100vw - 1320px) / 2));
}

.section-heading h2,
.cases-top h2,
.marketplace-copy h2,
.contact-vision h2 {
  font-family: var(--display);
  font-size: clamp(48px, 5.5vw, 88px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.section-heading > p:last-child,
.marketplace-copy > p:last-child,
.contact-vision > p:last-child {
  max-width: 620px;
  margin-top: 26px;
  color: var(--muted);
  font-size: clamp(16px, 1.3vw, 20px);
}

.ai-heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

.ai-heading .section-index {
  color: var(--mint);
}

.ai-heading h2 {
  margin-top: 25px;
}

.ai-heading > p:last-child {
  color: oklch(86% 0.015 82 / 0.74);
}

.compare-shell {
  min-width: 0;
}

.compare-stage {
  --position: 48%;
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 2px solid var(--surface);
  border-radius: 8px;
  background: var(--paper-deep);
  box-shadow: 12px 14px 0 var(--teal);
}

.compare-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-source {
  object-position: center 34%;
  transform: translate3d(-1.5%, -0.5%, 0) scale(1.045);
  transform-origin: center 36%;
}

.compare-result {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.compare-result .compare-image {
  object-position: center;
}

.compare-handle {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 3px;
  transform: translateX(-50%);
  background: var(--surface);
  box-shadow: 0 0 0 1px var(--ink);
  pointer-events: none;
}

.compare-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  transform: translate(-50%, -50%);
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
}

.compare-range {
  position: absolute;
  z-index: 5;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.compare-tag {
  position: absolute;
  z-index: 3;
  top: 16px;
  padding: 6px 10px;
  border: 1px solid var(--ink);
  background: var(--surface);
  color: var(--ink);
  font-size: 12px;
  font-weight: 820;
}

.compare-tag-source {
  right: 16px;
}

.compare-tag-result {
  left: 16px;
  background: var(--teal);
}

.compare-hint {
  margin-top: 22px;
  color: oklch(86% 0.015 82 / 0.7);
  text-align: center;
  font-size: 13px;
}

.ai-steps {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
  border-block: 1px solid oklch(97% 0.01 88 / 0.2);
}

.ai-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 30px clamp(20px, 3vw, 42px);
}

.ai-steps li + li {
  border-left: 1px solid oklch(97% 0.01 88 / 0.2);
}

.ai-steps > li > span {
  color: var(--coral);
  font-family: var(--display);
  font-size: 23px;
}

.ai-steps strong {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
}

.ai-steps p {
  margin-top: 5px;
  color: oklch(86% 0.015 82 / 0.68);
  font-size: 14px;
}

.proof-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(50px, 7vw, 110px);
  padding: 150px max(32px, calc((100vw - 1320px) / 2));
  background: var(--yellow);
}

.proof-copy {
  align-self: center;
}

.proof-copy h2 {
  margin-top: 24px;
  font-family: var(--display);
  font-size: clamp(48px, 5.2vw, 86px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.proof-copy > p:nth-of-type(2) {
  max-width: 530px;
  margin-top: 27px;
  color: var(--ink-soft);
  font-size: 18px;
}

.proof-number {
  display: flex;
  align-items: end;
  gap: 18px;
  margin-top: 40px;
}

.proof-number strong {
  font-family: var(--display);
  font-size: clamp(76px, 9vw, 140px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.75;
}

.proof-number strong span {
  color: var(--coral);
}

.proof-number p {
  max-width: 120px;
  font-size: 13px;
  font-weight: 820;
  line-height: 1.4;
}

.proof-media {
  position: relative;
  min-height: 690px;
}

.video-frame {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 17%;
  width: 47%;
  overflow: hidden;
  transform: rotate(2deg);
  border: 2px solid var(--ink);
  border-radius: 26px 8px 26px 8px;
  background: var(--ink);
  box-shadow: 10px 12px 0 var(--ink);
}

.video-frame video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.video-frame figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid var(--surface);
  background: oklch(20% 0.02 58 / 0.86);
  color: var(--surface);
  font-size: 12px;
  font-weight: 760;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px oklch(69% 0.19 31 / 0.24);
}

.proof-small {
  position: absolute;
  z-index: 3;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--surface);
  box-shadow: 6px 7px 0 var(--ink);
}

.proof-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-small-one {
  top: 10%;
  right: 0;
  width: 38%;
  height: 42%;
  transform: rotate(-3deg);
}

.proof-small-two {
  bottom: 2%;
  left: 0;
  width: 43%;
  height: 35%;
  transform: rotate(-4deg);
}

.solution-section {
  padding: 150px max(32px, calc((100vw - 1320px) / 2));
}

.solution-heading {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  column-gap: 60px;
  align-items: end;
}

.solution-heading .section-index {
  grid-column: 1 / -1;
  margin-bottom: 24px;
}

.solution-heading > p:last-child {
  align-self: end;
  max-width: 560px;
  margin-top: 0;
  padding-bottom: 7px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(190px, auto);
  gap: 14px;
  margin-top: 70px;
}

.solution-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 210px;
  padding: 24px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 10px;
  box-shadow: 5px 6px 0 var(--ink);
}

.solution-tile strong {
  display: block;
  max-width: 420px;
  font-family: var(--display);
  font-size: clamp(25px, 2.4vw, 40px);
  font-weight: 400;
  line-height: 1.05;
}

.solution-tile p {
  max-width: 420px;
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
}

.tile-number {
  align-self: flex-end;
  font-family: var(--display);
  font-size: 18px;
}

.tile-ai {
  grid-column: span 7;
  grid-row: span 2;
  min-height: 434px;
  background: var(--teal);
}

.tile-ai strong {
  max-width: 520px;
  font-size: clamp(42px, 4.6vw, 74px);
}

.tile-private {
  grid-column: span 5;
  background: var(--violet-soft);
}

.tile-design {
  grid-column: span 5;
  background: var(--coral);
}

.tile-supply {
  grid-column: span 4;
  background: var(--yellow);
}

.tile-teach {
  grid-column: span 4;
  background: var(--surface);
}

.tile-ops {
  grid-column: span 4;
  background: var(--mint);
}

.tile-location {
  grid-column: span 3;
  background: var(--orange);
}

.tile-events {
  grid-column: span 5;
  background: var(--violet);
}

.tile-unmanned {
  grid-column: span 4;
  background: var(--ink);
  color: var(--surface);
}

.mini-pixels {
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 190px;
  height: 190px;
  transform: rotate(-8deg);
  background:
    linear-gradient(90deg, transparent 48%, var(--ink) 48% 52%, transparent 52%) 0 0 / 24px 24px,
    linear-gradient(transparent 48%, var(--ink) 48% 52%, transparent 52%) 0 0 / 24px 24px,
    var(--yellow);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}

.cases-section {
  padding: 140px 0 150px;
  overflow: hidden;
  background: var(--coral);
}

.cases-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  width: var(--content);
  margin-inline: auto;
}

.cases-top h2 {
  margin-top: 24px;
}

.case-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 520px;
}

.case-filters button {
  min-height: 42px;
  padding: 8px 14px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: transparent;
  font-size: 13px;
  font-weight: 820;
  cursor: pointer;
  transition:
    background-color 150ms ease-out,
    color 150ms ease-out,
    transform 150ms ease-out;
}

.case-filters button:hover,
.case-filters button.is-active {
  background: var(--ink);
  color: var(--surface);
}

.case-filters button:active {
  transform: translateY(2px);
}

.case-rail-wrap {
  margin-top: 60px;
}

.case-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(290px, 22vw);
  gap: 18px;
  padding: 10px max(32px, calc((100vw - 1320px) / 2)) 28px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.case-rail::-webkit-scrollbar {
  display: none;
}

.case-card {
  position: relative;
  height: 440px;
  overflow: hidden;
  scroll-snap-align: start;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: 6px 7px 0 var(--ink);
  transition:
    opacity 220ms ease-out,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.case-card:nth-child(3n + 1) {
  transform: rotate(-1.5deg);
}

.case-card:nth-child(3n + 2) {
  transform: translateY(12px) rotate(1.2deg);
}

.case-card:hover {
  transform: translateY(-5px) rotate(0);
}

.case-card[hidden] {
  display: none;
}

.case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.case-card:hover img {
  transform: scale(1.035);
}

.case-card figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: grid;
  padding: 11px 12px;
  border: 1px solid var(--ink);
  background: oklch(97% 0.02 86 / 0.93);
  box-shadow: 3px 4px 0 var(--ink);
  line-height: 1.35;
}

.case-card figcaption span {
  color: var(--coral-deep);
  font-size: 11px;
  font-weight: 820;
}

.case-card figcaption strong {
  margin-top: 2px;
  font-size: 14px;
}

.case-card-tall {
  height: 490px;
}

.case-card-wide {
  grid-auto-columns: minmax(360px, 28vw);
}

.case-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  width: var(--content);
  margin: 22px auto 0;
}

.case-controls button {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 3px 4px 0 var(--ink);
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 150ms ease-out,
    box-shadow 150ms ease-out;
}

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

.case-controls p {
  margin-inline: 8px;
  font-size: 13px;
  font-weight: 800;
}

.plans-section {
  padding: 150px max(32px, calc((100vw - 1320px) / 2));
}

.plans-heading {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  column-gap: 70px;
  align-items: end;
}

.plans-heading .section-index {
  grid-column: 1 / -1;
  margin-bottom: 24px;
}

.plans-heading > p:last-child {
  align-self: end;
  margin: 0 0 7px;
}

.plan-tabs {
  display: none;
}

.plan-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  margin-top: 70px;
}

.plan {
  display: flex;
  flex-direction: column;
  border: 2px solid var(--ink);
  border-radius: 12px;
  box-shadow: 7px 8px 0 var(--ink);
}

.plan-primary {
  min-height: 720px;
  padding: clamp(26px, 4vw, 52px);
  background: var(--teal);
}

.plan-stack {
  display: grid;
  grid-template-rows: 1fr 0.85fr;
  gap: 18px;
}

.plan-secondary,
.plan-basic {
  padding: clamp(24px, 3vw, 38px);
}

.plan-secondary {
  background: var(--yellow);
}

.plan-basic {
  background: var(--violet-soft);
}

.plan-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
}

.plan-badge {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 840;
}

.plan h3 {
  font-family: var(--display);
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 400;
  line-height: 1;
}

.plan-price {
  font-family: var(--display);
  font-size: clamp(42px, 4.8vw, 76px);
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.plan-price span {
  margin-right: 2px;
  font-size: 0.42em;
  vertical-align: top;
}

.plan-summary {
  max-width: 690px;
  margin-top: 26px;
  font-size: 16px;
}

.plan-credit {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-top: 34px;
  padding: 20px 0;
  border-block: 1px solid var(--ink);
}

.plan-credit span,
.plan-credit small {
  font-weight: 800;
}

.plan-credit strong {
  grid-row: span 2;
  font-family: var(--display);
  font-size: clamp(68px, 8vw, 112px);
  font-weight: 400;
  line-height: 0.76;
}

.plan-credit small {
  margin-top: 4px;
  font-size: 11px;
}

.plan ul {
  display: grid;
  gap: 0;
  margin: 26px 0 34px;
}

.plan li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid oklch(20% 0.02 58 / 0.18);
  font-size: 14px;
  font-weight: 720;
}

.plan li::before {
  position: absolute;
  top: 15px;
  left: 2px;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  border: 1px solid var(--ink);
  background: var(--surface);
  content: "";
}

.plan .button,
.plan .text-link {
  margin-top: auto;
  align-self: flex-start;
}

.marketplace-section {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: clamp(60px, 9vw, 150px);
  align-items: center;
  padding: 150px max(32px, calc((100vw - 1320px) / 2));
  background: var(--mint);
}

.marketplace-copy h2 {
  margin-top: 24px;
}

.receipt {
  position: relative;
  padding: 30px 34px 38px;
  transform: rotate(1.5deg);
  border: 2px solid var(--ink);
  background:
    linear-gradient(135deg, transparent 8px, var(--surface) 0) top left,
    linear-gradient(225deg, transparent 8px, var(--surface) 0) top right,
    linear-gradient(315deg, transparent 8px, var(--surface) 0) bottom right,
    linear-gradient(45deg, transparent 8px, var(--surface) 0) bottom left;
  background-repeat: repeat-x;
  background-position: top left, top right, bottom right, bottom left;
  background-size: 16px 16px;
  box-shadow: 10px 12px 0 var(--ink);
}

.receipt-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 24px;
  border-bottom: 2px dashed var(--line);
}

.receipt-head img {
  border-radius: 13px;
}

.receipt-head div {
  display: grid;
}

.receipt-head strong {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
}

.receipt-head span {
  color: var(--muted);
  font-size: 12px;
}

.receipt-line {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  padding: 20px 0;
  border-bottom: 1px dashed var(--line);
}

.receipt-line span {
  font-weight: 820;
}

.receipt-line strong {
  font-family: var(--display);
  font-size: clamp(42px, 4.4vw, 68px);
  font-weight: 400;
  line-height: 0.8;
}

.receipt-line small {
  grid-column: 1 / -1;
  margin-top: 7px;
  color: var(--muted);
}

.receipt-note {
  margin-top: 24px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.journey-section {
  padding: 150px max(32px, calc((100vw - 1320px) / 2));
}

.journey-heading {
  max-width: 880px;
}

.journey-heading h2 {
  margin-top: 24px;
}

.journey-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 78px;
}

.journey-list::before {
  position: absolute;
  top: 35px;
  right: 7%;
  left: 7%;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--ink) 0 11px, transparent 11px 20px);
  content: "";
}

.journey-list li {
  position: relative;
  z-index: 1;
  padding: 0 16px;
  text-align: center;
}

.journey-list li > span {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 22px;
  transform: rotate(4deg);
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 4px 5px 0 var(--ink);
  font-family: var(--display);
  font-size: 22px;
}

.journey-list li:nth-child(2n) > span {
  transform: rotate(-4deg);
  background: var(--yellow);
}

.journey-list li:nth-child(3n) > span {
  background: var(--teal);
}

.journey-list strong {
  font-family: var(--display);
  font-size: 23px;
  font-weight: 400;
}

.journey-list p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
}

.contact-section {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(60px, 8vw, 130px);
  align-items: center;
  padding: 150px max(32px, calc((100vw - 1320px) / 2));
  background:
    linear-gradient(90deg, transparent 49.7%, oklch(97% 0.01 88 / 0.18) 49.7% 50.3%, transparent 50.3%) 0 0 / 52px 52px,
    linear-gradient(transparent 49.7%, oklch(97% 0.01 88 / 0.18) 49.7% 50.3%, transparent 50.3%) 0 0 / 52px 52px,
    var(--ink);
  color: var(--surface);
}

.contact-vision .section-index {
  color: var(--yellow);
}

.vision-number {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  margin: 30px 0 24px;
  font-family: var(--display);
  line-height: 0.8;
}

.vision-number span {
  color: var(--coral);
  font-size: clamp(62px, 8vw, 120px);
}

.vision-number i {
  color: var(--yellow);
  font-size: clamp(38px, 5vw, 76px);
  font-style: normal;
}

.vision-number strong {
  color: var(--teal);
  font-size: clamp(88px, 12vw, 172px);
  font-weight: 400;
}

.contact-vision > p:last-child {
  color: oklch(90% 0.015 84 / 0.72);
}

.contact-form {
  padding: clamp(24px, 4vw, 42px);
  border: 2px solid var(--surface);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 11px 13px 0 var(--coral);
}

.form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.form-head span {
  font-family: var(--display);
  font-size: 30px;
}

.form-head small {
  padding: 4px 7px;
  border: 1px solid var(--ink);
  background: var(--yellow);
  font-size: 10px;
  font-weight: 820;
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.contact-form label > span {
  font-size: 12px;
  font-weight: 820;
}

.contact-form input,
.contact-form select {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--surface);
  outline: none;
  transition:
    box-shadow 140ms ease-out,
    border-color 140ms ease-out;
}

.contact-form input:focus,
.contact-form select:focus {
  border-color: var(--teal-deep);
  box-shadow: 0 0 0 4px oklch(66% 0.145 183 / 0.22);
}

.contact-form input:user-invalid,
.contact-form select:user-invalid {
  border-color: var(--coral-deep);
}

.form-submit {
  width: 100%;
  margin-top: 26px;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

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

.form-status {
  min-height: 22px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.form-status.is-success {
  color: var(--teal-deep);
  font-weight: 820;
}

.form-status.is-error {
  color: var(--coral-deep);
  font-weight: 820;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 48px;
  padding: 52px max(32px, calc((100vw - 1320px) / 2));
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  border-radius: 14px;
}

.footer-brand div {
  display: grid;
}

.footer-brand strong {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.footer-brand span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

.site-footer nav {
  display: flex;
  gap: 26px;
  font-size: 13px;
  font-weight: 780;
}

.site-footer > p {
  color: var(--muted);
  font-size: 11px;
}

.mobile-contact-bar {
  display: none;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 1180px) {
  :root {
    --content: calc(100vw - 48px);
  }

  .desktop-nav {
    gap: 16px;
  }

  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
    padding-inline: 32px;
  }

  .hero-title {
    font-size: clamp(56px, 7.4vw, 86px);
  }

  .hero-actions {
    display: grid;
    justify-items: start;
    gap: 12px;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    white-space: nowrap;
  }

  .hero-art {
    min-height: 600px;
  }

  .ai-lab,
  .proof-section,
  .solution-section,
  .plans-section,
  .marketplace-section,
  .journey-section,
  .contact-section {
    padding-inline: 32px;
  }

  .solution-grid {
    grid-template-columns: repeat(10, 1fr);
  }

  .tile-ai {
    grid-column: span 6;
  }

  .tile-private,
  .tile-design {
    grid-column: span 4;
  }

  .tile-supply,
  .tile-teach,
  .tile-ops {
    grid-column: span 5;
  }

  .tile-location {
    grid-column: span 3;
  }

  .tile-events {
    grid-column: span 4;
  }

  .tile-unmanned {
    grid-column: span 3;
  }

  .journey-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 0;
  }

  .journey-list::before {
    display: none;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 82px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 62px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand-copy small,
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-rows: repeat(2, 2px);
    align-content: center;
    gap: 7px;
    width: 46px;
    height: 46px;
    padding: 0 11px;
    border: 1px solid var(--ink);
    border-radius: 10px;
    background: var(--yellow);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 100%;
    height: 2px;
    background: var(--ink);
    transition: transform 180ms ease-out;
  }

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

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

  .mobile-menu {
    position: fixed;
    z-index: 2;
    inset: -16px -16px auto;
    display: grid;
    align-content: center;
    min-height: 100svh;
    padding: 100px 34px 80px;
    transform: translateY(-104%);
    border: 2px solid var(--ink);
    background:
      linear-gradient(90deg, transparent 49%, oklch(20% 0.02 58 / 0.07) 49% 51%, transparent 51%) 0 0 / 52px 52px,
      linear-gradient(transparent 49%, oklch(20% 0.02 58 / 0.07) 49% 51%, transparent 51%) 0 0 / 52px 52px,
      var(--yellow);
    visibility: hidden;
    transition:
      transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s 420ms;
  }

  .mobile-menu.is-open {
    transform: translateY(0);
    visibility: visible;
    transition:
      transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s;
  }

  .mobile-menu a {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--ink);
    font-family: var(--display);
    font-size: clamp(34px, 8vw, 52px);
    line-height: 1;
  }

  .mobile-menu a span {
    font-size: 13px;
  }

  .mobile-menu p {
    max-width: 360px;
    margin-top: 36px;
    font-weight: 760;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 130px 24px 86px;
  }

  .hero::before {
    background-size: 46px 46px;
  }

  .hero::after {
    right: -48vw;
    bottom: -20vw;
    width: 118vw;
    height: 118vw;
  }

  .hero-copy {
    max-width: none;
    padding-right: 0;
  }

  .hero-title {
    font-size: clamp(56px, 12vw, 92px);
  }

  .hero-art {
    min-height: 680px;
    margin-top: 44px;
  }

  .hero-store-photo {
    right: 1%;
    width: 84%;
  }

  .hero-ai-demo {
    width: 52%;
  }

  .ai-lab,
  .proof-section {
    grid-template-columns: 1fr;
  }

  .ai-heading {
    position: static;
  }

  .compare-shell {
    max-width: 680px;
  }

  .proof-section {
    padding-block: 120px;
  }

  .proof-media {
    min-height: 720px;
  }

  .solution-heading,
  .plans-heading {
    grid-template-columns: 1fr;
  }

  .solution-heading > p:last-child,
  .plans-heading > p:last-child {
    margin-top: 24px;
  }

  .solution-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .tile-ai,
  .tile-private,
  .tile-design,
  .tile-supply,
  .tile-teach,
  .tile-ops,
  .tile-location,
  .tile-events,
  .tile-unmanned {
    grid-column: span 3;
  }

  .tile-ai {
    grid-column: span 6;
  }

  .plans-heading {
    max-width: 760px;
  }

  .plan-layout {
    grid-template-columns: 1fr;
  }

  .plan-primary {
    min-height: 0;
  }

  .plan-stack {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .marketplace-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .receipt {
    max-width: 620px;
  }

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

  .site-footer nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  :root {
    --content: calc(100vw - 32px);
    --shadow-hard: 5px 6px 0 var(--ink);
  }

  body {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }

  .site-header {
    top: 8px;
    width: calc(100vw - 16px);
    border-radius: 14px;
  }

  .site-header.is-scrolled {
    top: 4px;
  }

  .brand-copy strong {
    font-size: 23px;
  }

  .hero {
    padding: 112px 16px 72px;
  }

  .hero-eyebrow {
    margin-bottom: 20px;
    font-size: 14px;
  }

  .hero-title {
    font-size: clamp(52px, 15.5vw, 72px);
    line-height: 0.92;
  }

  .hero-title span:first-child,
  .hero-title em {
    white-space: normal;
  }

  .hero-title-sticker {
    margin: 10px 0 8px 20px;
    padding: 2px 8px 5px;
  }

  .hero-lead {
    margin-top: 26px;
    font-size: 16px;
    line-height: 1.75;
  }

  .hero-actions {
    display: grid;
    gap: 16px;
  }

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

  .hero-actions .text-link {
    justify-self: start;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 36px;
  }

  .hero-proof div {
    min-width: 0;
  }

  .hero-proof dt {
    font-size: 30px;
  }

  .hero-proof dd {
    font-size: 10px;
    line-height: 1.3;
  }

  .hero-art {
    min-height: 510px;
    margin-top: 36px;
  }

  .hero-store-photo {
    top: 4%;
    right: -5%;
    width: 91%;
    height: 66%;
    border-radius: 18px 6px 20px 8px;
  }

  .hero-store-photo figcaption {
    right: 10px;
    bottom: 10px;
    padding: 7px 9px;
  }

  .hero-ai-demo {
    bottom: 2%;
    left: 1%;
    width: 70%;
    padding: 7px;
  }

  .hero-ai-demo > figcaption {
    padding-bottom: 7px;
  }

  .hero-ai-frames {
    grid-template-columns: minmax(0, 1fr) 24px minmax(0, 1fr);
    gap: 5px;
  }

  .hero-ai-arrow {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }

  .hero-logo-tile {
    top: 0;
    left: 0;
    width: 102px;
  }

  .hero-logo-tile img {
    width: 76px;
    height: 76px;
    border-radius: 15px;
  }

  .hero-logo-tile span {
    font-size: 11px;
  }

  .hero-hand-note {
    right: 0;
    bottom: 0;
    font-size: 13px;
  }

  .hero-tape-one {
    right: 17%;
  }

  .service-ticker .ticker-track {
    padding-block: 11px;
  }

  .ticker-track span {
    font-size: 19px;
  }

  .ai-lab,
  .proof-section,
  .solution-section,
  .plans-section,
  .marketplace-section,
  .journey-section,
  .contact-section {
    padding: 96px 16px;
  }

  .section-heading h2,
  .cases-top h2,
  .marketplace-copy h2,
  .contact-vision h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .section-heading > p:last-child,
  .marketplace-copy > p:last-child,
  .contact-vision > p:last-child {
    font-size: 16px;
  }

  .section-index {
    font-size: 14px;
  }

  .ai-lab {
    gap: 50px;
  }

  .compare-stage {
    border-radius: 4px;
    box-shadow: 6px 7px 0 var(--teal);
  }

  .compare-tag {
    top: 9px;
    padding: 4px 7px;
    font-size: 10px;
  }

  .compare-tag-source {
    right: 9px;
  }

  .compare-tag-result {
    left: 9px;
  }

  .compare-handle span {
    width: 44px;
    height: 44px;
  }

  .ai-steps {
    grid-template-columns: 1fr;
  }

  .ai-steps li {
    padding: 24px 0;
  }

  .ai-steps li + li {
    border-top: 1px solid oklch(97% 0.01 88 / 0.2);
    border-left: 0;
  }

  .proof-copy h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .proof-copy > p:nth-of-type(2) {
    font-size: 16px;
  }

  .proof-number strong {
    font-size: 84px;
  }

  .proof-media {
    min-height: 520px;
  }

  .video-frame {
    left: 19%;
    width: 54%;
    box-shadow: 6px 7px 0 var(--ink);
  }

  .proof-small-one {
    width: 42%;
    height: 35%;
  }

  .proof-small-two {
    width: 48%;
    height: 29%;
  }

  .solution-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 12px;
    margin-top: 45px;
  }

  .solution-tile,
  .tile-ai,
  .tile-private,
  .tile-design,
  .tile-supply,
  .tile-teach,
  .tile-ops,
  .tile-location,
  .tile-events,
  .tile-unmanned {
    grid-column: auto;
    grid-row: auto;
    min-height: 190px;
    padding: 22px;
  }

  .tile-ai {
    min-height: 300px;
  }

  .tile-ai strong,
  .solution-tile strong {
    font-size: 34px;
  }

  .cases-section {
    padding: 96px 0 110px;
  }

  .cases-top {
    display: grid;
    width: calc(100vw - 32px);
  }

  .case-filters {
    justify-content: flex-start;
    max-width: none;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .case-filters::-webkit-scrollbar {
    display: none;
  }

  .case-filters button {
    flex: 0 0 auto;
  }

  .case-rail-wrap {
    margin-top: 34px;
  }

  .case-rail {
    grid-auto-columns: 79vw;
    gap: 14px;
    padding-inline: 16px;
  }

  .case-card,
  .case-card-tall {
    height: 470px;
    transform: none;
  }

  .case-card:hover {
    transform: none;
  }

  .case-controls {
    justify-content: space-between;
    width: calc(100vw - 32px);
  }

  .case-controls button {
    display: none;
  }

  .case-controls p {
    margin: 0;
  }

  .plan-tabs {
    position: sticky;
    z-index: 4;
    top: 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    margin-top: 38px;
    padding: 4px;
    border: 1px solid var(--ink);
    border-radius: 12px;
    background: var(--paper);
  }

  .plan-tabs button {
    min-height: 44px;
    border-radius: 8px;
    background: transparent;
    font-weight: 820;
  }

  .plan-tabs button.is-active {
    background: var(--ink);
    color: var(--surface);
  }

  .plan-layout {
    display: block;
    margin-top: 18px;
  }

  .plan-stack {
    display: contents;
  }

  .plan {
    display: none;
    padding: 24px;
  }

  .plan.is-active {
    display: flex;
  }

  .plan-top {
    display: grid;
  }

  .plan-price {
    font-size: 58px;
  }

  .plan-credit {
    grid-template-columns: 1fr;
  }

  .plan-credit strong {
    grid-row: auto;
    margin-top: 14px;
    font-size: 84px;
  }

  .marketplace-section {
    gap: 50px;
  }

  .receipt {
    padding: 24px 20px 30px;
    transform: none;
    box-shadow: 6px 7px 0 var(--ink);
  }

  .receipt-line strong {
    font-size: 46px;
  }

  .journey-list {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 50px;
  }

  .journey-list li {
    display: grid;
    grid-template-columns: 58px 1fr;
    column-gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .journey-list li > span {
    grid-row: span 2;
    width: 52px;
    height: 52px;
    margin: 0;
    border-radius: 13px;
  }

  .journey-list strong {
    align-self: end;
  }

  .journey-list p {
    align-self: start;
  }

  .vision-number {
    gap: 10px;
  }

  .vision-number span {
    font-size: 56px;
  }

  .vision-number i {
    font-size: 34px;
  }

  .vision-number strong {
    font-size: 86px;
  }

  .contact-form {
    padding: 22px 18px;
    box-shadow: 6px 7px 0 var(--coral);
  }

  .form-head {
    display: grid;
  }

  .form-head small {
    justify-self: start;
  }

  .site-footer {
    padding: 44px 16px;
  }

  .site-footer nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 90;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    left: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 58px;
    padding: 10px 14px;
    border: 2px solid var(--ink);
    border-radius: 12px;
    background: var(--coral);
    box-shadow: 4px 5px 0 var(--ink);
    font-size: 11px;
  }

  .mobile-contact-bar strong {
    font-size: 14px;
  }
}

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

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

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