:root {
  --white: #ffffff;
  --paper: #f7f9fc;
  --paper-2: #eef3f8;
  --ink: #111318;
  --ink-2: #2c3138;
  --muted: #6b7480;
  --muted-2: #9aa3ad;
  --line: rgba(17, 19, 24, 0.12);
  --line-soft: rgba(17, 19, 24, 0.07);
  --night: #070a0f;
  --night-2: #111821;
  --blue: #2d7dff;
  --blue-soft: #dfeeff;
  --metal: #b8c1cc;
  --graphite: #151a22;
  --accent-blue: #4a8cff;
  --accent-violet: #8f86ff;
  --accent-gold: #c9aa6f;
  --silver: rgba(196, 211, 228, 0.48);
  --warm: rgba(202, 179, 143, 0.22);
  --max: 1180px;
  --wide: 1480px;
  --hero-x: 0px;
  --hero-y: 0px;
  --pointer-x: 50%;
  --pointer-y: 18%;
  --scroll: 0;
  --anchor-offset: 112px;
  --display: "Noto Serif SC", "Cormorant Garamond", "Songti SC", serif;
  --latin: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", "Noto Sans SC", system-ui, sans-serif;
  --editorial-heading: clamp(3rem, 5.9vw, 6.8rem);
  --scene-heading: clamp(3.25rem, 6.4vw, 7.4rem);
  --card-heading: clamp(1.45rem, 2.1vw, 2rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(183, 210, 241, 0.17), transparent 32vw),
    radial-gradient(circle at 86% 22%, rgba(201, 170, 111, 0.12), transparent 30vw),
    radial-gradient(circle at 12% 76%, rgba(143, 134, 255, 0.055), transparent 28vw),
    linear-gradient(90deg, rgba(45, 125, 255, 0.032) 1px, transparent 1px) 0 0 / 108px 100%,
    linear-gradient(180deg, var(--white), var(--paper) 46%, var(--white));
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.72;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: -24% -18% auto;
  z-index: -1;
  height: 58vh;
  background: linear-gradient(108deg, transparent 12%, rgba(186, 205, 228, 0.26) 36%, rgba(255, 255, 255, 0.72) 48%, rgba(195, 174, 142, 0.16) 63%, transparent 82%);
  filter: blur(34px);
  opacity: 0.74;
  transform: rotate(-8deg);
  pointer-events: none;
}

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

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

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

.mobile-break {
  display: none;
}

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

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

.site-progress {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 80;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
}

.site-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(74, 140, 255, 0.68), rgba(201, 170, 111, 0.62));
}

.topbar {
  position: fixed;
  left: max(16px, 1.7vw);
  right: max(16px, 1.7vw);
  top: 20px;
  z-index: 70;
  display: grid;
  grid-template-columns: 180px 1fr auto auto;
  gap: 18px;
  align-items: center;
  min-height: 58px;
  padding: 8px 10px 8px 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05)),
    rgba(16, 23, 30, 0.38);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(24px) saturate(155%);
  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.topbar.is-scrolled {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 249, 252, 0.78)),
    rgba(255, 255, 255, 0.84);
  border-color: rgba(17, 19, 24, 0.12);
  box-shadow: 0 18px 70px rgba(25, 31, 38, 0.11);
}

.brand {
  width: fit-content;
  font-family: var(--latin);
  font-size: 1.55rem;
  font-weight: 600;
}

.nav {
  justify-self: center;
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav a {
  display: inline-grid;
  place-items: center;
  min-width: 58px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 900;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.nav a.is-active,
.nav a:hover {
  color: var(--white);
  background: rgba(7, 10, 15, 0.88);
}

.topbar.is-scrolled .nav a.is-active,
.topbar.is-scrolled .nav a:hover {
  color: var(--white);
  background: rgba(7, 10, 15, 0.92);
}

.language-switch {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  min-height: 42px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.language-switch span {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.28);
}

.language-switch button {
  appearance: none;
  display: inline-grid;
  place-items: center;
  min-width: 48px;
  min-height: 32px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  color: currentColor;
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
  transition:
    color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

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

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

.topbar.is-scrolled .language-switch {
  border-color: rgba(17, 19, 24, 0.12);
  background: rgba(17, 19, 24, 0.045);
}

.topbar.is-scrolled .language-switch span {
  background: rgba(17, 19, 24, 0.16);
}

.topbar.is-scrolled .language-switch button[aria-pressed="true"] {
  color: var(--white);
  background: var(--night);
}

.nav-cta,
.button,
.contact-primary {
  display: inline-grid;
  place-items: center;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 900;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.nav-cta {
  min-width: 96px;
  color: var(--ink);
  background: var(--white);
}

.topbar.is-scrolled .nav-cta,
.contact-primary {
  color: var(--white);
  background: var(--night);
}

.button {
  min-width: 160px;
  padding: 0 24px;
}

.button-light {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.92)),
    rgba(255, 255, 255, 0.92);
}

.button-line {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.button-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.nav-cta:hover,
.button:hover,
.contact-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(20, 28, 38, 0.16);
}

.page-section {
  position: relative;
  scroll-margin-top: var(--anchor-offset);
}

.anchor-alias {
  position: absolute;
  inset: 0 auto auto 0;
  width: 1px;
  height: 1px;
  scroll-margin-top: var(--anchor-offset);
  pointer-events: none;
}

.section-shell {
  width: min(var(--wide), calc(100% - 48px));
  margin-inline: auto;
  padding-block: clamp(96px, 12vw, 174px);
}

.position .section-shell,
.offer .section-shell,
.building .section-shell,
.links .section-shell,
.proof .section-shell {
  position: relative;
}

.position .section-shell::before,
.building .section-shell::before {
  content: "";
  position: absolute;
  inset: 9% auto auto -8%;
  width: min(520px, 44vw);
  height: 180px;
  background: linear-gradient(92deg, transparent, rgba(191, 211, 232, 0.28), rgba(255, 255, 255, 0.72), transparent);
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0.76;
  transform: rotate(-8deg);
  pointer-events: none;
}

.section-copy {
  max-width: 640px;
}

.section-copy.wide {
  max-width: 900px;
}

.section-copy p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.17rem);
  font-weight: 600;
  line-height: 1.86;
}

.section-copy.inverse p,
.inverse .section-kicker {
  color: rgba(255, 255, 255, 0.68);
}

