:root {
  color-scheme: dark;
  --bg: #0a0a0a;
  --surface: #171717;
  --surface-2: #2a2e34;
  --line: #464a52;
  --text: #ffffff;
  --muted: #cbd1da;
  --quiet: #7f8896;
  --blue: #3b82f6;
  --blue-bright: #60a5fa;
  --display: "Bitter", Georgia, serif;
  --body: "Onest", Arial, sans-serif;
  --type-caption: .875rem;
  --type-meta: .9375rem;
  --type-body: 1rem;
  --type-lead: 1.125rem;
  --ease-crevix: cubic-bezier(.44, 0, .56, 1);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-hover: cubic-bezier(.16, 1, .3, 1);
  --hover-pause: 90ms;
}

@property --impact-progress {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

* { box-sizing: border-box; }

html { background: var(--bg); }

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

:where(a, button, input):focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 4px;
}

.shell {
  width: min(calc(100% - 60px), 1296px);
  margin-inline: auto;
}

.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;
}

.hero {
  position: relative;
  min-height: max(760px, 100svh);
  overflow: hidden;
  isolation: isolate;
  background: var(--bg);
}

.hero__media,
.hero__wash,
.hero__grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media {
  z-index: -4;
  object-fit: cover;
  object-position: center;
  filter: hue-rotate(-55deg) saturate(.88) brightness(.7) contrast(1.12);
  transform: scale(1.03);
}

.hero__wash {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(6, 8, 14, .96) 0%, rgba(7, 10, 19, .75) 40%, rgba(9, 18, 38, .2) 75%),
    linear-gradient(0deg, rgba(10, 10, 10, .92) 0%, transparent 52%);
}

.hero__grain {
  z-index: -2;
  pointer-events: none;
  opacity: .09;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, .7) 0 .5px, transparent .8px),
    radial-gradient(circle at 70% 65%, rgba(255, 255, 255, .5) 0 .5px, transparent .9px);
  background-size: 5px 5px, 7px 7px;
  mix-blend-mode: soft-light;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  font-size: 28px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -.04em;
}

.hero__brand {
  position: absolute;
  top: 28px;
  left: max(30px, calc((100vw - 1296px) / 2));
  z-index: 3;
  min-height: 44px;
}

.hero__layout {
  min-height: max(760px, 100svh);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  padding-block: 170px 110px;
}

.hero__copy { width: min(980px, 100%); max-width: none; }

.hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(56px, 5vw, 72px);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -.028em;
  text-wrap: balance;
}

.hero__lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(var(--type-lead), 1.35vw, 1.25rem);
  line-height: 1.55;
  letter-spacing: -.02em;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 34px;
}

.js.is-loaded .hero__actions.is-floating {
  position: fixed;
  z-index: 20;
  top: 24px;
  right: max(30px, calc((100vw - 1296px) / 2));
  flex-direction: row;
  align-items: center;
  width: auto;
  margin: 0;
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  transition: opacity 420ms var(--ease-crevix), transform 420ms var(--ease-out);
}

