:root {
  --bg: #F6F8F6;
  --bg-soft: #EEF3F1;
  --bg-clean: #FAFBF8;
  --cream: #FFF7E7;
  --warm-white: #FFFDF7;
  --surface: #FFFFFF;
  --surface-solid: #FFFFFF;
  --text: #101820;
  --ink: var(--text);
  --muted-text: #65707A;
  --muted: var(--muted-text);
  --muted-strong: #263642;
  --navy: #071B33;
  --navy-soft: #102A43;
  --navy-deep: #061426;
  --blue: #1A4F7A;
  --blue-soft: #E6EEF6;
  --teal: #0F766E;
  --green: #17634D;
  --forest: var(--green);
  --forest-strong: #0F513D;
  --soft-green: #DDEFE8;
  --soft-blue: var(--blue-soft);
  --yellow: #F4C95D;
  --orange: #D97706;
  --border: #D9E1DE;
  --border-strong: #B9C8C3;
  --line: var(--border);
  --line-strong: var(--border-strong);
  --error: #8A1F1F;
  --shadow-xs: 0 8px 22px rgba(7, 27, 51, 0.06);
  --shadow-sm: 0 14px 34px rgba(7, 27, 51, 0.09);
  --shadow: 0 24px 70px rgba(7, 27, 51, 0.12);
  --shadow-strong: 0 32px 90px rgba(7, 27, 51, 0.17);
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; background: var(--bg); }

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  background: linear-gradient(180deg, #F5F6F3 0%, #FAFAF7 45%, #EFF3F0 100%);
}

img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, p { overflow-wrap: break-word; }
h1, h2, h3 { margin: 0; line-height: 0.98; letter-spacing: 0; }
p { margin: 0; }

h1 { max-width: 850px; font-size: 5.9rem; }
h2 { font-size: 4rem; }
h3 { font-size: 1.28rem; letter-spacing: 0; }

.site-header,
.hero,
.cred-strip,
.section,
.final-cta,
.brand-statement,
.site-footer {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 36px rgba(16, 24, 39, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft) 58%, var(--forest));
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
}

.site-nav a {
  padding: 9px 11px;
  border-radius: 999px;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible { background: var(--soft-blue); color: var(--navy); }

.site-nav .nav-cta {
  margin-left: 4px;
  background: var(--navy);
  color: #FFFFFF;
  font-weight: 900;
  white-space: nowrap;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--navy-deep);
  color: #FFFFFF;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}
.button:hover,
.button:focus-visible { transform: translateY(-2px); border-color: rgba(11, 31, 58, 0.68); }
.button-primary {
  background: linear-gradient(135deg, var(--navy), var(--navy-soft) 70%, var(--forest) 145%);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow:
    0 14px 34px rgba(11, 31, 58, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.28) inset;
}
.button-secondary { background: #FFFFFF; color: var(--ink); }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  width: min(100% - 64px, 1440px);
  min-height: 0;
  padding: 34px 0 56px;
}

.hero-media-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(430px, 50vw, 620px);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 34px;
  background: #0B1F3A;
  box-shadow: 0 24px 70px rgba(16, 24, 39, 0.12);
}

.hero-video,
.hero-video-fallback,
.hero-video-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  z-index: -3;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
}

.hero-video-fallback {
  z-index: -4;
  background:
    linear-gradient(135deg, rgba(231, 238, 247, 0.74), rgba(221, 239, 229, 0.5)),
    #F5F6F3;
}

.hero-video-overlay {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(11, 31, 58, 0.04), rgba(11, 31, 58, 0.12)),
    linear-gradient(90deg, rgba(11, 31, 58, 0.08), rgba(11, 31, 58, 0.02));
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  text-align: center;
}

.hero-intro-copy h1 {
  max-width: 860px;
  margin: 0 auto;
  color: var(--ink);
  font-size: 5.2rem;
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: 0;
  text-align: center;
  text-shadow: none;
}

.hero-typewriter {
  display: grid;
  justify-items: center;
  gap: 0.12em;
}