.section-kicker {
  display: inline-grid;
  place-items: center;
  min-height: 42px;
  margin: 0 0 18px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: color-mix(in srgb, var(--muted) 86%, var(--accent-blue));
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.64), rgba(242, 247, 253, 0.58)),
    rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-bottom: 0;
}

h1,
h2,
h3 {
  margin-top: 0;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.02;
}

h2 {
  font-size: var(--editorial-heading);
}

h3 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.14;
}

[data-reveal] {
  opacity: 1;
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 760ms ease,
    transform 760ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready [data-reveal].is-visible,
.motion-static [data-reveal] {
  opacity: 1;
  transform: none;
}

.motion-ready .section-copy[data-reveal],
.motion-ready .story-head[data-reveal],
.motion-ready .closing-scene-inner[data-reveal] {
  opacity: 1;
  transform: none;
}

.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}

.hero-video,
.hero-poster,
.hero-veil {
  position: absolute;
  inset: 0;
}

.hero-video,
.hero-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(var(--hero-x), var(--hero-y), 0) scale(calc(1.025 + var(--scroll) * 0.025));
}

.hero-poster {
  z-index: 0;
}

.hero-video {
  z-index: 1;
}

.hero-veil {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(5, 8, 11, 0.2), rgba(5, 8, 11, 0.18) 42%, rgba(5, 8, 11, 0.8)),
    linear-gradient(90deg, rgba(4, 7, 10, 0.52), transparent 28%, transparent 68%, rgba(4, 7, 10, 0.36)),
    radial-gradient(ellipse at 50% 43%, rgba(0, 0, 0, 0.34), transparent 46%),
    radial-gradient(circle at 18% 18%, rgba(201, 170, 111, 0.13), transparent 28%),
    radial-gradient(circle at 76% 22%, rgba(74, 140, 255, 0.1), transparent 30%);
  pointer-events: none;
}

.liquid-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
  mix-blend-mode: screen;
}

.liquid-layer span {
  position: absolute;
  left: 8%;
  top: 22%;
  width: 68vw;
  height: 180px;
  border-radius: 999px;
  background: linear-gradient(100deg, transparent, rgba(219, 232, 248, 0.24), rgba(255, 255, 255, 0.42), rgba(201, 170, 111, 0.12), transparent);
  filter: blur(22px);
  opacity: 0.56;
  transform: translate3d(calc(var(--hero-x) * -0.6), calc(var(--hero-y) * -0.4), 0) rotate(-10deg);
}

.liquid-layer span:nth-child(2) {
  left: auto;
  right: -8%;
  top: 62%;
  width: 52vw;
  height: 120px;
  opacity: 0.34;
  transform: translate3d(calc(var(--hero-x) * 0.5), calc(var(--hero-y) * 0.3), 0) rotate(12deg);
}

.ai-signal-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.72;
  background:
    linear-gradient(90deg, rgba(220, 236, 255, 0.12) 1px, transparent 1px) 0 0 / 18vw 100%,
    linear-gradient(180deg, rgba(220, 236, 255, 0.09) 1px, transparent 1px) 0 0 / 100% 18vh;
  mask-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.8), transparent 64%);
}

.ai-signal-layer::before,
.ai-signal-layer::after {
  content: "";
  position: absolute;
  width: min(42vw, 620px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(169, 210, 255, 0.5), transparent);
  opacity: 0.46;
  transform-origin: center;
}

.ai-signal-layer::before {
  left: 8%;
  top: 31%;
  transform: translate3d(calc(var(--hero-x) * -0.34), calc(var(--hero-y) * -0.18), 0) rotate(-7deg);
}

.ai-signal-layer::after {
  right: 5%;
  bottom: 24%;
  transform: translate3d(calc(var(--hero-x) * 0.26), calc(var(--hero-y) * 0.16), 0) rotate(6deg);
}

.ai-signal-layer span {
  position: absolute;
  color: rgba(235, 245, 255, 0.54);
  font-family: var(--latin);
  font-size: clamp(0.68rem, 0.85vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(74, 140, 255, 0.28);
}

.ai-signal-layer span:nth-child(1) {
  left: clamp(22px, 5vw, 84px);
  top: 24%;
}

.ai-signal-layer span:nth-child(2) {
  right: clamp(22px, 5vw, 88px);
  top: 38%;
}

.ai-signal-layer span:nth-child(3) {
  left: 18%;
  bottom: 18%;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1320px, calc(100% - 44px));
  padding-top: clamp(72px, 8vw, 108px);
  text-align: center;
}

.hero-kicker {
  display: inline-grid;
  place-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.08);
  font-size: clamp(0.8rem, 1.2vw, 1.05rem);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.hero h1 {
  display: grid;
  gap: clamp(10px, 1.4vw, 20px);
  margin-top: clamp(20px, 4vw, 46px);
  font-size: clamp(4.6rem, 13vw, 14.2rem);
  text-shadow: 0 24px 90px rgba(0, 0, 0, 0.24);
}

.hero h1 span {
  opacity: 1;
}

.hero h1 span:first-child,
.hero-name {
  display: block;
  line-height: 0.82;
}

.hero h1 span:last-child,
.hero-thesis {
  display: block;
  justify-self: center;
  max-width: min(1120px, 100%);
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(2.45rem, 5.35vw, 6.35rem);
  line-height: 1.06;
}

.motion-ready .hero-name,
.motion-ready .hero-thesis {
  clip-path: inset(0 0 100% 0);
  transform: translateY(34px);
  animation: hero-title-mask 980ms cubic-bezier(0.2, 0.76, 0.18, 1) forwards;
  transition:
    clip-path 980ms cubic-bezier(0.2, 0.76, 0.18, 1),
    transform 980ms cubic-bezier(0.2, 0.76, 0.18, 1);
}

.motion-ready .hero-thesis {
  animation-delay: 140ms;
}

@keyframes hero-title-mask {
  to {
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
  }
}

.hero h1 em {
  font-style: italic;
  color: rgba(235, 242, 252, 0.98);
  text-shadow: 0 0 42px rgba(74, 140, 255, 0.18);
}

.hero-lead {
  width: min(820px, 100%);
  margin: clamp(24px, 3vw, 36px) auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  font-weight: 700;
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(26px, 4vw, 48px);
}