.js.is-loaded .hero__actions.is-floating.is-floating-ready {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hero__actions.is-floating .button { width: auto; }

.button {
  position: relative;
  display: inline-grid;
  place-items: center;
  min-height: 64px;
  padding: 18px 36px;
  overflow: hidden;
  border-radius: 999px;
  color: var(--text);
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  isolation: isolate;
  will-change: transform;
}

.button--primary {
  background: radial-gradient(120% 145% at 50% 125%, var(--blue-bright) 0%, var(--blue) 52%, #3579e5 100%);
}

.button__label { position: relative; z-index: 2; }

.button__glow {
  position: absolute;
  top: 120%;
  left: 50%;
  width: 70%;
  height: 72%;
  translate: -50% -50%;
  border-radius: 50%;
  background: rgba(255, 255, 255, .96);
  filter: blur(10px);
  opacity: .12;
  transition:
    width 430ms var(--ease-hover),
    top 430ms var(--ease-hover),
    filter 430ms var(--ease-hover),
    opacity 360ms var(--ease-crevix);
}

.button--primary:is(:hover, :focus-visible) .button__glow {
  top: 92%;
  width: 84%;
  filter: blur(10px);
  opacity: .88;
  transition-delay: var(--hover-pause);
}

.button--secondary {
  background: #4e4f53;
  transition: transform 500ms var(--ease-hover), background-color 500ms var(--ease-crevix);
}

.button--icon {
  width: 64px;
  min-width: 64px;
  min-height: 64px;
  padding: 0;
}

.button--icon :is(svg, img) {
  position: relative;
  z-index: 2;
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.button--secondary:is(:hover, :focus-visible) {
  animation: button-pulse 520ms var(--ease-hover) var(--hover-pause) both;
}

.button__fill {
  position: absolute;
  inset: 0;
  z-index: -1;
  translate: 0 105%;
  background: var(--blue);
  transition: translate 480ms var(--ease-hover);
}

.button--secondary:is(:hover, :focus-visible) .button__fill {
  translate: 0 0;
  transition-delay: var(--hover-pause);
}

.button__label-stack {
  position: relative;
  display: block;
  height: 21px;
  overflow: hidden;
}

.button__label-stack span {
  display: block;
  height: 21px;
  transition: translate 480ms var(--ease-hover), opacity 360ms var(--ease-crevix);
}

.button__label-stack span:last-child { opacity: 0; }

.button--secondary:is(:hover, :focus-visible) .button__label-stack span {
  translate: 0 -100%;
  transition-delay: calc(var(--hover-pause) + 25ms);
}

.button--secondary:is(:hover, :focus-visible) .button__label-stack span:first-child { opacity: 0; }
.button--secondary:is(:hover, :focus-visible) .button__label-stack span:last-child { opacity: 1; }

.button:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 4px;
}

.section { padding: clamp(90px, 11vw, 160px) 0; }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.section-heading h2 {
  max-width: 980px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(44px, 4.2vw, 60px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -.025em;
}

.section-intro {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.process .section-heading { grid-template-columns: minmax(0, 1fr); }
.process .section-heading h2 { max-width: 100%; font-size: clamp(44px, 3.8vw, 56px); letter-spacing: -.035em; }

.about-heading { max-width: 760px; }
.about-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 4.5vw, 68px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.04em;
}

.about-impact {
  --impact-duration: 7000ms;
  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-template-rows: repeat(3, 212px);
  grid-template-areas:
    "visual identity"
    "visual design"
    "visual strategy";
  gap: 16px;
  margin-top: clamp(64px, 7vw, 96px);
}

.about-impact__visual {
  position: relative;
  grid-area: visual;
  min-width: 0;
  margin: -6px 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--surface);
}

.about-impact__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 620ms var(--ease-crevix), transform 760ms var(--ease-hover);
}

.about-impact__image.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.impact-card {
  --impact-progress: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 20px;
  overflow: visible;
  border: 0;
  border-radius: 18px;
  color: var(--text);
  background: var(--surface);
  font: inherit;
  text-align: left;
  cursor: pointer;
  isolation: isolate;
  transition: transform 480ms var(--ease-hover);
}

.impact-card::before {
  content: "";
  position: absolute;
  inset: -6px;
  z-index: 2;
  padding: 2px;
  border-radius: 24px;
  background: conic-gradient(from -90deg, var(--blue-bright) calc(var(--impact-progress) * 1turn), transparent 0);
  pointer-events: none;
  opacity: .72;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.about-impact.is-running .impact-card.is-active::before {
  opacity: 1;
  animation: impact-card-progress var(--impact-duration) linear forwards;
}

.impact-card:focus-visible { outline: 2px solid var(--text); outline-offset: 10px; }

.impact-card:active {
  transform: scale(.985);
  transition-duration: 120ms;
}

.impact-card--identity { grid-area: identity; }
.impact-card--design { grid-area: design; }
.impact-card--strategy { grid-area: strategy; }
.impact-card > span {
  position: relative;
  z-index: 1;
}

.impact-card__model {
  display: block;
  color: var(--text);
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -.025em;
  transition: color 360ms var(--ease-crevix);
}

.impact-card.is-active .impact-card__model { color: var(--blue-bright); }

.impact-card__copy {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.impact-card__title {
  display: block;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.025em;
}

.impact-card__description {
  display: block;
  max-width: 260px;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.55;
}

@keyframes impact-card-progress {
  to { --impact-progress: 1; }
}

.showreel { padding: 0; }

.voice-showcase__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  align-items: end;
  gap: 72px;
  margin-bottom: clamp(46px, 5vw, 72px);
}

.voice-showcase__heading h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(46px, 4.5vw, 68px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.035em;
}

.voice-showcase__heading p {
  max-width: 430px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.showreel__stage {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(96, 165, 250, .16);
  background:
    radial-gradient(circle at 78% 14%, rgba(59, 130, 246, .16), transparent 34%),
    #111318;
  transform-origin: 50% 100%;
  will-change: transform;
}

.voice-showcase {
  display: grid;
  grid-template-columns: minmax(260px, 330px) minmax(0, 1fr);
}

.voice-showcase__tabs {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  border-right: 1px solid rgba(203, 209, 218, .14);
}

.voice-showcase__tab {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-content: center;
  gap: 18px;
  padding: 30px 28px;
  border: 0;
  border-bottom: 1px solid rgba(203, 209, 218, .14);
  color: var(--muted);
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 360ms var(--ease-crevix), background-color 360ms var(--ease-crevix);
}

.voice-showcase__tab:last-child { border-bottom: 0; }
.voice-showcase__tab:is(:hover, :focus-visible) { color: var(--text); }
.voice-showcase__tab:focus-visible { z-index: 1; outline: 2px solid var(--blue-bright); outline-offset: -3px; }
.voice-showcase__tab.is-active { color: var(--text); background: rgba(59, 130, 246, .1); }

.voice-showcase__tab-index { color: var(--blue-bright); font-size: 12px; line-height: 1.45; }
.voice-showcase__tab > span:last-child { display: grid; gap: 12px; }
.voice-showcase__tab strong { color: inherit; font-size: 18px; font-weight: 500; line-height: 1.2; }
.voice-showcase__tab small { max-width: 220px; color: var(--quiet); font-size: 12px; line-height: 1.5; }

.voice-showcase__panels { min-width: 0; }

.voice-sample {
  min-height: 718px;
  padding: clamp(32px, 4vw, 54px);
}

.voice-sample[hidden] { display: none; }

.voice-sample__topline {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--blue-bright);
  font-size: 13px;
}

.voice-sample__identity { margin-top: 32px; }

.voice-sample__identity h3 {
  max-width: 720px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.voice-sample__identity p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.voice-sample__wave {
  height: 190px;
  margin-top: 28px;
  overflow: hidden;
  opacity: .9;
}

.voice-sample__wave svg { display: block; width: 100%; height: 100%; }
.voice-sample__wave path { fill: none; stroke: var(--blue-bright); stroke-width: 2; vector-effect: non-scaling-stroke; }

.voice-sample__player {
  display: grid;
  grid-template-columns: 46px auto minmax(60px, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  min-height: 48px;
}

.voice-sample__player button {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--text);
  opacity: .52;
}

.voice-sample__player button span {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid var(--bg);
}

.voice-sample__player > span { color: var(--muted); font-size: 11px; font-variant-numeric: tabular-nums; }
.voice-sample__player i { height: 2px; border-radius: 2px; background: rgba(203, 209, 218, .22); }
.voice-sample__player small { color: var(--quiet); font-size: 11px; white-space: nowrap; }

.voice-sample__prompt {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 28px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(203, 209, 218, .14);
}

.voice-sample__prompt p { margin: 3px 0 0; color: var(--quiet); font-size: 12px; }
.voice-sample__prompt blockquote { max-width: 720px; margin: 0; font-size: 17px; line-height: 1.62; }
.voice-sample__prompt blockquote span { color: var(--blue-bright); }

.voice-chat__heading {
  display: block;
  margin-bottom: clamp(46px, 5vw, 72px);
}

.voice-chat__heading h2 {
  max-width: 720px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(46px, 4.5vw, 68px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.035em;
}

.voice-chat__heading p {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.voice-chat.showreel__stage {
  display: block;
  min-height: 0;
  padding: clamp(24px, 3.5vw, 48px) 0 0;
  border: 0;
  background: transparent;
}

.voice-chat__thread {
  display: flex;
  flex-direction: column;
  gap: 34px;
  width: min(970px, 100%);
  margin-inline: auto;
}

.voice-chat__row {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  width: 100%;
}

.voice-chat__row--user { justify-content: flex-end; }
.voice-chat__row--assistant { justify-content: flex-start; }

.voice-chat__message {
  padding: clamp(24px, 3vw, 34px);
  border-radius: 18px;
}

.voice-chat__message--user {
  width: min(760px, 84%);
  background: #181818;
}

.voice-chat__message--assistant {
  width: 100%;
  border: 1px solid rgba(203, 209, 218, .13);
  background: #181818;
}

.voice-chat__assistant-stack { width: min(780px, 86%); }

.voice-chat__avatar,
.voice-chat__mini-avatar {
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(203, 209, 218, .22);
  border-radius: 50%;
  background: #262626;
}

.voice-chat__avatar { width: 48px; height: 48px; }
.voice-chat__mini-avatar { width: 19px; height: 19px; }

.voice-chat__avatar::before,
.voice-chat__mini-avatar::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 21%;
  width: 30%;
  aspect-ratio: 1;
  translate: -50% 0;
  border-radius: 50%;
  background: #aeb3bb;
}

.voice-chat__avatar::after,
.voice-chat__mini-avatar::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8%;
  width: 66%;
  height: 48%;
  translate: -50% 0;
  border-radius: 50% 50% 0 0;
  background: #aeb3bb;
}

.voice-chat__message blockquote {
  max-width: 680px;
  margin: 0;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.52;
}

.voice-chat__message blockquote span { color: var(--blue-bright); }

.voice-chat__settings {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  color: var(--muted);
  font-size: var(--type-meta);
}

.voice-chat__setting {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.voice-chat__voice-picker {
  position: relative;
  z-index: 3;
}

.voice-chat__voice-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 6px 12px 6px 7px;
  border: 1px solid color-mix(in oklch, var(--blue-bright) 58%, transparent);
  border-radius: 999px;
  background: color-mix(in oklch, var(--blue) 10%, transparent);
  box-shadow:
    inset 0 0 0 1px color-mix(in oklch, var(--blue-bright) 8%, transparent),
    0 0 18px color-mix(in oklch, var(--blue) 18%, transparent);
  color: var(--text);
  font: inherit;
  cursor: pointer;
  transition:
    color 240ms var(--ease-crevix),
    border-color 240ms var(--ease-crevix),
    background-color 240ms var(--ease-crevix),
    box-shadow 320ms var(--ease-out),
    transform 240ms var(--ease-out);
}

.voice-chat__voice-trigger:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 3px;
}

.voice-chat__voice-trigger:is(:hover, :focus-visible),
.voice-chat__voice-trigger[aria-expanded="true"] {
  border-color: var(--blue-bright);
  background: color-mix(in oklch, var(--blue) 18%, transparent);
  box-shadow:
    inset 0 0 0 1px color-mix(in oklch, var(--blue-bright) 16%, transparent),
    0 0 24px color-mix(in oklch, var(--blue-bright) 32%, transparent);
  color: var(--blue-bright);
  transform: translateY(-1px);
}

.voice-chat__voice-trigger:active { transform: translateY(0); }

.voice-chat__voice-menu {
  position: absolute;
  left: -11px;
  bottom: calc(100% + 18px);
  display: grid;
  width: min(290px, calc(100vw - 64px));
  padding: 8px;
  border: 1px solid var(--blue-bright);
  border-radius: 14px;
  background: #17191d;
  box-shadow: 0 0 0 1px rgba(96, 165, 250, .12), 0 16px 44px rgba(9, 36, 76, .42), 0 0 28px rgba(59, 130, 246, .16);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--voice-menu-shift, 0px), 8px, 0) scale(.98);
  transform-origin: 20% 100%;
  transition: opacity 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.voice-chat__voice-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(var(--voice-menu-shift, 0px), 0, 0) scale(1);
  animation: voice-menu-glow 1.5s var(--ease-out) both;
}