.hero-typewriter-prefix {
  display: block;
  font-size: 0.42em;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-typewriter-text {
  display: block;
  min-height: 1.08em;
  text-align: center;
  white-space: nowrap;
}

.hero-typewriter-text::after {
  content: "";
  display: inline-block;
  width: 0.06em;
  height: 0.82em;
  margin-left: 0.08em;
  transform: translateY(0.08em);
  background: currentColor;
  animation: typewriter-cursor 0.8s steps(1) infinite;
}

@keyframes typewriter-cursor {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.hero-mobile-break { display: none; }

.hero-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(420px, 1fr);
  column-gap: clamp(28px, 3.4vw, 48px);
  row-gap: clamp(14px, 1.6vw, 22px);
  align-items: stretch;
}

.hero-intro-copy {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  align-content: start;
  gap: clamp(18px, 2vw, 24px);
  min-width: 0;
  padding: clamp(18px, 3vw, 38px) 0 0;
  text-align: center;
}

.hero-intro-layout .service-selector-panel {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  margin-top: clamp(86px, 7vw, 116px);
}

.hero-support-copy {
  position: relative;
  grid-column: 1;
  grid-row: 2;
  display: grid;
  grid-template-columns: minmax(250px, 0.42fr) minmax(0, 1fr);
  gap: clamp(14px, 2vw, 24px);
  align-items: start;
  width: 100%;
  padding-top: clamp(18px, 2vw, 24px);
  border-top: 1px solid rgba(11, 31, 58, 0.14);
  text-align: left;
}

.hero-support-copy::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: clamp(82px, 12vw, 128px);
  height: 2px;
  border-radius: 999px;
  background: var(--forest);
  content: "";
}

.hero-support-copy h2 {
  max-width: 360px;
  color: var(--navy);
  font-size: clamp(1.38rem, 1.55vw, 1.82rem);
  font-weight: 950;
  line-height: 1.04;
}

.hero-support-copy-text {
  display: grid;
  gap: 9px;
  max-width: 620px;
}

.hero-support-copy p {
  color: var(--muted-strong);
  font-size: clamp(0.98rem, 1.04vw, 1.08rem);
  font-weight: 650;
  line-height: 1.55;
}

.hero-support-copy p:last-child {
  color: var(--forest-strong);
  font-weight: 800;
}

.hero-intro-layout .selector-options {
  gap: 9px;
}

.hero-intro-layout .selector-card {
  min-height: 72px;
}

.hero-intro-layout .selector-copy small {
  font-size: 0.7rem;
}

.hero-intro-layout .selector-step-services {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.hero-intro-layout .selector-step-services .selector-controls {
  margin-top: auto;
  padding-top: 14px;
}

@media (min-width: 1200px) {
  .hero {
    width: min(96vw, 1600px);
  }

  .hero-intro-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(420px, 0.8fr);
    column-gap: clamp(28px, 2.4vw, 44px);
  }

  .hero-intro-layout .service-selector-panel {
    justify-self: end;
  }
}

.hero-detail-card {
  grid-column: 1 / -1;
  grid-row: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 8px clamp(18px, 4vw, 44px) 6px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.hero-kicker {
  margin: 0 auto;
  color: var(--forest);
  font-size: clamp(2.35rem, 3vw, 3.35rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.hero-detail-card h1 {
  max-width: 820px;
  margin: 0 auto;
  color: var(--ink);
  font-size: 4.45rem;
  line-height: 0.98;
  letter-spacing: 0;
  text-align: center;
  text-shadow: none;
}

.hero-detail-card p:not(.hero-kicker) {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted-strong);
  font-size: 1.15rem;
  font-weight: 560;
  line-height: 1.55;
}

.eyebrow,
.panel-kicker,
.card-topline,
.pricing-label {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-subtext {
  max-width: 650px;
  margin-top: 22px;
  color: var(--muted-strong);
  font-size: 1.08rem;
  font-weight: 560;
}

.hero-detail-card .hero-subtext {
  margin-top: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.case-status span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: min(100%, 660px);
  margin: 24px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  list-style: none;
}

.hero-services li {
  position: relative;
  display: inline-flex;
  gap: 9px;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(11, 31, 58, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted-strong);
  font-size: 0.88rem;
  font-weight: 850;
  letter-spacing: 0;
}

.hero-services li + li { border-top: 0; }

.hero-services li::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--forest));
  content: "";
}

