:root {
  --bg: #050915;
  --bg-2: #071020;
  --panel: rgba(12, 22, 43, .76);
  --panel-strong: #0d1830;
  --text: #f2f5fb;
  --soft: rgba(242, 245, 251, .72);
  --muted: rgba(242, 245, 251, .48);
  --line: rgba(242, 245, 251, .09);
  --blue: #1e67ff;
  --blue-2: #55a0ff;
  --gold: #d9b667;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.19, 1, .22, 1);
  --shadow: 0 30px 90px rgba(0, 0, 0, .36);
  --wrap: 1320px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: .026;
  background-image: radial-gradient(rgba(255, 255, 255, .9) .55px, transparent .55px);
  background-size: 4px 4px;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

::selection {
  background: var(--blue);
  color: #fff;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 1200;
  transform: translateY(-160%);
  background: var(--text);
  color: var(--bg);
  padding: 10px 14px;
  text-decoration: none;
}

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

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

.wrap {
  width: min(100% - 48px, var(--wrap));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(82px, 9vw, 132px) 0;
}

.section-dark {
  position: relative;
  background:
    radial-gradient(circle at 74% 34%, rgba(30, 103, 255, .11), transparent 31rem),
    linear-gradient(180deg, #050915 0%, #07101f 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  border: 1px solid rgba(85, 160, 255, .3);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(30, 103, 255, .06);
  color: var(--blue-2);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .22em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 650px;
  margin: 28px 0 22px;
  font-size: clamp(2.9rem, 4.4vw, 4.6rem);
  line-height: 1.08;
}

h2 {
  margin: 22px 0 0;
  font-size: clamp(2.55rem, 4.3vw, 4.25rem);
  line-height: 1.03;
}

h1 em,
h2 em {
  color: var(--blue-2);
  font-style: italic;
}

h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.38rem;
  font-weight: 500;
  line-height: 1.18;
}

.lead {
  max-width: 500px;
  color: var(--soft);
  font-size: 1rem;
  line-height: 1.82;
}

.button,
.nav-cta {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  border-radius: 3px;
  padding: 0 24px;
  color: white;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .055em;
  text-decoration: none;
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
}

.button::before,
.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transform: translateX(-35%);
  background: linear-gradient(115deg, rgba(255, 255, 255, .18), transparent 38%, rgba(255, 255, 255, .08));
  transition: opacity .35s ease, transform .55s var(--ease);
}

.button:hover::before,
.nav-cta:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.button-primary,
.nav-cta {
  background: var(--blue);
  box-shadow: 0 16px 38px rgba(30, 103, 255, .26);
}

.button-primary:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  background: #2d73ff;
  box-shadow: 0 22px 54px rgba(30, 103, 255, .32);
}

.button-secondary {
  border: 1px solid rgba(242, 245, 251, .22);
  background: rgba(255, 255, 255, .025);
  color: var(--text);
}

.button-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(85, 160, 255, .48);
  background: rgba(30, 103, 255, .08);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  padding: 18px 0;
  border-bottom: 1px solid transparent;
  transition: padding .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s var(--ease);
}

.site-header.is-scrolled,
.site-header.menu-open {
  padding: 12px 0;
  border-color: var(--line);
  background: rgba(5, 9, 21, .82);
  backdrop-filter: blur(22px) saturate(1.2);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  text-decoration: none;
}

.brand img {
  width: 30px;
  height: auto;
  object-fit: contain;
}

.brand span {
  font-size: 1.15rem;
  letter-spacing: .01em;
}

.brand em {
  color: var(--blue-2);
  font-style: normal;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(30px, 4.8vw, 64px);
}

.desktop-nav a,
.section-link,
.industry-card a,
.case-content a,
.footer-grid a {
  position: relative;
  width: fit-content;
  color: var(--soft);
  font-size: .78rem;
  text-decoration: none;
  transition: color .25s ease;
}

.desktop-nav a::after,
.section-link::after,
.industry-card a::after,
.case-content a::after,
.footer-grid a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  background: var(--blue-2);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

.desktop-nav a:hover,
.section-link:hover,
.industry-card a:hover,
.case-content a:hover,
.footer-grid a:hover {
  color: var(--text);
}

.desktop-nav a:hover::after,
.section-link:hover::after,
.industry-card a:hover::after,
.case-content a:hover::after,
.footer-grid a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  min-height: 38px;
  padding-inline: 20px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: rgba(255, 255, 255, .025);
  color: var(--text);
}

.menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform .25s ease;
}

.menu-open .menu-toggle span:nth-child(2) {
  transform: translateY(3.5px) rotate(42deg);
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-3.5px) rotate(-42deg);
}

.mobile-menu {
  display: none;
}

.hero {
  min-height: 100svh;
  padding-top: 76px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .5;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(180deg, black, transparent 88%);
}

.hero-layout {
  min-height: calc(100svh - 76px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1fr);
  gap: clamp(64px, 8vw, 118px);
  align-items: center;
  padding: 58px 0 42px;
}

.hero-layout > *,
.hero-copy,
.hero-visual {
  min-width: 0;
  max-width: 100%;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.scroll-cue {
  display: inline-flex;
  gap: 12px;
  margin-top: 64px;
  color: var(--soft);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .3s ease;
}

.scroll-cue:hover {
  color: var(--blue-2);
}

.hero-visual {
  position: relative;
  justify-self: center;
  width: min(100%, 650px);
}

.hero-showcase {
  position: relative;
  padding: 20px 0 34px;
}

.showcase-light {
  position: absolute;
  inset: -50px 0 -30px;
  z-index: -1;
  background: radial-gradient(circle at 50% 42%, rgba(72, 132, 255, .19), transparent 38%);
  filter: blur(10px);
}

.laptop-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(85, 160, 255, .24);
  border-radius: 12px 12px 6px 6px;
  background: linear-gradient(145deg, rgba(20, 35, 66, .92), rgba(5, 9, 20, .96));
  box-shadow: 0 42px 110px rgba(0, 0, 0, .5), 0 0 82px rgba(30, 103, 255, .14), inset 0 1px 0 rgba(255, 255, 255, .08);
  transition: border-color .45s ease, box-shadow .45s ease;
}

.hero-showcase:hover .laptop-frame {
  border-color: rgba(85, 160, 255, .38);
  box-shadow: 0 46px 120px rgba(0, 0, 0, .54), 0 0 92px rgba(30, 103, 255, .18), inset 0 1px 0 rgba(255, 255, 255, .1);
}

.laptop-top,
.mock-top {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 34px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(242, 245, 251, .1);
  background: rgba(2, 5, 13, .48);
}

.laptop-top span,
.mock-top span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(242, 245, 251, .22);
}

.laptop-top b,
.mock-top b {
  margin-left: auto;
  color: rgba(242, 245, 251, .46);
  font-size: .62rem;
  font-weight: 500;
}

.laptop-screen {
  padding: 16px;
  background: radial-gradient(circle at 74% 18%, rgba(30, 103, 255, .12), transparent 32%), #070d1b;
}

.dental-site {
  overflow: hidden;
  border: 1px solid rgba(5, 9, 21, .08);
  border-radius: 6px;
  background: #eef5ff;
  color: #101827;
}

.preview-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 48px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(10, 20, 38, .08);
}

.preview-nav strong {
  margin-right: auto;
  color: #0d1a31;
  font-size: .8rem;
}

.preview-nav i {
  width: 34px;
  height: 4px;
  border-radius: 99px;
  background: rgba(10, 20, 38, .14);
}

.preview-nav em,
.preview-hero button {
  border: 0;
  border-radius: 3px;
  background: #1e67ff;
  color: white;
  font-size: .62rem;
  font-style: normal;
  font-weight: 700;
}

.preview-nav em {
  padding: 6px 11px;
}

.preview-hero {
  display: grid;
  grid-template-columns: 1fr .62fr;
  gap: 24px;
  align-items: center;
  min-height: 286px;
  padding: 34px;
}

.preview-hero small {
  color: #1e67ff;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.preview-hero h3 {
  max-width: 340px;
  margin: 12px 0 18px;
  color: #0b1425;
  font-size: clamp(2rem, 3.1vw, 3rem);
}

.preview-hero p,
.mock-page p,
.mock-page footer i {
  display: block;
  height: 8px;
  margin: 10px 0;
  border-radius: 99px;
  background: rgba(10, 20, 38, .14);
}

.preview-hero p:nth-of-type(1),
.mock-page p:nth-of-type(1) {
  width: 82%;
}

.preview-hero p:nth-of-type(2),
.mock-page p:nth-of-type(2) {
  width: 55%;
}

.preview-hero button {
  margin-top: 14px;
  padding: 10px 16px;
}

.clinic-portrait,
.portrait-dental {
  min-height: 230px;
  overflow: hidden;
  border-radius: 999px 999px 8px 8px;
  background:
    radial-gradient(circle at 50% 24%, #f3c8ad 0 15%, transparent 16%),
    radial-gradient(circle at 50% 26%, #6e4c3f 0 24%, transparent 25%),
    linear-gradient(145deg, transparent 0 38%, rgba(255, 255, 255, .92) 39% 73%, transparent 74%),
    linear-gradient(180deg, #c9dcf3, #f7fbff);
  box-shadow: inset 0 0 0 1px rgba(10, 20, 38, .08);
}

.preview-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(10, 20, 38, .08);
}

.preview-metrics div {
  padding: 18px 22px;
  border-right: 1px solid rgba(10, 20, 38, .08);
}

.preview-metrics div:last-child {
  border-right: 0;
}

.preview-metrics strong {
  display: block;
  color: #0d1a31;
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1;
}

.preview-metrics span {
  color: rgba(10, 20, 38, .56);
  font-size: .67rem;
}

.laptop-base {
  height: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(0, 0, 0, .28));
}

.compact-layout,
.process-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(44px, 7vw, 86px);
  align-items: start;
}

.section-heading {
  max-width: 650px;
  margin-bottom: clamp(48px, 5.5vw, 76px);
}

.compact-layout .section-heading,
.process-layout .section-heading {
  margin-bottom: 0;
}

.section-heading.split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.section-heading.centered {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  margin-inline: auto;
}

.section-link {
  color: var(--blue-2);
  font-size: .74rem;
  font-weight: 700;
}

.industries-section {
  background: linear-gradient(180deg, #07101f, var(--bg));
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.industry-card {
  position: relative;
  min-height: 240px;
  padding: 8px 28px 28px;
  border-right: 1px solid var(--line);
  transition: transform .35s var(--ease), background .35s ease, box-shadow .35s ease;
}

.industry-card:last-child {
  border-right: 0;
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at 30% 0, rgba(85, 160, 255, .11), transparent 55%);
  transition: opacity .35s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, .018);
  box-shadow: 0 24px 66px rgba(0, 0, 0, .2);
}