.voice-chat__voice-option {
  position: relative;
  display: grid;
  gap: 3px;
  width: 100%;
  padding: 12px 34px 12px 12px;
  border: 0;
  border-bottom: 1px solid rgba(203, 209, 218, .12);
  background: transparent;
  color: var(--muted);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 180ms var(--ease-crevix);
}

.voice-chat__voice-option:last-child { border-bottom: 0; }
.voice-chat__voice-option:is(:hover, :focus-visible) { color: var(--text); }
.voice-chat__voice-option:focus-visible { outline: 1px solid var(--blue-bright); outline-offset: -1px; }
.voice-chat__voice-option.is-active { color: var(--blue-bright); }

.voice-chat__voice-option.is-active::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 12px rgba(96, 165, 250, .72);
  transform: translateY(-50%);
}

.voice-chat__voice-option span { font-size: var(--type-body); line-height: 1.3; }
.voice-chat__voice-option small { color: var(--quiet); font-size: var(--type-caption); line-height: 1.35; }

.voice-chat__flag {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  overflow: hidden;
  border: 1px solid rgba(203, 209, 218, .22);
  border-radius: 50%;
  background: linear-gradient(to bottom, #f4f4f5 0 33.333%, #3157c8 33.333% 66.666%, #cf3448 66.666% 100%);
}

.voice-chat__audio {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto minmax(100px, 132px);
  align-items: center;
  gap: 18px;
  margin-top: 0;
}

.voice-chat__audio button {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--text);
  opacity: .94;
  cursor: pointer;
}

