:root {
  --bg: #0e0916;
  --ink: #fbf7ff;
  --muted: #c7bdd6;
  --surface: rgba(22, 15, 32, 0.64);
  --surface-solid: #171020;
  --line: rgba(255, 255, 255, 0.14);
  --violet: #7c3aed;
  --violet-strong: #4c1d95;
  --violet-soft: #f1edff;
  --violet-glow: rgba(124, 58, 237, 0.24);
  --bubble-blue: rgba(125, 170, 255, 0.16);
  --bubble-pink: rgba(235, 184, 255, 0.18);
  --dark: #0b0711;
  --dark-soft: #171020;
  --radius: 8px;
  --container: min(1160px, calc(100vw - 40px));
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --shadow-strong: 0 30px 110px rgba(76, 29, 149, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(124, 58, 237, 0.28), transparent 18rem),
    radial-gradient(circle at 88% 12%, rgba(125, 170, 255, 0.12), transparent 24rem),
    linear-gradient(135deg, #07040c 0%, var(--bg) 46%, #151022 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
}

body::before {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.16) 0 4.2rem, transparent 4.35rem),
    radial-gradient(circle at 28% 10%, var(--bubble-pink) 0 6.6rem, transparent 6.8rem),
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.12) 0 5.4rem, transparent 5.6rem),
    radial-gradient(circle at 88% 36%, var(--bubble-blue) 0 8.2rem, transparent 8.45rem),
    radial-gradient(circle at 16% 72%, rgba(196, 181, 253, 0.24) 0 7.6rem, transparent 7.8rem),
    radial-gradient(circle at 70% 82%, rgba(255, 255, 255, 0.12) 0 6rem, transparent 6.25rem);
  filter: blur(1px);
}

body::after {
  z-index: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.08), transparent 32%, rgba(255, 255, 255, 0.06) 60%, transparent),
    radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.1), transparent 42rem);
  backdrop-filter: blur(18px);
}

.site-header,
main,
.mobile-sticky-cta {
  position: relative;
  z-index: 1;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: clamp(3.65rem, 7.7vw, 7.2rem);
  font-weight: 700;
  line-height: 0.88;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2.45rem, 4.8vw, 4.8rem);
  font-weight: 700;
  line-height: 0.94;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.42rem;
  font-weight: 700;
  line-height: 1.08;
}

p {
  color: var(--muted);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.04rem;
  line-height: 1.72;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 40;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: var(--container);
  min-height: 70px;
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 11, 26, 0.72);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(22px);
}

.brand,
.nav-links,
.hero-actions,
.trust-strip,
.performance-strip,
.logo-row,
.final-cta-layout,
.panel-topline {
  display: flex;
  align-items: center;
}

.brand {
  min-width: 0;
  gap: 0;
}

.brand-logo {
  display: block;
  width: 150px;
  height: auto;
}

.brand-mark {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  overflow: hidden;
  place-items: center;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent 42%),
    #0f0a16;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.brand-mark::after {
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  content: "";
  pointer-events: none;
}

.logo-stack {
  position: relative;
  z-index: 1;
  display: grid;
  width: 28px;
  height: 32px;
  grid-template-rows: 1fr 1fr;
  align-items: center;
  justify-items: center;
}

.logo-stack::before {
  position: absolute;
  right: 4px;
  left: 4px;
  top: 50%;
  height: 1px;
  background: rgba(255, 255, 255, 0.26);
  content: "";
}

.logo-stack span {
  color: #fff;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 0.82;
  text-transform: uppercase;
}

.brand-wordmark {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 50px;
  gap: 8px;
}

.studio-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}

.studio-symbol {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
}

.studio-symbol::before {
  position: absolute;
  width: 11px;
  height: 34px;
  background: #fff;
  content: "";
}

.studio-symbol i {
  position: absolute;
  width: 24px;
  height: 9px;
  border-radius: 1px;
  background: #fff;
  transform-origin: center;
}

.studio-symbol i:nth-child(1) {
  transform: rotate(45deg) translate(-8px, 0);
}

.studio-symbol i:nth-child(2) {
  transform: rotate(-45deg) translate(-8px, 0);
}

.studio-symbol i:nth-child(3) {
  transform: rotate(135deg) translate(-8px, 0);
}

.studio-symbol i:nth-child(4) {
  transform: rotate(-135deg) translate(-8px, 0);
}

.studio-type {
  display: grid;
  gap: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 0.78;
}

.studio-type strong,
.studio-type small {
  display: block;
  color: #fff;
  white-space: nowrap;
}

.studio-type strong {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 2rem;
  font-weight: 950;
  letter-spacing: -0.12em;
  text-transform: lowercase;
}

.studio-type small {
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: -0.13em;
  text-transform: lowercase;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-family: "Playfair Display", Georgia, serif;
  color: #fff;
  font-size: 1.18rem;
  font-weight: 800;
}

.brand small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  justify-content: center;
  gap: 4px;
}

.nav-links a {
  min-height: 40px;
  padding: 11px 13px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 800;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--violet-strong), var(--violet) 58%, #a78bfa);
  box-shadow: 0 18px 46px rgba(124, 58, 237, 0.28);
}

.button-secondary {
  color: #fff;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.1);
}

.button-invert {
  color: var(--dark);
  background: #fff;
}

.section-band {
  padding: 78px 0;
}

@supports (content-visibility: auto) {
  main > .section-band {
    content-visibility: auto;
    contain-intrinsic-size: 1px 720px;
  }

  main > .section-band:first-of-type {
    content-visibility: visible;
    contain-intrinsic-size: auto;
  }
}