.mini-audit-panel {
  position: relative;
  padding: 26px;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(231, 238, 247, 0.72), rgba(255, 255, 255, 0)),
    var(--surface-solid);
  box-shadow: var(--shadow);
}
.mini-audit-panel h3 { font-size: 2.2rem; }
.mini-audit-panel p { margin: 16px 0; color: var(--muted); font-weight: 600; }

.hero-support-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin: 28px auto 0;
  padding: 0;
  list-style: none;
}

.hero-support-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(16, 24, 39, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 32px rgba(16, 24, 39, 0.05);
}

.hero-support-list li::before {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--forest));
  content: "";
}

.service-selector-panel {
  z-index: 3;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  align-self: start;
  justify-self: stretch;
  width: 100%;
  margin: 0;
  padding: clamp(18px, 2.2vw, 24px);
  border: 1px solid rgba(16, 24, 39, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  box-shadow: 0 16px 44px rgba(16, 24, 39, 0.06);
}

.service-selector-panel::before {
  content: none;
}

.service-selector-panel::after {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 76px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--navy), var(--navy-soft) 70%, var(--forest));
  content: "";
}

.service-selector-panel [hidden] { display: none !important; }

.selector-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  align-items: end;
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(16, 24, 39, 0.08);
}

.selector-heading p,
.selector-heading span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.selector-heading h2 {
  grid-column: 1;
  max-width: 680px;
  margin: 0;
  color: var(--ink);
  font-size: 1.95rem;
  line-height: 1;
  letter-spacing: 0;
}

.selector-heading span {
  grid-column: 1;
  align-self: center;
  color: rgba(95, 104, 119, 0.72);
}

.selector-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 16px;
}