.voice-chat__audio button span {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid var(--bg);
}

.voice-chat__audio button.is-playing span {
  width: 9px;
  height: 13px;
  margin-left: 0;
  border: 0;
  border-right: 3px solid var(--bg);
  border-left: 3px solid var(--bg);
}

.voice-chat__audio button:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 4px;
}

.voice-chat__wave { display: block; width: 100%; height: 64px; }
.voice-chat__audio time { color: var(--muted); font-size: var(--type-caption); font-variant-numeric: tabular-nums; }
.voice-chat__audio audio { display: none; }

.voice-chat__volume { display: flex; align-items: center; min-width: 0; }

.voice-chat__volume input {
  --volume-level: 85%;
  width: 100%;
  height: 44px;
  margin: 0;
  appearance: none;
  background: transparent;
  cursor: pointer;
}

.voice-chat__volume input::-webkit-slider-runnable-track {
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--blue-bright) 0 var(--volume-level), rgba(203, 209, 218, .24) var(--volume-level) 100%);
}

.voice-chat__volume input::-webkit-slider-thumb {
  width: 13px;
  height: 13px;
  margin-top: -5px;
  appearance: none;
  border: 2px solid #17191d;
  border-radius: 50%;
  background: var(--text);
  box-shadow: 0 0 0 1px var(--blue-bright);
}

.voice-chat__volume input::-moz-range-track { height: 3px; border-radius: 999px; background: rgba(203, 209, 218, .24); }
.voice-chat__volume input::-moz-range-progress { height: 3px; border-radius: 999px; background: var(--blue-bright); }
.voice-chat__volume input::-moz-range-thumb { width: 11px; height: 11px; border: 2px solid #17191d; border-radius: 50%; background: var(--text); }
.voice-chat__volume input:focus-visible { outline: 2px solid var(--blue-bright); outline-offset: 5px; }

.voice-chat__model-note {
  margin: 10px 0 0;
  color: var(--quiet);
  font-size: var(--type-caption);
  line-height: 1.45;
}

@keyframes voice-menu-glow {
  0% { box-shadow: 0 0 0 1px rgba(96, 165, 250, .08), 0 12px 32px rgba(9, 36, 76, .28), 0 0 0 rgba(59, 130, 246, 0); }
  48% { box-shadow: 0 0 0 1px rgba(96, 165, 250, .18), 0 16px 44px rgba(9, 36, 76, .42), 0 0 32px rgba(59, 130, 246, .28); }
  100% { box-shadow: 0 0 0 1px rgba(96, 165, 250, .12), 0 16px 44px rgba(9, 36, 76, .42), 0 0 20px rgba(59, 130, 246, .16); }
}

.benefits-heading { max-width: 1060px; }

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: clamp(70px, 9vw, 116px);
}