.hero-section {
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding: 96px 0 78px;
}

.hero-section::before {
  position: absolute;
  inset: 14px max(10px, calc((100vw - 1220px) / 2)) 8px;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.1), transparent 16rem),
    radial-gradient(circle at 78% 16%, rgba(124, 58, 237, 0.16), transparent 18rem),
    rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 34px 140px rgba(76, 29, 149, 0.2);
  backdrop-filter: blur(20px);
  content: "";
}

.hero-glow {
  position: absolute;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(46px);
  pointer-events: none;
}

.hero-glow-one {
  top: -16rem;
  right: -8rem;
  background: rgba(124, 58, 237, 0.22);
}

.hero-glow-two {
  bottom: -18rem;
  left: -14rem;
  background: rgba(76, 29, 149, 0.12);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.58fr);
  align-items: center;
  gap: 52px;
}

.hero-copy {
  padding: 18px 0 24px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #c4b5fd;
  font-size: 0.78rem;
  font-weight: 900;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 740px;
  font-size: 1.2rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-founder {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 7px 12px 7px 7px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-founder img {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  object-fit: cover;
  object-position: center 18%;
}

.hero-founder strong {
  color: #fff;
}

.trust-strip {
  flex-wrap: wrap;
  gap: 12px;
  max-width: 760px;
  margin-top: 30px;
}

.trust-strip span,
.logo-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.trust-strip span {
  padding: 12px 16px;
}

.performance-strip {
  flex-wrap: wrap;
  gap: 10px;
  max-width: 760px;
  margin-top: 24px;
}

.performance-item {
  display: grid;
  min-width: 126px;
  min-height: 104px;
  flex: 1 1 126px;
  align-content: center;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 48%),
    rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.performance-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(196, 181, 253, 0.24);
  border-radius: var(--radius);
  color: #ddd6fe;
  background: rgba(124, 58, 237, 0.18);
}

.performance-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.performance-item strong,
.performance-item small {
  display: block;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.performance-item strong {
  color: #fff;
  font-size: 0.98rem;
  font-weight: 950;
}

.performance-item small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.76rem;
  font-weight: 850;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: #fff;
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.28), transparent 9rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent 40%),
    linear-gradient(135deg, rgba(11, 7, 17, 0.96), rgba(36, 18, 55, 0.94) 54%, rgba(76, 29, 149, 0.94));
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(24px);
}

.hero-panel::after {
  position: absolute;
  inset: auto -12% -22% 22%;
  height: 12rem;
  border-radius: 50%;
  background: var(--violet-glow);
  filter: blur(34px);
  content: "";
}

.hero-panel > * {
  position: relative;
  z-index: 1;
}

.panel-topline {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

.panel-topline span,
.score-card span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.panel-topline strong {
  padding: 8px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.hero-panel h2 {
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.05;
}

.hero-panel p,
.hero-panel li {
  color: rgba(255, 255, 255, 0.74);
}

.score-card {
  margin: 24px 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.score-card strong {
  display: block;
  margin-top: 8px;
  line-height: 1.35;
}

.mini-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mini-list li::before {
  margin-right: 8px;
  color: #c4b5fd;
  content: "+";
}

.logo-row {
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(20px);
}

.logo-row span {
  padding: 9px 13px;
}

.client-marquee-section {
  position: relative;
  z-index: 1;
  padding: 18px 0 10px;
  overflow: hidden;
}

.client-marquee {
  width: 100%;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.client-marquee-track {
  display: flex;
  width: max-content;
  gap: 10px;
  padding: 12px 0;
  animation: client-marquee 42s linear infinite;
}

.client-marquee-track span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
}

@keyframes client-marquee {
  from {
    transform: translateX(0);
  }

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

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.62fr);
  gap: 36px;
  max-width: none;
  align-items: end;
}

.service-grid,
.pricing-grid,
.proof-grid {
  display: grid;
  gap: 16px;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.work-card,
.price-card,
.proof-card,
.process-item,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(22px);
}

.service-card {
  min-height: 220px;
  padding: 22px;
}

.service-card-featured {
  background:
    radial-gradient(circle at 18% 0%, rgba(196, 181, 253, 0.2), transparent 14rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(124, 58, 237, 0.14)),
    rgba(22, 15, 32, 0.72);
  box-shadow: var(--shadow-strong), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.service-card span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, var(--violet-strong), var(--violet));
  font-weight: 900;
}

.offer-mini-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.offer-mini-list li {
  color: rgba(255, 255, 255, 0.72);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.84rem;
  font-weight: 850;
}

.offer-mini-list li::before {
  margin-right: 8px;
  color: #c4b5fd;
  content: "+";
}

.portfolio-section,
.pricing-section {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.06), transparent 18rem),
    radial-gradient(circle at 82% 24%, rgba(124, 58, 237, 0.18), transparent 20rem);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.work-card {
  display: grid;
  gap: 18px;
  padding: 16px;
  color: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.work-card:hover {
  border-color: rgba(196, 181, 253, 0.42);
  box-shadow: var(--shadow-strong), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
}

.work-card .work-content::after {
  display: inline-flex;
  margin-top: 18px;
  color: #fff;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  content: "Voir le cas ->";
}

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

.work-preview {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #181123;
}

.work-preview::after,
.case-visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 5, 14, 0.1), rgba(8, 5, 14, 0.72)),
    radial-gradient(circle at 70% 20%, rgba(124, 58, 237, 0.22), transparent 18rem);
  content: "";
}