.hero-roles {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  width: min(900px, 100%);
  margin: clamp(34px, 5vw, 66px) auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-roles span {
  padding: 16px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 700;
}

.position {
  background:
    linear-gradient(90deg, rgba(45, 125, 255, 0.035) 1px, transparent 1px) 0 0 / 108px 100%,
    linear-gradient(180deg, var(--white), var(--paper));
}

.position-grid,
.links-grid,
.proof-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.7fr) minmax(0, 1fr);
  gap: clamp(44px, 8vw, 112px);
  align-items: center;
}

.identity-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(246, 250, 253, 0.58)),
    rgba(255, 255, 255, 0.68);
  box-shadow: 0 30px 110px rgba(30, 36, 44, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(130%);
  perspective: 1000px;
}

.identity-board article {
  min-height: 250px;
  padding: clamp(28px, 4vw, 46px);
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateZ(0);
  transition:
    transform 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.identity-board article:hover {
  background: rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.identity-board article:nth-child(2n) {
  border-right: 0;
}

.identity-board article:nth-child(n + 3) {
  border-bottom: 0;
}

.identity-board span,
.offer-grid span,
.building-grid span,
.proof-list span,
.link-list span,
.method-rail span {
  color: var(--accent-blue);
  font-family: var(--latin);
  font-size: 0.86rem;
  font-weight: 600;
}

.identity-board h3 {
  margin-top: 32px;
  font-size: clamp(1.48rem, 2vw, 2.05rem);
}

.identity-board p,
.offer-grid p,
.building-grid p,
.proof-list p,
.method-rail p {
  margin-top: 14px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.78;
}

.offer,
.building,
.links {
  background: rgba(255, 255, 255, 0.78);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(44px, 6vw, 76px);
}

.offer-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: clamp(28px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.98), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 248, 252, 0.68)),
    var(--white);
  box-shadow: 0 28px 100px rgba(30, 36, 44, 0.07);
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.offer-grid article::after {
  content: "";
  position: absolute;
  left: clamp(28px, 3vw, 36px);
  right: clamp(28px, 3vw, 36px);
  bottom: clamp(28px, 3vw, 36px);
  height: 1px;
  background: linear-gradient(90deg, rgba(17, 19, 24, 0.48), transparent);
  opacity: 0.18;
  transform: scaleX(0.36);
  transform-origin: left;
  transition:
    opacity 320ms ease,
    transform 520ms cubic-bezier(0.2, 0.76, 0.18, 1);
}

.offer-grid article:hover {
  border-color: rgba(45, 125, 255, 0.2);
  box-shadow: 0 36px 110px rgba(30, 36, 44, 0.11);
}

.offer-grid article:hover::after,
.offer-grid article.is-visible::after {
  opacity: 0.42;
  transform: scaleX(1);
}

.offer-grid h3 {
  margin-top: 30px;
  font-size: var(--card-heading);
  line-height: 1.24;
}

.offer-grid article > p {
  min-height: 96px;
}

.asset-ledger {
  display: grid;
  gap: 0;
  margin: auto 0 0;
  padding-top: 24px;
}

.asset-ledger div {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 16px;
  padding: 15px 0;
  border-top: 1px solid var(--line-soft);
}

.asset-ledger dt {
  color: var(--accent-blue);
  font-family: var(--latin);
  font-size: 0.82rem;
  font-weight: 700;
}

.asset-ledger dd {
  margin: 0;
  color: rgba(44, 49, 56, 0.7);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.64;
}

.asset-cues {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(24, 31, 42, 0.09);
}

.asset-cues-label {
  color: rgba(20, 28, 38, 0.42);
  font-family: var(--latin);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.asset-cue-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 34px;
  border: 1px solid rgba(24, 31, 42, 0.075);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(245, 248, 251, 0.34)),
    rgba(248, 250, 252, 0.66);
  overflow: hidden;
}

.asset-cue-list span {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 0;
  color: rgba(20, 28, 38, 0.62);
  font-family: var(--latin);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.asset-cue-list span + span {
  border-left: 1px solid rgba(24, 31, 42, 0.07);
}

.asset-cue-list span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(45, 125, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(45, 125, 255, 0.07);
}

.offer-grid ul {
  display: grid;
  gap: 12px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.offer-grid li {
  padding-top: 12px;
  border-top: 1px solid var(--line-soft);
  font-weight: 900;
}

.story-videos {
  min-height: 100svh;
  display: block;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(7, 10, 15, 0.62), rgba(7, 10, 15, 0.92)),
    var(--night);
}

.story-videos::after {
  content: "";
  position: absolute;
  left: max(24px, calc((100% - var(--wide)) / 2));
  right: max(24px, calc((100% - var(--wide)) / 2));
  bottom: clamp(32px, 5vw, 70px);
  z-index: 2;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), rgba(201, 170, 111, 0.26), transparent);
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: center;
  transition:
    opacity 900ms ease,
    transform 1200ms cubic-bezier(0.2, 0.76, 0.18, 1);
  pointer-events: none;
}

.story-videos.is-inview::after {
  opacity: 1;
  transform: scaleX(1);
}

.story-videos-secondary {
  background:
    linear-gradient(180deg, rgba(7, 10, 15, 0.54), rgba(7, 10, 15, 0.9)),
    var(--night);
}

.story-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  overflow: hidden;
}

.story-background::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(5, 8, 11, 0.24), rgba(5, 8, 11, 0.2) 42%, rgba(5, 8, 11, 0.84)),
    linear-gradient(90deg, rgba(5, 8, 11, 0.78), rgba(5, 8, 11, 0.34) 46%, rgba(5, 8, 11, 0.18)),
    radial-gradient(circle at 70% 30%, rgba(74, 140, 255, 0.14), transparent 34%);
  pointer-events: none;
}

.story-background img,
.story-background video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.06) brightness(0.76);
  transform: scale(1.03);
}

.story-background img {
  z-index: 1;
}

.story-background video {
  z-index: 2;
}

.story-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100svh;
}

.story-head {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: end;
  margin-bottom: clamp(62px, 8vw, 118px);
}

.story-head h2 {
  margin-top: 18px;
  font-size: var(--scene-heading);
  line-height: 1.08;
}

.story-head p:last-child {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.18rem, 1.48vw, 1.38rem);
  font-weight: 600;
  line-height: 1.82;
}