.benefit-card {
  display: grid;
  grid-template-columns: minmax(0, 56%) minmax(0, 44%);
  min-height: 450px;
  overflow: hidden;
  border: 1px solid rgba(183, 189, 200, .16);
  border-radius: 18px;
  background: var(--surface);
}

.benefit-card__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  padding: 30px 24px 28px;
}

.benefit-card h3 { margin: 0; font-family: var(--display); font-size: clamp(26px, 2vw, 34px); font-weight: 400; line-height: 1.04; letter-spacing: -.04em; }
.benefit-card p { margin: 20px 0 0; color: var(--muted); font-size: var(--type-body); line-height: 1.6; }
.benefit-card__media { position: relative; min-width: 0; margin: 0; overflow: hidden; }
.benefit-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(23, 23, 23, .38), transparent 48%); pointer-events: none; }
.benefit-card__media img { display: block; width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.06) brightness(.82); }

.projects { padding-top: clamp(110px, 14vw, 200px); }

.project-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 52px;
}

.project-heading h2 { margin: 0; font-family: var(--display); font-size: clamp(46px, 4.2vw, 60px); font-weight: 400; line-height: 1.06; letter-spacing: -.025em; }
.project-heading > div > p { max-width: 636px; margin: 24px 0 0; color: var(--muted); font-size: 18px; line-height: 1.5; }

.button--compact { min-height: 54px; padding-inline: 28px; white-space: nowrap; }

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px 24px;
  margin-top: clamp(70px, 8vw, 110px);
}

.project-card { color: var(--text); text-decoration: none; }
.project-card--wide { grid-column: span 2; }

.project-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1.04;
  overflow: hidden;
  border-radius: 18px;
  background: var(--surface);
}

.project-card--wide .project-card__media { aspect-ratio: 2.14; }

.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 620ms var(--ease-hover), filter 520ms var(--ease-crevix);
}

.project-card__shade {
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  opacity: 0;
  translate: 0 100%;
  background: linear-gradient(0deg, rgba(59, 130, 246, .88), rgba(96, 165, 250, .48) 46%, transparent 100%);
  pointer-events: none;
  transition: translate 580ms var(--ease-hover), opacity 500ms var(--ease-crevix);
}

.project-card:hover .project-card__media img {
  transform: scale(1.05);
  transition-delay: var(--hover-pause);
}
.project-card:hover .project-card__shade {
  translate: 0 0;
  opacity: .82;
  transition-delay: var(--hover-pause);
}

.project-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  font-size: 18px;
}

.project-card__meta strong { font-weight: 600; }
.project-card__meta i { margin-right: 10px; color: var(--muted); font-size: 13px; font-style: normal; }
.project-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  transition: color 440ms var(--ease-crevix);
}

.project-card:hover .project-card__link {
  color: var(--blue-bright);
  transition-delay: calc(var(--hover-pause) + 35ms);
}

.project-card__arrow {
  position: relative;
  display: inline-grid;
  width: 1.05em;
  height: 1.05em;
  overflow: hidden;
  line-height: 1;
}

.project-card__arrow b {
  grid-area: 1 / 1;
  font-weight: 400;
  transition: transform 1120ms var(--ease-hover);
}

.project-card__arrow b:last-child { transform: translate(-110%, 110%); }

.project-card:hover .project-card__arrow b {
  transform: translate(110%, -110%);
  transition-delay: calc(var(--hover-pause) + 45ms);
}

.project-card:hover .project-card__arrow b:last-child { transform: translate(0, 0); }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: clamp(70px, 8vw, 110px); }

.process-card {
  position: relative;
  min-height: 450px;
  padding: 28px 24px;
  overflow: hidden;
  border-radius: 16px;
  color: #10131a;
  background: #f1f2f8;
  transition: transform 560ms var(--ease-hover), background-color 560ms var(--ease-hover);
}