.industry-card:hover::before {
  opacity: 1;
}

.industry-icon,
.benefit-icon {
  position: relative;
  width: 34px;
  height: 34px;
  margin-bottom: 34px;
  color: var(--blue-2);
  transition: filter .35s ease;
}

.industry-icon svg,
.benefit-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.industry-icon.gold {
  color: var(--gold);
}

.industry-card:hover .industry-icon,
.why-card:hover .benefit-icon {
  filter: drop-shadow(0 0 15px rgba(85, 160, 255, .42));
}

.industry-card h3 {
  margin-bottom: 12px;
  transition: color .25s ease;
}

.industry-card:hover h3,
.why-card:hover h3 {
  color: #fff;
}

.industry-card p,
.why-card p,
.process-step p,
.about-copy p,
.footer-grid p,
.footer-grid a,
.footer-bottom,
.case-content p,
.case-content dd {
  color: var(--muted);
  font-size: .9rem;
}

.industry-card a {
  margin-top: 24px;
  color: var(--blue-2);
  font-size: .78rem;
}

.industry-card a span,
.case-content a span,
.section-link span {
  display: inline-block;
  transition: transform .35s var(--ease);
}

.industry-card:hover a span,
.case-study:hover .case-content a span,
.section-link:hover span {
  transform: translateX(5px);
}

.projects-section,
.process-section,
.final-cta {
  background: radial-gradient(circle at 50% 0, rgba(30, 103, 255, .06), transparent 34rem), var(--bg-2);
}

.case-study-list {
  display: grid;
  gap: clamp(72px, 9vw, 120px);
}

.case-study {
  display: grid;
  grid-template-columns: minmax(0, 1.85fr) minmax(280px, 1fr);
  gap: clamp(38px, 6vw, 72px);
  align-items: center;
}

.case-study-reverse {
  grid-template-columns: minmax(280px, 1fr) minmax(0, 1.85fr);
}

.case-study-reverse .case-visual {
  order: 2;
}

.case-visual {
  overflow: hidden;
  border: 1px solid rgba(85, 160, 255, .14);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .018)), var(--panel);
  box-shadow: var(--shadow);
}

.mock-browser {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
  transform: scale(1);
  transition: transform .65s var(--ease);
}

.case-study:hover .mock-browser {
  transform: scale(1.025);
}

.mock-page {
  min-height: 420px;
  padding: 34px;
  background: #e8eff9;
  color: #0b1425;
}

.mock-page nav,
.mock-page footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mock-page nav b {
  margin-right: auto;
  font-size: .72rem;
}

.mock-page nav i {
  width: 32px;
  height: 4px;
  border-radius: 99px;
  background: rgba(7, 16, 32, .16);
}

.mock-page section {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 28px;
  align-items: center;
  padding: 58px 0;
}

.mock-page strong {
  display: block;
  max-width: 430px;
  color: inherit;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 3vw, 3.35rem);
  font-weight: 400;
  line-height: 1.05;
}

.mock-page footer i {
  flex: 1;
  height: 46px;
  border-radius: 3px;
}

.portrait {
  min-height: 236px;
}

.law .mock-page {
  background: linear-gradient(135deg, #090c13, #151d31);
  color: white;
}

.law .mock-page nav i,
.law .mock-page p,
.law .mock-page footer i {
  background: rgba(255, 255, 255, .13);
}

.portrait-law {
  background:
    linear-gradient(126deg, transparent 0 32%, rgba(255, 255, 255, .72) 33% 59%, transparent 60%),
    linear-gradient(160deg, #1c2537, #4a5262);
}

.beauty .mock-page {
  background: linear-gradient(135deg, #4b1e30, #24111e);
  color: white;
}

.beauty .mock-page nav i,
.beauty .mock-page p,
.beauty .mock-page footer i {
  background: rgba(255, 255, 255, .16);
}

.portrait-beauty {
  border-radius: 999px 999px 4px 4px;
  background:
    radial-gradient(circle at 52% 22%, #d5a1a8 0 14%, transparent 15%),
    radial-gradient(circle at 60% 34%, rgba(24, 9, 18, .88) 0 23%, transparent 24%),
    linear-gradient(180deg, #7b4055, #2a101c);
}

.case-content {
  align-self: center;
}

.project-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  border: 1px solid rgba(85, 160, 255, .24);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(30, 103, 255, .06);
  color: var(--blue-2);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.case-content h3 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 3vw, 3.3rem);
}

.case-content p {
  max-width: 440px;
  line-height: 1.78;
}

.case-content dl {
  display: grid;
  gap: 15px;
  margin: 28px 0 30px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-content dt {
  color: var(--blue-2);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.case-content dd {
  margin: 3px 0 0;
}

.case-content a {
  color: var(--blue-2);
  font-weight: 700;
}

.benefits-section {
  background: var(--bg);
}

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

.why-card {
  min-height: 250px;
  padding: 34px 30px 30px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .014)), rgba(12, 22, 43, .55);
  transition: border-color .35s ease, background .35s ease, box-shadow .35s ease;
}

.why-card:hover {
  border-color: rgba(85, 160, 255, .24);
  background: linear-gradient(145deg, rgba(30, 103, 255, .07), rgba(255, 255, 255, .018)), rgba(12, 22, 43, .65);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
}

.benefit-icon {
  margin-bottom: 28px;
}

.benefit-icon::before {
  content: "";
  position: absolute;
  inset: -8px;
  z-index: -1;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(30, 103, 255, .14), rgba(85, 160, 255, .02));
}

.why-card h3 {
  margin-bottom: 12px;
}

.process-layout {
  align-items: center;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.process-grid::before {
  content: "";
  position: absolute;
  left: 38px;
  right: 38px;
  top: 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(85, 160, 255, .4), rgba(85, 160, 255, .12));
}

.process-step {
  position: relative;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 0 16px 18px 0;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.process-step:hover {
  border-color: rgba(85, 160, 255, .2);
  background: rgba(30, 103, 255, .035);
  box-shadow: 0 20px 60px rgba(30, 103, 255, .08);
}

.process-step span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 25px;
  border: 1px solid rgba(85, 160, 255, .24);
  border-radius: 50%;
  background: linear-gradient(145deg, #102653, #0b1834);
  color: var(--blue-2);
  font-size: .82rem;
  font-weight: 800;
  box-shadow: 0 16px 45px rgba(30, 103, 255, .12);
  transition: border-color .35s ease, background .35s ease, box-shadow .35s ease;
}

.process-step:hover span {
  border-color: rgba(85, 160, 255, .42);
  box-shadow: 0 18px 55px rgba(30, 103, 255, .2);
}

.process-step h3 {
  margin-bottom: 10px;
}

.about-section {
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
}

.about-layout {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: clamp(54px, 10vw, 140px);
  align-items: center;
}

.about-copy h2 {
  max-width: 540px;
}

.about-copy p {
  max-width: 560px;
  margin: 28px 0 36px;
  line-height: 1.84;
}

.about-card {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 4.2vw, 48px);
  border: 1px solid rgba(85, 160, 255, .16);
  border-radius: 7px;
  background: radial-gradient(circle at 90% 8%, rgba(30, 103, 255, .14), transparent 34%), linear-gradient(145deg, rgba(19, 32, 61, .92), rgba(8, 14, 28, .92));
  box-shadow: var(--shadow);
  transition: border-color .35s ease, box-shadow .35s ease;
}

.about-card:hover {
  border-color: rgba(85, 160, 255, .28);
  box-shadow: 0 34px 95px rgba(0, 0, 0, .34);
}

.about-card-head {
  display: flex;
  align-items: center;
  gap: 18px;
}

.portrait-slot {
  position: relative;
  width: 84px;
  height: 104px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(85, 160, 255, .18);
  border-radius: 18px;
  background: radial-gradient(circle at 50% 22%, rgba(85, 160, 255, .16), transparent 42%), linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .015));
}

.portrait-slot::after {
  content: "Portrait";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  color: var(--muted);
  font-size: .58rem;
  letter-spacing: .14em;
  text-align: center;
  text-transform: uppercase;
}

.portrait-slot img {
  width: 54px;
  height: auto;
  margin: 24px auto 0;
  object-fit: contain;
}

.about-card h3 {
  margin-bottom: 3px;
}

.about-card-head p {
  margin: 0;
  color: var(--blue-2);
  font-size: .74rem;
}

.about-card blockquote {
  margin: 30px 0;
  color: var(--soft);
  font-size: .98rem;
  line-height: 1.82;
}

.about-card dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.about-card dt {
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.9rem;
}

.about-card dd {
  margin: 0;
  color: var(--muted);
  font-size: .75rem;
  line-height: 1.35;
}

.final-cta {
  text-align: center;
  background: radial-gradient(circle at 50% 58%, rgba(30, 103, 255, .12), transparent 20rem), var(--bg-2);
}

.cta-wrap {
  max-width: 760px;
}

.cta-wrap .eyebrow {
  margin-inline: auto;
}

.cta-wrap h2 {
  margin-bottom: 20px;
}

.cta-wrap p:not(.eyebrow) {
  max-width: 520px;
  margin: 0 auto 32px;
  color: var(--soft);
}

.site-footer {
  padding: 70px 0 32px;
  border-top: 1px solid var(--line);
  background: radial-gradient(circle at 18% 0, rgba(30, 103, 255, .07), transparent 28rem), #040813;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr repeat(4, .78fr);
  gap: clamp(30px, 5.5vw, 74px);
}

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

.footer-grid h2 {
  margin: 0 0 18px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.footer-grid nav,
.footer-grid div {
  display: grid;
  align-content: start;
}

.footer-grid a {
  margin-bottom: 9px;
}

.social-links {
  display: flex !important;
  gap: 10px;
  margin-top: 12px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--soft);
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform .3s var(--ease), border-color .3s ease, background .3s ease, color .3s ease;
}

.social-links a::after {
  display: none;
}