.story-head-inverse .section-kicker {
  color: rgba(255, 255, 255, 0.74);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.story-head-inverse p:last-child {
  color: rgba(255, 255, 255, 0.78);
}

.story-evidence {
  display: grid;
  grid-template-columns: 120px minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: end;
  width: min(980px, 100%);
  padding-top: clamp(20px, 3vw, 30px);
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.story-evidence span {
  color: rgba(214, 228, 246, 0.72);
  font-family: var(--latin);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.story-evidence h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.9rem, 2.7vw, 2.8rem);
  font-weight: 500;
  line-height: 1.12;
}

.story-evidence p {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(1.08rem, 1.2vw, 1.22rem);
  font-weight: 600;
  line-height: 1.78;
}

.story-proof-line {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 110px minmax(220px, 0.38fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  max-width: 980px;
  margin-top: clamp(48px, 8vw, 110px);
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.story-proof-line span {
  color: var(--blue-soft);
  font-family: var(--latin);
  font-weight: 600;
}

.story-proof-line strong {
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.5vw, 2.55rem);
  font-weight: 500;
  line-height: 1.16;
}

.story-proof-line em {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.64);
  font-style: normal;
  font-weight: 600;
  line-height: 1.72;
}

.story-video-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.82fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: start;
}

.story-video-grid.single {
  grid-template-columns: minmax(0, 1fr);
}

.story-video-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: clamp(26px, 5vw, 68px);
  align-items: end;
}

.story-video-grid.reverse .story-video-card {
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 1fr);
}

.story-video-grid.reverse .story-media {
  grid-column: 2;
  grid-row: 1;
}

.story-video-grid.reverse .story-copy {
  grid-column: 1;
  grid-row: 1;
}

.story-video-card-offset {
  margin-top: clamp(78px, 11vw, 150px);
}

.closing-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--night);
}

.closing-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(5, 8, 11, 0.02), rgba(5, 8, 11, 0.34)),
    linear-gradient(90deg, rgba(5, 8, 11, 0.14), transparent 36%, rgba(5, 8, 11, 0.12));
  pointer-events: none;
}

.closing-media img,
.closing-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.035);
  transition: transform 1600ms cubic-bezier(0.2, 0.76, 0.18, 1);
}

.story-videos.is-inview .story-background img,
.story-videos.is-inview .story-background video {
  transform: scale(1.06) translate3d(0, -8px, 0);
}

.closing-media img {
  z-index: 1;
}

.lazy-story-video {
  z-index: 2;
  opacity: 0;
  transition: opacity 520ms ease;
}

.lazy-story-video.is-loaded {
  opacity: 1;
}

.story-copy {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: start;
  max-width: 520px;
  padding-inline: 2px;
}

.story-copy span {
  color: var(--accent-blue);
  font-family: var(--latin);
  font-size: 0.92rem;
  font-weight: 600;
}

.story-copy h3 {
  margin: 0;
  font-size: clamp(1.65rem, 2.6vw, 2.45rem);
  line-height: 1.18;
}

.story-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.16vw, 1.16rem);
  font-weight: 800;
  line-height: 1.76;
}

.method {
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}

.method::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 12, 18, 0.9), rgba(8, 12, 18, 0.62) 44%, rgba(8, 12, 18, 0.92)),
    linear-gradient(112deg, transparent 10%, rgba(214, 228, 246, 0.12) 38%, transparent 56%),
    radial-gradient(circle at 68% 38%, rgba(116, 154, 205, 0.22), transparent 36%);
  pointer-events: none;
}

.method-image {
  position: absolute;
  inset: 0;
}

.method-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  filter: saturate(0.7) contrast(1.08) brightness(0.72);
  transform: scale(1.04);
}

.method-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(340px, 0.68fr) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 118px);
  align-items: center;
}

.method .section-kicker {
  color: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.method-rail {
  display: grid;
  gap: 14px;
}

.method-rail article {
  position: relative;
  display: grid;
  grid-template-columns: 110px minmax(160px, 0.34fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 128px;
  padding: 26px 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.032)),
    rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(14px) saturate(130%);
}

.method-rail article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(201, 170, 111, 0.18));
  opacity: 0.32;
  transform: scaleY(0.38);
  transform-origin: top;
  transition:
    opacity 420ms ease,
    transform 720ms cubic-bezier(0.2, 0.76, 0.18, 1);
}

.method.is-inview .method-rail article::before {
  opacity: 0.62;
  transform: scaleY(1);
}

.method-rail h3 {
  color: var(--white);
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
}

.method-rail p {
  color: rgba(255, 255, 255, 0.62);
}

.building-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  grid-template-rows: repeat(2, minmax(230px, auto));
  gap: 18px;
  margin-top: clamp(50px, 7vw, 88px);
}

.building-grid article {
  position: relative;
  min-height: 230px;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(241, 247, 253, 0.66)),
    rgba(255, 255, 255, 0.76);
  box-shadow: 0 28px 96px rgba(30, 36, 44, 0.07);
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.building-grid article:hover {
  border-color: rgba(45, 125, 255, 0.18);
  box-shadow: 0 34px 110px rgba(30, 36, 44, 0.11);
}

.building-grid .system-primary {
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 520px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(9, 13, 18, 0.16), rgba(9, 13, 18, 0.78)),
    radial-gradient(circle at 78% 18%, rgba(103, 161, 255, 0.2), transparent 34%),
    url("./assets/mike-hero-studio-v8c.png") center / cover,
    var(--night);
}

.building-grid .system-primary::before {
  content: "";
  position: absolute;
  inset: auto -12% 16% 18%;
  height: 120px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), rgba(201, 170, 111, 0.18), transparent);
  filter: blur(18px);
  pointer-events: none;
}

.building-grid .system-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 24%, #000 78%, transparent 100%);
  opacity: 0.22;
  pointer-events: none;
}

.building-grid .system-primary > * {
  position: relative;
  z-index: 1;
}

.building-grid .system-primary p,
.building-grid .system-primary span {
  color: rgba(255, 255, 255, 0.76);
}

.system-os-layer {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  margin-top: clamp(26px, 5vw, 48px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(5, 8, 12, 0.24);
  backdrop-filter: blur(16px) saturate(116%);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.22);
}