.process-card:hover { transform: translateY(-5px); background: #e8efff; transition-delay: var(--hover-pause); }
.process-card > p { margin: 0 0 18px; color: var(--blue-bright); font-size: 15px; }
.process-card h3 { max-width: 355px; margin: 0; font-family: var(--display); font-size: 32px; font-weight: 400; line-height: 1.28; letter-spacing: -.025em; }
.process-card > span { position: absolute; right: 24px; bottom: 18px; color: #c9cbd2; font-family: var(--display); font-size: 76px; line-height: 1; }

.testimonials { width: 100%; overflow: hidden; }

.testimonials > .shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 265px;
  align-items: start;
  gap: 64px;
}

.testimonials .section-heading { display: block; }
.testimonials .section-heading h2 { max-width: 560px; }

.rating-block {
  display: grid;
  align-items: start;
  gap: 26px;
  margin: 0;
  padding: 0;
  border: 0;
}

.rating-block > div { display: flex; align-items: end; gap: 12px; }
.rating-block strong { color: var(--blue); font-family: var(--display); font-size: 64px; font-weight: 400; line-height: 1; letter-spacing: -.025em; }
.rating-block span { color: var(--blue-bright); font-size: 30px; }
.rating-block p { max-width: 440px; margin: 0; color: var(--muted); font-size: var(--type-body); line-height: 1.6; }

.testimonial-viewport {
  width: min(calc(100% - 60px), 1296px);
  margin: 100px auto 0;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.testimonial-viewport.is-dragging { cursor: grabbing; }

.testimonial-track {
  display: flex;
  gap: 22px;
  width: max-content;
  transition: transform 720ms var(--ease-out);
}

.testimonial-viewport.is-dragging .testimonial-track { transition: none; }

.quote-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 min(416px, calc(100vw - 48px));
  width: min(416px, calc(100vw - 48px));
  min-height: 532px;
  overflow: hidden;
  border-radius: 18px;
  color: #10131a;
  background: #f7f7f4;
}

.quote-card::before {
  content: "”";
  align-self: flex-end;
  height: 108px;
  margin: 18px 24px 0 0;
  color: var(--blue);
  font-family: Georgia, serif;
  font-size: 126px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -30px;
  transform: translateX(-12px);
}
.quote-card blockquote { margin: 28px 24px 34px; font-family: var(--body); font-size: 20px; line-height: 1.5; letter-spacing: 0; }
.quote-card footer { display: flex; align-items: center; gap: 14px; min-height: 96px; margin-top: auto; padding: 18px 24px 24px; background: transparent; }
.quote-card__source-icon { display: grid; place-items: center; flex: 0 0 48px; width: 48px; height: 48px; border-radius: 50%; color: #f7f7f4; background: #10131a; }
.quote-card__source-icon img { width: 20px; height: 20px; }
.quote-card__source-icon:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
.quote-card footer span { display: grid; gap: 3px; }
.quote-card footer strong { font-size: var(--type-body); }
.quote-card footer small { color: #596273; font-size: var(--type-caption); }
.quote-card img { -webkit-user-drag: none; user-select: none; }

.testimonial-controls { display: flex; align-items: center; justify-content: center; margin-top: 28px; }
.testimonial-dots { display: flex; gap: 8px; }
.testimonial-dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--line); }
.testimonial-dots .is-active { background: var(--blue-bright); }

.closing-cta {
  position: relative;
  width: 100%;
  min-height: max(700px, 100svh);
  padding: 0;
  overflow: hidden;
}

.closing-cta__media,
.closing-cta__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.closing-cta__media { object-fit: cover; object-position: center 48%; }

.closing-cta__shade {
  background: rgba(10, 10, 10, .5);
}

.closing-cta__shell {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
  min-height: max(700px, 100svh);
  padding-block: 72px;
  text-align: center;
}

.closing-cta__shell h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(60px, 5.6vw, 86px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.04em;
  text-shadow: 0 2px 24px rgba(10, 10, 10, .42);
}

.closing-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.closing-cta__actions .button { min-height: 64px; white-space: nowrap; }

.journal { padding-bottom: 120px; }

.journal-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 24px; margin-top: clamp(70px, 8vw, 105px); }
.journal-feature, .journal-row { color: var(--text); text-decoration: none; }
.journal-media, .journal-thumb { position: relative; display: block; overflow: hidden; border-radius: 16px; background: var(--surface); }
.journal-media { aspect-ratio: 1.62; }
.journal-media img, .journal-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 620ms var(--ease-hover), filter 520ms var(--ease-crevix); }
.journal-media::after, .journal-thumb::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  opacity: 0;
  translate: 0 100%;
  background: linear-gradient(0deg, rgba(59, 130, 246, .88), rgba(96, 165, 250, .48) 46%, transparent 100%);
  mix-blend-mode: color;
  pointer-events: none;
  transition: translate 580ms var(--ease-hover), opacity 500ms var(--ease-crevix);
}
.journal-feature:is(:hover, :focus-visible) .journal-media img,
.journal-row:is(:hover, :focus-visible) .journal-thumb img { transform: scale(1.05); filter: saturate(1.12); transition-delay: var(--hover-pause); }
.journal-feature:is(:hover, :focus-visible) .journal-media::after,
.journal-row:is(:hover, :focus-visible) .journal-thumb::after { translate: 0 0; opacity: .82; transition-delay: var(--hover-pause); }
.journal-kicker { display: flex; justify-content: space-between; margin-top: 18px; color: var(--muted); font-size: 12px; }
.journal-feature h3 { margin: 22px 0 14px; color: var(--blue-bright); font-family: var(--display); font-size: clamp(32px, 3.2vw, 48px); font-weight: 400; line-height: 1.06; letter-spacing: -.04em; }
.journal-feature > p, .journal-row p { margin: 0; color: var(--muted); line-height: 1.55; }
.journal-list { display: grid; gap: 18px; }
.journal-row { display: grid; grid-template-columns: 190px 1fr; align-items: center; gap: 22px; padding-bottom: 18px; border-bottom: 1px solid rgba(183, 189, 200, .18); }
.journal-thumb { height: 150px; }
.journal-row small { color: var(--muted); }
.journal-row h3 { margin: 12px 0 10px; font-family: var(--display); font-size: clamp(22px, 2vw, 30px); font-weight: 400; line-height: 1.12; letter-spacing: -.03em; transition: color 440ms var(--ease-crevix); }
.journal-row:is(:hover, :focus-visible) h3 { color: var(--blue-bright); transition-delay: calc(var(--hover-pause) + 35ms); }
.journal-row p { font-size: 13px; }