.work-image,
.case-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05) brightness(0.78);
  transform: scale(1.01);
  transition: transform 520ms ease, filter 520ms ease;
}

.work-card:hover .work-image {
  filter: saturate(0.92) contrast(1.08) brightness(0.88);
  transform: scale(1.045);
}

.lab-shot {
  position: absolute;
  inset: 14px;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 14px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.14), transparent 12rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 28px 80px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(22px);
}

.lab-shot::before {
  position: absolute;
  inset: auto -18% -34% 18%;
  height: 56%;
  border-radius: 999px 999px 0 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.24), transparent 16rem),
    linear-gradient(135deg, rgba(124, 58, 237, 0.72), rgba(14, 165, 233, 0.38));
  filter: blur(2px);
  content: "";
}

.lab-shot::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, #000, transparent 72%);
  content: "";
}

.shot-top,
.shot-hero,
.shot-grid,
.shot-panel {
  position: relative;
  z-index: 1;
}

.shot-top {
  display: flex;
  gap: 7px;
}

.shot-top span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

.shot-hero {
  align-self: end;
  display: grid;
  gap: 8px;
  max-width: 78%;
}

.shot-hero small {
  color: rgba(255, 255, 255, 0.66);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.shot-hero strong {
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 2.4rem);
  line-height: 0.95;
}

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

.shot-grid span {
  min-width: 0;
  padding: 10px 9px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(7, 5, 12, 0.44);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  text-align: center;
}

.shot-panel {
  display: grid;
  gap: 8px;
  width: min(58%, 220px);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(7, 5, 12, 0.5);
}

.shot-panel i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
}

.shot-panel i:nth-child(2) {
  width: 72%;
}

.shot-panel i:nth-child(3) {
  width: 46%;
}

.lab-shot-salon::before {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.2), transparent 15rem),
    linear-gradient(135deg, rgba(236, 72, 153, 0.5), rgba(124, 58, 237, 0.72));
}

.lab-shot-clinic::before {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.22), transparent 15rem),
    linear-gradient(135deg, rgba(14, 165, 233, 0.42), rgba(124, 58, 237, 0.7));
}

.lab-shot-large {
  inset: 18px;
}

.lab-shot-overlay {
  inset: auto 16px 16px auto;
  width: min(74%, 330px);
  min-height: 0;
  grid-template-rows: auto 1fr auto;
  padding: 15px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 24% 12%, rgba(255, 255, 255, 0.16), transparent 9rem),
    linear-gradient(145deg, rgba(15, 10, 24, 0.78), rgba(15, 10, 24, 0.46));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 24px 70px rgba(0, 0, 0, 0.42);
}

.lab-shot-overlay::before {
  inset: auto -24% -52% 18%;
  height: 70%;
  opacity: 0.88;
}

.lab-shot-overlay .shot-hero {
  max-width: 100%;
}

.lab-shot-overlay .shot-hero strong {
  font-size: clamp(1.05rem, 1.8vw, 1.55rem);
  line-height: 1.02;
}

.lab-shot-overlay .shot-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lab-shot-overlay .shot-panel {
  display: none;
}

.work-card-large .work-preview {
  min-height: 430px;
}

.preview-local,
.preview-restaurant {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #0b0711, #2b1740 48%, var(--violet));
  background-size: 48px 48px, 48px 48px, 100% 100%;
}

.preview-commerce,
.preview-salon {
  background:
    radial-gradient(circle at 75% 20%, rgba(124, 58, 237, 0.34), transparent 12rem),
    linear-gradient(135deg, #21142f, #3c1f63 55%, #18243b);
}

.preview-consultant,
.preview-clinic {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 42%),
    linear-gradient(135deg, #111827, #21142f 58%, #4c1d95);
}

.preview-restaurant .work-image,
.preview-restaurant .case-image {
  object-position: center center;
}

.preview-salon .work-image,
.preview-salon .case-image {
  object-position: 46% center;
}

.preview-clinic .work-image,
.preview-clinic .case-image {
  object-position: center center;
}

.floating-chip {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  font-weight: 900;
  backdrop-filter: blur(18px);
}

.mock-window {
  display: none;
}

.mock-window i {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
}

.mock-window i:nth-child(2) {
  width: 74%;
}

.mock-window i:nth-child(3) {
  width: 46%;
}

.work-content {
  padding: 0 4px 4px;
}

.work-points {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.work-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
}

.work-points li::before {
  display: block;
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #c4b5fd;
  box-shadow: 0 0 18px rgba(196, 181, 253, 0.62);
  content: "";
}

.lab-details-section {
  background:
    radial-gradient(circle at 20% 10%, rgba(124, 58, 237, 0.12), transparent 22rem),
    radial-gradient(circle at 80% 48%, rgba(255, 255, 255, 0.05), transparent 18rem);
}

.lab-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin: -8px 0 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.lab-note strong {
  color: #fff;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lab-note p {
  margin-bottom: 0;
}

.lab-note-compact {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  margin: -4px 0 18px;
  padding: 12px 14px;
}

.lab-note-compact strong {
  white-space: nowrap;
}

.lab-note-compact p {
  font-size: 0.95rem;
  line-height: 1.45;
}

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

.case-card {
  display: flex;
  min-height: 460px;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(22, 15, 32, 0.68);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px);
  color: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.case-card:hover {
  border-color: rgba(196, 181, 253, 0.42);
  box-shadow: var(--shadow-strong), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
}

.case-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 28px;
}

.case-meta span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, var(--violet-strong), var(--violet));
  font-weight: 900;
}