.system-os-layer::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(177, 210, 255, 0.5), transparent);
  opacity: 0.44;
  transform: scaleX(0.36);
  transform-origin: left;
  transition: transform 1100ms cubic-bezier(0.2, 0.76, 0.18, 1);
  pointer-events: none;
}

.building.is-inview .system-os-layer::before {
  transform: scaleX(1);
}

.system-os-head,
.system-signal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.system-os-head span,
.system-signal span {
  color: rgba(231, 238, 248, 0.6);
  font-family: var(--latin);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.system-os-head strong {
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--latin);
  font-size: 0.84rem;
  font-weight: 600;
}

.system-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.system-flow span {
  position: relative;
  display: grid;
  gap: 5px;
  min-height: 72px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.065);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 600;
}

.system-flow span::before {
  content: attr(data-node);
  color: rgba(177, 210, 255, 0.7);
  font-family: var(--latin);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.system-flow span::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(177, 210, 255, 0.76);
  box-shadow: 0 0 18px rgba(95, 151, 255, 0.38);
}

.system-signal i {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(177, 210, 255, 0.5), rgba(255, 255, 255, 0.12));
}

.building-grid h3 {
  margin-top: 30px;
  font-size: clamp(1.55rem, 2.3vw, 2.1rem);
}

.proof {
  background: var(--paper);
}

.proof-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.proof-list article {
  position: relative;
  display: grid;
  grid-template-columns: 120px minmax(190px, 0.36fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition:
    transform 220ms ease,
    background 220ms ease;
}

.proof-list article::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(17, 19, 24, 0.58), rgba(45, 125, 255, 0.18), transparent);
  transition: width 760ms cubic-bezier(0.2, 0.76, 0.18, 1);
}

.proof.is-inview .proof-list article::before,
.proof-list article:hover::before {
  width: 100%;
}

.proof-list article:hover {
  background: rgba(255, 255, 255, 0.48);
}

.proof-list h3 {
  font-size: clamp(1.22rem, 1.62vw, 1.58rem);
  line-height: 1.24;
}

.proof-list p {
  max-width: 690px;
}

.ai-double {
  overflow: hidden;
  color: var(--ink);
  scroll-margin-top: var(--anchor-offset);
  background:
    linear-gradient(120deg, rgba(250, 251, 248, 0.96), rgba(238, 244, 249, 0.78)),
    url("./assets/mike-hero-v9-candidate-a.png") center / cover,
    var(--paper);
}

.ai-double::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 28, 38, 0.05) 1px, transparent 1px) 0 0 / 118px 100%,
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(250, 251, 248, 0.88)),
    radial-gradient(circle at 72% 24%, rgba(74, 140, 255, 0.12), transparent 30%);
  pointer-events: none;
}

.ai-double-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(380px, 0.74fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
}

.ai-double .section-kicker {
  color: rgba(20, 28, 38, 0.58);
  border-color: rgba(20, 28, 38, 0.12);
  background: rgba(255, 255, 255, 0.46);
}

.ai-double .section-copy.inverse p {
  color: rgba(20, 28, 38, 0.62);
}

.ai-double-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.ai-double-actions span {
  max-width: 360px;
  color: rgba(20, 28, 38, 0.56);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.66;
}

.ai-double-panel {
  position: relative;
  padding: clamp(18px, 2.6vw, 30px);
  border: 1px solid rgba(20, 28, 38, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(246, 250, 253, 0.68)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 28px 90px rgba(30, 36, 44, 0.1);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.ai-double-panel::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 125, 255, 0.38), rgba(184, 164, 126, 0.2), transparent);
  opacity: 0;
  transform: scaleX(0.28);
  transform-origin: center;
  transition:
    opacity 620ms ease,
    transform 980ms cubic-bezier(0.2, 0.76, 0.18, 1);
}

.ai-double.is-inview .ai-double-panel::before {
  opacity: 1;
  transform: scaleX(1);
}

.ai-double-panel:hover {
  border-color: rgba(45, 125, 255, 0.18);
  box-shadow: 0 34px 104px rgba(30, 36, 44, 0.14);
  transform: translateY(-3px);
}

.intake-card {
  display: grid;
  gap: 22px;
}

.intake-card-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(20, 28, 38, 0.1);
}

.intake-card-head span,
.intake-brief span,
.intake-flow > li > span {
  color: rgba(20, 28, 38, 0.46);
  font-family: var(--latin);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.intake-card-head strong {
  color: rgba(20, 28, 38, 0.62);
  font-size: 0.84rem;
  font-weight: 700;
}

.intake-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(45, 125, 255, 0.15);
  border-radius: 999px;
  background: rgba(45, 125, 255, 0.055);
}

.intake-status::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 999px;
  background: rgba(45, 125, 255, 0.72);
  box-shadow: 0 0 0 4px rgba(45, 125, 255, 0.08);
}

.motion-ready .ai-double.is-inview .intake-status::before {
  animation: intake-pulse 2200ms ease-in-out infinite;
}

@keyframes intake-pulse {
  0%,
  100% {
    opacity: 0.62;
    box-shadow: 0 0 0 4px rgba(45, 125, 255, 0.08);
  }

  50% {
    opacity: 1;
    box-shadow: 0 0 0 7px rgba(45, 125, 255, 0.13);
  }
}

.intake-flow {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.intake-flow li {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(20, 28, 38, 0.09);
  opacity: 0.78;
  transform: translateY(0);
  transition:
    opacity 260ms ease,
    transform 260ms ease,
    background 260ms ease,
    border-color 260ms ease;
}

.intake-flow li::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 54px;
  bottom: -18px;
  width: 1px;
  background: linear-gradient(180deg, rgba(45, 125, 255, 0.18), transparent);
  transform: scaleY(0.4);
  transform-origin: top;
  opacity: 0;
  transition:
    opacity 360ms ease,
    transform 620ms cubic-bezier(0.2, 0.76, 0.18, 1);
}

.intake-flow li:not(:last-child).is-active::before {
  opacity: 1;
  transform: scaleY(1);
}

.intake-flow li:first-child {
  padding-top: 4px;
}

.intake-flow li.is-active {
  opacity: 1;
  border-color: rgba(45, 125, 255, 0.18);
  background: linear-gradient(90deg, rgba(45, 125, 255, 0.045), transparent 62%);
  transform: translateY(-2px);
}