.js [data-load] {
  opacity: 0;
  translate: 0 30px;
}

.js.is-loaded [data-load] {
  opacity: 1;
  translate: 0 0;
  transition: opacity 600ms var(--ease-crevix), translate 600ms var(--ease-crevix);
}

.js.is-loaded [data-load="brand"] { transition-delay: 250ms; }
.js.is-loaded [data-load="title"] { transition-delay: 800ms; }
.js.is-loaded [data-load="copy"] { transition-delay: 920ms; }
.js.is-loaded [data-load="actions"] { transition-delay: 1060ms; }
.js [data-reveal] {
  opacity: 0;
  translate: 0 26px;
  transition: opacity 650ms var(--ease-crevix), translate 650ms var(--ease-crevix);
}

.js [data-reveal].is-visible { opacity: 1; translate: none; }

@keyframes button-pulse {
  0%, 18%, 100% { transform: scale(1); }
  58% { transform: scale(1.03); }
}

@media (max-width: 900px) {
  .hero__layout { grid-template-columns: 1fr; align-content: end; gap: 50px; }
  .hero__copy { width: 100%; }
  .section-heading, .process .section-heading { grid-template-columns: 1fr; gap: 28px; }
  .process .section-heading h2 { width: auto; max-width: 100%; }
  .project-heading { grid-template-columns: 1fr; align-items: start; }
  .project-heading .button { justify-self: start; }
  .about-impact {
    grid-template-columns: 1fr;
    grid-template-rows: 540px repeat(3, 240px);
    grid-template-areas:
      "visual"
      "identity"
      "design"
      "strategy";
  }
  .about-impact__visual { margin-block: 0; }
  .impact-card { min-height: 240px; }
  .voice-showcase__heading { grid-template-columns: 1fr; gap: 24px; }
  .voice-showcase__heading p { max-width: 640px; }
  .voice-showcase { grid-template-columns: 1fr; }
  .voice-showcase__tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: 1fr;
    border-right: 0;
    border-bottom: 1px solid rgba(203, 209, 218, .14);
  }
  .voice-showcase__tab { grid-template-columns: 1fr; gap: 12px; min-height: 150px; border-right: 1px solid rgba(203, 209, 218, .14); border-bottom: 0; }
  .voice-showcase__tab:last-child { border-right: 0; }
  .voice-sample { min-height: 640px; }
  .voice-chat__heading { grid-template-columns: 1fr; gap: 24px; }
  .voice-chat.showreel__stage { min-height: 0; padding: 40px 0 0; }
  .voice-chat__message--user { width: 88%; }
  .voice-chat__assistant-stack { width: 94%; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: 360px; grid-template-columns: minmax(0, 52%) minmax(0, 48%); }
  .benefit-card__copy { padding: 30px; }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .project-card--wide { grid-column: span 2; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { min-height: 450px; }
  .testimonials > .shell { grid-template-columns: 1fr; gap: 54px; }
  .rating-block { align-items: flex-start; }
  .closing-cta__shell { gap: 36px; }
  .journal-grid { grid-template-columns: 1fr; gap: 56px; }
}