.selector-card {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 74px;
  padding: 12px 32px 12px 12px;
  border: 1px solid rgba(16, 24, 39, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  cursor: pointer;
  box-shadow: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.selector-card::after {
  position: absolute;
  top: 14px;
  right: 13px;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(16, 24, 39, 0.2);
  border-radius: 50%;
  background: #FFFFFF;
  content: "";
}

.selector-card:hover,
.selector-card:focus-within {
  border-color: rgba(11, 31, 58, 0.5);
  box-shadow: 0 14px 30px rgba(16, 24, 39, 0.1);
  transform: translateY(-1px);
}

.selector-card:has(input:checked) {
  border-color: rgba(11, 31, 58, 0.78);
  background:
    linear-gradient(140deg, rgba(31, 94, 59, 0.28), transparent 46%),
    linear-gradient(180deg, var(--navy), var(--navy-soft));
  box-shadow: 0 18px 42px rgba(11, 31, 58, 0.22);
}

.selector-card:has(input:checked)::after {
  border-color: transparent;
  background: linear-gradient(135deg, #FFFFFF, var(--soft-green));
  box-shadow: 0 0 0 4px rgba(221, 239, 229, 0.24);
}

.selector-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.selector-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  min-height: 44px;
  border: 1px solid rgba(16, 24, 39, 0.08);
  border-radius: 12px;
  background:
    linear-gradient(135deg, #FFFFFF, var(--soft-blue) 42%, rgba(221, 239, 229, 0.72) 70%, var(--warm-white));
  color: var(--ink);
  font-size: 0.64rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
}

.selector-icon svg {
  display: block;
  width: 28px;
  height: 28px;
}

.selector-icon .glyph-line,
.selector-icon .glyph-teal-line,
.selector-icon .glyph-blue-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.selector-icon .glyph-line {
  stroke: var(--ink);
  stroke-width: 2.35;
}

.selector-icon .glyph-teal-line {
  stroke: var(--navy);
  stroke-width: 2.35;
}

.selector-icon .glyph-blue-line {
  stroke: var(--forest);
  stroke-width: 2.35;
}

.selector-icon .glyph-cream-fill { fill: rgba(231, 238, 247, 0.78); }
.selector-icon .glyph-teal-fill { fill: rgba(11, 31, 58, 0.76); }
.selector-icon .glyph-blue-fill { fill: rgba(31, 94, 59, 0.72); }
.selector-icon .glyph-accent-fill { fill: rgba(221, 239, 229, 0.92); }
.selector-icon .glyph-navy-fill { fill: var(--ink); }

.selector-icon .glyph-star {
  fill: rgba(31, 94, 59, 0.88);
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
  vector-effect: non-scaling-stroke;
}

.selector-copy {
  display: block;
  min-width: 0;
}

.selector-copy strong {
  display: block;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.025em;
  line-height: 1.12;
  text-transform: uppercase;
}

.selector-copy small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.25;
}

.selector-card:has(input:checked) .selector-copy strong {
  color: #FFFFFF;
}

.selector-card:has(input:checked) .selector-copy small {
  color: rgba(255, 255, 255, 0.78);
}

.selector-controls {
  display: grid;
  grid-template-columns: minmax(96px, 0.34fr) minmax(0, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.selector-step-services .selector-controls {
  grid-template-columns: 1fr;
}

.selector-step-services .selector-back {
  display: none;
}

.selector-back,
.selector-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 15px;
  border: 0;
  border-radius: 16px;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.selector-back {
  background: transparent;
  color: rgba(95, 104, 119, 0.88);
}

.selector-next {
  background:
    linear-gradient(135deg, rgba(221, 239, 229, 0.18), rgba(255, 255, 255, 0.16) 56%, transparent),
    var(--navy);
  color: #FFFFFF;
  box-shadow:
    0 18px 38px rgba(11, 31, 58, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.22) inset;
}

.selector-error {
  margin: 12px 4px 0;
  color: var(--error);
  font-size: 0.82rem;
  font-weight: 850;
}

.selector-success {
  margin: 12px 4px 0;
  color: var(--forest-strong);
  font-size: 0.82rem;
  font-weight: 850;
}

.hidden-field {
  display: none;
}

.studio-intake-form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

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

.form-field span,
.contact-preference legend {
  color: var(--muted-strong);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-transform: uppercase;
}

.form-field em {
  color: rgba(95, 104, 119, 0.76);
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font: inherit;
  font-size: 0.94rem;
  font-weight: 650;
  outline: 0;
  box-shadow: 0 10px 24px rgba(16, 24, 39, 0.05);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

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

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(95, 104, 119, 0.58);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(11, 31, 58, 0.72);
  box-shadow:
    0 12px 28px rgba(16, 24, 39, 0.08),
    0 0 0 4px rgba(231, 238, 247, 0.9);
}

.contact-preference {
  display: grid;
  gap: 10px;
  margin: 2px 0 0;
  padding: 0;
  border: 0;
}

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

.contact-card,
.contact-type-row label {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 52px;
  padding: 12px 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #FFFFFF;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(16, 24, 39, 0.06);
}

.contact-card input,
.contact-type-row input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-card:has(input:checked),
.contact-type-row label:has(input:checked) {
  border-color: rgba(11, 31, 58, 0.64);
  background:
    linear-gradient(135deg, rgba(231, 238, 247, 0.9), rgba(221, 239, 229, 0.68)),
    #FFFFFF;
  box-shadow:
    0 14px 30px rgba(16, 24, 39, 0.1),
    0 0 0 1px rgba(11, 31, 58, 0.14) inset;
}

.contact-card:focus-within,
.contact-type-row label:focus-within {
  border-color: rgba(11, 31, 58, 0.72);
  box-shadow:
    0 12px 28px rgba(16, 24, 39, 0.08),
    0 0 0 4px rgba(231, 238, 247, 0.9);
}

.contact-type-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.option-stack { display: grid; gap: 10px; margin: 22px 0; }
.option-stack span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #FFFFFF;
  color: var(--ink);
  font-weight: 800;
}
.option-stack span::after { width: 9px; height: 9px; border-radius: 50%; background: var(--forest); content: ""; }

.cred-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
}
.cred-strip span { color: var(--muted); font-size: 0.9rem; font-weight: 800; text-align: center; }

.section { padding: 92px 0; }
.section-heading { margin-bottom: 32px; }
.service-heading-centered {
  display: flex;
  justify-content: center;
  text-align: center;
}
.service-heading-centered h2 {
  margin: 0;
  color: var(--ink);
  font-size: 5.8rem;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}
.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
  gap: 24px;
  align-items: start;
}
.services-main {
  min-width: 0;
}
.services-main .service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(260px, 0.52fr);
  gap: 28px;
  align-items: end;
}
.split-heading > p { color: var(--muted); font-size: 1.05rem; font-weight: 600; }
.search-section .split-heading {
  display: block;
  text-align: center;
}
.search-section .split-heading > div {
  max-width: 920px;
  margin: 0 auto;
}
.search-section .eyebrow {
  margin-right: auto;
  margin-left: auto;
}
.search-section h2 {
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
}
.search-heading-copy {
  max-width: 660px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.5;
}