.case-meta strong {
  color: #c4b5fd;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.74rem;
  font-weight: 900;
  text-align: right;
  text-transform: uppercase;
}

.case-list {
  display: grid;
  gap: 12px;
  margin: auto 0 0;
}

.case-list div {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.case-list dt {
  margin-bottom: 4px;
  color: #fff;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.case-list dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.55;
}

.case-hero {
  position: relative;
  overflow: hidden;
  padding-top: 92px;
}

.case-hero::before {
  position: absolute;
  inset: 16px max(10px, calc((100vw - 1220px) / 2)) 8px;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.1), transparent 16rem),
    radial-gradient(circle at 76% 22%, rgba(124, 58, 237, 0.16), transparent 20rem),
    rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 34px 140px rgba(76, 29, 149, 0.2);
  backdrop-filter: blur(20px);
  content: "";
}

.case-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: 52px;
  align-items: center;
}

.back-link {
  display: inline-flex;
  width: fit-content;
  min-height: 36px;
  align-items: center;
  margin-bottom: 22px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
}

.case-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.case-visual .floating-chip,
.case-visual .mock-window {
  z-index: 2;
}

.case-hero .trust-strip {
  justify-content: center;
}

.case-hero .trust-strip span {
  text-align: center;
}

.case-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.case-panel {
  min-height: 340px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(22, 15, 32, 0.68);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px);
}

.case-panel span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, var(--violet-strong), var(--violet));
  font-weight: 900;
}

.case-panel h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.human-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.06), transparent 18rem),
    radial-gradient(circle at 82% 20%, rgba(124, 58, 237, 0.12), transparent 22rem);
}

.human-layout {
  max-width: 980px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px);
}

.credibility-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(124, 58, 237, 0.08)),
    rgba(255, 255, 255, 0.02);
}

.credibility-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: start;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px);
}

.credibility-heading {
  display: grid;
  align-content: start;
}

.founder-title-row {
  display: block;
}

.founder-title-row h2 {
  min-width: 0;
}

.founder-avatar {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  margin: 4px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.credibility-copy p {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.founder-proof {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

.founder-card {
  position: relative;
  max-width: 180px;
  margin: 18px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  aspect-ratio: 1;
}

.founder-card-mobile {
  display: none;
}

.founder-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 28%;
  filter: saturate(0.92) contrast(1.02);
}

.founder-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(8, 5, 14, 0.72));
  content: "";
}

.founder-card figcaption {
  position: absolute;
  right: 8px;
  bottom: 16px;
  left: 8px;
  z-index: 1;
  display: grid;
  gap: 4px;
}

.founder-card figcaption span,
.founder-card figcaption strong {
  color: #fff;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.founder-card figcaption span {
  font-size: 0.58rem;
  font-weight: 900;
  text-transform: uppercase;
}

.founder-card figcaption strong {
  display: none;
  font-size: 0.72rem;
  line-height: 1.25;
}

.credibility-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.credibility-copy {
  text-align: center;
}

.credibility-strip span {
  min-height: 38px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.08);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
}

.background-section {
  background:
    radial-gradient(circle at 16% 14%, rgba(255, 255, 255, 0.06), transparent 18rem),
    radial-gradient(circle at 84% 42%, rgba(124, 58, 237, 0.14), transparent 24rem);
}

.background-layout {
  display: grid;
  gap: 28px;
}

.background-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.background-card {
  min-height: 280px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(22, 15, 32, 0.68);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px);
}

.background-card span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, var(--violet-strong), var(--violet));
  font-weight: 900;
}

.badge {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 999px;
  color: #ede9fe;
  background: rgba(124, 58, 237, 0.22);
  font-size: 0.76rem;
  font-weight: 900;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.badge + h3 {
  margin-top: 14px;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 120px;
  margin-bottom: 0;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-item {
  padding: 22px;
}

.process-item span {
  display: block;
  margin-bottom: 12px;
  color: var(--violet-strong);
  font-size: 0.78rem;
  font-weight: 900;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-transform: uppercase;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
}

.price-card.is-featured {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), transparent 42%),
    var(--dark);
  box-shadow: var(--shadow-strong);
}

.price-card.is-featured p,
.price-card.is-featured li {
  color: rgba(255, 255, 255, 0.74);
}

.price-card strong {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 4px 0 10px;
  padding: 0;
  list-style: none;
}

.price-card li {
  color: var(--muted);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.02rem;
  font-weight: 800;
}