.social-links a:hover {
  border-color: rgba(85, 160, 255, .36);
  background: rgba(30, 103, 255, .08);
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: .78rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

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

.reveal-delay {
  transition-delay: .12s;
}

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

@media (max-width: 1180px) {
  .hero-layout,
  .case-study,
  .case-study-reverse {
    grid-template-columns: 1fr;
  }

  .case-study-reverse .case-visual {
    order: 0;
  }

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

@media (max-width: 980px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-menu {
    position: fixed;
    inset: 71px 0 0;
    display: block;
    padding: 18px 24px 34px;
    border-top: 1px solid var(--line);
    background: rgba(5, 9, 21, .97);
    clip-path: inset(0 0 0 100%);
    pointer-events: none;
    transition: clip-path .35s var(--ease);
    backdrop-filter: blur(20px);
  }

  .site-header.menu-open .mobile-menu {
    clip-path: inset(0);
    pointer-events: auto;
  }

  .mobile-menu nav {
    display: grid;
  }

  .mobile-menu nav a {
    display: flex;
    align-items: center;
    min-height: 64px;
    border-bottom: 1px solid var(--line);
    color: var(--text);
    font-family: var(--serif);
    font-size: clamp(2rem, 9vw, 3.1rem);
    font-style: italic;
    line-height: 1;
    text-decoration: none;
  }

  .compact-layout,
  .process-layout,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-self: start;
    width: min(100%, 650px);
  }

  .industry-grid,
  .why-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-card:nth-child(2n) {
    border-right: 0;
  }

  .industry-card {
    border-bottom: 1px solid var(--line);
  }

  .industry-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .process-grid::before {
    display: none;
  }
}

@media (max-width: 720px) {
  .wrap {
    width: min(100% - 34px, var(--wrap));
  }

  .section {
    padding: 78px 0;
  }

  h1 {
    font-size: clamp(2.68rem, 11vw, 3.82rem);
    line-height: 1.06;
  }

  h2 {
    font-size: clamp(2.35rem, 10vw, 3.35rem);
  }

  .hero {
    padding-top: 80px;
  }

  .hero-layout {
    min-height: auto;
    padding: 48px 0 72px;
    gap: 50px;
  }

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

  .hero-copy,
  .hero-actions,
  .hero-visual,
  .hero-showcase,
  .laptop-frame {
    width: 100%;
    max-width: 100%;
  }

  .button {
    min-height: 52px;
  }

  .scroll-cue {
    margin-top: 44px;
  }

  .hero-showcase {
    padding: 8px 0 24px;
  }

  .preview-hero,
  .mock-page section {
    grid-template-columns: 1fr;
  }

  .preview-hero,
  .mock-page {
    padding: 22px;
  }

  .clinic-portrait,
  .portrait {
    min-height: 150px;
  }

  .preview-metrics {
    grid-template-columns: 1fr;
  }

  .preview-metrics div {
    border-right: 0;
    border-bottom: 1px solid rgba(10, 20, 38, .08);
  }

  .industry-grid,
  .why-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .industry-card,
  .industry-card:nth-child(2n),
  .industry-card:nth-last-child(-n + 2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .industry-card:last-child {
    border-bottom: 0;
  }

  .mock-page {
    min-height: auto;
  }

  .mock-page strong {
    font-size: clamp(1.65rem, 9vw, 2.35rem);
  }

  .case-study-list {
    gap: 64px;
  }

  .about-card dl {
    grid-template-columns: 1fr;
  }

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

/* Final polish pass */
:root {
  --deep-shadow: 0 42px 120px rgba(0, 0, 0, .42);
  --card-shadow: 0 24px 80px rgba(0, 0, 0, .24);
}

.section {
  padding-block: clamp(92px, 9.5vw, 148px);
}

.hero-layout {
  padding-block: 70px 58px;
}

.hero-copy .lead {
  margin-bottom: 0;
}

.hero-actions {
  align-items: center;
  margin-top: 38px;
}

.hero-showcase {
  padding: 18px 0 38px;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 18% -6% 8%;
  z-index: -1;
  border-radius: 48%;
  background: radial-gradient(circle, rgba(30, 103, 255, .13), transparent 58%);
  filter: blur(18px);
}

.laptop-frame {
  border-radius: 14px 14px 7px 7px;
  box-shadow:
    0 48px 130px rgba(0, 0, 0, .52),
    0 0 72px rgba(30, 103, 255, .13),
    inset 0 1px 0 rgba(255, 255, 255, .1);
}

.laptop-screen {
  padding: 18px;
}

.dental-site,
.mock-page {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .4);
}

.preview-hero {
  min-height: 320px;
  padding: 40px;
}

.preview-hero h3 {
  letter-spacing: -.01em;
}

.clinic-portrait,
.portrait-dental {
  box-shadow: inset 0 0 0 1px rgba(10, 20, 38, .08), 0 24px 58px rgba(47, 93, 145, .18);
}

.industry-layout {
  max-width: 1120px;
}

.industry-grid {
  gap: 26px;
}

.industry-card,
.why-card,
.process-step,
.about-card,
.details-panel,
.direction-card {
  box-shadow: var(--card-shadow);
}

.industry-card {
  min-height: 292px;
  padding: 38px;
}

.industry-card::after,
.why-card::after,
.process-step::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.08), transparent 34%);
  transition: opacity .35s ease;
}

.industry-card:hover::after,
.why-card:hover::after,
.process-step:hover::after {
  opacity: 1;
}

.industry-icon,
.benefit-icon {
  color: #68a9ff;
}

.case-study-list {
  gap: clamp(88px, 10vw, 140px);
}

.case-study {
  grid-template-columns: minmax(0, 1.95fr) minmax(300px, .95fr);
}

.case-study-reverse {
  grid-template-columns: minmax(300px, .95fr) minmax(0, 1.95fr);
}

.case-visual {
  border-color: rgba(85, 160, 255, .18);
  box-shadow: var(--deep-shadow);
}

.mock-browser {
  box-shadow: 0 30px 86px rgba(0, 0, 0, .34);
}

.mock-page {
  min-height: 460px;
  padding: 38px;
}

.mock-page section {
  padding-block: 68px;
}

.mock-page strong {
  letter-spacing: -.01em;
}

.case-content h3 {
  margin-bottom: 20px;
}

.case-content p {
  max-width: 500px;
}

.case-content dl {
  margin-block: 32px;
}

.why-grid {
  gap: 22px;
}

.why-card {
  position: relative;
  min-height: 270px;
  padding: 38px 32px 32px;
}

.why-card h3,
.process-step h3 {
  font-size: 1.5rem;
}

.process-grid {
  gap: 22px;
}

.process-step {
  position: relative;
  min-height: 278px;
  padding: 38px 32px 32px;
}

.process-step span {
  margin-bottom: 54px;
  color: rgba(104, 169, 255, .48);
}

.about-layout {
  gap: clamp(64px, 10vw, 150px);
}

.about-card {
  border-color: rgba(85, 160, 255, .2);
  background:
    radial-gradient(circle at 88% 10%, rgba(30, 103, 255, .13), transparent 34%),
    linear-gradient(145deg, rgba(20, 35, 66, .94), rgba(8, 14, 28, .95));
}

.about-card dl {
  align-items: start;
}

.about-card dt {
  font-size: clamp(2rem, 3vw, 2.45rem);
}

.studio-highlights li {
  background: rgba(255,255,255,.03);
}

.final-cta {
  background: radial-gradient(circle at 50% 56%, rgba(30, 103, 255, .08), transparent 18rem), var(--bg-2);
}

.cta-wrap h2 {
  line-height: 1.08;
}

.site-footer {
  padding-top: 82px;
}

.footer-grid {
  gap: clamp(38px, 6vw, 88px);
}

.footer-grid p {
  max-width: 310px;
}

.footer-grid a {
  transition: color .25s ease, transform .25s var(--ease);
}

.footer-grid a:hover {
  transform: translateX(2px);
}

.projects-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(460px, 1fr);
  gap: clamp(52px, 8vw, 108px);
  align-items: center;
}

.projects-hero-feature {
  position: relative;
}

.projects-hero-feature::before {
  content: "";
  position: absolute;
  inset: -10% -8%;
  z-index: -1;
  background: radial-gradient(circle, rgba(30,103,255,.13), transparent 62%);
  filter: blur(14px);
}

.projects-hero-feature .mock-page {
  min-height: 390px;
}

.projects-hero-feature .case-visual {
  box-shadow: var(--deep-shadow), 0 0 86px rgba(30,103,255,.1);
}

.showcase-grid {
  gap: 28px;
}

.site-slab {
  position: relative;
  min-height: 340px;
  border-color: rgba(85, 160, 255, .14);
  box-shadow: var(--deep-shadow);
}

.site-slab::before {
  content: "";
  position: absolute;
  inset: 22px 22px auto;
  height: 36px;
  border-bottom: 1px solid rgba(10,20,38,.1);
  opacity: .55;
}

.law-ui::before {
  border-color: rgba(255,255,255,.12);
}

.site-slab.slab-hero {
  min-height: 470px;
}

.site-slab strong {
  margin-top: 64px;
}

.mini-cards i {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
}

.phone-row {
  gap: 26px;
}

.phone-mock {
  box-shadow: 0 34px 95px rgba(0,0,0,.34);
}

.palette span {
  min-height: 140px;
}

.direction-grid {
  align-items: stretch;
}

@media (max-width: 1180px) {
  .projects-hero-grid {
    grid-template-columns: 1fr;
  }

  .case-study,
  .case-study-reverse {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .section {
    padding-block: 82px;
  }

  .hero-layout {
    padding-block: 54px 74px;
  }

  .mock-page {
    min-height: auto;
    padding: 24px;
  }

  .site-slab,
  .site-slab.slab-hero {
    min-height: 310px;
  }

  .site-slab strong {
    margin-top: 52px;
  }

  .projects-hero-feature .mock-page {
    min-height: auto;
  }
}

/* Case study editorial rhythm */
.case-page .section {
  padding-block: clamp(104px, 10vw, 164px);
}

.case-page .case-hero {
  padding-block: 164px 112px;
}

.case-page .eyebrow,
.case-page .project-tag {
  margin-bottom: 24px;
}

.case-page h1 {
  margin-bottom: 32px;
  line-height: 1.04;
}

.case-page .lead {
  max-width: 620px;
  line-height: 1.9;
}

.case-page .overview-grid p:not(.eyebrow),
.case-page .split-copy p:not(.eyebrow),
.case-page .mobile-showcase p:not(.eyebrow),
.case-page .direction-grid p:not(.eyebrow) {
  max-width: 640px;
  margin-top: 0;
  color: var(--soft);
  line-height: 1.9;
}

.case-page .split-copy {
  gap: clamp(64px, 9vw, 120px);
}

.case-page .split-copy article p:not(.eyebrow) {
  margin-top: 30px;
}

.case-page .section-heading {
  margin-bottom: clamp(60px, 7vw, 92px);
}

.case-page .section-heading h2 {
  margin-top: 28px;
}

.case-page .section-heading p:not(.eyebrow) {
  margin-top: 28px;
}

.case-page .showcase-grid {
  gap: 32px;
}

.case-page .mobile-showcase {
  align-items: center;
}

.case-page .phone-row {
  margin-top: 6px;
}

.case-page .direction-grid {
  row-gap: 34px;
}

.case-page .direction-card p {
  margin-top: 16px;
}

.case-page .palette {
  align-self: stretch;
}

@media (max-width: 720px) {
  .case-page .section {
    padding-block: 88px;
  }

  .case-page .case-hero {
    padding-block: 128px 84px;
  }

  .case-page .eyebrow,
  .case-page .project-tag {
    margin-bottom: 18px;
  }

  .case-page h1 {
    margin-bottom: 24px;
  }

  .case-page .overview-grid h2,
  .case-page .split-copy h2,
  .case-page .mobile-showcase h2,
  .case-page .direction-grid h2 {
    margin-bottom: 22px;
  }
}

/* Focused launch refinements */
.hero-layout {
  grid-template-columns: minmax(0, .86fr) minmax(500px, 1fr);
  gap: clamp(70px, 8vw, 126px);
}

h1 {
  max-width: 620px;
  font-size: clamp(2.75rem, 4.05vw, 4.28rem);
  line-height: 1.1;
}

.lead {
  max-width: 470px;
}

.hero-showcase {
  padding: 10px 0 30px;
}

.showcase-light {
  inset: -36px 4% -20px;
  background: radial-gradient(circle at 50% 48%, rgba(72, 132, 255, .16), transparent 42%);
}

.laptop-frame {
  border-color: rgba(85, 160, 255, .2);
  box-shadow: 0 36px 96px rgba(0, 0, 0, .46), 0 0 68px rgba(30, 103, 255, .12), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.laptop-screen {
  padding: 14px;
}

.preview-hero {
  min-height: 300px;
  padding: 36px;
}

.clinic-portrait {
  min-height: 238px;
}

.industry-layout {
  max-width: 1060px;
}

.industry-layout .section-heading {
  margin-inline: auto;
  margin-bottom: clamp(44px, 5.5vw, 72px);
}

.industry-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  border: 0;
}

.industry-card,
.industry-card:nth-child(2n),
.industry-card:last-child {
  min-height: 280px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .012)), rgba(12, 22, 43, .5);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .16);
}