.service-grid,
.search-grid,
.screenshot-grid,
.proof-detail-grid,
.pricing-grid,
.process-grid,
.faq-grid { display: grid; gap: 16px; }
.service-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.search-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.process-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.service-card,
.search-card,
.proof-card,
.compare-card,
.pricing-card,
.trust-card,
.process-step,
.founder-card,
.faq-grid details,
.screen-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 16px 42px rgba(16, 24, 39, 0.07);
}

.service-card { min-height: 230px; padding: 22px; }
.service-card-icon {
  width: 58px;
  height: 58px;
  margin-top: 28px;
  object-fit: contain;
}
.service-icon,
.screen-label,
.compare-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid rgba(11, 31, 58, 0.22);
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}
.service-card h3 { margin-top: 22px; }
.service-card p,
.search-card p,
.proof-card p,
.pricing-card p,
.process-step p,
.founder-card p,
.faq-grid p { margin-top: 12px; color: var(--muted); }

.search-section,
.pricing-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
  box-shadow: 0 0 0 100vmax var(--bg-soft);
  clip-path: inset(0 -100vmax);
}
.search-card { min-height: 260px; padding: 26px; }
.featured-search-card { background: linear-gradient(180deg, rgba(231, 238, 247, 0.82), #FFFFFF 56%); border-color: rgba(11, 31, 58, 0.22); }

.case-intro {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
  text-align: center;
}
.case-status { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.screenshot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.screen-card { margin: 0; padding: 14px; }
.after-screen { border-color: rgba(31, 94, 59, 0.42); }
.screen-card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; color: var(--muted); font-size: 0.82rem; font-weight: 850; }
.screen-card-top a { color: var(--navy); font-weight: 900; text-decoration: none; }
.screenshot-frame { height: 620px; overflow-x: hidden; overflow-y: auto; border: 1px solid var(--line); border-radius: 14px; background: #F4F4F1; }
.screenshot-frame img {
  width: 100%;
  height: auto;
  object-fit: initial;
}

.proof-detail-grid { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 18px; margin-top: 18px; }
.proof-card,
.compare-card,
.pricing-card,
.trust-card,
.process-step { padding: 24px; }
.check-list,
.compare-card ul,
.about-list,
.trust-card ul { display: grid; gap: 10px; margin: 18px 0 0; padding: 0; list-style: none; }
.check-list li,
.about-list li,
.trust-card li { position: relative; padding-left: 25px; color: var(--muted-strong); font-weight: 750; }
.check-list li::before,
.about-list li::before,
.trust-card li::before { position: absolute; top: 0.58em; left: 0; width: 10px; height: 10px; border-radius: 50%; background: var(--forest); content: ""; }
.compare-card { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.compare-column { padding: 18px; border: 1px solid var(--line); border-radius: 15px; background: #F5F6F3; }
.compare-column.after { background: var(--soft-green); }
.compare-card li { color: var(--muted); font-weight: 750; }

.pricing-grid { grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.58fr); }
.pricing-card { display: grid; gap: 22px; border-color: rgba(11, 31, 58, 0.24); background: linear-gradient(135deg, rgba(231, 238, 247, 0.9), #FFFFFF 48%, rgba(221, 239, 229, 0.72)); }
.pricing-card h3 { font-size: 2.55rem; }
.pricing-card .button { width: fit-content; }
.trust-card { background: linear-gradient(180deg, rgba(221, 239, 229, 0.9), #FFFFFF 46%); color: var(--ink); }
.trust-card h3,
.trust-card li { color: var(--ink); }
.trust-card li::before { background: var(--forest); }

.process-step { min-height: 260px; }
.process-step span { display: inline-grid; place-items: center; width: 44px; height: 44px; margin-bottom: 24px; border-radius: 50%; background: var(--navy); color: #FFFFFF; font-weight: 950; }

.founder-section {
  padding: 8px 0 0;
}
.founder-section + .service-section {
  padding-top: 76px;
}
.founder-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.42fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  padding: clamp(22px, 3.4vw, 34px);
  border-color: rgba(11, 31, 58, 0.14);
  background:
    linear-gradient(135deg, #FFFFFF 0%, #FFFFFF 58%, rgba(221, 239, 229, 0.52) 100%);
  box-shadow: 0 16px 42px rgba(16, 24, 39, 0.06);
}
.founder-card::before {
  position: absolute;
  top: 0;
  left: clamp(22px, 3.4vw, 34px);
  width: 142px;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--navy), var(--forest));
  content: "";
}
.founder-copy h2 {
  max-width: 760px;
  color: var(--navy);
  font-size: 3rem;
  line-height: 1;
}
.founder-copy p:not(.eyebrow) {
  max-width: 780px;
  margin-top: 16px;
  color: var(--muted-strong);
  font-size: 1.05rem;
  font-weight: 620;
  line-height: 1.55;
}
.founder-note-card {
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 10px;
  min-height: 154px;
  padding: 18px;
  border: 1px solid rgba(31, 94, 59, 0.2);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(239, 243, 240, 0.92), #FFFFFF 72%);
}
.founder-note-mark {
  position: relative;
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft) 56%, var(--forest));
  box-shadow: 0 12px 24px rgba(11, 31, 58, 0.16);
}
.founder-note-mark::before,
.founder-note-mark::after {
  position: absolute;
  content: "";
}
.founder-note-mark::before {
  inset: 12px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
}
.founder-note-mark::after {
  top: 8px;
  left: 23px;
  width: 2px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  transform: rotate(34deg);
}
.founder-note-card p {
  margin: 0;
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}
.founder-note-card strong {
  color: var(--ink);
  font-size: 1.03rem;
  line-height: 1.3;
}
.faq-grid details { padding: 20px; }
.faq-grid details[open] { border-color: rgba(11, 31, 58, 0.38); background: #FFFFFF; }
.faq-grid summary { cursor: pointer; color: var(--ink); font-weight: 900; list-style: none; }
.faq-grid summary::-webkit-details-marker { display: none; }
.faq-grid summary::after { float: right; color: var(--navy); content: "+"; font-weight: 950; }
.faq-grid details[open] summary::after { content: "-"; }

.final-cta { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr); gap: 28px; align-items: center; padding: 82px 0 62px; }
.final-copy p:not(.eyebrow) { max-width: 700px; margin-top: 16px; color: var(--muted); font-size: 1.13rem; font-weight: 600; }
.final-copy .button { margin-top: 24px; }
.compact-options { margin: 18px 0 12px; }
.compact-options span { min-height: 42px; padding: 9px 12px; }

.brand-statement {
  max-width: 760px;
  margin-top: 6px;
  margin-bottom: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(16, 16, 16, 0.12);
  text-align: center;
}
.brand-statement p {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}
.brand-statement strong {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.12em;
  margin-top: 6px;
  color: var(--ink);
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: 0;
}
.brand-statement b {
  color: var(--forest);
  font-weight: 950;
}

.site-footer { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding: 32px 0 46px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.92rem; }
.site-footer div { display: flex; flex-wrap: wrap; gap: 10px 16px; }
.site-footer strong { color: var(--ink); }
.site-footer a { color: var(--navy); font-weight: 900; text-decoration: none; }

@media (max-width: 1120px) {
  .site-header { align-items: flex-start; flex-direction: column; border-radius: 24px; }
  .site-nav { justify-content: flex-start; width: 100%; flex-wrap: wrap; }
  .hero,
  .hero-intro-layout,
  .services-layout,
  .split-heading,
  .case-intro,
  .proof-detail-grid,
  .pricing-grid,
  .founder-card,
  .final-cta { grid-template-columns: 1fr; }
  .hero { min-height: auto; gap: 20px; }
  .hero-media-card {
    grid-column: 1;
    grid-row: auto;
    min-height: clamp(480px, 60vw, 620px);
  }
  .hero-detail-card {
    grid-column: 1;
    grid-row: auto;
  }
  .hero-detail-card h1 { font-size: 4rem; }
  .hero-intro-copy {
    grid-column: 1;
    grid-row: auto;
    padding-right: 0;
  }
  .hero-intro-copy h1 { font-size: 4rem; }
  .hero-intro-copy .hero-actions { justify-content: flex-start; }
  .service-selector-panel {
    justify-self: stretch;
    width: 100%;
    max-width: none;
    margin: 0;
  }
  .hero-intro-layout .service-selector-panel {
    grid-column: 1;
    grid-row: auto;
    display: block;
    align-self: auto;
    margin-top: 0;
  }
  .hero-support-copy {
    grid-column: 1;
    grid-row: auto;
    max-width: 760px;
  }
  .hero-intro-layout .selector-step-services {
    display: block;
    min-height: 0;
  }
  .hero-intro-layout .selector-step-services .selector-controls {
    margin-top: 14px;
    padding-top: 0;
  }
  .selector-options { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .founder-note-card { min-height: auto; }
  .cred-strip,
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .search-grid,
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proof-insight-stack { grid-template-columns: 1fr; }
  .case-status { justify-content: flex-start; }
  .pricing-card .button { width: 100%; }
}

@media (max-width: 760px) {
  .site-header,
  .hero,
  .cred-strip,
  .section,
  .final-cta,
  .brand-statement,
  .site-footer { width: min(100% - 24px, var(--max-width)); }
  .site-header {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 8px;
    border-radius: 999px;
  }
  .brand {
    min-width: 0;
    gap: 8px;
    white-space: normal;
  }
  .brand-mark {
    width: 32px;
    height: 32px;
  }
  .brand-text {
    max-width: 128px;
    overflow: hidden;
    font-size: 0.86rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .site-nav {
    width: auto;
    flex: 0 0 auto;
    justify-content: flex-end;
    margin-left: auto;
    font-size: 0.7rem;
  }
  .site-nav a:not(.nav-cta) { display: none; }
  .site-nav .nav-cta {
    width: auto;
    margin-left: 0;
    padding: 8px 10px;
    text-align: center;
    white-space: nowrap;
  }
  .hero { padding: 24px 0 28px; gap: 14px; }
  .hero-media-card {
    min-height: 360px;
    border-radius: 24px;
  }
  .hero-video-overlay {
    background:
      linear-gradient(180deg, rgba(11, 31, 58, 0.04), rgba(11, 31, 58, 0.14)),
      linear-gradient(90deg, rgba(11, 31, 58, 0.08), rgba(11, 31, 58, 0.02));
  }
  .hero-detail-card h1 {
    font-size: 2.65rem;
    line-height: 1.04;
  }
  .hero-intro-copy {
    padding: 14px 0 4px;
    text-align: center;
  }
  .hero-kicker {
    font-size: 1.75rem;
  }
  .hero-support-copy {
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: none;
    padding-top: 16px;
  }
  .hero-support-copy h2 {
    max-width: 330px;
    font-size: 1.55rem;
  }
  .hero-support-copy-text {
    max-width: 34rem;
  }
  .hero-support-copy p {
    font-size: 0.96rem;
    line-height: 1.52;
  }
  .hero-intro-copy h1 {
    font-size: 2.65rem;
    line-height: 1.04;
    text-align: center;
  }
  .hero-intro-copy h2 {
    margin-top: 16px;
    font-size: 2rem;
  }
  .hero-intro-copy p:not(.hero-kicker) {
    margin-right: auto;
    margin-left: auto;
    font-size: 0.98rem;
  }
  .hero-typewriter-prefix {
    font-size: 0.4em;
  }
  .hero-mobile-break { display: block; }
  .hero-services {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 18px;
    padding: 0;
  }
  .hero-services li {
    width: 100%;
    min-height: 34px;
    padding: 7px 10px;
    font-size: 0.82rem;
  }
  .hero-subtext {
    margin-top: 18px;
    font-size: 0.98rem;
  }
  .hero-support-list {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 20px;
  }
  .hero-support-list li {
    min-height: 48px;
    padding: 12px 14px;
    font-size: 0.9rem;
  }
  .hero-actions {
    gap: 10px;
    margin-top: 18px;
  }
  .hero-actions,
  .hero-actions .button,
  .final-copy .button { width: 100%; }
  .service-selector-panel {
    max-width: none;
    width: 100%;
    margin-left: 0;
    padding: 15px;
    border-radius: 24px;
  }
  .service-selector-panel::after {
    top: 14px;
    right: 16px;
    width: 68px;
  }
  .selector-heading {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 8px 4px 14px;
  }
  .selector-heading h2 { font-size: 1.68rem; }
  .selector-heading span { grid-column: 1; }
  .selector-options {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 12px;
  }
  .selector-card {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    min-height: auto;
    padding: 12px 32px 12px 12px;
    border-radius: 17px;
  }
  .selector-card::after {
    top: 14px;
    right: 12px;
  }
  .selector-icon {
    width: 44px;
    min-height: 44px;
    border-radius: 13px;
    font-size: 0.58rem;
  }
  .selector-icon svg {
    width: 28px;
    height: 28px;
  }
  .selector-copy strong { font-size: 0.82rem; }
  .selector-copy small { font-size: 0.72rem; }
  .selector-controls {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 12px;
  }
  .studio-intake-form .selector-controls {
    grid-template-columns: minmax(86px, 0.38fr) minmax(0, 1fr);
  }
  .selector-back,
  .selector-next {
    min-height: 50px;
    border-radius: 15px;
    font-size: 0.9rem;
  }
  .mini-audit-panel,
  .proof-card,
  .compare-card,
  .pricing-card,
  .trust-card,
  .process-step,
  .founder-card { padding: 20px; }
  .section { padding: 64px 0; }
  .service-heading-centered h2 {
    font-size: 3.45rem;
    line-height: 0.98;
  }
  .founder-section { padding: 6px 0 0; }
  .founder-section + .service-section { padding-top: 54px; }
  .founder-card { gap: 18px; }
  .founder-copy h2 { font-size: 2.35rem; }
  .founder-note-card {
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: center;
    align-content: center;
    gap: 5px 12px;
    padding: 16px;
  }
  .founder-note-mark {
    grid-row: 1 / span 2;
  }
  .founder-note-card p,
  .founder-note-card strong {
    grid-column: 2;
  }
  .founder-note-card strong {
    font-size: 0.96rem;
  }
  .cred-strip,
  .service-grid,
  .search-grid,
  .screenshot-grid,
  .proof-section .screenshot-grid,
  .compare-card,
  .proof-insight-stack,
  .process-grid,
  .faq-grid { grid-template-columns: 1fr; }
  .service-card,
  .search-card,
  .process-step { min-height: auto; }
  .proof-section .case-intro h2 {
    font-size: 2.6rem;
  }
  .proof-section .case-intro p:not(.eyebrow) {
    font-size: 1rem;
  }
  .screenshot-frame,
  .proof-section .screenshot-frame { height: 420px; }
  .screen-card-top,
  .proof-section .screen-card-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding-left: 50px;
  }
  .proof-section .screen-caption {
    min-height: 0;
  }
  .proof-cta-row {
    justify-content: flex-start;
  }
  .final-cta { padding-top: 44px; }
  .brand-statement {
    margin-top: 0;
    margin-bottom: 26px;
    padding-top: 20px;
  }
  .site-footer { flex-direction: column; }
}

@media (max-width: 420px) {
  .button { padding-right: 14px; padding-left: 14px; }
  .brand-text { display: none; }
  .site-nav { font-size: 0.68rem; }
  .hero-kicker { font-size: 1.5rem; }
  .hero-detail-card h1 { font-size: 2.45rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}

/* Hero dance visual strip cleanup */
.hero-media-card {
  height: 520px;
  min-height: 520px;
  border-color: rgba(11, 31, 58, 0.16);
  border-radius: 24px;
  background: var(--navy-deep);
  box-shadow: 0 18px 42px rgba(11, 31, 58, 0.12);
}

.hero-media-card::before,
.hero-media-card::after {
  display: none !important;
  content: none !important;
}

.hero-video {
  object-fit: cover;
  object-position: 50% 45%;
  filter: none;
  transform: none;
}

.hero-video-overlay {
  background: rgba(11, 31, 58, 0.08);
}

@media (max-width: 1120px) {
  .hero-media-card {
    height: 380px;
    min-height: 380px;
  }
}

@media (max-width: 760px) {
  .hero-media-card {
    height: 280px;
    min-height: 280px;
  }

  .hero-video {
    object-position: 55% center;
  }
}