.price-card li::before {
  margin-right: 8px;
  color: var(--violet);
  content: "+";
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.proof-section {
  color: #fff;
  background:
    radial-gradient(circle at 82% 10%, rgba(124, 58, 237, 0.28), transparent 22rem),
    linear-gradient(135deg, var(--dark), var(--dark-soft));
}

.proof-section h2 {
  max-width: 760px;
}

.proof-section p,
.proof-section .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.proof-layout {
  display: grid;
  gap: 34px;
}

.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 22px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent 48%),
    rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.proof-card strong {
  display: block;
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.proof-label {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 18px;
  padding: 0 10px;
  border: 1px solid rgba(196, 181, 253, 0.26);
  border-radius: 999px;
  color: #ddd6fe;
  background: rgba(124, 58, 237, 0.18);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.audit-bars {
  display: grid;
  gap: 9px;
  margin-top: 24px;
}

.audit-bars i {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #c4b5fd, rgba(255, 255, 255, 0.16));
}

.audit-bars i:nth-child(2) {
  width: 76%;
}

.audit-bars i:nth-child(3) {
  width: 52%;
}

.proof-checklist {
  display: grid;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.proof-metrics span {
  display: grid;
  gap: 4px;
  min-height: 70px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 850;
}

.proof-metrics b {
  color: #fff;
  font-size: 0.76rem;
}

.proof-checklist li {
  display: flex;
  min-height: 38px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 850;
}

.proof-checklist li::before {
  margin-right: 9px;
  color: #c4b5fd;
  content: "+";
}

.before-after {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 10px;
  margin-top: 24px;
}

.before-after span {
  display: grid;
  min-height: 74px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

.before-after span:last-child {
  color: #fff;
  background: linear-gradient(135deg, rgba(76, 29, 149, 0.72), rgba(124, 58, 237, 0.44));
  box-shadow: 0 18px 46px rgba(124, 58, 237, 0.2);
}

.proof-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  gap: 16px;
  align-items: stretch;
}

.proof-browser,
.proof-side {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent 46%),
    rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px);
}

.proof-browser {
  overflow: hidden;
}

.proof-browser-top {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

.proof-browser-top i {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

.proof-browser-top span {
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 850;
}

.proof-browser-body {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 1fr);
  gap: 26px;
  padding: 24px;
}

.proof-browser-body h3 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
}

.roadmap-list {
  display: grid;
  gap: 10px;
}

.roadmap-list span {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(8, 5, 14, 0.38);
  color: rgba(255, 255, 255, 0.72);
  font-weight: 850;
}

.roadmap-list b {
  color: #c4b5fd;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.proof-side {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}

.proof-side span {
  display: block;
  margin-bottom: 12px;
  color: #c4b5fd;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-side strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.15;
}

.local-seo-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(124, 58, 237, 0.16), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.local-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.local-page-card {
  display: grid;
  gap: 12px;
  min-height: 230px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: inherit;
  background:
    radial-gradient(circle at 82% 18%, rgba(167, 139, 250, 0.18), transparent 11rem),
    rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.local-page-card:hover {
  transform: translateY(-3px);
  border-color: rgba(196, 181, 253, 0.36);
  background:
    radial-gradient(circle at 82% 18%, rgba(167, 139, 250, 0.24), transparent 11rem),
    rgba(255, 255, 255, 0.06);
}

.local-page-card span {
  width: max-content;
  max-width: 100%;
  padding: 7px 10px;
  border: 1px solid rgba(196, 181, 253, 0.24);
  border-radius: 999px;
  color: #ddd6fe;
  background: rgba(124, 58, 237, 0.11);
  font-size: 0.78rem;
  font-weight: 900;
}

.local-page-card h3 {
  margin: auto 0 0;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.local-page-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: 46px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  padding: 0 18px;
}

.faq-item summary {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  list-style: none;
  font-weight: 900;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  flex: 0 0 auto;
  color: var(--violet);
  content: "+";
  font-size: 1.35rem;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin-bottom: 18px;
}

.final-cta {
  color: #fff;
  background:
    radial-gradient(circle at 20% 0%, rgba(124, 58, 237, 0.3), transparent 24rem),
    linear-gradient(135deg, #13091f, #37165f 58%, var(--violet-strong));
}

.final-cta p,
.final-cta .eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

.contact-layout {
  display: block;
  max-width: 820px;
}

.final-cta-layout {
  justify-content: space-between;
  gap: 28px;
}

.final-cta-layout h2 {
  max-width: 820px;
}

.final-cta-layout p {
  max-width: 680px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 580px;
  margin-top: 26px;
}

.contact-grid a {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.contact-grid span,
.contact-grid strong {
  display: block;
}

.contact-grid span {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-grid strong {
  overflow-wrap: anywhere;
  font-size: 0.92rem;
}

.lead-form {
  display: grid;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background:
    radial-gradient(circle at 18% 0%, rgba(196, 181, 253, 0.16), transparent 16rem),
    rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px);
}

.form-head {
  padding: 8px 8px 2px;
}

.form-head span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 14px;
  padding: 0 10px;
  border: 1px solid rgba(196, 181, 253, 0.28);
  border-radius: 999px;
  color: #c4b5fd;
  background: rgba(124, 58, 237, 0.16);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.form-head h3 {
  margin-bottom: 6px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.form-head p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
}

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

.lead-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  padding: 0 13px;
  color: #fff;
  background: rgba(8, 5, 14, 0.62);
  outline: 0;
}

.lead-form textarea {
  min-height: 128px;
  padding-top: 13px;
  resize: vertical;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(196, 181, 253, 0.68);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.18);
}

.form-actions {
  display: block;
}

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

.form-note {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.lead-form-compact {
  max-width: 720px;
  margin: 0 auto;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.thanks-card {
  max-width: 760px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.thanks-card h1 {
  font-size: clamp(3rem, 8vw, 5.8rem);
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 42px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 20% 0%, rgba(124, 58, 237, 0.18), transparent 20rem),
    rgba(8, 5, 14, 0.72);
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 34px;
  align-items: start;
  padding-bottom: 26px;
}

.footer-brand {
  display: grid;
  max-width: 420px;
  gap: 18px;
}

.footer-logo {
  display: block;
  width: 164px;
  height: auto;
}

.footer-brand p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.72);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 850;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.54);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
}

.mobile-sticky-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 35;
  display: none;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, var(--violet-strong), var(--violet));
  box-shadow: 0 18px 50px rgba(76, 29, 149, 0.28);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .nav-links,
  .header-cta {
    display: none;
  }

  .site-header.is-open .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(17, 11, 26, 0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
  }

  .hero-layout,
  .case-hero-layout,
  .contact-layout,
  .split-heading,
  .process-layout,
  .credibility-layout,
  .faq-layout,
  .portfolio-grid,
  .proof-showcase,
  .proof-browser-body {
    grid-template-columns: 1fr;
  }

  .sticky-heading {
    position: static;
  }

  .contact-copy {
    position: static;
  }

  .service-grid,
  .case-grid,
  .case-page-grid,
  .background-grid,
  .pricing-grid,
  .proof-grid,
  .local-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 720px) {
  :root {
    --container: min(100vw - 28px, 1160px);
  }

  .site-header {
    top: 10px;
    min-height: 64px;
    margin-top: 10px;
  }

  .brand small {
    display: none;
  }

  .section-band {
    padding: 56px 0;
  }

  .hero-section {
    padding: 64px 0 54px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.55rem);
    line-height: 0.9;
  }

  h2 {
    font-size: clamp(2.2rem, 10vw, 3.25rem);
  }

  .hero-layout {
    gap: 32px;
  }

  .hero-copy {
    padding: 10px 0 14px;
  }

  .hero-actions,
  .final-cta-layout {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-panel {
    padding: 20px;
  }

  .service-grid,
  .case-grid,
  .case-page-grid,
  .background-grid,
  .pricing-grid,
  .proof-grid,
  .local-page-grid {
    grid-template-columns: 1fr;
  }

  .lab-shot {
    inset: 10px;
    padding: 14px;
    border-radius: 18px;
  }

  .lab-shot-overlay {
    inset: auto 10px 10px 10px;
    width: auto;
  }

  .shot-hero {
    max-width: 92%;
  }

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

  .shot-panel {
    display: none;
  }

  .case-card {
    min-height: 0;
  }

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

  .form-grid,
  .form-actions {
    grid-template-columns: 1fr;
  }

  .proof-card {
    min-height: 0;
  }

  .proof-metrics,
  .before-after {
    grid-template-columns: 1fr;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .case-panel,
  .case-visual {
    min-height: 0;
  }

  .case-visual {
    min-height: 300px;
  }

  .credibility-layout {
    padding: 22px;
  }

  .work-card-large .work-preview,
  .work-preview {
    min-height: 300px;
  }

  .price-card strong {
    font-size: 2.35rem;
  }

  .mobile-sticky-cta {
    display: flex;
  }
}

@media (max-width: 430px) {
  .brand strong {
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  h1 {
    font-size: 2.85rem;
  }

  h2 {
    font-size: 2rem;
  }

  .trust-strip span,
  .logo-row span {
    width: 100%;
    text-align: center;
  }

  .performance-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .performance-item strong {
    font-size: 0.9rem;
  }

  .performance-item small {
    font-size: 0.72rem;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100vw - 32px, 1160px);
    --shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
    --shadow-strong: 0 22px 58px rgba(76, 29, 149, 0.2);
  }

  html {
    scroll-padding-top: 92px;
  }

  body {
    background:
      radial-gradient(circle at 50% -8rem, rgba(124, 58, 237, 0.22), transparent 20rem),
      linear-gradient(180deg, #07040c 0%, #0f0a17 42%, #120d1b 100%);
  }

  body::before {
    opacity: 0.24;
    filter: blur(18px);
  }

  body::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 28rem);
    backdrop-filter: none;
  }

  .site-header {
    top: 8px;
    min-height: 58px;
    margin-top: 8px;
    padding: 8px 10px;
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(12, 8, 18, 0.9);
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.32);
  }

  .studio-symbol {
    width: 28px;
    height: 28px;
  }

  .studio-symbol::before {
    width: 9px;
    height: 28px;
  }

  .studio-symbol i {
    width: 20px;
    height: 7px;
  }

  .studio-type strong,
  .studio-type small {
    font-size: 1.45rem;
    letter-spacing: -0.1em;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .site-header.is-open .nav-links {
    gap: 4px;
    padding: 8px;
    background: rgba(12, 8, 18, 0.98);
  }

  .nav-links a {
    min-height: 46px;
    padding: 14px 12px;
    color: rgba(255, 255, 255, 0.84);
    text-align: center;
  }

  .section-band {
    padding: 46px 0;
  }

  .hero-section {
    padding: 42px 0 44px;
  }

  .hero-section::before {
    inset: 0 10px;
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
      rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }

  .hero-glow {
    width: 18rem;
    height: 18rem;
    filter: blur(34px);
  }

  .hero-glow-one {
    top: -9rem;
    right: -8rem;
  }

  .hero-glow-two {
    bottom: -12rem;
    left: -10rem;
  }

  h1 {
    max-width: 11ch;
    margin-bottom: 16px;
    font-size: clamp(2.72rem, 12.8vw, 4rem);
    line-height: 0.94;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.82rem);
    line-height: 1;
  }

  h3 {
    font-size: 1.28rem;
  }

  p {
    font-size: 1rem;
    line-height: 1.58;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.72rem;
    line-height: 1.32;
  }

  .hero-layout {
    gap: 22px;
  }

  .hero-copy {
    padding: 8px 0 4px;
  }

  .hero-lead {
    font-size: 1.05rem;
    line-height: 1.62;
  }

  .button {
    min-height: 50px;
    padding: 0 16px;
  }

  .hero-panel {
    padding: 18px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.13), transparent 42%),
      rgba(15, 10, 23, 0.86);
  }

  .panel-topline {
    margin-bottom: 18px;
  }

  .hero-panel h2 {
    font-size: 1.75rem;
    line-height: 1.04;
  }

  .score-card {
    margin: 18px 0;
    padding: 14px;
  }

  .trust-strip {
    gap: 8px;
    margin-top: 20px;
  }

  .performance-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
  }

  .performance-item {
    min-width: 0;
    min-height: 92px;
    padding: 12px;
  }

  .performance-icon {
    width: 32px;
    height: 32px;
  }

  .performance-icon svg {
    width: 18px;
    height: 18px;
  }

  .trust-strip span,
  .logo-row span {
    padding: 10px 12px;
    font-size: 0.78rem;
  }

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

  .split-heading {
    gap: 12px;
  }

  .service-card,
  .work-card,
  .price-card,
  .proof-card,
  .process-item,
  .faq-item,
  .background-card,
  .case-card {
    background: rgba(18, 12, 27, 0.78);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }

  .service-card,
  .price-card,
  .proof-card,
  .process-item,
  .background-card,
  .case-card {
    min-height: 0;
    padding: 18px;
  }

  .service-card span,
  .background-card span {
    width: 34px;
    height: 34px;
    margin-bottom: 16px;
  }

  .credibility-layout {
    gap: 18px;
    padding: 18px;
  }

  .work-card-large .work-preview,
  .work-preview {
    min-height: 220px;
  }

  .work-card-large .work-preview {
    min-height: 260px;
  }

  .work-card {
    gap: 14px;
    padding: 12px;
  }

  .floating-chip {
    top: 12px;
    left: 12px;
    padding: 8px 10px;
    font-size: 0.72rem;
  }

  .mock-window {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 14px;
  }

  .price-card strong {
    font-size: 2rem;
    line-height: 1.08;
  }

  .proof-browser-body,
  .lead-form {
    padding: 18px;
  }

  .proof-browser-top span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .form-head {
    padding: 2px;
  }

  .lead-form input,
  .lead-form select,
  .lead-form textarea {
    min-height: 50px;
    font-size: 16px;
  }

  .site-footer {
    padding-bottom: 92px;
  }

  .mobile-sticky-cta {
    right: 14px;
    bottom: 14px;
    left: auto;
    min-height: 42px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    background: rgba(26, 16, 40, 0.82);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.3);
    font-size: 0.78rem;
    backdrop-filter: blur(18px);
  }
}

