@font-face {
  font-family: "Wix Madefor Text";
  src: url("assets/wix-madefor-text.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "Wix Madefor Display";
  src: url("assets/wix-madefor-display.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

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

:root {
  color-scheme: light;
  --background: #f4f8fb;
  --surface: #fbfdff;
  --surface-elevated: #ffffff;
  --surface-soft: #eaf2f8;
  --surface-strong: #dce9f2;
  --ink: #101a28;
  --ink-soft: #4f5e70;
  --muted: #5f6d7d;
  --line: #d7e2ea;
  --line-strong: #bdcdd9;
  --accent: #0868f2;
  --accent-dark: #0453c7;
  --accent-soft: #dbeaff;
  --navy: #0c1725;
  --navy-soft: #13243a;
  --success: #08794c;
  --danger: #b42318;
  --shadow: 0 28px 70px rgb(28 56 80 / 0.13);
  --shadow-small: 0 14px 40px rgb(28 56 80 / 0.1);
  --radius: 22px;
  --radius-small: 14px;
  --max-width: 1240px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --layer-nav: 50;
  --layer-menu: 45;
  --layer-modal: 100;
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --background: #09111c;
    --surface: #0d1826;
    --surface-elevated: #122034;
    --surface-soft: #132238;
    --surface-strong: #1a2d47;
    --ink: #eef5fb;
    --ink-soft: #b4c1cf;
    --muted: #91a0b0;
    --line: #253750;
    --line-strong: #38506d;
    --accent: #4f91ff;
    --accent-dark: #80afff;
    --accent-soft: #193762;
    --navy: #070e17;
    --navy-soft: #0d1b2e;
    --success: #5bd19c;
    --danger: #ff8f86;
    --shadow: 0 28px 70px rgb(0 0 0 / 0.32);
    --shadow-small: 0 14px 40px rgb(0 0 0 / 0.24);
  }
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--ink);
  font-family: "Wix Madefor Text", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

a {
  color: inherit;
}

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

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

::selection {
  background: var(--accent);
  color: #f7fbff;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: calc(var(--layer-modal) + 1);
  transform: translateY(-160%);
  border-radius: 999px;
  padding: 0.8rem 1rem;
  background: var(--accent);
  color: #f7fbff;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease;
}

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

.container {
  width: min(var(--max-width), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding-block: clamp(90px, 10vw, 150px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--layer-nav);
  padding: 18px 18px 0;
  pointer-events: none;
  transition: transform 400ms var(--ease), opacity 260ms ease;
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 20px));
  opacity: 0;
}

.nav-shell {
  width: min(1060px, 100%);
  min-height: 70px;
  margin: 0 auto;
  padding: 9px 10px 9px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid color-mix(in srgb, var(--line-strong) 78%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface-elevated) 90%, transparent);
  box-shadow: var(--shadow-small);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.045em;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 36px;
  border-radius: 12px;
  background: var(--accent);
  color: #f7fbff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.08em;
  box-shadow: 0 12px 24px color-mix(in srgb, var(--accent) 26%, transparent);
}

.brand-accent {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 3px;
}

.nav-links a {
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--surface-soft);
  color: var(--ink);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button:active {
  transform: translateY(1px) scale(0.98);
}

.button-primary {
  background: var(--accent);
  color: #f7fbff;
  box-shadow: 0 14px 30px color-mix(in srgb, var(--accent) 28%, transparent);
}

.button-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 18px 38px color-mix(in srgb, var(--accent) 34%, transparent);
}

.button-dark {
  min-height: 46px;
  background: var(--navy);
  color: #f7fbff;
  box-shadow: 0 12px 26px rgb(8 20 34 / 0.18);
}

.button-dark:hover {
  background: var(--accent);
}

.button-secondary {
  border-color: var(--line-strong);
  background: color-mix(in srgb, var(--surface-elevated) 82%, transparent);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--accent);
  background: var(--surface-elevated);
}

.button-light {
  background: #eff6ff;
  color: #0b2342;
  box-shadow: 0 16px 34px rgb(0 0 0 / 0.2);
}

.button-light:hover {
  background: #dbeaff;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 220ms var(--ease);
}

.menu-toggle span:first-child {
  transform: translateY(-3px);
}

.menu-toggle span:last-child {
  transform: translateY(3px);
}

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

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

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: var(--layer-menu);
  padding: 108px 18px 18px;
  background: color-mix(in srgb, var(--background) 94%, transparent);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu-inner {
  height: 100%;
  display: grid;
  align-content: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--surface-elevated);
  box-shadow: var(--shadow);
}

.mobile-menu-inner > a:not(.button) {
  padding: 10px 0;
  color: var(--ink);
  font-size: clamp(28px, 9vw, 46px);
  font-weight: 750;
  letter-spacing: -0.05em;
  line-height: 1.05;
  text-decoration: none;
}

.mobile-menu-inner .button {
  margin-top: 22px;
}

.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 104px 0 34px;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero-wash {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--background) 98%, transparent) 0%, color-mix(in srgb, var(--background) 91%, transparent) 43%, color-mix(in srgb, var(--background) 40%, transparent) 70%, color-mix(in srgb, var(--background) 22%, transparent) 100%),
    linear-gradient(0deg, var(--background) 0%, transparent 24%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: clamp(40px, 6vw, 92px);
}

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

.eyebrow {
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 26px;
  color: var(--ink);
  font-size: clamp(52px, 5.25vw, 78px);
  font-weight: 790;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero h1 span {
  display: block;
  color: var(--accent);
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 540;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof-card {
  align-self: end;
  margin-bottom: 8vh;
  border: 1px solid color-mix(in srgb, var(--line-strong) 82%, transparent);
  border-radius: var(--radius);
  padding: 20px;
  background: color-mix(in srgb, var(--surface-elevated) 88%, transparent);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}

.proof-card-head {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.proof-state {
  color: var(--success);
}

.proof-card-body {
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  padding: 22px;
  background: color-mix(in srgb, var(--surface-elevated) 76%, transparent);
}

.proof-question {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 780;
  line-height: 1.25;
}

.proof-card-body > p:not(.proof-question) {
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.proof-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.proof-tags li,
.platform-features span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--surface-soft);
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 750;
}

.proof-tags {
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof-band {
  padding-block: 0 24px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-elevated);
  box-shadow: var(--shadow-small);
}

.proof-grid > div {
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  padding: 24px 28px;
}

.proof-grid > div + div {
  border-left: 1px solid var(--line);
}

.proof-grid strong {
  color: var(--ink);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 780;
  letter-spacing: -0.04em;
}

.proof-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.section-heading {
  max-width: 810px;
  margin-bottom: 54px;
}

.section-heading h2,
.platform-heading h2,
.services-intro h2,
.video-copy h2,
.process-lead h2,
.studio-copy h2,
.faq-heading h2,
.contact-copy h2,
.hosting-copy h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 770;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.section-heading > p:last-child,
.platform-heading p,
.services-intro > p,
.video-copy > p,
.process-lead > p,
.studio-copy > p,
.faq-heading > p,
.contact-copy > p,
.hosting-copy > p {
  max-width: 670px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.7vw, 21px);
}

.work-grid {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 22px;
}

.work-card {
  min-width: 0;
  display: block;
  align-self: start;
  color: var(--ink);
  text-decoration: none;
}

.work-card-large {
  grid-row: span 2;
}

.work-card-wide {
  grid-column: 1 / -1;
}

.work-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  box-shadow: var(--shadow-small);
}

.work-card-large .work-image {
  aspect-ratio: 4 / 5;
}

.work-card-wide .work-image {
  aspect-ratio: 2.4 / 1;
}

.work-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.22);
  pointer-events: none;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.work-card-large .work-image img {
  object-position: 55% center;
}

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

.work-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 20px;
  padding: 19px 4px 4px;
}

.work-meta h3 {
  margin-bottom: 3px;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 760;
  letter-spacing: -0.04em;
}

.work-meta p,
.work-meta > span {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.work-meta > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-align: right;
}

.work-meta b {
  color: var(--accent);
  font-size: 16px;
}

.services-section {
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.services-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: clamp(60px, 9vw, 130px);
}

.services-intro {
  position: sticky;
  top: 130px;
}

.services-intro h2 {
  font-size: clamp(38px, 4.3vw, 60px);
}