.industry-card:hover {
  transform: translateY(-5px);
  border-color: rgba(85, 160, 255, .24);
  background: linear-gradient(145deg, rgba(30, 103, 255, .07), rgba(255, 255, 255, .018)), rgba(12, 22, 43, .62);
}

.industry-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 42px;
}

.process-editorial {
  display: block;
}

.process-editorial .section-heading {
  margin-inline: auto;
}

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

.process-grid::before {
  display: none;
}

.process-step {
  min-height: 260px;
  padding: 34px 28px 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .028), rgba(255, 255, 255, .01)), rgba(12, 22, 43, .45);
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.process-step:hover {
  border-color: rgba(85, 160, 255, .24);
  background: linear-gradient(145deg, rgba(30, 103, 255, .07), rgba(255, 255, 255, .014)), rgba(12, 22, 43, .62);
  box-shadow: 0 24px 70px rgba(30, 103, 255, .08);
}

.process-step span {
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 48px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(85, 160, 255, .45);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1;
}

.process-step:hover span {
  box-shadow: none;
}

.about-card {
  padding: clamp(34px, 4.5vw, 56px);
}

.studio-mark {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 28px;
  border: 1px solid rgba(85, 160, 255, .2);
  border-radius: 18px;
  background: rgba(5, 9, 21, .42);
}

.studio-mark img {
  width: 52px;
  height: auto;
}

.about-card-head {
  display: block;
}

.about-card-head h3 {
  margin-bottom: 6px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.about-card blockquote {
  max-width: 620px;
  margin: 30px 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.35;
}

.studio-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.studio-highlights li {
  position: relative;
  padding: 14px 14px 14px 32px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--soft);
  font-size: .86rem;
  background: rgba(255, 255, 255, .025);
}

.studio-highlights li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-2);
  transform: translateY(-50%);
}

.portrait-slot,
.portrait-slot::after {
  display: none;
}

@media (max-width: 1180px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .industry-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .industry-card,
  .industry-card:nth-child(2n),
  .industry-card:nth-last-child(-n + 2) {
    border: 1px solid var(--line);
  }

  .process-step {
    min-height: auto;
  }

  .studio-highlights {
    grid-template-columns: 1fr;
  }
}

/* Project overview and case study pages */
.page-hero,
.case-hero {
  padding: 150px 0 92px;
}

.page-hero-inner {
  max-width: 820px;
}

.page-hero h1,
.case-hero h1 {
  margin-bottom: 24px;
}

.projects-index-section {
  background: var(--bg-2);
}

.case-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(460px, 1fr);
  gap: clamp(46px, 7vw, 96px);
  align-items: center;
}

.case-meta,
.details-panel dl {
  display: grid;
  gap: 20px;
  margin: 46px 0 0;
}

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

.case-meta div,
.details-panel div {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.case-meta dt,
.details-panel dt {
  color: var(--blue-2);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.case-meta dd,
.details-panel dd {
  margin: 8px 0 0;
  color: var(--soft);
  font-size: .9rem;
  line-height: 1.65;
}

.case-hero-visual .case-visual {
  box-shadow: 0 38px 110px rgba(0, 0, 0, .42), 0 0 80px rgba(30, 103, 255, .1);
}

.overview-grid,
.split-copy,
.mobile-showcase,
.direction-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
  gap: clamp(56px, 8vw, 108px);
  align-items: start;
}

.overview-grid h2,
.split-copy h2,
.mobile-showcase h2,
.direction-grid h2 {
  max-width: 660px;
  font-size: clamp(2.25rem, 3.4vw, 3.45rem);
  margin-bottom: 28px;
}

.details-panel,
.direction-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(32px, 4.5vw, 48px);
  background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012)), rgba(12, 22, 43, .55);
  box-shadow: 0 22px 70px rgba(0,0,0,.2);
}

.details-panel h3,
.direction-card h3 {
  margin-bottom: 26px;
}

.split-copy-section,
.showcase-section,
.design-direction {
  background: var(--bg);
}

.split-copy article {
  border-top: 1px solid var(--line);
  padding-top: 36px;
}

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

.site-slab {
  min-height: 310px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: clamp(26px, 4vw, 46px);
  background: #e8eff9;
  color: #0b1425;
  box-shadow: var(--shadow);
}

.site-slab.slab-hero {
  grid-column: 1 / -1;
  min-height: 430px;
}

.site-slab strong {
  display: block;
  max-width: 480px;
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
}

.site-slab span,
.trust-bars i {
  display: block;
  width: 70%;
  height: 10px;
  margin: 12px 0;
  border-radius: 999px;
  background: rgba(10,20,38,.16);
}

.site-slab span:nth-of-type(2) {
  width: 45%;
}

.site-slab button {
  margin-top: 24px;
  border: 0;
  border-radius: 3px;
  padding: 12px 18px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
}

.mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 50px;
}

.mini-cards i {
  display: block;
  height: 130px;
  border-radius: 6px;
  background: rgba(10,20,38,.1);
}