@media (max-width: 620px) {
  .shell { width: min(calc(100% - 36px), 1296px); }
  .hero { min-height: 820px; }
  .hero__brand { left: 18px; top: 20px; }
  .hero__layout { min-height: 820px; padding-block: 130px 54px; }
  .hero h1 { font-size: clamp(45px, 13.5vw, 60px); line-height: .97; }
  .hero h1 br { display: none; }
  .hero__lead { margin-top: 22px; }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .js.is-loaded .hero__actions.is-floating { top: 14px; right: 18px; flex-direction: row; gap: 10px; }
  .hero__actions.is-floating .button { min-height: 56px; padding: 14px 28px; }
  .hero__actions.is-floating .button--icon { width: 56px; min-width: 56px; padding: 0; }
  .button { width: 100%; }
  .button.button--icon { width: 64px; align-self: flex-start; }
  .about-heading h2 { font-size: clamp(42px, 12vw, 56px); }
  .about-impact {
    grid-template-columns: 1fr;
    grid-template-rows: 500px repeat(3, auto);
    grid-template-areas: "visual" "identity" "design" "strategy";
  }
  .impact-card { min-height: 240px; }
  .voice-showcase__heading h2 { font-size: clamp(42px, 12vw, 56px); }
  .voice-showcase__heading p { font-size: 16px; }
  .showreel__stage { width: 100%; min-height: 0; border-radius: 16px; }
  .voice-showcase__tabs { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .voice-showcase__tabs::-webkit-scrollbar { display: none; }
  .voice-showcase__tab { flex: 0 0 78%; min-height: 132px; padding: 24px 20px; scroll-snap-align: start; }
  .voice-showcase__tab > span:last-child { gap: 8px; }
  .voice-sample { min-height: 590px; padding: 28px 22px 30px; }
  .voice-sample__identity { margin-top: 24px; }
  .voice-sample__identity h3 { font-size: 36px; }
  .voice-sample__identity p { font-size: 12px; }
  .voice-sample__wave { height: 118px; margin-top: 22px; }
  .voice-sample__player { grid-template-columns: 42px auto minmax(40px, 1fr) auto; gap: 10px; }
  .voice-sample__player button { width: 42px; height: 42px; }
  .voice-sample__player small { grid-column: 1 / -1; margin-top: 4px; }
  .voice-sample__prompt { grid-template-columns: 1fr; gap: 12px; margin-top: 26px; padding-top: 22px; }
  .voice-sample__prompt blockquote { font-size: 15px; }
  .voice-chat__heading h2 { font-size: clamp(42px, 12vw, 56px); }
  .voice-chat__heading p { margin-top: 20px; font-size: var(--type-lead); }
  .voice-chat.showreel__stage { min-height: 0; padding: 18px 0 0; }
  .voice-chat__thread { gap: 18px; }
  .voice-chat__row { gap: 10px; }
  .voice-chat__row .voice-chat__message { flex: 1 1 auto; width: auto; min-width: 0; padding: 22px 20px; border-radius: 16px; }
  .voice-chat__assistant-stack { flex: 1 1 auto; width: auto; min-width: 0; }
  .voice-chat__assistant-stack .voice-chat__message { width: 100%; }
  .voice-chat__avatar { width: 38px; height: 38px; }
  .voice-chat__message blockquote { font-size: var(--type-lead); }
  .voice-chat__settings { margin-top: 22px; }
  .voice-chat__settings { flex-wrap: wrap; row-gap: 10px; }
  .voice-chat__voice-menu { left: auto; right: -8px; transform-origin: 80% 100%; }
  .voice-chat__audio { grid-template-columns: 44px minmax(0, 1fr) auto; gap: 12px; margin-top: 0; }
  .voice-chat__audio button { width: 44px; height: 44px; }
  .voice-chat__wave { height: 54px; }
  .voice-chat__volume { grid-column: 2 / -1; }
  .benefit-grid { margin-top: 54px; gap: 16px; }
  .benefit-card { min-height: 390px; grid-template-columns: minmax(0, 58%) minmax(0, 42%); border-radius: 16px; }
  .benefit-card__copy { padding: 24px 18px 22px; }
  .benefit-card h3 { font-size: 27px; }
  .benefit-card p { margin-top: 16px; font-size: var(--type-body); }
  .project-grid { grid-template-columns: 1fr; }
  .project-card--wide { grid-column: auto; }
  .project-card--wide .project-card__media, .project-card__media { aspect-ratio: 1.08; }
  .project-card__meta { align-items: flex-start; }
  .process-card { min-height: 410px; }
  .process-card h3 { font-size: 28px; }
  .rating-block { margin-top: 54px; }
  .testimonial-viewport { width: calc(100% - 36px); }
  .quote-card { min-height: 460px; }
  .quote-card::before { height: 92px; font-size: 112px; }
  .quote-card blockquote { margin-top: 16px; font-size: 18px; line-height: 1.5; }
  .closing-cta__media { object-position: 58% center; }
  .closing-cta__shell { min-height: max(700px, 100svh); padding-block: 54px; }
  .closing-cta__shell h2 { font-size: clamp(48px, 13vw, 64px); }
  .closing-cta__actions { width: 100%; }
  .closing-cta__actions .button--primary { flex: 1 1 auto; width: auto; }
  .closing-cta__actions .button--icon { flex: 0 0 64px; width: 64px; }
  .journal-row { grid-template-columns: 112px 1fr; gap: 16px; }
  .journal-thumb { height: 126px; }
  .journal-row p { display: none; }
}

@media (min-width: 901px) {
  html:not(.has-section-scroll),
  html:not(.has-section-scroll) body {
    scroll-snap-type: y mandatory;
  }

  main > section {
    height: max(900px, 100svh);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  main > .section,
  main > .showreel {
    display: flex;
    align-items: center;
  }

  main > .testimonials {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
  }

  main > .section { padding: clamp(56px, 7vh, 78px) 0; }
  main > .closing-cta { padding: 0; }
}