.intake-flow li.is-active > span {
  color: rgba(45, 125, 255, 0.78);
}

.intake-flow h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.42rem, 2.1vw, 1.86rem);
  font-weight: 500;
  line-height: 1.12;
}

.intake-flow p {
  margin: 9px 0 0;
  color: rgba(20, 28, 38, 0.62);
  font-size: clamp(1rem, 1.08vw, 1.08rem);
  font-weight: 600;
  line-height: 1.68;
}

.intake-brief {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(45, 125, 255, 0.14);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(236, 244, 252, 0.68)),
    rgba(255, 255, 255, 0.72);
  transition:
    border-color 260ms ease,
    background 260ms ease;
}

.intake-brief::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 14px;
  height: 1px;
  background: linear-gradient(90deg, rgba(45, 125, 255, 0.28), transparent);
  opacity: 0;
  transform: scaleX(0.32);
  transform-origin: left;
  transition:
    opacity 520ms ease,
    transform 760ms cubic-bezier(0.2, 0.76, 0.18, 1);
}

.intake-brief.is-ready {
  border-color: rgba(45, 125, 255, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(230, 242, 255, 0.76)),
    rgba(255, 255, 255, 0.78);
}

.intake-brief.is-ready::after {
  opacity: 1;
  transform: scaleX(1);
}

.intake-brief strong {
  display: block;
  margin-top: 12px;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.4vw, 2.05rem);
  font-weight: 500;
}

.intake-brief p {
  margin: 10px 0 0;
  color: rgba(20, 28, 38, 0.58);
  font-weight: 700;
  line-height: 1.6;
}

.links-grid {
  align-items: start;
}

.link-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.link-list a {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  min-height: 92px;
  border-bottom: 1px solid var(--line);
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.link-list a:hover,
.link-list a.is-noted {
  background:
    linear-gradient(90deg, rgba(45, 125, 255, 0.05), transparent),
    rgba(255, 255, 255, 0.42);
  transform: translateX(6px);
}

.link-list strong {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 500;
}

.link-list em {
  justify-self: end;
  padding: 7px 12px;
  border: 1px solid rgba(74, 140, 255, 0.2);
  border-radius: 999px;
  color: var(--muted);
  background: linear-gradient(90deg, rgba(74, 140, 255, 0.05), rgba(201, 170, 111, 0.04));
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 900;
}

.closing-scene {
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}

.closing-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.closing-media img,
.closing-media video {
  filter: saturate(0.78) contrast(1.06) brightness(0.74);
  transform: scale(1.03);
}

.closing-media::after {
  background:
    linear-gradient(180deg, rgba(5, 8, 11, 0.22), rgba(5, 8, 11, 0.3) 38%, rgba(5, 8, 11, 0.88)),
    linear-gradient(90deg, rgba(5, 8, 11, 0.84), rgba(5, 8, 11, 0.42) 44%, rgba(5, 8, 11, 0.22));
}

.closing-scene-inner {
  position: relative;
  z-index: 2;
  width: min(1080px, calc(100% - 48px));
  margin-left: max(24px, calc((100% - var(--wide)) / 2));
  margin-right: auto;
}

.closing-scene .section-kicker {
  color: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.closing-scene h2 {
  margin-top: 20px;
  font-size: clamp(3.15rem, 6.2vw, 7.2rem);
  line-height: 1.06;
}

.closing-scene-inner > p:not(.section-kicker) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.18rem, 1.48vw, 1.38rem);
  font-weight: 600;
  line-height: 1.8;
}

.closing-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: clamp(30px, 4.2vw, 46px);
}

.closing-actions .button,
.closing-actions .contact-primary {
  min-height: 52px;
}

.closing-actions span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.94rem;
  font-weight: 800;
}

.contact {
  display: grid;
  place-items: center;
  min-height: 86svh;
  padding: clamp(80px, 10vw, 140px) 24px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(7, 10, 15, 0.8), rgba(7, 10, 15, 0.96)),
    url("./assets/mike-hero-bay-v8b.png") center / cover;
}

.contact-inner {
  width: min(920px, 100%);
  text-align: center;
}

.contact .section-kicker {
  color: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.contact h2 {
  font-size: clamp(3.9rem, 8.6vw, 9.2rem);
}

.contact p {
  width: min(690px, 100%);
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 800;
}

.contact-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
}

.contact-primary {
  min-width: 180px;
  padding: 0 26px;
  color: var(--ink);
  background: var(--white);
}

.contact-actions span {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 900;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 24px max(24px, 5vw);
  color: var(--muted);
  background: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ai-page {
  min-height: 100svh;
  color: var(--white);
  background: var(--night);
}

.agent-page-shell {
  min-height: 100svh;
}

.agent-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 24px;
}

.agent-backdrop,
.agent-backdrop::after {
  position: absolute;
  inset: 0;
}

.agent-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.06) brightness(0.72);
  transform: scale(1.04);
}

.agent-backdrop::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 10, 15, 0.9), rgba(7, 10, 15, 0.58) 48%, rgba(7, 10, 15, 0.92)),
    radial-gradient(circle at 70% 20%, rgba(74, 140, 255, 0.18), transparent 34%),
    radial-gradient(circle at 20% 78%, rgba(201, 170, 111, 0.16), transparent 28%);
}

.agent-header,
.agent-layout {
  position: relative;
  z-index: 1;
}

.agent-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  width: min(1380px, 100%);
  margin-inline: auto;
}

.agent-brand {
  font-family: var(--latin);
  font-size: 1.6rem;
  font-weight: 600;
}

.agent-header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.agent-language-switch {
  color: rgba(255, 255, 255, 0.78);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.agent-language-switch span {
  background: rgba(255, 255, 255, 0.14);
}

.agent-language-switch button {
  color: rgba(255, 255, 255, 0.68);
}

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

.agent-home {
  display: inline-grid;
  place-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
  font-weight: 900;
  backdrop-filter: blur(18px);
}

.agent-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 76px);
  align-items: end;
  width: min(1380px, 100%);
  min-height: calc(100svh - 90px);
  margin-inline: auto;
  padding-top: 34px;
}

.agent-context {
  padding-bottom: clamp(18px, 5vw, 68px);
}