.law-ui {
  background: linear-gradient(135deg, #090c13, #151d31);
  color: white;
}

.law-ui span,
.law-ui .trust-bars i,
.law-ui .mini-cards i {
  background: rgba(255,255,255,.13);
}

.law-ui button {
  background: var(--gold);
  color: #111;
}

.beauty-ui {
  background: linear-gradient(135deg, #f2e6e8, #d7a1ad);
  color: #321321;
}

.beauty-ui span,
.beauty-ui .trust-bars i,
.beauty-ui .mini-cards i {
  background: rgba(50,19,33,.13);
}

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

.phone-mock {
  min-height: 420px;
  border: 10px solid #07101f;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.9) 0 18%, transparent 18%),
    linear-gradient(135deg, #e8eff9, #c9dcf3);
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
}

.phone-mock.law-ui {
  background:
    linear-gradient(180deg, rgba(255,255,255,.08) 0 18%, transparent 18%),
    linear-gradient(135deg, #090c13, #151d31);
}

.phone-mock.beauty-ui {
  background:
    linear-gradient(180deg, rgba(255,255,255,.25) 0 18%, transparent 18%),
    linear-gradient(135deg, #f2e6e8, #d7a1ad);
}

.palette {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.palette span {
  display: block;
  min-height: 120px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--sw);
  box-shadow: 0 18px 50px rgba(0,0,0,.2);
}

@media (max-width: 980px) {
  .case-hero-grid,
  .overview-grid,
  .split-copy,
  .mobile-showcase,
  .direction-grid {
    grid-template-columns: 1fr;
  }

  .case-meta,
  .showcase-grid,
  .phone-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page-hero,
  .case-hero {
    padding: 120px 0 72px;
  }

  .site-slab,
  .site-slab.slab-hero {
    min-height: 280px;
  }

  .mini-cards {
    grid-template-columns: 1fr;
  }

  .palette {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Signature homepage hero refinement */
.hero {
  min-height: 100svh;
}

.hero .hero-layout {
  grid-template-columns: minmax(0, .82fr) minmax(560px, 1.12fr);
  gap: clamp(72px, 8vw, 132px);
  padding-block: clamp(112px, 12vw, 168px) clamp(72px, 8vw, 106px);
}

.hero-copy .eyebrow {
  margin-bottom: 30px;
}

.hero h1 {
  max-width: 690px;
  margin: 0 0 30px;
  font-size: clamp(3rem, 4.55vw, 5rem);
  line-height: 1.02;
}

.hero .lead {
  max-width: 510px;
  color: rgba(242, 245, 251, .76);
  line-height: 1.9;
}

.hero-actions {
  gap: 16px;
  margin-top: 42px;
}

.hero-visual {
  width: min(100%, 790px);
  justify-self: end;
}

.hero-showcase {
  position: relative;
  padding: 24px 0 48px;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 8% 1% 0 8%;
  z-index: 0;
  border-radius: 999px;
  background: radial-gradient(circle at 55% 42%, rgba(85, 160, 255, .18), transparent 56%);
  filter: blur(26px);
  opacity: .9;
  pointer-events: none;
}

.showcase-light {
  inset: -8% -5% -12%;
  background:
    radial-gradient(circle at 58% 42%, rgba(85, 160, 255, .15), transparent 38%),
    radial-gradient(circle at 22% 70%, rgba(30, 103, 255, .1), transparent 42%);
  filter: blur(18px);
}

.hero-showcase:hover .laptop-frame {
  transform: none;
}

.laptop-frame {
  position: relative;
  z-index: 1;
  overflow: visible;
  border-color: rgba(125, 178, 255, .24);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(22, 35, 62, .96), rgba(8, 16, 31, .98));
  box-shadow:
    0 52px 130px rgba(0, 0, 0, .52),
    0 0 92px rgba(30, 103, 255, .12),
    inset 0 1px 0 rgba(255, 255, 255, .1);
}

.laptop-screen {
  padding: 16px;
}

.dental-site {
  overflow: hidden;
  border: 1px solid rgba(10, 20, 38, .08);
  border-radius: 11px;
  background: #edf5ff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .6);
}

.signature-nav {
  min-height: 52px;
  padding: 0 22px;
  background: rgba(248, 252, 255, .94);
}

.signature-nav strong {
  margin-right: auto;
  color: #07101f;
  font-size: .82rem;
  letter-spacing: -.01em;
}

.signature-nav span {
  color: rgba(10, 20, 38, .5);
  font-size: .64rem;
  font-weight: 700;
}

.signature-nav em {
  padding: 8px 11px;
  font-size: .62rem;
}

.signature-preview-hero {
  grid-template-columns: minmax(0, 1.06fr) minmax(210px, .72fr);
  min-height: 350px;
  gap: 34px;
  align-items: stretch;
  padding: clamp(34px, 5vw, 50px);
  background:
    radial-gradient(circle at 83% 22%, rgba(85, 160, 255, .18), transparent 32%),
    linear-gradient(135deg, #f7fbff 0%, #e8f2ff 52%, #dbeaff 100%);
}

.signature-preview-hero .preview-copy {
  align-self: center;
}

.signature-preview-hero .preview-copy small {
  margin-bottom: 20px;
}

.signature-preview-hero .preview-copy h3 {
  max-width: 385px;
  color: #07101f;
  font-size: clamp(2.05rem, 3.35vw, 3.25rem);
  line-height: .98;
}

.signature-preview-hero .preview-copy p {
  display: block;
  width: auto;
  height: auto;
  max-width: 360px;
  margin: 22px 0 0;
  border-radius: 0;
  background: none;
  color: rgba(10, 20, 38, .62);
  font-size: .82rem;
  line-height: 1.7;
}

.preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
  margin-top: 28px;
}

.preview-actions button {
  margin: 0;
  padding: 11px 15px;
  border-radius: 4px;
  background: var(--blue);
  box-shadow: 0 13px 32px rgba(30, 103, 255, .24);
}

.preview-actions span {
  color: #0b55d9;
  font-size: .68rem;
  font-weight: 800;
}

.signature-portrait {
  position: relative;
  min-height: 278px;
  overflow: hidden;
  border: 1px solid rgba(10, 20, 38, .07);
  border-radius: 28px;
  background:
    linear-gradient(135deg, transparent 0 44%, rgba(255, 255, 255, .9) 44% 62%, transparent 62%),
    radial-gradient(circle at 70% 22%, #ffd0b0 0 8%, transparent 8.5%),
    linear-gradient(145deg, #dbeaff, #f8fbff 58%, #cfdef0);
  box-shadow: 0 28px 70px rgba(56, 95, 143, .2);
}

.signature-portrait::before {
  content: "";
  position: absolute;
  inset: auto 12% 12% auto;
  width: 46%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, .56);
  box-shadow: 0 0 0 34px rgba(30, 103, 255, .06);
}

.portrait-ring {
  position: absolute;
  right: 13%;
  top: 16%;
  width: 78px;
  aspect-ratio: 1;
  border: 14px solid rgba(134, 86, 63, .82);
  border-radius: 50%;
  background: #ffd0b0;
  box-shadow: 0 18px 42px rgba(95, 57, 42, .18);
}

.preview-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  padding: 0 18px 18px;
  background: #edf5ff;
}

.preview-services article {
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(10, 20, 38, .07);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 14px 32px rgba(52, 80, 122, .08);
}

.preview-services span {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.preview-services strong {
  display: block;
  color: #07101f;
  font-family: var(--sans);
  font-size: .76rem;
  line-height: 1.25;
}

.preview-services p {
  width: 76%;
  height: 6px;
  margin: 14px 0 0;
  border-radius: 999px;
  background: rgba(10, 20, 38, .12);
}

.preview-trust {
  display: grid;
  grid-template-columns: .72fr 1.5fr .72fr;
  border-top: 1px solid rgba(10, 20, 38, .07);
  background: rgba(255, 255, 255, .82);
}

.preview-trust div,
.preview-trust blockquote {
  min-height: 92px;
  margin: 0;
  padding: 18px 20px;
  border-right: 1px solid rgba(10, 20, 38, .07);
}

.preview-trust div:last-child {
  border-right: 0;
}

.preview-trust strong {
  display: block;
  color: #07101f;
  font-size: 1.28rem;
  line-height: 1;
}

.preview-trust span {
  display: block;
  margin-top: 8px;
  color: rgba(10, 20, 38, .5);
  font-size: .62rem;
  font-weight: 700;
}

.preview-trust blockquote {
  color: #07101f;
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.35;
}

@media (max-width: 1180px) {
  .hero .hero-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .hero-visual {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .hero .hero-layout {
    padding-block: 112px 68px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 12vw, 4rem);
    line-height: 1.04;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-visual {
    width: 100%;
  }

  .signature-nav span {
    display: none;
  }

  .signature-preview-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 28px;
  }

  .signature-preview-hero .preview-copy h3 {
    font-size: clamp(1.85rem, 10vw, 2.55rem);
  }

  .signature-portrait {
    min-height: 190px;
  }

  .preview-services,
  .preview-trust {
    grid-template-columns: 1fr;
  }

  .preview-trust div,
  .preview-trust blockquote {
    border-right: 0;
    border-bottom: 1px solid rgba(10, 20, 38, .07);
  }

  .preview-trust div:last-child {
    border-bottom: 0;
  }
}

/* Art-directed hero showcase pass */
.hero .hero-layout {
  grid-template-columns: minmax(0, .8fr) minmax(540px, 1.05fr);
  gap: clamp(64px, 7.5vw, 116px);
  align-items: center;
}

.hero-copy {
  padding-top: 12px;
}

.hero-copy .eyebrow {
  margin-bottom: 34px;
}

.hero h1 {
  max-width: 590px;
  margin-bottom: 32px;
  font-size: clamp(3.05rem, 4.35vw, 4.65rem);
  line-height: 1.01;
}

.hero .lead {
  max-width: 465px;
  color: rgba(242, 245, 251, .73);
  font-size: .98rem;
  line-height: 1.9;
}

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

.scroll-cue {
  margin-top: 58px;
  opacity: .62;
}

.signature-dental-showcase {
  width: min(100%, 730px);
  margin-left: auto;
  padding: 18px 0 38px;
}

.signature-dental-showcase::before {
  inset: 8% 4% -2% 10%;
  background: radial-gradient(circle at 54% 48%, rgba(84, 145, 255, .13), transparent 58%);
  filter: blur(30px);
  opacity: .78;
}

.signature-dental-showcase .showcase-light {
  inset: -10% -6% -12% -2%;
  background:
    radial-gradient(circle at 58% 38%, rgba(85, 160, 255, .12), transparent 39%),
    radial-gradient(circle at 32% 78%, rgba(255, 255, 255, .06), transparent 35%);
  filter: blur(22px);
}

.signature-dental-showcase .laptop-frame {
  overflow: hidden;
  border-color: rgba(165, 199, 255, .22);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(33, 48, 79, .92), rgba(8, 16, 31, .98));
  box-shadow:
    0 42px 108px rgba(0, 0, 0, .5),
    0 0 0 1px rgba(255, 255, 255, .03),
    0 0 70px rgba(30, 103, 255, .1),
    inset 0 1px 0 rgba(255, 255, 255, .1);
}

.signature-dental-showcase .laptop-top {
  min-height: 42px;
  border-bottom-color: rgba(255, 255, 255, .08);
  background: linear-gradient(180deg, rgba(17, 29, 51, .98), rgba(8, 16, 31, .98));
}

.signature-dental-showcase .laptop-top b {
  color: rgba(242, 245, 251, .5);
  font-size: .62rem;
  letter-spacing: .04em;
}

.signature-dental-showcase .laptop-screen {
  padding: 12px;
}

.signature-dental-showcase .laptop-base {
  display: none;
}

.signature-dental-showcase .dental-site {
  border: 1px solid rgba(11, 27, 51, .08);
  border-radius: 12px;
  background:
    linear-gradient(180deg, #fbfdff 0%, #eef6ff 58%, #e7f0fb 100%);
  color: #07101f;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .7),
    0 24px 80px rgba(4, 14, 32, .22);
}

.signature-dental-showcase .signature-nav {
  min-height: 58px;
  padding-inline: clamp(22px, 3vw, 34px);
  border-bottom: 1px solid rgba(9, 24, 45, .08);
  background: rgba(251, 253, 255, .92);
}

.signature-dental-showcase .signature-nav strong {
  color: #07101f;
  font-size: .9rem;
}

.signature-dental-showcase .signature-nav span {
  color: rgba(7, 16, 31, .54);
  font-size: .65rem;
  letter-spacing: .01em;
}

.signature-dental-showcase .signature-nav em {
  border-radius: 4px;
  padding: 9px 12px;
  background: #1e67ff;
  box-shadow: 0 10px 25px rgba(30, 103, 255, .22);
}

.signature-dental-showcase .signature-preview-hero {
  min-height: 360px;
  grid-template-columns: minmax(0, 1fr) minmax(220px, .7fr);
  gap: clamp(28px, 4vw, 48px);
  padding: clamp(38px, 5.2vw, 58px);
  background:
    radial-gradient(circle at 82% 16%, rgba(30, 103, 255, .09), transparent 28%),
    linear-gradient(135deg, #fbfdff 0%, #edf6ff 58%, #dceaff 100%);
}

.signature-dental-showcase .preview-copy small {
  margin-bottom: 22px;
  color: #1e67ff;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .18em;
}

.signature-dental-showcase .preview-copy h3 {
  max-width: 410px;
  color: #07101f;
  font-size: clamp(2.22rem, 3.45vw, 3.45rem);
  line-height: .98;
  letter-spacing: -.01em;
}

.signature-dental-showcase .preview-copy p {
  max-width: 365px;
  margin-top: 24px;
  color: rgba(7, 16, 31, .64);
  font-size: .84rem;
  line-height: 1.72;
}

.signature-dental-showcase .preview-actions {
  margin-top: 30px;
}

.signature-dental-showcase .preview-actions button {
  min-height: 36px;
  border-radius: 4px;
  padding: 0 15px;
  color: #fff;
  font-size: .64rem;
}

.signature-dental-showcase .preview-actions span {
  color: #1558d9;
  font-size: .66rem;
  font-weight: 850;
}

.signature-dental-showcase .signature-portrait {
  min-height: 286px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, transparent 0 42%, rgba(255, 255, 255, .94) 42% 61%, transparent 61%),
    radial-gradient(circle at 72% 20%, #ffd0b0 0 8%, transparent 8.4%),
    radial-gradient(circle at 20% 80%, rgba(30, 103, 255, .12), transparent 34%),
    linear-gradient(145deg, #d8e8fb, #fbfdff 56%, #cbdcf0);
  box-shadow:
    0 30px 80px rgba(67, 102, 151, .24),
    inset 0 1px 0 rgba(255, 255, 255, .72);
}

.signature-dental-showcase .signature-portrait::before {
  right: 9%;
  bottom: 10%;
  width: 50%;
  background: rgba(255, 255, 255, .62);
  box-shadow: 0 0 0 38px rgba(30, 103, 255, .045);
}

.signature-dental-showcase .portrait-ring {
  right: 12%;
  top: 15%;
  width: 82px;
  border-width: 14px;
}

.portrait-copy {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid rgba(7, 16, 31, .08);
  border-radius: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 18px 42px rgba(47, 75, 112, .12);
}

.portrait-copy strong,
.portrait-copy span {
  display: block;
  color: #07101f;
  font-family: var(--sans);
}

.portrait-copy strong {
  font-size: .78rem;
}

.portrait-copy span {
  margin-top: 3px;
  color: rgba(7, 16, 31, .52);
  font-size: .62rem;
  font-weight: 700;
}

.signature-dental-showcase .preview-services {
  gap: 14px;
  padding: 0 clamp(22px, 3vw, 34px) 14px;
  background: transparent;
}

.signature-dental-showcase .preview-services article {
  min-height: 126px;
  padding: 18px;
  border-color: rgba(7, 16, 31, .08);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 16px 42px rgba(50, 83, 124, .08);
}

.signature-dental-showcase .preview-services span {
  margin-bottom: 14px;
}

.signature-dental-showcase .preview-services strong {
  color: #07101f;
  font-size: .76rem;
}

.signature-dental-showcase .preview-services p {
  width: auto;
  height: auto;
  margin: 10px 0 0;
  border-radius: 0;
  background: transparent;
  color: rgba(7, 16, 31, .55);
  font-size: .64rem;
  line-height: 1.55;
}

.preview-booking {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 14px;
  padding: 0 clamp(22px, 3vw, 34px) 18px;
}

.preview-booking article {
  min-height: 108px;
  border: 1px solid rgba(7, 16, 31, .08);
  border-radius: 9px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .84), rgba(245, 250, 255, .7));
  box-shadow: 0 18px 48px rgba(43, 75, 116, .08);
}

.preview-booking span {
  display: block;
  color: #1e67ff;
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.preview-booking strong {
  display: block;
  margin-top: 10px;
  color: #07101f;
  font-size: .92rem;
  line-height: 1.2;
}

.preview-booking p {
  margin: 9px 0 0;
  color: rgba(7, 16, 31, .54);
  font-size: .64rem;
  line-height: 1.55;
}

.preview-booking div {
  display: flex;
  gap: 7px;
  margin-top: 16px;
}

.preview-booking i {
  display: block;
  width: 38px;
  height: 24px;
  border-radius: 999px;
  background: rgba(30, 103, 255, .1);
}

.signature-dental-showcase .preview-trust {
  grid-template-columns: .72fr 1.5fr .72fr;
  margin-top: 0;
  border-top-color: rgba(7, 16, 31, .08);
  background: rgba(255, 255, 255, .88);
}

.signature-dental-showcase .preview-trust div,
.signature-dental-showcase .preview-trust blockquote {
  min-height: 98px;
  border-right-color: rgba(7, 16, 31, .08);
}

.signature-dental-showcase .preview-trust strong {
  color: #07101f;
}

.signature-dental-showcase .preview-trust blockquote {
  display: flex;
  align-items: center;
  color: #07101f;
  font-size: 1.08rem;
}

@media (max-width: 1180px) {
  .hero .hero-layout {
    grid-template-columns: 1fr;
  }

  .signature-dental-showcase {
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .hero h1 {
    max-width: 430px;
    font-size: clamp(2.75rem, 12vw, 4.05rem);
  }

  .signature-dental-showcase {
    padding-bottom: 22px;
  }

  .signature-dental-showcase .laptop-screen {
    padding: 9px;
  }

  .signature-dental-showcase .signature-nav {
    min-height: 52px;
    padding-inline: 18px;
  }

  .signature-dental-showcase .signature-preview-hero,
  .preview-booking,
  .signature-dental-showcase .preview-services,
  .signature-dental-showcase .preview-trust {
    grid-template-columns: 1fr;
  }

  .signature-dental-showcase .signature-preview-hero {
    padding: 28px;
  }

  .signature-dental-showcase .signature-portrait {
    min-height: 210px;
  }

  .signature-dental-showcase .preview-services,
  .preview-booking {
    padding-inline: 18px;
  }

  .signature-dental-showcase .preview-trust div,
  .signature-dental-showcase .preview-trust blockquote {
    min-height: auto;
  }
}

/* Editorial homepage hero */
.hero.section-dark {
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 44%, rgba(60, 118, 255, .105), transparent 34rem),
    radial-gradient(circle at 50% 64%, rgba(255, 255, 255, .028), transparent 26rem),
    linear-gradient(180deg, #050915 0%, #071020 100%);
}

.hero.section-dark::before,
.hero.section-dark::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.hero.section-dark::before {
  left: 50%;
  top: 52%;
  width: min(880px, 82vw);
  height: min(520px, 52vw);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(30, 103, 255, .09), rgba(30, 103, 255, .035) 34%, transparent 68%);
  filter: blur(54px);
  opacity: .7;
  transform: translate(-50%, -50%);
}

.hero.section-dark::after {
  left: 50%;
  bottom: -28%;
  width: min(1040px, 92vw);
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(85, 160, 255, .055), transparent 64%);
  filter: blur(70px);
  transform: translateX(-50%);
}

.hero .hero-grid {
  opacity: .28;
  background-size: 74px 74px;
  mask-image: radial-gradient(circle at 50% 46%, black 0 28%, transparent 72%);
}

.hero .hero-layout {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100svh;
  align-items: center;
  justify-content: center;
  padding-block: clamp(128px, 14vw, 188px) clamp(82px, 9vw, 128px);
}

.hero-copy {
  width: min(100%, 920px);
  padding: 0;
  text-align: center;
}

.hero-copy .eyebrow {
  margin: 0 auto clamp(30px, 4vw, 42px);
  border-color: rgba(85, 160, 255, .24);
  background: rgba(30, 103, 255, .045);
  color: rgba(116, 177, 255, .9);
}

.hero h1 {
  max-width: 860px;
  margin: 0 auto;
  font-size: clamp(3.45rem, 7.1vw, 7.3rem);
  line-height: .94;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 em {
  color: var(--blue-2);
  text-shadow: 0 0 34px rgba(85, 160, 255, .12);
}

.hero .lead {
  max-width: 610px;
  margin: clamp(34px, 4vw, 46px) auto 0;
  color: rgba(242, 245, 251, .74);
  font-size: clamp(.98rem, 1.1vw, 1.08rem);
  line-height: 1.88;
}

.hero-actions {
  justify-content: center;
  gap: 14px;
  margin-top: clamp(36px, 4.4vw, 52px);
}

.hero .button {
  min-width: 148px;
  min-height: 46px;
  border-radius: 4px;
}

.hero .button-secondary {
  background: rgba(255, 255, 255, .018);
}

.hero .scroll-cue {
  width: fit-content;
  margin: clamp(54px, 6vw, 78px) auto 0;
  opacity: .54;
}

.hero-visual,
.hero-showcase,
.signature-dental-showcase {
  display: none;
}

@media (max-width: 720px) {
  .hero.section-dark {
    min-height: auto;
  }

  .hero .hero-layout {
    min-height: 92svh;
    padding-block: 118px 76px;
  }

  .hero h1 {
    max-width: 520px;
    font-size: clamp(3.05rem, 15vw, 4.8rem);
    line-height: .98;
  }

  .hero .lead {
    max-width: 34rem;
    margin-top: 30px;
    font-size: .98rem;
  }

  .hero-actions {
    align-items: stretch;
    margin-top: 34px;
  }

  .hero .button {
    width: 100%;
  }

  .hero .scroll-cue {
    margin-top: 48px;
  }
}

/* Homepage launch polish */
.hero.section-dark {
  min-height: 94svh;
  background:
    radial-gradient(circle at 50% 48%, rgba(60, 118, 255, .072), transparent 42rem),
    radial-gradient(circle at 50% 70%, rgba(255, 255, 255, .018), transparent 31rem),
    linear-gradient(180deg, #050915 0%, #071020 100%);
}

.hero.section-dark::before {
  top: 56%;
  width: min(1120px, 90vw);
  height: min(620px, 58vw);
  background: radial-gradient(circle, rgba(30, 103, 255, .055), rgba(30, 103, 255, .022) 38%, transparent 72%);
  filter: blur(82px);
  opacity: .62;
}

.hero.section-dark::after {
  bottom: -34%;
  width: min(1180px, 94vw);
  background: radial-gradient(circle, rgba(85, 160, 255, .034), transparent 68%);
  filter: blur(92px);
  opacity: .75;
}

.hero .hero-grid {
  opacity: .18;
  background-size: 82px 82px;
  mask-image: radial-gradient(circle at 50% 50%, black 0 22%, transparent 70%);
}

.hero .hero-layout {
  min-height: 94svh;
  padding-block: clamp(108px, 10vw, 148px) clamp(72px, 7vw, 104px);
}

.hero-copy {
  transform: translateY(14px);
}

.hero-copy .eyebrow {
  margin-bottom: clamp(32px, 3.6vw, 44px);
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(3.35rem, 6.55vw, 6.75rem);
  line-height: .965;
}

.hero .lead {
  max-width: 590px;
  margin-top: clamp(32px, 3.6vw, 42px);
  line-height: 1.92;
}

.hero-actions {
  margin-top: clamp(34px, 4vw, 48px);
}

.hero .button {
  min-height: 48px;
  padding-inline: 26px;
  box-shadow: none;
}

.hero .button-primary {
  box-shadow: 0 16px 42px rgba(30, 103, 255, .18);
}

.hero .button-primary:hover {
  box-shadow: 0 20px 54px rgba(30, 103, 255, .24);
}

.hero .button-secondary {
  border-color: rgba(242, 245, 251, .2);
  background: rgba(255, 255, 255, .014);
}

.hero .scroll-cue {
  margin-top: clamp(48px, 5vw, 64px);
}

.section-heading h2 {
  text-wrap: balance;
}

.section-heading.centered {
  max-width: 720px;
}

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

.section-heading.centered + .industry-grid,
.section-heading.centered + .why-grid,
.section-heading.centered + .process-grid {
  margin-top: clamp(46px, 5vw, 68px);
}

.industries-section {
  padding-block: clamp(92px, 9vw, 142px);
}

.industry-grid {
  gap: clamp(20px, 2.4vw, 30px);
}

.industry-card,
.industry-card:nth-child(2n),
.industry-card:last-child {
  min-height: 292px;
  padding: clamp(32px, 3.4vw, 42px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .012)),
    rgba(12, 22, 43, .48);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .18);
  transition: transform .45s var(--ease), border-color .45s var(--ease), background .45s var(--ease), box-shadow .45s var(--ease);
}

.industry-card:hover {
  transform: translateY(-4px);
  border-color: rgba(85, 160, 255, .28);
  box-shadow: 0 28px 86px rgba(0, 0, 0, .22), 0 0 42px rgba(30, 103, 255, .055);
}

.industry-icon {
  margin-bottom: 38px;
}

.industry-card h3,
.why-card h3,
.process-step h3 {
  margin-bottom: 16px;
}

.industry-card p,
.why-card p,
.process-step p {
  line-height: 1.78;
}

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

.case-study-list {
  gap: clamp(34px, 4.5vw, 58px);
}

.case-study,
.case-study-reverse {
  gap: clamp(38px, 6vw, 84px);
  padding: clamp(28px, 3.6vw, 44px);
  border-color: rgba(242, 245, 251, .08);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .01)),
    rgba(12, 22, 43, .46);
  box-shadow: 0 26px 82px rgba(0, 0, 0, .18);
}

.case-study:hover {
  border-color: rgba(85, 160, 255, .2);
  box-shadow: 0 34px 104px rgba(0, 0, 0, .24);
}

.case-visual {
  box-shadow: 0 28px 88px rgba(0, 0, 0, .25);
}

.case-content h3 {
  margin-top: 16px;
  margin-bottom: 18px;
  line-height: 1.12;
}

.case-content p {
  line-height: 1.86;
}

.case-content dl {
  margin-block: clamp(26px, 3vw, 36px);
}

.benefits-section {
  padding-block: clamp(96px, 9vw, 146px);
}

.why-grid {
  gap: clamp(18px, 2vw, 26px);
}

.why-card {
  min-height: 250px;
  padding: clamp(30px, 3.2vw, 40px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .011)),
    rgba(12, 22, 43, .46);
  box-shadow: 0 20px 64px rgba(0, 0, 0, .14);
  transition: border-color .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease), transform .4s var(--ease);
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 82px rgba(0, 0, 0, .2), 0 0 34px rgba(30, 103, 255, .05);
}

.benefit-icon {
  margin-bottom: 34px;
}

.process-section {
  padding-block: clamp(98px, 9vw, 148px);
}

.process-grid {
  gap: clamp(18px, 2vw, 26px);
}

.process-step {
  min-height: 268px;
  padding: clamp(30px, 3.2vw, 40px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .032), rgba(255, 255, 255, .01)),
    rgba(12, 22, 43, .44);
}

.process-step:hover {
  box-shadow: 0 24px 76px rgba(0, 0, 0, .2), 0 0 34px rgba(30, 103, 255, .052);
}

.process-step span {
  margin-bottom: 42px;
}

.about-section {
  padding-block: clamp(104px, 10vw, 158px);
}

.about-layout {
  gap: clamp(54px, 8vw, 112px);
  align-items: center;
}

.about-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 28px;
  line-height: 1.9;
}

.about-copy .button {
  margin-top: 18px;
}

.about-card {
  border-color: rgba(242, 245, 251, .1);
  background:
    radial-gradient(circle at 82% 16%, rgba(30, 103, 255, .08), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .014)),
    rgba(12, 22, 43, .62);
  box-shadow: 0 30px 96px rgba(0, 0, 0, .24);
}