@media (max-width: 430px) {
  :root {
    --container: min(100vw - 24px, 1160px);
  }

  .site-header {
    width: min(100vw - 20px, 1160px);
  }

  .studio-type strong,
  .studio-type small {
    font-size: 1.28rem;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.2rem);
  }

  h2 {
    font-size: clamp(1.85rem, 8.5vw, 2.35rem);
  }

  .hero-section {
    padding-top: 34px;
  }

  .hero-section::before {
    inset-inline: 6px;
  }

  .hero-panel h2 {
    font-size: 1.55rem;
  }
}

@media (max-width: 720px) {
  .service-grid,
  .portfolio-grid,
  .case-grid,
  .process-list,
  .background-grid,
  .pricing-grid,
  .proof-grid {
    display: grid;
    grid-auto-columns: minmax(260px, 82vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 12px;
    margin-inline: -4px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 2px 4px 16px;
    scroll-padding-inline: 4px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .service-grid::-webkit-scrollbar,
  .portfolio-grid::-webkit-scrollbar,
  .case-grid::-webkit-scrollbar,
  .process-list::-webkit-scrollbar,
  .background-grid::-webkit-scrollbar,
  .pricing-grid::-webkit-scrollbar,
  .proof-grid::-webkit-scrollbar {
    display: none;
  }

  .service-grid > *,
  .portfolio-grid > *,
  .case-grid > *,
  .process-list > *,
  .background-grid > *,
  .pricing-grid > *,
  .proof-grid > * {
    min-width: 0;
    scroll-snap-align: start;
  }

  .portfolio-grid .work-card,
  .case-grid .case-card,
  .pricing-grid .price-card,
  .proof-grid .proof-card {
    height: 100%;
  }

  .work-card-large .work-preview,
  .work-preview {
    min-height: 220px;
  }
}

@media (max-width: 720px) {
  .hero-section {
    padding: 30px 0 34px;
  }

  .hero-layout,
  .case-hero-layout {
    text-align: center;
  }

  .hero-copy,
  .case-hero .reveal:first-child {
    display: grid;
    justify-items: center;
  }

  .hero-copy h1,
  .case-hero h1 {
    max-width: 11.5ch;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-lead {
    max-width: 34rem;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions {
    width: min(100%, 330px);
    margin-top: 20px;
  }

  .hero-founder {
    width: min(100%, 330px);
    justify-content: flex-start;
    margin-top: 12px;
    text-align: left;
    font-size: 0.74rem;
  }

  .hero-founder img {
    width: 30px;
    height: 30px;
  }

  .hero-panel {
    display: none;
  }

  .performance-strip {
    display: grid;
    width: min(100%, 330px);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    margin-top: 16px;
  }

  .performance-item {
    min-height: 64px;
    padding: 8px 6px;
  }

  .performance-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 6px;
  }

  .performance-icon svg {
    width: 14px;
    height: 14px;
  }

  .performance-item strong {
    font-size: 0.7rem;
    line-height: 1.05;
  }

  .performance-item small {
    font-size: 0.58rem;
    line-height: 1.1;
  }

  .client-marquee-section {
    padding: 8px 0 0;
  }

  .client-marquee-track {
    gap: 8px;
    padding: 10px 0;
    animation-duration: 34s;
  }

  .client-marquee-track span {
    min-height: 32px;
    padding: 0 12px;
    font-size: 0.76rem;
  }

  .lab-note-compact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    padding: 12px;
  }

  .lab-note-compact p {
    font-size: 0.88rem;
    line-height: 1.38;
  }

  .work-preview,
  .case-visual {
    aspect-ratio: 1.08;
    min-height: 0;
  }

  .work-card-large .work-preview {
    min-height: 0;
  }

  .work-image,
  .case-image {
    filter: saturate(0.72) contrast(1.08) brightness(0.82);
  }

  .case-hero {
    padding-top: 34px;
  }

  .case-hero::before {
    inset: 0 8px;
    border-radius: 18px;
  }

  .case-hero .trust-strip {
    justify-content: center;
    width: 100%;
  }

  .case-hero .trust-strip span {
    width: auto;
    min-width: 96px;
    flex: 0 0 auto;
  }

  .back-link {
    margin-right: auto;
    margin-left: auto;
  }

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

  .founder-card-mobile {
    display: none;
  }

  .lead-form-compact {
    gap: 14px;
  }

  .lead-form-compact .form-grid {
    gap: 10px;
  }

  .lead-form-compact textarea {
    min-height: 112px;
  }
}

@media (max-width: 430px) {
  .hero-copy h1,
  .case-hero h1 {
    max-width: 11.5ch;
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .case-hero .trust-strip {
    gap: 8px;
  }

  .case-hero .trust-strip span {
    min-width: calc(50% - 4px);
  }

  .founder-title-row {
    gap: 10px;
  }

  .founder-avatar {
    flex-basis: 54px;
    width: 54px;
    height: 54px;
    margin-top: 2px;
  }

  .performance-strip {
    width: 100%;
    gap: 5px;
  }

  .performance-item {
    min-height: 58px;
    padding: 7px 4px;
  }
}

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

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

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

@media (max-width: 720px) {
  .hero-section {
    padding: 42px 0 42px;
  }

  .case-hero {
    padding-top: 56px;
  }

  h1 {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: clamp(2.35rem, 10.5vw, 3.35rem);
    line-height: 0.98;
  }

  .hero-lead {
    font-size: 1.02rem;
    line-height: 1.58;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .trust-strip {
    gap: 8px;
    margin-top: 20px;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: clamp(2.15rem, 10vw, 2.75rem);
    line-height: 1;
  }

  .eyebrow {
    margin-bottom: 9px;
  }
}

@media (min-width: 1061px) {
  .hero-section {
    padding: 70px 0 58px;
  }

  .hero-layout {
    gap: 42px;
  }

  .hero-copy {
    padding: 8px 0 12px;
  }

  .hero-copy h1 {
    max-width: 780px;
    margin-bottom: 18px;
    font-size: clamp(3.2rem, 6vw, 5.85rem);
    line-height: 0.92;
  }

  .hero-lead {
    max-width: 660px;
    font-size: 1.12rem;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .performance-strip {
    margin-top: 18px;
  }

  .performance-item {
    min-height: 86px;
  }
}

/* Final mobile polish: keep Studio Lab photos visible and pills readable. */
@media (max-width: 720px) {
  .portfolio-section .work-preview {
    aspect-ratio: 0.92;
    min-height: 300px;
  }

  .portfolio-section .work-card-large .work-preview {
    min-height: 330px;
  }

  .portfolio-section .work-image {
    filter: saturate(0.84) contrast(1.08) brightness(0.8);
    object-position: center;
  }

  .portfolio-section .preview-salon .work-image {
    object-position: 42% center;
  }

  .portfolio-section .lab-shot-overlay {
    inset: auto 12px 12px auto;
    width: min(64%, 218px);
    padding: 11px;
    gap: 7px;
    border-radius: 16px;
    background:
      radial-gradient(circle at 24% 12%, rgba(255, 255, 255, 0.14), transparent 7rem),
      linear-gradient(145deg, rgba(15, 10, 24, 0.78), rgba(15, 10, 24, 0.38));
    backdrop-filter: blur(14px);
  }

  .portfolio-section .lab-shot-overlay .shot-top {
    gap: 5px;
  }

  .portfolio-section .lab-shot-overlay .shot-top span {
    width: 6px;
    height: 6px;
  }

  .portfolio-section .lab-shot-overlay .shot-hero {
    gap: 4px;
  }

  .portfolio-section .lab-shot-overlay .shot-hero small {
    font-size: 0.58rem;
    letter-spacing: 0.06em;
  }

  .portfolio-section .lab-shot-overlay .shot-hero strong {
    font-size: 1.05rem;
    line-height: 1;
  }

  .portfolio-section .lab-shot-overlay .shot-grid {
    display: none;
  }

  .floating-chip,
  .badge,
  .proof-label,
  .local-page-card span,
  .trust-strip span,
  .client-marquee-track span {
    min-height: 34px;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .floating-chip {
    padding: 9px 12px;
    font-size: 0.76rem;
  }

  .badge,
  .proof-label,
  .local-page-card span {
    padding: 8px 11px;
    font-size: 0.76rem;
  }

  .work-points li {
    line-height: 1.35;
  }
}

@media (max-width: 430px) {
  .portfolio-section .work-preview {
    min-height: 286px;
  }

  .portfolio-section .work-card-large .work-preview {
    min-height: 310px;
  }

  .portfolio-section .lab-shot-overlay {
    width: min(60%, 190px);
    padding: 10px;
  }

  .portfolio-section .lab-shot-overlay .shot-hero strong {
    font-size: 0.98rem;
  }
}