.agent-context .section-kicker {
  color: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.agent-context h1 {
  margin-top: 18px;
  font-size: clamp(3.4rem, 7.6vw, 8.4rem);
}

.agent-context > p {
  max-width: 660px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  font-weight: 800;
  line-height: 1.82;
}

.agent-boundary {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.agent-boundary span {
  width: fit-content;
  max-width: 100%;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.66);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  font-weight: 900;
}

.agent-console {
  display: grid;
  grid-template-rows: auto auto minmax(320px, 54svh) auto auto;
  gap: 14px;
  min-height: min(760px, calc(100svh - 132px));
  padding: clamp(16px, 2.2vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.075);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(24px) saturate(140%);
}

.agent-status {
  min-height: 34px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 900;
}

.agent-status[data-mode="mock"] {
  color: rgba(255, 215, 159, 0.88);
}

.quick-prompts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.quick-prompts button,
.chat-form button,
#submit-summary {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.quick-prompts button {
  min-height: 40px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.045);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: left;
}

.agent-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 14px;
  min-height: 0;
}

.chat-log {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 0;
  padding: 6px 4px 10px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.brief-preview {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045)),
    rgba(7, 10, 15, 0.24);
  overflow-y: auto;
}

.brief-preview-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brief-preview-head span,
.brief-preview dt {
  color: rgba(255, 255, 255, 0.46);
  font-family: var(--latin);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brief-preview-head strong {
  color: rgba(177, 210, 255, 0.86);
  font-size: 0.72rem;
  font-weight: 800;
}

.brief-preview dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.brief-preview div {
  display: grid;
  gap: 5px;
}

.brief-preview dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.55;
}

.brief-youyou {
  padding-top: 12px;
  border-top: 1px solid rgba(177, 210, 255, 0.12);
}

.message {
  display: grid;
  gap: 6px;
  max-width: min(640px, 88%);
}

.message span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.76rem;
  font-weight: 900;
}

.message p {
  margin: 0;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  line-height: 1.68;
}

.message-user {
  align-self: flex-end;
}

.message-user span {
  justify-self: end;
}

.message-user p {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
}

.chat-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.chat-form textarea {
  width: 100%;
  min-height: 46px;
  max-height: 132px;
  padding: 12px 4px 10px 8px;
  resize: none;
  border: 0;
  outline: 0;
  color: var(--white);
  background: transparent;
  font: inherit;
  font-weight: 800;
  line-height: 1.5;
}

.chat-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.chat-form button,
#submit-summary {
  min-height: 46px;
  border-radius: 999px;
  font-weight: 900;
}

.chat-form button {
  min-width: 82px;
  color: var(--ink);
  background: var(--white);
}

.submit-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.submit-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.55;
}

#submit-summary {
  padding: 0 18px;
  color: var(--white);
  background: rgba(7, 10, 15, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

#submit-summary:disabled {
  cursor: wait;
  opacity: 0.64;
}

@media (max-width: 1100px) {
  .topbar {
    grid-template-columns: 150px 1fr auto auto;
    gap: 10px;
  }

  .position-grid,
  .method-grid,
  .links-grid,
  .proof-grid,
  .story-head,
  .story-video-grid,
  .ai-double-grid,
  .agent-layout {
    grid-template-columns: 1fr;
  }

  .story-video-card-offset {
    margin-top: 0;
  }

  .offer-grid,
  .building-grid {
    grid-template-columns: 1fr 1fr;
  }

  .building-grid .system-primary {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 420px;
  }

  .method-rail article,
  .proof-list article {
    grid-template-columns: 100px minmax(150px, 0.42fr) minmax(0, 1fr);
  }

  .agent-layout {
    align-items: start;
  }

  .agent-console {
    min-height: 720px;
  }
}