.about-card blockquote {
  margin-block: 34px;
}

.studio-highlights {
  gap: 14px;
  margin-bottom: 38px;
}

.about-card dl {
  gap: clamp(18px, 2.2vw, 30px);
  padding-top: 30px;
}

.about-card dt {
  margin-bottom: 8px;
}

.final-cta {
  padding-block: clamp(102px, 10vw, 154px);
  background:
    radial-gradient(circle at 50% 48%, rgba(30, 103, 255, .095), transparent 28rem),
    linear-gradient(180deg, #071020 0%, #050915 100%);
}

.final-cta::before {
  opacity: .42;
  filter: blur(72px);
}

.cta-wrap h2 {
  margin-top: 24px;
}

.cta-wrap p:not(.eyebrow) {
  margin-top: 24px;
  line-height: 1.86;
}

.cta-wrap .button {
  margin-top: 12px;
}

.site-footer {
  padding-top: clamp(66px, 7vw, 92px);
  background: linear-gradient(180deg, #050915 0%, #040712 100%);
}

.footer-grid {
  gap: clamp(34px, 5vw, 78px);
  padding-bottom: clamp(44px, 5vw, 66px);
}

.footer-grid h2 {
  margin-bottom: 18px;
  color: rgba(242, 245, 251, .5);
}

.footer-grid p,
.footer-grid a {
  line-height: 1.82;
}

.footer-grid a {
  transition: color .3s ease, transform .3s var(--ease);
}

.footer-grid a:hover {
  transform: translateX(2px);
}

.footer-bottom {
  padding-block: 24px;
}

@media (max-width: 980px) {
  .case-study,
  .case-study-reverse {
    padding: 24px;
  }

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

@media (max-width: 720px) {
  .hero .hero-layout {
    min-height: 88svh;
    padding-block: 108px 70px;
  }

  .hero-copy {
    transform: translateY(6px);
  }

  .hero h1 {
    font-size: clamp(2.95rem, 14vw, 4.35rem);
  }

  .section-heading.centered + .industry-grid,
  .section-heading.centered + .why-grid,
  .section-heading.centered + .process-grid {
    margin-top: 38px;
  }

  .industry-card,
  .industry-card:nth-child(2n),
  .industry-card:last-child,
  .why-card,
  .process-step {
    min-height: auto;
    padding: 30px;
  }

  .case-study,
  .case-study-reverse {
    gap: 28px;
  }
}

/* Final subtle homepage refinement */
.hero.section-dark {
  background:
    radial-gradient(ellipse 82% 48% at 50% 54%, rgba(60, 118, 255, .052), transparent 66%),
    radial-gradient(ellipse 74% 42% at 50% 76%, rgba(255, 255, 255, .014), transparent 70%),
    linear-gradient(180deg, #050915 0%, #071020 100%);
}

.hero.section-dark::before {
  top: 58%;
  width: min(1320px, 96vw);
  height: min(720px, 62vw);
  background: radial-gradient(ellipse at center, rgba(30, 103, 255, .04), rgba(30, 103, 255, .016) 42%, transparent 76%);
  filter: blur(112px);
  opacity: .54;
}

.hero.section-dark::after {
  bottom: -38%;
  width: min(1320px, 96vw);
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(85, 160, 255, .026), transparent 72%);
  filter: blur(118px);
  opacity: .58;
}

.hero .hero-grid {
  opacity: .145;
}

.hero .lead {
  max-width: 640px;
  margin-top: clamp(36px, 3.9vw, 48px);
  color: rgba(242, 245, 251, .76);
  line-height: 2;
}

.hero-actions {
  gap: 18px;
  margin-top: clamp(36px, 4vw, 50px);
}

.hero .button {
  min-width: 156px;
  padding-inline: 28px;
  transition: transform .45s var(--ease), border-color .45s var(--ease), background .45s var(--ease), box-shadow .45s var(--ease), color .45s ease;
}

.hero .button-primary {
  box-shadow: 0 18px 46px rgba(30, 103, 255, .16);
}

.hero .button-primary:hover {
  box-shadow: 0 22px 58px rgba(30, 103, 255, .22);
}

.hero .button-secondary:hover {
  border-color: rgba(85, 160, 255, .38);
  background: rgba(30, 103, 255, .06);
}

.about-section {
  padding-block: clamp(110px, 10vw, 166px);
}

.about-layout {
  gap: clamp(62px, 8vw, 124px);
}

.about-card {
  padding: clamp(40px, 5vw, 62px);
  border-color: rgba(242, 245, 251, .115);
  background:
    radial-gradient(circle at 84% 14%, rgba(85, 160, 255, .09), transparent 34%),
    radial-gradient(circle at 18% 88%, rgba(255, 255, 255, .032), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, .052), rgba(255, 255, 255, .014)),
    rgba(12, 22, 43, .66);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, .28),
    inset 0 1px 0 rgba(255, 255, 255, .055);
}

.about-card-head h3 {
  margin-bottom: 9px;
}

.about-card-head p {
  color: rgba(85, 160, 255, .82);
}

.about-card blockquote {
  max-width: 660px;
  margin: 38px 0;
  line-height: 1.42;
}

.studio-highlights {
  gap: 16px;
  margin-bottom: 42px;
}

.studio-highlights li {
  padding-block: 16px;
  background: rgba(255, 255, 255, .03);
}

.about-card dl {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding-top: 34px;
}

.about-card dl div {
  min-width: 0;
}

.about-card dt {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
}

.about-card dd {
  max-width: 9rem;
  line-height: 1.45;
}

.about-copy .button {
  margin-top: 22px;
}

.site-footer {
  padding-top: clamp(72px, 7vw, 98px);
  border-top-color: rgba(242, 245, 251, .075);
}

.footer-grid {
  align-items: start;
  gap: clamp(38px, 5.4vw, 86px);
}

.footer-grid h2 {
  margin-bottom: 20px;
  letter-spacing: .17em;
}

.footer-grid p {
  max-width: 280px;
  color: rgba(242, 245, 251, .56);
}

.footer-grid a {
  color: rgba(242, 245, 251, .58);
}

.footer-grid a:hover {
  color: rgba(242, 245, 251, .92);
}

.social-links a:hover {
  transform: translateY(-2px);
}

.footer-bottom {
  color: rgba(242, 245, 251, .38);
}

@media (max-width: 720px) {
  .hero .lead {
    max-width: 35rem;
    margin-top: 32px;
    line-height: 1.9;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero .button {
    min-width: 0;
  }

  .about-card {
    padding: 34px;
  }

  .about-card dl {
    grid-template-columns: 1fr;
  }

  .about-card dd {
    max-width: none;
  }
}

/* Pricing section */
.pricing-section {
  padding-block: clamp(98px, 9vw, 150px);
  background:
    radial-gradient(circle at 50% 36%, rgba(30, 103, 255, .045), transparent 34rem),
    var(--bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 28px);
  margin-top: clamp(48px, 5vw, 72px);
}

.pricing-card {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
  overflow: hidden;
  border: 1px solid rgba(242, 245, 251, .09);
  border-radius: 8px;
  padding: clamp(32px, 3.5vw, 44px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .012)),
    rgba(12, 22, 43, .48);
  box-shadow: 0 22px 72px rgba(0, 0, 0, .16);
  transition: transform .45s var(--ease), border-color .45s var(--ease), background .45s var(--ease), box-shadow .45s var(--ease);
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at 50% 0%, rgba(85, 160, 255, .08), transparent 42%);
  transition: opacity .45s ease;
}