.services-intro > p {
  margin-bottom: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.service-accordion {
  border-top: 1px solid var(--line-strong);
}

.service-item {
  border-bottom: 1px solid var(--line);
}

.service-item button {
  width: 100%;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.service-item button span:first-child {
  font-size: clamp(20px, 2.3vw, 30px);
  font-weight: 730;
  letter-spacing: -0.04em;
}

.service-item button span:last-child {
  color: var(--accent);
  font-size: 26px;
  font-weight: 500;
}

.service-panel {
  max-width: 680px;
  padding: 0 54px 28px 0;
}

.service-panel p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.platform-heading {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.platform-heading p {
  margin-inline: auto;
}

.platform-shell {
  display: grid;
  grid-template-columns: 0.38fr 0.62fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-elevated);
  box-shadow: var(--shadow);
}

.platform-nav {
  display: grid;
  align-content: center;
  border-right: 1px solid var(--line);
  padding: 28px;
  background: var(--surface);
}

.platform-nav button {
  min-height: 104px;
  display: grid;
  align-content: center;
  gap: 5px;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 18px 20px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  text-align: left;
  transition: background 180ms ease, color 180ms ease, transform 180ms var(--ease);
}

.platform-nav button:last-child {
  border-bottom: 0;
}

.platform-nav button[aria-selected="true"] {
  border-radius: var(--radius-small);
  background: var(--accent-soft);
  color: var(--ink);
  transform: translateX(5px);
}

.platform-nav button span {
  font-size: 17px;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.platform-nav button small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.platform-stage {
  min-width: 0;
  padding: 28px;
}

.platform-media {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--surface-soft);
}

.platform-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 180ms ease, transform 420ms var(--ease);
}

.platform-stage.is-changing .platform-media img {
  opacity: 0;
  transform: scale(0.985);
}

.platform-copy {
  padding: 28px 4px 4px;
}

.platform-copy > p:first-child {
  margin-bottom: 9px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.platform-copy h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 760;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.platform-copy > p:not(:first-child) {
  max-width: 690px;
  margin-bottom: 22px;
  color: var(--ink-soft);
}

.platform-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.video-section {
  padding-top: 0;
}

.video-grid {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.video-copy h2 {
  font-size: clamp(38px, 4.5vw, 60px);
}

.video-copy > p {
  margin-bottom: 28px;
}

.video-poster {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  background: var(--surface-elevated);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.video-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(9 20 33 / 0.72), transparent 55%);
}

.video-poster > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.video-poster:hover > img {
  transform: scale(1.035);
}

.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--accent);
  color: #f7fbff;
  box-shadow: 0 20px 44px rgb(0 0 0 / 0.28);
  font-size: 20px;
  text-indent: 3px;
  transition: transform 240ms var(--ease);
}

.video-poster:hover .play-button {
  transform: translate(-50%, -50%) scale(1.08);
}

.video-caption {
  position: absolute;
  inset: auto 28px 24px;
  z-index: 2;
  color: #f2f7fb;
  font-size: 14px;
  font-weight: 750;
  text-align: left;
}

.process-section {
  overflow: hidden;
  background: var(--surface);
}

.process-lead {
  max-width: 760px;
  margin-bottom: 64px;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(250px, 1fr));
  gap: 18px;
}

.process-step {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--surface-elevated);
}

.process-step:nth-child(2) {
  transform: translateY(30px);
  background: var(--accent-soft);
}

.process-step:nth-child(3) {
  transform: translateY(-18px);
  background: var(--navy);
  color: #eef5fb;
}

.process-step:nth-child(3) p,
.process-step:nth-child(3) > span {
  color: #aebed0;
}

.process-step:nth-child(3) h3 {
  color: #eef5fb;
}

.process-step > span {
  margin-bottom: auto;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.process-step h3 {
  margin: 40px 0 10px;
  color: var(--ink);
  font-size: 25px;
  font-weight: 750;
  letter-spacing: -0.04em;
}

.process-step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.hosting-panel {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: clamp(50px, 10vw, 140px);
  overflow: hidden;
  border-radius: var(--radius);
  padding: clamp(42px, 7vw, 86px);
  background:
    radial-gradient(circle at 100% 0%, rgb(79 145 255 / 0.24), transparent 36%),
    var(--navy);
  color: #eef5fb;
  box-shadow: var(--shadow);
}

.hosting-copy h2 {
  color: #eef5fb;
}

.hosting-copy > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: #b7c5d4;
}

.hosting-details {
  display: grid;
  align-content: center;
  gap: 24px;
}

.hosting-details > div {
  display: grid;
  gap: 4px;
  border-bottom: 1px solid rgb(255 255 255 / 0.14);
  padding-bottom: 22px;
}

.hosting-details > div:last-child {
  border-bottom: 0;
}

.hosting-details strong {
  color: #eef5fb;
  font-size: 18px;
}

.hosting-details span {
  color: #9fb0c2;
  font-size: 13px;
}

.studio-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(54px, 9vw, 130px);
}

.studio-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  box-shadow: var(--shadow);
}

.studio-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, color-mix(in srgb, var(--accent) 18%, transparent), transparent 55%);
  pointer-events: none;
}

.studio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.studio-copy > p {
  margin-bottom: 18px;
  font-size: 17px;
}

.studio-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0 26px;
}

.studio-facts > div {
  border-top: 1px solid var(--line-strong);
  padding-top: 16px;
}

.studio-facts strong,
.studio-facts span {
  display: block;
}

.studio-facts strong {
  color: var(--ink);
  font-size: 26px;
  letter-spacing: -0.04em;
}

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

.faq-section {
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: clamp(54px, 10vw, 140px);
}

.faq-heading {
  position: sticky;
  top: 130px;
}

.faq-heading h2 {
  font-size: clamp(38px, 4.4vw, 60px);
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list article {
  border-bottom: 1px solid var(--line);
}

.faq-list button {
  width: 100%;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 17px;
  font-weight: 740;
  text-align: left;
}

.faq-list button span:last-child {
  color: var(--accent);
  font-size: 24px;
}

.faq-list article > div {
  padding: 0 54px 24px 0;
}

.faq-list article > div p {
  margin: 0;
  color: var(--ink-soft);
}

.contact-section {
  padding-bottom: clamp(80px, 9vw, 130px);
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(54px, 10vw, 140px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(36px, 7vw, 82px);
  background: var(--surface-elevated);
  box-shadow: var(--shadow);
}

.contact-copy h2 {
  font-size: clamp(40px, 4.7vw, 62px);
}

.contact-copy > p:not(.eyebrow) {
  margin-bottom: 26px;
}

.contact-copy > a {
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  text-underline-offset: 5px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-small);
  padding: 13px 14px;
  background: var(--surface);
  color: var(--ink);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field input,
.field select {
  min-height: 50px;
}

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

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 14%, transparent);
}

.field.has-error input,
.field.has-error textarea,
.field.has-error select {
  border-color: var(--danger);
}

.field-error {
  min-height: 1em;
  color: var(--danger);
  font-size: 11px;
  font-weight: 700;
}

.form-submit {
  justify-self: start;
}