@media (max-width: 760px) {
  :root {
    --anchor-offset: 112px;
  }

  body {
    background:
      radial-gradient(circle at 80% 8%, rgba(183, 210, 241, 0.16), transparent 56vw),
      linear-gradient(90deg, rgba(45, 125, 255, 0.032) 1px, transparent 1px) 0 0 / 72px 100%,
      var(--white);
  }

  .topbar {
    left: 12px;
    right: 12px;
    top: 12px;
    grid-template-columns: 1fr auto auto;
    gap: 8px;
    min-height: 54px;
    padding: 8px 8px 8px 18px;
  }

  .nav {
    display: none;
  }

  .nav-cta {
    min-width: 78px;
    min-height: 40px;
  }

  .language-switch {
    min-height: 40px;
    padding: 3px;
  }

  .language-switch button {
    min-width: 38px;
    min-height: 30px;
    padding: 0 8px;
    font-size: 0.72rem;
  }

  .agent-header {
    align-items: flex-start;
  }

  .agent-header-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .section-shell {
    width: min(100% - 28px, var(--wide));
    padding-block: 78px;
  }

  h2 {
    font-size: clamp(2.45rem, 11.2vw, 3.75rem);
    line-height: 1.08;
  }

  .hero {
    min-height: 92svh;
    align-items: end;
    padding-bottom: 34px;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding-top: 96px;
    text-align: left;
  }

  .hero-kicker {
    min-height: 38px;
    padding-inline: 13px;
    font-size: 0.72rem;
  }

  .ai-signal-layer {
    opacity: 0.36;
    background:
      linear-gradient(90deg, rgba(220, 236, 255, 0.1) 1px, transparent 1px) 0 0 / 34vw 100%,
      linear-gradient(180deg, rgba(220, 236, 255, 0.08) 1px, transparent 1px) 0 0 / 100% 22vh;
  }

  .ai-signal-layer span {
    display: none;
  }

  .hero h1 {
    font-size: clamp(4.25rem, 24vw, 6.4rem);
    gap: 10px;
  }

  .hero h1 span:last-child {
    justify-self: start;
    font-size: clamp(2rem, 9.8vw, 3.25rem);
    line-height: 1.08;
  }

  .mobile-break {
    display: block;
  }

  .hero-lead {
    margin-left: 0;
    font-size: 0.98rem;
    line-height: 1.66;
  }

  .hero-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .button {
    min-width: 0;
    width: 100%;
  }

  .hero-roles {
    justify-content: flex-start;
    margin-left: 0;
  }

  .hero-roles span {
    padding: 12px 14px 12px 0;
    font-size: 0.78rem;
  }

  .identity-board,
  .offer-grid,
  .building-grid {
    grid-template-columns: 1fr;
  }

  .identity-board article,
  .identity-board article:nth-child(2n),
  .identity-board article:nth-child(n + 3) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .identity-board article:last-child {
    border-bottom: 0;
  }

  .offer-grid article {
    min-height: auto;
  }

  .offer-grid article > p {
    min-height: 0;
  }

  .asset-ledger {
    padding-top: 18px;
  }

  .asset-ledger div {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 12px;
    padding: 13px 0;
  }

  .asset-ledger dd {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .asset-cues {
    margin-top: 14px;
    padding-top: 14px;
  }

  .method-grid {
    gap: 38px;
  }

  .story-head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 54px;
  }

  .story-head h2 {
    font-size: clamp(2.35rem, 10.6vw, 3.7rem);
    line-height: 1.08;
  }

  .ai-double .section-shell {
    padding-block: 42px;
  }

  .ai-double-grid {
    gap: 22px;
  }

  .ai-double h2 {
    font-size: clamp(2.22rem, 9.8vw, 3.08rem);
    line-height: 1.08;
  }

  .ai-double .section-copy p {
    margin-top: 14px;
    font-size: clamp(0.98rem, 4vw, 1.06rem);
    line-height: 1.62;
  }

  .ai-double-actions {
    margin-top: 20px;
  }

  .story-head p:last-child {
    font-size: clamp(1.06rem, 4.6vw, 1.16rem);
    line-height: 1.76;
  }

  .story-video-grid {
    gap: 42px;
  }

  .story-videos {
    min-height: 88svh;
  }

  .story-overlay {
    min-height: 88svh;
  }

  .story-evidence,
  .story-proof-line {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .story-evidence {
    padding-top: 18px;
  }

  .story-evidence h3 {
    font-size: clamp(1.85rem, 8vw, 2.45rem);
  }

  .story-evidence p {
    font-size: clamp(1rem, 4.25vw, 1.08rem);
    line-height: 1.72;
  }

  .story-video-card,
  .story-video-grid.reverse .story-video-card {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .story-video-grid.reverse .story-media,
  .story-video-grid.reverse .story-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .story-media,
  .story-video-card-offset .story-media {
    aspect-ratio: 4 / 5;
    border-radius: 22px;
  }

  .story-copy {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .story-copy p {
    grid-column: auto;
  }

  .method-rail article {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 0;
    padding: 22px;
  }

  .ai-double-actions {
    display: grid;
  }

  .ai-double-panel {
    padding: 16px;
    border-radius: 18px;
  }

  .intake-card {
    gap: 14px;
  }

  .intake-card-head {
    display: grid;
    gap: 8px;
  }

  .intake-flow li {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 13px 0;
  }

  .intake-flow h3 {
    font-size: clamp(1.24rem, 5.8vw, 1.58rem);
  }

  .intake-flow p {
    margin-top: 6px;
    font-size: clamp(0.92rem, 3.85vw, 1rem);
    line-height: 1.52;
  }

  .intake-brief {
    padding: 14px;
  }

  .intake-brief strong {
    margin-top: 8px;
    font-size: clamp(1.34rem, 6vw, 1.68rem);
  }

  .intake-brief p {
    margin-top: 6px;
    font-size: 0.92rem;
  }

  .building-grid article,
  .building-grid article:not(:first-child) {
    min-height: auto;
    padding: 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .building-grid .system-primary {
    min-height: 340px;
  }

  .system-os-layer {
    gap: 12px;
    margin-top: 22px;
    padding: 14px;
    border-radius: 16px;
  }

  .system-os-head,
  .system-signal {
    display: grid;
    gap: 6px;
  }

  .system-flow {
    grid-template-columns: 1fr;
  }

  .system-flow span {
    min-height: 54px;
    padding: 10px 12px;
  }

  .asset-cues {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .asset-cues-label {
    font-size: 0.64rem;
  }

  .asset-cue-list {
    min-height: 32px;
    border-radius: 11px;
  }

  .asset-cue-list span {
    gap: 5px;
    font-size: 0.72rem;
  }

  .proof-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .link-list a {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
  }

  .link-list em {
    justify-self: start;
  }

  .closing-scene {
    min-height: 108svh;
  }

  .closing-scene-inner {
    width: calc(100% - 28px);
    margin-inline: auto;
    padding-bottom: 420px;
  }

  .closing-scene h2 {
    font-size: clamp(2.45rem, 11.2vw, 3.75rem);
    line-height: 1.08;
  }

  .closing-scene-inner > p:not(.section-kicker) {
    font-size: clamp(1.04rem, 4.5vw, 1.14rem);
    line-height: 1.72;
  }

  .closing-actions {
    display: grid;
    gap: 12px;
    margin-top: 28px;
  }

  .closing-actions .button,
  .closing-actions .contact-primary {
    width: 100%;
    justify-content: center;
  }

  .contact {
    min-height: 78svh;
  }

  .contact h2 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .contact-actions {
    display: grid;
    justify-items: center;
  }

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

  .agent-hero {
    padding: 16px 14px;
  }

  .agent-layout {
    min-height: 0;
    padding-top: 30px;
  }

  .agent-context {
    padding-bottom: 8px;
  }

  .agent-context h1 {
    font-size: clamp(3.1rem, 15vw, 4.9rem);
  }

  .agent-boundary span {
    border-radius: 18px;
  }

  .agent-console {
    grid-template-rows: auto auto auto auto auto;
    min-height: 680px;
    padding: 14px;
    border-radius: 22px;
  }

  .quick-prompts {
    grid-template-columns: 1fr 1fr;
  }

  .agent-workspace {
    grid-template-columns: 1fr;
  }

  .chat-log {
    min-height: 320px;
    max-height: 48svh;
  }

  .brief-preview {
    max-height: none;
  }

  .message {
    max-width: 94%;
  }

  .chat-form,
  .submit-row {
    grid-template-columns: 1fr;
  }

  .chat-form button,
  #submit-summary {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .hero-video {
    display: none;
  }

  .lazy-story-video {
    display: none;
  }

  .hero-poster {
    z-index: 1;
  }

  .liquid-layer,
  .ai-signal-layer {
    display: none;
  }

  [data-tilt] {
    transform: none !important;
  }

  .ai-double-panel,
  .intake-flow li {
    transform: none !important;
  }
}