.pricing-card > * {
  position: relative;
  z-index: 1;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(85, 160, 255, .22);
  box-shadow: 0 30px 92px rgba(0, 0, 0, .22), 0 0 40px rgba(30, 103, 255, .045);
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card-featured {
  border-color: rgba(85, 160, 255, .24);
  background:
    radial-gradient(circle at 50% 0%, rgba(30, 103, 255, .07), transparent 40%),
    linear-gradient(145deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .014)),
    rgba(12, 22, 43, .58);
}

.pricing-tier {
  display: block;
  margin-bottom: 30px;
  color: var(--blue-2);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.pricing-card p {
  max-width: 360px;
  margin: 0;
  color: var(--soft);
  line-height: 1.86;
}

.pricing-card .button {
  width: fit-content;
  min-width: 150px;
}

@media (max-width: 980px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    min-height: auto;
  }
}

/* Pricing refinement */
.desktop-nav {
  gap: clamp(28px, 4vw, 54px);
}

.pricing-section {
  padding-block: clamp(108px, 9.6vw, 164px) clamp(112px, 10vw, 172px);
}

.pricing-section .section-heading.centered {
  max-width: 760px;
}

.pricing-section .section-heading.centered .eyebrow {
  margin-bottom: 28px;
}

.pricing-section .section-heading h2 {
  max-width: 720px;
  margin-inline: auto;
  font-size: clamp(2.35rem, 3.75vw, 3.7rem);
  line-height: 1.08;
}