.form-note {
  margin: -5px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.form-success {
  display: grid;
  gap: 3px;
  border: 1px solid color-mix(in srgb, var(--success) 38%, var(--line));
  border-radius: var(--radius-small);
  padding: 14px;
  background: color-mix(in srgb, var(--success) 9%, var(--surface-elevated));
  color: var(--success);
}

.form-success[hidden] {
  display: none;
}

.form-success span {
  color: var(--ink-soft);
  font-size: 12px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 48px;
  background: var(--surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: end;
  gap: 40px;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-grid p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.footer-links a,
.footer-meta a,
.footer-meta span {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 650;
  text-decoration: none;
}

.footer-links a:hover,
.footer-meta a:hover {
  color: var(--accent);
}

.footer-meta {
  display: grid;
  justify-items: end;
  gap: 5px;
}

.video-modal {
  width: min(980px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  background: var(--surface-elevated);
  color: var(--ink);
  box-shadow: 0 40px 120px rgb(0 0 0 / 0.42);
}

.video-modal::backdrop {
  background: rgb(5 12 20 / 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.video-modal-inner {
  padding: 22px;
}

.video-modal-head {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.video-modal-head span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.video-modal-head h2 {
  margin: 2px 0 0;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.video-modal-head button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 15px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.video-modal video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-small);
  background: var(--navy);
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms var(--ease), transform 720ms var(--ease);
}

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

@media (max-width: 1024px) {
  .nav-shell {
    width: min(900px, 100%);
  }

  .nav-links {
    gap: 0;
  }

  .nav-links a {
    padding-inline: 9px;
  }

  .hero {
    min-height: auto;
    padding-block: 132px 56px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.7fr;
    gap: 32px;
  }

  .hero h1 {
    font-size: clamp(48px, 6vw, 64px);
  }

  .hero-proof-card {
    margin-bottom: 0;
  }

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

  .proof-grid > div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .proof-grid > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .services-layout,
  .video-grid,
  .studio-grid,
  .faq-grid {
    gap: 56px;
  }

  .platform-shell {
    grid-template-columns: 0.42fr 0.58fr;
  }

  .process-track {
    overflow-x: auto;
    grid-template-columns: repeat(4, 310px);
    margin-right: -20px;
    padding: 20px 20px 30px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .process-step {
    scroll-snap-align: start;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 32px, var(--max-width));
  }

  .section {
    padding-block: 84px;
  }

  .nav-links,
  .nav-action {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero {
    min-height: 100dvh;
    align-items: end;
    padding-block: 124px 42px;
  }

  .hero-image {
    object-position: 69% center;
  }

  .hero-wash {
    background:
      linear-gradient(0deg, var(--background) 5%, color-mix(in srgb, var(--background) 90%, transparent) 66%, color-mix(in srgb, var(--background) 48%, transparent) 100%),
      linear-gradient(90deg, color-mix(in srgb, var(--background) 90%, transparent), transparent);
  }

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

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

  .hero h1 {
    max-width: 650px;
    font-size: clamp(46px, 9.5vw, 66px);
  }

  .hero-lead {
    max-width: 550px;
  }

  .hero-proof-card {
    display: none;
  }

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

  .work-card-large,
  .work-card-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .work-card-large .work-image,
  .work-card-wide .work-image,
  .work-image {
    aspect-ratio: 16 / 10;
  }

  .services-layout,
  .video-grid,
  .studio-grid,
  .faq-grid,
  .contact-panel,
  .hosting-panel {
    grid-template-columns: 1fr;
  }

  .services-intro,
  .faq-heading {
    position: static;
  }

  .platform-shell {
    grid-template-columns: 1fr;
  }

  .platform-nav {
    grid-template-columns: repeat(4, minmax(190px, 1fr));
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 14px;
    scroll-snap-type: x mandatory;
  }

  .platform-nav button {
    min-height: 92px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
    scroll-snap-align: start;
  }

  .platform-nav button[aria-selected="true"] {
    transform: none;
  }

  .platform-stage {
    padding: 18px;
  }

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

  .studio-image {
    max-height: 620px;
    aspect-ratio: 4 / 4.4;
  }

  .hosting-panel {
    padding: 44px 32px;
  }

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

  .footer-meta {
    grid-column: 1 / -1;
    justify-items: start;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 12px 0;
  }

  .nav-shell {
    min-height: 62px;
    padding: 7px 8px 7px 14px;
  }

  .brand {
    font-size: 18px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    border-radius: 11px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .mobile-menu {
    padding: 88px 12px 12px;
  }

  .mobile-menu-inner {
    padding: 22px;
  }

  .hero {
    min-height: 100dvh;
    padding-block: 102px 30px;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: clamp(40px, 11.7vw, 54px);
    line-height: 0.99;
  }

  .hero-lead {
    margin-bottom: 24px;
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions .button {
    padding-inline: 14px;
  }

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

  .proof-grid > div {
    min-height: 100px;
    padding: 18px;
  }

  .proof-grid strong {
    font-size: 19px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .platform-heading h2,
  .services-intro h2,
  .video-copy h2,
  .process-lead h2,
  .studio-copy h2,
  .faq-heading h2,
  .contact-copy h2,
  .hosting-copy h2 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .work-grid {
    gap: 40px;
  }

  .work-meta {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .work-meta > span {
    text-align: left;
  }

  .service-item button {
    min-height: 72px;
  }

  .service-item button span:first-child {
    font-size: 20px;
  }

  .platform-heading {
    margin-bottom: 32px;
    text-align: left;
  }

  .platform-nav {
    grid-template-columns: repeat(4, 210px);
  }

  .platform-stage {
    padding: 12px;
  }

  .platform-copy {
    padding: 22px 4px 8px;
  }

  .video-grid {
    gap: 34px;
  }

  .video-poster {
    aspect-ratio: 4 / 3;
  }

  .play-button {
    width: 60px;
    height: 60px;
  }

  .video-caption {
    inset: auto 18px 16px;
    font-size: 12px;
  }

  .process-track {
    grid-template-columns: repeat(4, 82vw);
  }

  .process-step {
    min-height: 300px;
  }

  .process-step:nth-child(2),
  .process-step:nth-child(3) {
    transform: none;
  }

  .hosting-panel {
    padding: 34px 24px;
  }

  .studio-facts,
  .form-row {
    grid-template-columns: 1fr;
  }

  .studio-facts {
    gap: 22px;
  }

  .contact-panel {
    gap: 40px;
    padding: 30px 20px;
  }

  .form-submit {
    width: 100%;
  }

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

  .footer-meta {
    grid-column: auto;
  }

  .video-modal-inner {
    padding: 14px;
  }

  .video-modal-head h2 {
    font-size: 19px;
  }
}

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

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

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

@media (prefers-reduced-transparency: reduce) {
  .nav-shell,
  .hero-proof-card,
  .mobile-menu {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--surface-elevated);
  }
}

/* Wix-inspired 2026 visual system */
@property --scene-one {
  syntax: "<color>";
  inherits: true;
  initial-value: #ffbd91;
}

@property --scene-two {
  syntax: "<color>";
  inherits: true;
  initial-value: #a7c8ff;
}

@property --scene-three {
  syntax: "<color>";
  inherits: true;
  initial-value: #ffe1bd;
}

:root {
  color-scheme: light;
  --background: #ffffff;
  --surface: #f7f8fa;
  --surface-elevated: #ffffff;
  --surface-soft: #edf7ff;
  --surface-strong: #dceeff;
  --ink: #090909;
  --ink-soft: #333333;
  --muted: #666b73;
  --line: #d8d9dc;
  --line-strong: #b7bac0;
  --accent: #116dff;
  --accent-dark: #0756d8;
  --accent-soft: #dbeaff;
  --navy: #0b0b0b;
  --navy-soft: #161616;
  --success: #08794c;
  --danger: #b42318;
  --shadow: 0 30px 90px rgb(27 45 63 / 0.15);
  --shadow-small: 0 14px 40px rgb(27 45 63 / 0.1);
  --radius: 18px;
  --radius-small: 12px;
  --max-width: 1320px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

body {
  background: #fff;
  color: #090909;
  font-family: "Wix Madefor Text", "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.45;
}

h1,
h2,
h3,
.brand {
  font-family: "Wix Madefor Display", "Helvetica Neue", Arial, sans-serif;
}

.section {
  padding-block: clamp(100px, 10vw, 156px);
}

.container {
  width: min(var(--max-width), calc(100% - 64px));
}

.site-header {
  height: 72px;
  padding: 0;
  border-bottom: 1px solid #e5e5e5;
  background: rgb(255 255 255 / 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header.is-hidden {
  transform: none;
  opacity: 1;
}

.nav-shell {
  width: 100%;
  max-width: none;
  min-height: 71px;
  margin: 0;
  padding: 0 20px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.brand {
  gap: 8px;
  font-size: 25px;
  font-weight: 680;
  letter-spacing: -0.055em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: inline-flex;
  flex: 0 0 40px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.brand-accent {
  color: inherit;
}

.nav-links {
  margin-left: auto;
  margin-right: 28px;
  gap: 14px;
}

.nav-links a {
  padding: 10px 7px;
  color: #1d1d1f;
  font-size: 16px;
  font-weight: 400;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: transparent;
  color: var(--accent);
}

.button {
  min-height: 54px;
  padding: 0 28px;
  font-size: 17px;
  font-weight: 500;
}

.nav-action {
  min-height: 48px;
  padding-inline: 25px;
  background: #0b5bd7;
  font-weight: 600;
}

.button-primary {
  box-shadow: none;
}

.button-primary:hover {
  box-shadow: none;
}

.button-dark {
  min-height: 54px;
  background: #090909;
  box-shadow: none;
}

.button-dark:hover {
  background: var(--accent);
}

.button-secondary {
  border-color: #a9aaae;
  background: transparent;
}

.button-secondary:hover {
  border-color: #090909;
  background: #fff;
}

.hero {
  min-height: auto;
  display: block;
  overflow: hidden;
  padding: 72px 0 0;
  background: #fff;
}

.hero-copy {
  max-width: 1320px;
  min-height: calc(50dvh - 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(28px, 4vw, 54px);
  text-align: center;
}

.hero-kicker {
  margin-bottom: 16px;
  color: #4d5259;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hero h1 {
  max-width: 1260px;
  margin: 0 auto 20px;
  color: #090909;
  font-size: clamp(60px, 5.4vw, 78px);
  font-weight: 400;
  letter-spacing: -0.036em;
  line-height: 1.04;
  white-space: nowrap;
}

.hero h1 span {
  display: inline;
  color: inherit;
}

.hero-lead {
  max-width: 850px;
  margin: 0 auto 26px;
  color: #262626;
  font-size: clamp(18px, 1.55vw, 22px);
  font-weight: 400;
  line-height: 1.32;
  white-space: nowrap;
}

.hero-actions {
  justify-content: center;
}

.hero-note {
  margin: 14px 0 0;
  color: #54585f;
  font-size: 13px;
}

.hero-showcase {
  --scene-one: #ff9c82;
  --scene-two: #8ab7ff;
  --scene-three: #ffd46f;
  position: relative;
  width: 100%;
  height: clamp(560px, 48vw, 720px);
  margin-top: 0;
  overflow: visible;
  isolation: isolate;
  background: transparent;
  transition:
    --scene-one 1050ms ease,
    --scene-two 1050ms ease,
    --scene-three 1050ms ease;
  cursor: grab;
  touch-action: pan-y;
}

.hero-showcase.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: -22vh 0 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 48% 61% at 62% 64%, color-mix(in srgb, var(--scene-one) 94%, transparent), transparent 73%),
    radial-gradient(ellipse 44% 58% at 31% 69%, color-mix(in srgb, var(--scene-two) 90%, transparent), transparent 74%),
    radial-gradient(ellipse 32% 40% at 50% 96%, color-mix(in srgb, var(--scene-three) 86%, transparent), transparent 80%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgb(0 0 0 / 0.04) 5%, #000 32%, #000 82%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgb(0 0 0 / 0.04) 5%, #000 32%, #000 82%, transparent 100%);
}

.hero-showcase[data-active="1"] {
  --scene-one: #ffad68;
  --scene-two: #9e8cff;
  --scene-three: #ffdca1;
}

.hero-showcase[data-active="2"] {
  --scene-one: #8cf0d0;
  --scene-two: #76c9ff;
  --scene-three: #e9ff91;
}

.hero-showcase[data-active="3"] {
  --scene-one: #ff789c;
  --scene-two: #ffae52;
  --scene-three: #d8ed75;
}

.showcase-aura {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  opacity: 0.72;
  filter: blur(35px);
  will-change: transform;
}

.showcase-aura-one {
  width: 52vw;
  height: 52vw;
  left: 12%;
  top: 13%;
  background: color-mix(in srgb, var(--scene-one) 88%, transparent);
  animation: none;
}

.showcase-aura-two {
  width: 44vw;
  height: 44vw;
  right: 4%;
  top: 3%;
  background: color-mix(in srgb, var(--scene-two) 82%, transparent);
  animation: none;
}

.showcase-aura-three {
  width: 34vw;
  height: 34vw;
  left: 36%;
  bottom: -20%;
  background: color-mix(in srgb, var(--scene-three) 80%, transparent);
  animation: none;
}

@keyframes aura-breathe {
  from { transform: translate3d(-2%, 0, 0) scale(0.92); }
  to { transform: translate3d(4%, -3%, 0) scale(1.08); }
}

@keyframes aura-drift {
  0%, 100% { transform: translate3d(2%, -2%, 0) rotate(0deg) scale(0.96); }
  50% { transform: translate3d(-7%, 5%, 0) rotate(8deg) scale(1.06); }
}

.showcase-stage {
  position: relative;
  width: min(1440px, 100%);
  height: 100%;
  margin-inline: auto;
  perspective: 1400px;
}

.hero-slide {
  position: absolute;
  inset: 8% 0 64px;
  opacity: 0;
  transform: translate3d(7.5%, 0, 0) scale(0.985);
  transform-origin: 50% 60%;
  pointer-events: none;
  transition:
    opacity 680ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 980ms var(--ease);
  backface-visibility: hidden;
}

.hero-slide.is-before {
  transform: translate3d(-9%, 0, 0) scale(0.98);
}

.hero-slide.is-active {
  z-index: 2;
  opacity: 1;
  transform: translate3d(var(--hero-drag-x, 0px), 0, 0) scale(1);
  pointer-events: auto;
}

.hero-showcase.is-dragging .hero-slide.is-active {
  transition: none;
}

.hero-slide::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 22%;
  top: 53%;
  width: 56%;
  height: 28%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, color-mix(in srgb, var(--scene-two) 52%, white 48%) 0%, color-mix(in srgb, var(--scene-one) 26%, transparent) 48%, transparent 74%);
  filter: blur(28px);
  opacity: 0;
  pointer-events: none;
  transform: perspective(280px) rotateX(68deg) translateY(20px) scale(0.82);
  transition: opacity 900ms ease, transform 1200ms var(--ease);
}

.hero-slide.is-active::after {
  opacity: 0.68;
  transform: perspective(280px) rotateX(68deg) translateY(0) scale(1);
}

.showcase-browser {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 7%;
  width: min(840px, 58vw);
  overflow: hidden;
  transform: translate3d(-44%, 0, 0) rotateX(1.4deg);
  border: 1px solid rgb(24 35 45 / 0.12);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 38px 85px rgb(32 55 74 / 0.22);
  transition: transform 940ms var(--ease), box-shadow 940ms var(--ease);
  backface-visibility: hidden;
}

.hero-slide.is-active .showcase-browser {
  transform: translate3d(-50%, 0, 0) rotateX(1.4deg);
}

.hero-slide.is-before .showcase-browser {
  transform: translate3d(-58%, 0, 0) rotateX(1.4deg);
}

.showcase-browser::after {
  content: "";
  position: absolute;
  z-index: 8;
  inset: -35% auto -35% -48%;
  width: 34%;
  background: linear-gradient(105deg, transparent 0%, rgb(255 255 255 / 0.04) 28%, rgb(255 255 255 / 0.54) 50%, rgb(255 255 255 / 0.09) 72%, transparent 100%);
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  transform: skewX(-17deg) translateX(-160%);
}

.hero-slide.is-active .showcase-browser::after {
  animation: showcase-reflection 1120ms 90ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes showcase-reflection {
  0% {
    opacity: 0;
    transform: skewX(-17deg) translateX(-160%);
  }
  22% {
    opacity: 0.72;
  }
  70% {
    opacity: 0.38;
  }
  100% {
    opacity: 0;
    transform: skewX(-17deg) translateX(570%);
  }
}

.showcase-prop {
  position: absolute;
  z-index: 1;
  width: clamp(300px, 31vw, 465px);
  height: auto;
  object-fit: contain;
  opacity: 0;
  filter: drop-shadow(0 30px 34px rgb(26 45 61 / 0.18));
  transition: opacity 440ms 40ms ease, transform 760ms var(--ease);
  backface-visibility: hidden;
  pointer-events: none;
}

.showcase-prop-left {
  left: -4%;
  top: 8%;
  transform: translate3d(150px, 26px, 0) rotate(5deg) scale(0.9);
}

.hero-slide.is-active .showcase-prop {
  opacity: 1;
}

.hero-slide.is-active .showcase-prop-left {
  transform: translate3d(0, 0, 0) rotate(-3deg) scale(1);
  animation: none;
}

.hero-slide.is-before .showcase-prop-left {
  transform: translate3d(-190px, -10px, 0) rotate(-8deg) scale(0.94);
}

@keyframes prop-float {
  to { transform: translate3d(12px, -18px, 0) rotate(1deg) scale(1.02); }
}

.browser-bar {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid #e4e5e7;
  padding: 0 12px;
  background: #fbfbfc;
}

.browser-bar > span {
  width: 7px;
  height: 7px;
  border: 1px solid #b7bac0;
  border-radius: 50%;
}

.browser-bar p {
  margin: 0 auto;
  color: #5d6269;
  font-size: 10px;
}

.browser-bar b {
  color: var(--success);
  font-size: 9px;
  font-weight: 600;
}

.browser-image {
  aspect-ratio: 16 / 8.3;
  overflow: hidden;
  background: #edf3f7;
}

.browser-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.industry-site {
  position: relative;
  isolation: isolate;
  background: #1358c8;
  color: #fff;
}

.industry-site > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  object-position: 68% 48%;
}

.industry-shade {
  display: none;
}

.music-site > img {
  filter: none;
}

.industry-nav {
  position: absolute;
  inset: 0 0 auto;
  height: 52px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
  color: currentColor;
  font-size: 10px;
}

.industry-nav strong {
  margin-right: auto;
  font-family: "Wix Madefor Display", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.industry-logo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.industry-logo svg {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  overflow: visible;
}

.industry-logo svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo-mara svg path:first-child {
  fill: currentColor;
  stroke: none;
}

.logo-mara svg path:last-child {
  stroke: #ffca2c;
  stroke-width: 1.7;
}

.logo-luma svg rect {
  fill: currentColor;
  stroke: none;
}

.logo-luma svg circle {
  fill: #8ee8d1;
  stroke: none;
}

.logo-sola svg circle {
  fill: currentColor;
}

.industry-nav b {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 7px 11px;
  font-weight: 500;
}

.industry-copy {
  position: absolute;
  left: 6%;
  top: 54%;
  width: 43%;
  transform: translateY(-50%);
}

.industry-copy small {
  display: block;
  margin-bottom: 8px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.industry-copy h2 {
  max-width: 370px;
  margin: 0 0 9px;
  color: currentColor;
  font-family: "Wix Madefor Display", sans-serif;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.industry-copy p {
  margin: 0 0 15px;
  color: currentColor;
  font-size: 11px;
}

.industry-copy > span {
  display: inline-flex;
  min-height: 31px;
  align-items: center;
  border-radius: 999px;
  padding: 0 13px;
  background: #fff;
  color: #111;
  font-size: 9px;
  font-weight: 600;
}

.influencer-site {
  background: #f3ad00;
  color: #111;
}

.influencer-site > img {
  filter: none;
}

.influencer-site .industry-copy > span {
  background: #111;
  color: #fff;
}

.healthcare-site {
  background: #9ce5ea;
  color: #123a43;
}

.healthcare-site > img {
  object-position: 69% 46%;
}

.healthcare-site .industry-copy > span {
  background: #0e6573;
  color: #fff;
}

.restaurant-site > img {
  object-position: 69% 44%;
  filter: none;
}

.restaurant-site {
  background: #d84a2d;
}

.showcase-card {
  position: absolute;
  z-index: 4;
  width: 220px;
  border: 1px solid rgb(20 29 37 / 0.1);
  border-radius: 13px;
  padding: 20px;
  background: rgb(255 255 255 / 0.92);
  box-shadow: 0 25px 60px rgb(31 48 63 / 0.18);
  opacity: 0;
  transition: opacity 420ms 90ms ease, transform 720ms var(--ease);
  backface-visibility: hidden;
}

.showcase-card-left {
  left: 5%;
  top: 31%;
  transform: translate3d(170px, 20px, 0) rotate(4deg);
  transition-duration: 380ms, 650ms;
}

.showcase-card-right {
  right: 4%;
  top: 24%;
  transform: translate3d(230px, 14px, 0) rotate(5deg);
  transition-duration: 460ms, 840ms;
}

.hero-slide.is-active .showcase-card {
  opacity: 1;
}

.hero-slide.is-active .showcase-card-left {
  transform: translate3d(0, 0, 0) rotate(-1.5deg);
  animation: none;
}

.hero-slide.is-active .showcase-card-right {
  transform: translate3d(0, 0, 0) rotate(1.2deg);
  animation: none;
}

.hero-slide.is-before .showcase-card-left {
  transform: translate3d(-230px, -8px, 0) rotate(-4deg);
}

.hero-slide.is-before .showcase-card-right {
  transform: translate3d(-150px, 4px, 0) rotate(-2deg);
}

@keyframes card-float-left {
  to { transform: translate3d(10px, -12px, 0) rotate(0.2deg); }
}

@keyframes card-float-right {
  to { transform: translate3d(-9px, 11px, 0) rotate(-0.3deg); }
}

.showcase-card small,
.showcase-card strong {
  display: block;
}

.showcase-card small {
  margin-bottom: 8px;
  color: #696e75;
  font-size: 10px;
}

.showcase-card strong {
  color: #111;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.mini-lines {
  display: block;
  width: 100%;
  height: 38px;
  margin-top: 21px;
  background:
    linear-gradient(#d9dee2 0 0) 0 0 / 100% 2px no-repeat,
    linear-gradient(#d9dee2 0 0) 0 12px / 76% 2px no-repeat,
    linear-gradient(#116dff 0 0) 0 26px / 44% 4px no-repeat;
}

.ai-card {
  width: 244px;
  padding: 14px;
  background: rgb(235 250 244 / 0.82);
}

.ai-card-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 10px;
  font-weight: 600;
}

.ai-card p {
  margin-bottom: 36px;
  border-radius: 10px;
  padding: 12px;
  background: rgb(255 255 255 / 0.8);
  color: #292c30;
  font-size: 11px;
  line-height: 1.35;
}

.ai-input {
  min-height: 31px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  padding: 0 8px;
  background: #fff;
  color: #62676e;
  font-size: 9px;
}

.ai-input b {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
}

.metric-bar {
  height: 5px;
  margin-top: 22px;
  overflow: hidden;
  border-radius: 99px;
  background: #e6e7e8;
}

.metric-bar span {
  display: block;
  width: 84%;
  height: 100%;
  border-radius: inherit;
  background: #ff795b;
}

.nav-card {
  display: grid;
  gap: 5px;
}

.nav-card small {
  margin-bottom: 9px;
}

.nav-card > span {
  border-bottom: 1px solid rgb(0 0 0 / 0.1);
  padding: 7px 0;
  color: #272727;
  font-size: 13px;
}

.music-card {
  background: rgb(255 241 247 / 0.88);
}

.wave {
  height: 32px;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 17px;
}

.wave i {
  width: 4px;
  height: 11px;
  border-radius: 5px;
  background: #e93f8a;
  animation: wave 900ms ease-in-out infinite alternate;
}

.wave i:nth-child(2),
.wave i:nth-child(6) { height: 23px; animation-delay: -300ms; }
.wave i:nth-child(3),
.wave i:nth-child(5) { height: 31px; animation-delay: -600ms; }
.wave i:nth-child(4) { height: 17px; animation-delay: -150ms; }

@keyframes wave {
  to { transform: scaleY(0.45); }
}

.order-card {
  background: rgb(244 240 255 / 0.88);
}

.order-dot {
  width: 42px;
  height: 42px;
  display: block;
  margin-bottom: 22px;
  border-radius: 50%;
  background: conic-gradient(#834fff 0 68%, #e1d7ff 68%);
}

.order-action {
  width: 100%;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  border-radius: 99px;
  padding: 0 13px;
  background: #111;
  color: #fff;
  font-size: 10px;
}

.voice-card {
  background: rgb(239 249 255 / 0.9);
}

.voice-pulse {
  width: 44px;
  height: 44px;
  display: block;
  margin-top: 22px;
  border: 12px solid #cbe5ff;
  border-radius: 50%;
  background: #116dff;
  animation: voice-pulse 1.5s ease-out infinite;
}

@keyframes voice-pulse {
  50% { box-shadow: 0 0 0 12px rgb(17 109 255 / 0.12); }
}

.status-card {
  background: rgb(239 255 244 / 0.9);
}

.status-card > div {
  display: flex;
  gap: 5px;
  margin-top: 22px;
}

.status-card > div span {
  width: 28%;
  height: 7px;
  border-radius: 99px;
  background: #31b66f;
}

.status-card > div span:nth-child(2) { width: 38%; opacity: 0.62; }
.status-card > div span:nth-child(3) { width: 19%; opacity: 0.32; }

.music-pick-card {
  background: rgb(237 232 255 / 0.9);
}

.creator-card {
  background: rgb(255 242 220 / 0.9);
}

.appointment-card {
  background: rgb(240 255 250 / 0.92);
}

.appointment-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 22px;
  border-top: 1px solid rgb(0 0 0 / 0.1);
  padding-top: 12px;
  font-size: 9px;
}

.appointment-meta b {
  color: #08794c;
  font-weight: 600;
}

.care-card {
  background: rgb(235 255 246 / 0.92);
}

.care-card .order-action,
.care-card .order-action span {
  width: auto;
  height: auto;
  margin-top: 15px;
  background: #0e6573;
  opacity: 1;
}

.care-card .order-action {
  width: 100%;
}

.menu-card {
  background: rgb(255 244 224 / 0.92);
}

.reservation-card {
  background: rgb(244 255 235 / 0.92);
}

.reservation-time {
  display: flex;
  gap: 5px;
  margin-top: 18px;
}

.reservation-time span {
  border: 1px solid rgb(0 0 0 / 0.12);
  border-radius: 999px;
  padding: 5px 7px;
  color: #333;
  font-size: 8px;
}

.showcase-orbit {
  position: absolute;
  z-index: 1;
  width: 158px;
  height: 158px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #b8f07f;
  color: #12220d;
  box-shadow: 0 30px 60px rgb(39 77 45 / 0.16);
  opacity: 0;
  font: 500 54px/1 "Wix Madefor Display", sans-serif;
  transition: opacity 430ms 80ms ease, transform 870ms 40ms var(--ease);
}

.orbit-left {
  left: -3%;
  bottom: 7%;
  transform: translate3d(130px, 45px, 0) rotate(22deg);
}

.orbit-right {
  right: -1%;
  bottom: 5%;
  background: #ffb472;
  transform: translate3d(180px, 45px, 0) rotate(30deg);
}

.orbit-note {
  background: #ff86af;
}

.orbit-voice {
  background: #a8d4ff;
}

.healthcare-orbit {
  background: #8ee5ce;
}

.restaurant-orbit {
  background: #ff9b5e;
}

.hero-slide.is-active .showcase-orbit {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0);
  animation: none;
}

.hero-slide.is-before .showcase-orbit {
  transform: translate3d(-170px, -10px, 0) rotate(-18deg);
}

@keyframes orbit-float {
  to { transform: translate3d(9px, -18px, 0) rotate(4deg); }
}

.showcase-label {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: flex;
  align-items: baseline;
  gap: 12px;
  transform: translateX(-50%);
  opacity: 0;
  white-space: nowrap;
  transition: opacity 260ms ease, transform 520ms var(--ease);
}

.hero-slide.is-active .showcase-label {
  opacity: 1;
}

.hero-slide.is-before .showcase-label {
  opacity: 0;
  transform: translateX(-64%);
}

.showcase-label span {
  font-size: 15px;
  font-weight: 600;
}

.showcase-label small {
  color: #585c62;
  font-size: 12px;
}

.showcase-controls {
  position: absolute;
  z-index: 8;
  top: 22px;
  right: max(22px, calc((100vw - 1320px) / 2 + 22px));
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.78;
  transition: opacity 180ms ease;
}

.showcase-controls:hover,
.showcase-controls:focus-within {
  opacity: 1;
}

.showcase-arrow,
.showcase-pause {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgb(0 0 0 / 0.16);
  border-radius: 50%;
  background: rgb(255 255 255 / 0.74);
  color: #111;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 180ms ease, color 180ms ease, transform 220ms var(--ease);
}

.showcase-arrow:hover,
.showcase-pause:hover {
  transform: scale(1.07);
  background: #111;
  color: #fff;
}

.showcase-pause {
  position: absolute;
  left: calc(100% + 12px);
  font-size: 11px;
}

.showcase-dots {
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 99px;
  padding: 6px;
  background: rgb(255 255 255 / 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.showcase-dots button {
  width: 28px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.showcase-dots span {
  position: relative;
  width: 20px;
  height: 3px;
  overflow: hidden;
  border-radius: 99px;
  background: rgb(0 0 0 / 0.2);
}

.showcase-dots button.is-active span {
  background: rgb(0 0 0 / 0.18);
}

.showcase-dots button.is-active span::after {
  content: "";
  position: absolute;
  inset: 0;
  transform-origin: left;
  background: #111;
  animation: dot-progress 3s linear forwards;
}

.hero-showcase.is-paused .showcase-dots button.is-active span::after {
  animation-play-state: paused;
}

@keyframes dot-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.proof-band {
  padding: 34px 0 0;
  background: #fff;
}

.proof-grid {
  border: 0;
  border-block: 1px solid #dedfe1;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.proof-grid > div {
  min-height: 132px;
  padding: 25px 34px;
}

.proof-grid strong {
  font-family: "Wix Madefor Display", sans-serif;
  font-size: clamp(24px, 2.3vw, 34px);
  font-weight: 400;
}

.proof-grid span {
  max-width: 230px;
  color: #5a5d63;
  font-size: 13px;
  font-weight: 400;
}

.section-heading h2,
.platform-heading h2,
.services-intro h2,
.video-copy h2,
.process-lead h2,
.studio-copy h2,
.faq-heading h2,
.contact-copy h2,
.hosting-copy h2 {
  margin-bottom: 22px;
  color: #090909;
  font-family: "Wix Madefor Display", sans-serif;
  font-size: clamp(48px, 5.7vw, 82px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.section-heading > p:last-child,
.platform-heading p,
.services-intro > p,
.video-copy > p,
.process-lead > p,
.studio-copy > p,
.faq-heading > p,
.contact-copy > p,
.hosting-copy > p {
  color: #393b3f;
  font-size: clamp(17px, 1.55vw, 21px);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
}

.work-section {
  background: #fff;
}

.section-heading {
  max-width: 970px;
  margin-bottom: 70px;
}

.work-grid {
  gap: 54px 24px;
}

.work-image {
  border: 0;
  border-radius: 8px;
  background: #e4f3ff;
  box-shadow: none;
}

.work-card:nth-child(2) .work-image { background: #fff0da; }
.work-card:nth-child(3) .work-image { background: #ffe5ef; }
.work-card:nth-child(4) .work-image { background: #e5e2ff; }

.work-image img {
  padding: clamp(18px, 2.5vw, 36px);
  object-fit: contain;
}

.work-card:hover .work-image img {
  transform: scale(1.025) translateY(-4px);
}

.work-meta {
  padding-top: 16px;
}

.work-meta h3 {
  font-family: "Wix Madefor Display", sans-serif;
  font-weight: 500;
}

.services-section {
  border: 0;
  background: #eff7ff;
}

.services-intro h2 {
  font-size: clamp(46px, 5vw, 72px);
}

.service-accordion,
.faq-list {
  border-top-color: #9fa6ad;
}

.service-item button span:first-child {
  font-family: "Wix Madefor Display", sans-serif;
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 400;
}

.service-item button span:last-child,
.faq-list button span:last-child {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid #8f969e;
  border-radius: 50%;
  color: #111;
  font-size: 19px;
}

.platform-section {
  background: #fff;
}

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

.platform-shell {
  border: 0;
  border-radius: 8px;
  background: #116dff;
  box-shadow: none;
}

.platform-nav {
  border-right-color: rgb(255 255 255 / 0.32);
  background: #116dff;
}

.platform-nav button {
  border-bottom-color: rgb(255 255 255 / 0.3);
  color: rgb(255 255 255 / 0.76);
}

.platform-nav button[aria-selected="true"] {
  background: #fff;
  color: #111;
}

.platform-nav button small {
  color: inherit;
  opacity: 0.72;
}

.platform-stage {
  margin: 18px;
  border-radius: 7px;
  background: #fff;
}

.platform-media {
  border: 0;
}

.video-section {
  padding-top: 40px;
}

.video-poster {
  border: 0;
  border-radius: 8px;
  box-shadow: none;
}

.video-poster > img {
  padding: 24px;
  background: #dff7ec;
  object-fit: contain;
}

.play-button {
  background: #111;
}

.process-section {
  background: #f7f5ff;
}

.process-step {
  border: 0;
  border-radius: 8px;
  background: #fff;
}

.process-step:nth-child(2) {
  background: #d9f7e8;
}

.process-step:nth-child(3) {
  background: #111;
}

.process-step h3 {
  font-family: "Wix Madefor Display", sans-serif;
  font-weight: 500;
}

.hosting-panel {
  border-radius: 8px;
  background: #116dff;
  box-shadow: none;
}

.hosting-copy h2 {
  color: #fff;
}

.hosting-copy > p:not(.eyebrow) {
  color: rgb(255 255 255 / 0.84);
}

.hosting-copy .eyebrow {
  color: #dbeaff;
}

.hosting-details span {
  color: rgb(255 255 255 / 0.7);
}

.studio-image {
  border: 0;
  border-radius: 8px;
  box-shadow: none;
}

.studio-copy h2 {
  font-size: clamp(46px, 5vw, 72px);
}

.faq-section {
  border: 0;
  background: #fff7e9;
}

.faq-list button {
  min-height: 88px;
  font-size: 19px;
  font-weight: 500;
}

.contact-section {
  background: #fff;
}

.contact-panel {
  border: 0;
  border-radius: 8px;
  background: #dcf9e9;
  box-shadow: none;
}

.contact-copy h2 {
  font-size: clamp(46px, 5vw, 72px);
}

.field input,
.field textarea,
.field select {
  border-color: #9ead9f;
  border-radius: 5px;
  background: rgb(255 255 255 / 0.76);
}

.site-footer {
  border: 0;
  padding-block: 72px;
  background: #111;
}

.site-footer .brand,
.site-footer .footer-links a,
.site-footer .footer-meta a,
.site-footer .footer-meta span {
  color: #fff;
}

.site-footer .brand-mark {
  background: none;
}

.footer-grid p {
  color: #aeb0b4;
}

.js .reveal {
  transform: translateY(42px) scale(0.99);
  transition: opacity 850ms var(--ease), transform 850ms var(--ease);
}

@supports (animation-timeline: view()) {
  .work-card .work-image,
  .video-poster,
  .studio-image {
    animation: scroll-in linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 38%;
  }

  @keyframes scroll-in {
    from {
      opacity: 0.3;
      transform: translateY(40px) scale(0.96);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
}

@media (max-width: 1024px) {
  .nav-links {
    margin-right: 12px;
    gap: 4px;
  }

  .hero h1 {
    font-size: clamp(56px, 7.7vw, 78px);
    white-space: normal;
  }

  .showcase-card {
    width: 185px;
  }

  .showcase-card-left {
    left: 1.5%;
  }

  .showcase-card-right {
    right: 1.5%;
  }

  .showcase-orbit {
    width: 124px;
    height: 124px;
  }

  .showcase-prop {
    width: clamp(270px, 34vw, 360px);
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 40px, var(--max-width));
  }

  .site-header {
    height: 54px;
  }

  .nav-shell {
    min-height: 53px;
    padding-inline: 18px;
  }

  .brand {
    font-size: 21px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .nav-action {
    display: inline-flex;
    min-height: 34px;
    margin-left: auto;
    margin-right: 10px;
    padding: 0 17px;
    font-size: 13px;
  }

  .menu-toggle {
    width: 34px;
    height: 34px;
    background: transparent;
  }

  .hero {
    min-height: auto;
    padding: 54px 0 0;
  }

  .hero-copy {
    min-height: calc(50dvh - 54px);
    padding-top: 30px;
  }

  .hero-kicker {
    margin-bottom: 12px;
    font-size: 13px;
  }

  .hero h1 {
    max-width: 660px;
    margin-bottom: 16px;
    font-size: clamp(43px, 10.3vw, 64px);
    line-height: 1.08;
  }

  .hero-lead {
    max-width: 620px;
    font-size: 17px;
  }

  .hero-showcase {
    height: 510px;
    margin-top: 0;
  }

  .hero-slide {
    inset: 10% 0 70px;
  }

  .showcase-browser {
    width: 72vw;
  }

  .showcase-card {
    width: 155px;
    padding: 14px;
  }

  .showcase-card strong {
    font-size: 16px;
  }

  .showcase-card-left {
    left: -3%;
    top: 37%;
  }

  .showcase-card-right {
    right: -3%;
    top: 30%;
  }

  .ai-card {
    width: 165px;
  }

  .showcase-orbit {
    width: 95px;
    height: 95px;
    font-size: 36px;
  }

  .showcase-prop {
    width: 270px;
  }

  .showcase-prop-left {
    left: -12%;
    top: 13%;
  }

  .showcase-label {
    bottom: 2px;
  }

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

  .proof-grid > div:nth-child(3) {
    border-top-color: #dedfe1;
  }

  .platform-nav {
    border-bottom-color: rgb(255 255 255 / 0.32);
  }

  .platform-nav button {
    border-right-color: rgb(255 255 255 / 0.3);
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 0;
  }

  .nav-shell {
    padding: 0 13px;
  }

  .brand {
    gap: 6px;
    font-size: 19px;
  }

  .brand-mark {
    width: 29px;
    height: 29px;
    flex-basis: 29px;
  }

  .mobile-menu {
    padding: 66px 12px 12px;
  }

  .hero-copy {
    width: min(100% - 32px, var(--max-width));
    min-height: calc(50dvh - 54px);
    padding-top: 28px;
  }

  .hero h1 {
    font-size: 40px;
    letter-spacing: -0.03em;
    line-height: 1.1;
  }

  .hero-lead {
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.3;
    white-space: normal;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-actions .button {
    min-height: 46px;
    padding-inline: 19px;
    font-size: 14px;
  }

  .hero-note {
    max-width: 310px;
    margin-inline: auto;
    font-size: 11px;
  }

  .hero-showcase {
    height: 390px;
    margin-top: 0;
    background: transparent;
  }

  .hero-showcase::before {
    background:
      radial-gradient(ellipse 78% 64% at 68% 62%, color-mix(in srgb, var(--scene-one) 94%, transparent), transparent 75%),
      radial-gradient(ellipse 70% 60% at 22% 70%, color-mix(in srgb, var(--scene-two) 90%, transparent), transparent 76%);
  }

  .hero-slide {
    inset: 8% 0 62px;
  }

  .showcase-browser {
    top: 16%;
    width: 78vw;
    border-radius: 7px;
    box-shadow: 0 20px 42px rgb(32 55 74 / 0.2);
  }

  .browser-bar {
    height: 18px;
    padding-inline: 6px;
  }

  .browser-bar > span {
    width: 4px;
    height: 4px;
  }

  .browser-bar p {
    font-size: 6px;
  }

  .browser-bar b {
    display: none;
  }

  .industry-nav {
    height: 25px;
    gap: 5px;
    padding: 0 7px;
    font-size: 5px;
  }

  .industry-nav strong {
    font-size: 8px;
  }

  .industry-nav span {
    display: none;
  }

  .industry-logo span {
    display: inline;
  }

  .industry-logo {
    gap: 3px;
  }

  .industry-logo svg {
    width: 12px;
    height: 12px;
    flex-basis: 12px;
  }

  .industry-nav b {
    padding: 3px 5px;
  }

  .industry-copy {
    left: 6%;
    top: 57%;
    width: 50%;
  }

  .industry-copy small {
    margin-bottom: 3px;
    font-size: 4px;
  }

  .industry-copy h2 {
    margin-bottom: 3px;
    font-size: 17px;
    line-height: 0.95;
  }

  .industry-copy p {
    margin-bottom: 6px;
    font-size: 5px;
  }

  .industry-copy > span {
    min-height: 15px;
    padding: 0 6px;
    font-size: 5px;
  }

  .showcase-card {
    width: 105px;
    border-radius: 7px;
    padding: 9px;
    box-shadow: 0 14px 28px rgb(31 48 63 / 0.16);
  }

  .showcase-card small {
    margin-bottom: 5px;
    font-size: 6px;
  }

  .showcase-card strong {
    font-size: 11px;
  }

  .showcase-card-left {
    left: -4%;
    top: 47%;
  }

  .showcase-card-right {
    right: -4%;
    top: 39%;
  }

  .ai-card {
    width: 112px;
    padding: 7px;
  }

  .ai-card-head {
    margin-bottom: 6px;
    font-size: 6px;
  }

  .ai-card p {
    margin-bottom: 8px;
    border-radius: 5px;
    padding: 6px;
    font-size: 6px;
  }

  .ai-input {
    min-height: 17px;
    font-size: 5px;
  }

  .ai-input b {
    width: 11px;
    height: 11px;
    border-radius: 3px;
  }

  .mini-lines,
  .metric-bar,
  .wave,
  .voice-pulse,
  .status-card > div {
    margin-top: 8px;
  }

  .mini-lines {
    height: 20px;
    background:
      linear-gradient(#d9dee2 0 0) 0 0 / 100% 1px no-repeat,
      linear-gradient(#d9dee2 0 0) 0 7px / 76% 1px no-repeat,
      linear-gradient(#116dff 0 0) 0 15px / 44% 2px no-repeat;
  }

  .nav-card {
    gap: 0;
  }

  .nav-card > span {
    padding: 3px 0;
    font-size: 7px;
  }

  .order-dot {
    width: 20px;
    height: 20px;
    margin-bottom: 7px;
  }

  .order-action {
    min-height: 17px;
    margin-top: 7px;
    padding: 0 6px;
    font-size: 6px;
  }

  .wave {
    height: 18px;
    gap: 2px;
  }

  .wave i {
    width: 2px;
    height: 6px;
  }

  .wave i:nth-child(2),
  .wave i:nth-child(6) { height: 12px; }
  .wave i:nth-child(3),
  .wave i:nth-child(5) { height: 17px; }
  .wave i:nth-child(4) { height: 9px; }

  .voice-pulse {
    width: 23px;
    height: 23px;
    border-width: 6px;
  }

  .showcase-orbit {
    width: 62px;
    height: 62px;
    font-size: 22px;
  }

  .showcase-prop {
    width: 154px;
    filter: drop-shadow(0 14px 18px rgb(26 45 61 / 0.16));
  }

  .showcase-prop-left {
    left: -16%;
    top: 25%;
  }

  .orbit-left {
    left: -7%;
  }

  .orbit-right {
    right: -5%;
  }

  .showcase-label {
    bottom: -2px;
    gap: 7px;
  }

  .showcase-label span {
    font-size: 10px;
  }

  .showcase-label small {
    font-size: 8px;
  }

  .showcase-controls {
    top: 8px;
    right: 18px;
  }

  .showcase-arrow,
  .showcase-pause {
    width: 30px;
    height: 30px;
    font-size: 11px;
  }

  .showcase-dots {
    gap: 1px;
    padding: 4px;
  }

  .showcase-dots button {
    width: 28px;
    height: 28px;
  }

  .showcase-dots span {
    width: 15px;
  }

  .proof-band {
    padding-top: 18px;
  }

  .proof-grid > div {
    min-height: 112px;
    padding: 17px;
  }

  .proof-grid strong {
    font-size: 21px;
  }

  .proof-grid span {
    font-size: 11px;
  }

  .section-heading h2,
  .platform-heading h2,
  .services-intro h2,
  .video-copy h2,
  .process-lead h2,
  .studio-copy h2,
  .faq-heading h2,
  .contact-copy h2,
  .hosting-copy h2 {
    font-size: 40px;
    line-height: 1.04;
  }
}

@media (prefers-reduced-motion: reduce) {
  .showcase-aura,
  .hero-slide.is-active .showcase-browser,
  .hero-slide.is-active .showcase-browser::after,
  .hero-slide.is-active .showcase-prop,
  .hero-slide.is-active .showcase-card,
  .hero-slide.is-active .showcase-orbit,
  .wave i,
  .voice-pulse,
  .showcase-dots button.is-active span::after {
    animation: none !important;
  }
}

/* Team */
.studio-section {
  background: #fff;
}

.team-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 40px;
  margin-bottom: clamp(44px, 6vw, 78px);
}

.team-heading .eyebrow {
  margin-bottom: 15px;
}

.team-heading h2 {
  margin: 0;
  color: #090909;
  font-family: "Wix Madefor Display", sans-serif;
  font-size: clamp(48px, 5.7vw, 82px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.team-heading > p {
  max-width: 500px;
  margin: 0 0 7px;
  color: #393b3f;
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.5;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 24px);
}

.team-member {
  min-width: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #e1e2e4;
  border-radius: 8px;
  padding: clamp(22px, 2.4vw, 34px) clamp(18px, 2vw, 28px);
  background: #f7f8f9;
  text-align: center;
}

.team-portrait {
  position: relative;
  overflow: hidden;
  width: min(172px, 72%);
  aspect-ratio: 1;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #111;
}

.team-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgb(0 0 0 / 0.08));
  pointer-events: none;
}

.team-portrait img {
  --portrait-x: 0%;
  --portrait-y: 3%;
  --portrait-scale: 1.025;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 44%;
  filter: grayscale(1);
  transform: translate(var(--portrait-x), var(--portrait-y)) scale(var(--portrait-scale));
  transition: transform 700ms var(--ease);
}

.team-portrait-alex img {
  --portrait-y: 2%;
  --portrait-scale: 1.02;
  object-position: 56% center;
}

.team-portrait-meila img {
  --portrait-x: 1.5%;
}

.team-portrait-anna img {
  --portrait-x: 1.5%;
}

.team-member:hover .team-portrait img {
  --portrait-scale: 1.055;
}

.team-member h3 {
  margin: 22px 0 10px;
  color: #090909;
  font-family: "Wix Madefor Display", sans-serif;
  font-size: clamp(20px, 1.65vw, 25px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.team-member > p {
  margin: 0;
  color: #55585d;
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .team-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .team-heading > p {
    max-width: 620px;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 18px;
  }
}

@media (max-width: 600px) {
  .team-heading {
    margin-bottom: 38px;
  }

  .team-heading h2 {
    font-size: 40px;
    line-height: 1.04;
  }

  .team-grid {
    gap: 30px 12px;
  }

  .team-member {
    padding: 20px 14px 22px;
  }

  .team-member h3 {
    margin: 16px 0 8px;
    font-size: 18px;
  }

  .team-member > p {
    font-size: 14px;
    line-height: 1.45;
  }
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  border: 0;
  padding-block: clamp(72px, 8vw, 112px) 34px;
  background:
    radial-gradient(circle at 8% 12%, rgb(255 242 148 / 0.95) 0, rgb(255 242 148 / 0) 35%),
    radial-gradient(circle at 88% 18%, rgb(126 222 255 / 0.9) 0, rgb(126 222 255 / 0) 38%),
    radial-gradient(circle at 54% 106%, rgb(255 145 184 / 0.9) 0, rgb(255 145 184 / 0) 44%),
    linear-gradient(125deg, #ffc6db 0%, #d7c8ff 48%, #afeaff 100%);
  color: #111;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgb(255 255 255 / 0.18), transparent 45%, rgb(255 255 255 / 0.22));
  pointer-events: none;
}

.site-footer .footer-grid {
  position: relative;
  display: block;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
  align-items: start;
  gap: clamp(52px, 9vw, 140px);
}

.site-footer .footer-brand {
  margin-bottom: clamp(28px, 4vw, 48px);
  color: #111;
  font-size: clamp(30px, 3vw, 42px);
}

.site-footer .footer-brand .brand-mark {
  width: 44px;
  height: 44px;
  flex-basis: 44px;
  background: none;
}

.site-footer .footer-statement {
  max-width: 690px;
  margin: 0;
  color: #111;
  font-family: "Wix Madefor Display", sans-serif;
  font-size: clamp(34px, 4.5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.site-footer .footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
}

.site-footer .footer-links a {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgb(17 17 17 / 0.3);
  padding: 0 2px;
  color: #111;
  font-family: "Wix Madefor Display", sans-serif;
  font-size: clamp(18px, 1.55vw, 23px);
  font-weight: 500;
  text-decoration: none;
  transition: color 180ms ease, padding 180ms ease;
}

.site-footer .footer-links a:hover,
.site-footer .footer-links a:focus-visible {
  padding-inline: 8px;
  color: #064db7;
}

.site-footer .footer-links a:nth-last-child(-n + 2) {
  border-bottom: 1px solid rgb(17 17 17 / 0.3);
}

.site-footer .footer-meta {
  margin-top: clamp(64px, 9vw, 118px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px 32px;
  border-top: 1px solid rgb(17 17 17 / 0.35);
  padding-top: 22px;
}

.site-footer .footer-meta a,
.site-footer .footer-meta span {
  color: #111;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.site-footer .footer-meta a:hover {
  color: #064db7;
}

.site-footer .footer-meta .footer-legal-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer .footer-meta .footer-legal-links a {
  font-weight: 600;
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .site-footer .footer-statement {
    max-width: 620px;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding-block: 64px 28px;
  }

  .footer-top {
    gap: 46px;
  }

  .site-footer .footer-brand {
    margin-bottom: 26px;
    font-size: 30px;
  }

  .site-footer .footer-statement {
    font-size: 38px;
  }

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

  .site-footer .footer-links a:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .site-footer .footer-links a:last-child {
    border-bottom: 1px solid rgb(17 17 17 / 0.3);
  }

  .site-footer .footer-meta {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 64px;
  }
}