.pricing-grid {
  gap: clamp(22px, 2.6vw, 34px);
  margin-top: clamp(60px, 6vw, 86px);
  margin-bottom: clamp(6px, 1.5vw, 18px);
}

.pricing-card {
  min-height: 430px;
  gap: 42px;
  padding: clamp(38px, 4vw, 52px);
  box-shadow: 0 24px 76px rgba(0, 0, 0, .15);
}

.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .2), 0 0 34px rgba(30, 103, 255, .035);
}

.pricing-tier {
  margin-bottom: 34px;
}

.pricing-card h3 {
  margin-bottom: 30px;
  font-size: clamp(1.95rem, 2.7vw, 2.7rem);
  line-height: 1.08;
}

.pricing-card p {
  max-width: 370px;
  line-height: 1.95;
}

.pricing-card .button {
  min-height: 46px;
  padding-inline: 24px;
}

@media (max-width: 980px) {
  .pricing-section {
    padding-block: 96px 116px;
  }

  .pricing-section .section-heading h2 {
    font-size: clamp(2.25rem, 6vw, 3.25rem);
  }

  .pricing-grid {
    gap: 22px;
    margin-top: 52px;
  }

  .pricing-card {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .desktop-nav {
    gap: clamp(24px, 4vw, 34px);
  }

  .pricing-section {
    padding-block: 88px 104px;
  }

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

  .pricing-section .section-heading h2 {
    font-size: clamp(2rem, 10vw, 2.85rem);
  }

  .pricing-grid {
    margin-top: 42px;
  }

  .pricing-card {
    padding: 32px;
    gap: 34px;
  }

  .pricing-tier {
    margin-bottom: 26px;
  }

  .pricing-card h3 {
    margin-bottom: 22px;
  }

  .pricing-card .button {
    width: 100%;
  }
}

/* Final image placement */
.project-image-frame {
  overflow: hidden;
  border-radius: 8px;
  background: rgba(5, 9, 21, .42);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.project-image-frame img,
.site-slab.image-slab img,
.phone-mock.image-phone img {
  display: block;
  width: 100%;
  height: auto;
}

.case-study:hover .project-image-frame,
.projects-hero-feature:hover .project-image-frame {
  transform: scale(1.018);
}

.project-image-frame {
  transition: transform .65s var(--ease);
}

.case-visual .project-image-frame {
  height: 100%;
}

.case-visual .project-image-frame img {
  height: 100%;
  object-fit: cover;
}

.site-slab.image-slab {
  display: block;
  min-height: 0;
  padding: 0;
  background: rgba(12, 22, 43, .52);
}

.site-slab.image-slab::before {
  display: none;
}

.site-slab.image-slab img {
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}

.site-slab.image-slab.slab-hero img {
  min-height: 430px;
}

.phone-mock.image-phone {
  overflow: hidden;
  min-height: 0;
  padding: 0;
  background: #07101f;
}

.phone-mock.image-phone img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.projects-hero-grid .page-hero-inner .hero-actions {
  justify-content: flex-start;
  margin-left: 0;
}

.final-cta .cta-wrap p:not(.eyebrow) {
  margin-bottom: 24px;
}

.final-cta .cta-wrap .button {
  margin-top: 0;
}

@media (max-width: 980px) {
  .case-visual .project-image-frame img,
  .site-slab.image-slab img {
    height: auto;
    min-height: 0;
    object-fit: contain;
  }
}

@media (max-width: 720px) {
  .projects-hero-grid .page-hero-inner .hero-actions {
    align-items: stretch;
  }

  .phone-mock.image-phone img {
    min-height: 360px;
  }
}

/* Final mobile showcase polish */
.case-page .mobile-showcase {
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: clamp(44px, 5.8vw, 76px);
  align-items: center;
}

.case-page .phone-row {
  gap: clamp(22px, 2.8vw, 34px);
  width: min(100%, 760px);
  justify-self: start;
}

.phone-mock.image-phone {
  border-width: 9px;
  border-radius: 32px;
  box-shadow: 0 34px 95px rgba(0, 0, 0, .31);
}

.phone-mock.image-phone img {
  min-height: 480px;
}

@media (max-width: 1180px) {
  .case-page .mobile-showcase {
    grid-template-columns: minmax(230px, .6fr) minmax(0, 1.4fr);
    gap: clamp(36px, 5vw, 58px);
  }

  .case-page .phone-row {
    gap: 20px;
  }

  .phone-mock.image-phone img {
    min-height: 430px;
  }
}

@media (max-width: 980px) {
  .case-page .mobile-showcase {
    grid-template-columns: 1fr;
  }

  .case-page .phone-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    justify-self: stretch;
  }
}

@media (max-width: 720px) {
  .case-page .phone-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .phone-mock.image-phone img {
    min-height: 0;
  }
}

/* Stability and responsive finishing pass */
.site-header {
  z-index: 2200;
}

.site-header.menu-open {
  z-index: 2300;
}

@media (max-width: 980px) {
  .mobile-menu {
    z-index: 2250;
    box-shadow: 0 32px 90px rgba(0, 0, 0, .42);
  }
}

.case-page .case-hero {
  min-height: clamp(720px, 78svh, 880px);
  padding-block: clamp(190px, 17vw, 250px) clamp(132px, 12vw, 178px);
  display: flex;
  align-items: center;
}

.case-page .case-hero-grid {
  width: min(100% - 48px, var(--wrap));
  gap: clamp(62px, 8vw, 118px);
}

.case-page .case-hero-visual .case-visual {
  min-height: clamp(360px, 34vw, 520px);
}

.case-page .mobile-showcase {
  grid-template-columns: minmax(250px, .62fr) minmax(0, 1.38fr);
  gap: clamp(48px, 6.5vw, 92px);
}

.case-page .phone-row {
  width: min(100%, 840px);
  gap: clamp(28px, 3.2vw, 42px);
  align-items: start;
}

.phone-mock.image-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-width: 8px;
}

.phone-mock.image-phone img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  border-radius: 22px;
}

@media (max-width: 1180px) {
  .case-page .case-hero {
    min-height: clamp(680px, 76svh, 820px);
    padding-block: clamp(170px, 15vw, 220px) clamp(112px, 10vw, 148px);
  }

  .case-page .mobile-showcase {
    grid-template-columns: minmax(220px, .52fr) minmax(0, 1.48fr);
    gap: clamp(40px, 5.6vw, 68px);
  }

  .case-page .phone-row {
    gap: clamp(22px, 2.5vw, 30px);
  }
}

@media (max-width: 980px) {
  .case-page .case-hero {
    min-height: auto;
    padding-block: 154px 104px;
  }

  .case-page .case-hero-grid,
  .case-page .mobile-showcase {
    grid-template-columns: 1fr;
  }

  .case-page .phone-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(100%, 780px);
    justify-self: center;
  }
}

@media (max-width: 720px) {
  .case-page .case-hero {
    padding-block: 136px 88px;
  }

  .case-page .case-hero-grid {
    width: min(100% - 40px, var(--wrap));
    gap: 42px;
  }

  .case-page .case-hero-visual .case-visual {
    min-height: 0;
  }

  .case-page .phone-row {
    grid-template-columns: 1fr;
    gap: 30px;
    width: min(100%, 340px);
  }
}

/* Case hero composition restore and mobile nav overlay fix */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.site-header.menu-open {
  z-index: 10000;
}

.case-page .case-hero {
  min-height: clamp(760px, 88svh, 980px);
  padding-block: clamp(176px, 15vw, 226px) clamp(126px, 10vw, 164px);
  display: flex;
  align-items: center;
}

.case-page .case-hero-grid {
  gap: clamp(46px, 7vw, 96px);
}

.case-page .case-hero-visual .case-visual {
  min-height: unset;
}

@media (max-width: 980px) {
  .mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: auto;
    bottom: 0;
    z-index: 10001;
    width: 100%;
    min-height: calc(100dvh - 70px);
    padding: 22px 24px 36px;
    overflow-y: auto;
    background: rgba(5, 9, 21, .985);
    backdrop-filter: blur(22px) saturate(1.15);
    box-shadow: 0 34px 100px rgba(0, 0, 0, .5);
  }

  .mobile-menu nav {
    min-height: 100%;
    align-content: start;
  }

  .mobile-menu nav a {
    position: relative;
    z-index: 1;
  }

  .site-header.menu-open .mobile-menu {
    clip-path: inset(0);
    pointer-events: auto;
    visibility: visible;
  }
}

@media (max-width: 720px) {
  .case-page .case-hero {
    min-height: auto;
    padding-block: 146px 96px;
  }
}

/* Projects page hero spacing only */
.projects-page-hero {
  min-height: clamp(740px, 88svh, 940px);
  padding-block: clamp(174px, 15vw, 230px) clamp(122px, 11vw, 168px);
  display: flex;
  align-items: center;
}

.projects-page-hero .projects-hero-grid {
  width: min(100% - 48px, var(--wrap));
}

@media (max-width: 980px) {
  .projects-page-hero {
    min-height: auto;
    padding-block: 150px 104px;
  }
}

@media (max-width: 720px) {
  .projects-page-hero {
    padding-block: 136px 88px;
  }

  .projects-page-hero .projects-hero-grid {
    width: min(100% - 40px, var(--wrap));
  }
}
