:root {
  --ink: #050706;
  --ink-2: #0b0f0b;
  --ink-3: #111811;
  --ink-glass: rgba(13, 18, 13, .66);
  --bone: #f5f1df;
  --bone-2: #fffbea;
  --bone-dim: #d9d3bd;
  --muted: #8f9886;
  --leaf: #2f5b2b;
  --leaf-bright: #438f2f;
  --pear: #cdd333;
  --flesh: #f3f0b5;
  --stem: #a96d06;
  --line: rgba(245, 241, 223, .15);
  --line-dark: rgba(5, 7, 6, .14);
  --shadow: 0 30px 90px rgba(0, 0, 0, .34);
  --display: "Clash Display", "Satoshi", system-ui, sans-serif;
  --body: "Satoshi", Inter, system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

body::before {
  z-index: -2;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 8%), rgba(205, 211, 51, .16), transparent 30vw),
    radial-gradient(circle at 12% 78%, rgba(47, 91, 43, .22), transparent 44vw),
    var(--ink);
}

body::after {
  z-index: 999;
  opacity: .42;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='2' seed='12'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.09 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

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

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: var(--pear);
  color: var(--ink);
}

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

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

.cursor-glow {
  position: fixed;
  left: var(--mx, 50%);
  top: var(--my, 50%);
  z-index: 4;
  width: 20rem;
  height: 20rem;
  pointer-events: none;
  border-radius: 999px;
  opacity: .18;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(205, 211, 51, .44), transparent 65%);
  filter: blur(20px);
  transition: opacity .3s var(--ease);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 28px;
  background: linear-gradient(180deg, rgba(5, 7, 6, .9), rgba(5, 7, 6, .52) 78%, transparent);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  padding: 4px;
  background: var(--bone-2);
}

.desktop-nav {
  display: flex;
  gap: 26px;
  color: rgba(245, 241, 223, .68);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.desktop-nav a,
.nav-cta {
  transition: color .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}

.desktop-nav a:hover {
  color: var(--pear);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(205, 211, 51, .72);
  color: var(--pear);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.nav-cta:hover {
  background: var(--pear);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 124px 0 0;
  overflow: hidden;
  isolation: isolate;
}

.ambient {
  position: absolute;
  z-index: -1;
  width: 42vw;
  height: 42vw;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(64px);
  opacity: .46;
}

.ambient-one {
  top: 4%;
  right: -12%;
  background: rgba(205, 211, 51, .2);
  animation: floatGlow 13s ease-in-out infinite;
}

.ambient-two {
  left: -18%;
  bottom: 12%;
  background: rgba(47, 91, 43, .52);
  animation: floatGlow 16s ease-in-out infinite reverse;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(245, 241, 223, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 241, 223, .045) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(ellipse at 50% 36%, black 22%, transparent 78%);
}

.hero-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .76fr);
  gap: clamp(44px, 7vw, 120px);
  align-items: center;
}

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

.microline {
  margin: 0 0 26px;
  color: var(--pear);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(3.8rem, 6vw, 6.8rem);
  line-height: .88;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 span {
  display: inline;
}

.hero-lede {
  max-width: 780px;
  margin-bottom: 34px;
  color: rgba(245, 241, 223, .78);
  font-size: clamp(1.08rem, 1.55vw, 1.48rem);
  line-height: 1.48;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}

.button.primary {
  background: var(--pear);
  color: var(--ink);
  box-shadow: 0 18px 46px rgba(205, 211, 51, .18);
}

.button.ghost {
  border: 1px solid rgba(245, 241, 223, .22);
  color: var(--bone);
  background: rgba(245, 241, 223, .04);
}

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

.hero-system {
  min-width: 0;
  max-width: 100%;
  padding-bottom: 0;
}

.system-glass {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(245, 241, 223, .22);
  background: linear-gradient(145deg, rgba(245, 241, 223, .12), rgba(245, 241, 223, .035));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform-style: preserve-3d;
}

.system-glass::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 8%, rgba(255, 255, 255, .18), transparent 34%);
  opacity: .52;
}

.identity-plate {
  padding: clamp(16px, 3vw, 34px);
  background: linear-gradient(135deg, rgba(255, 251, 234, .98), rgba(243, 240, 181, .9));
  overflow: hidden;
}

.identity-plate img,
.identity-plate picture {
  width: 100%;
  min-width: 0;
}

.diagnostic-visual {
  border: 1px solid rgba(245, 241, 223, .13);
  background: rgba(5, 7, 6, .64);
  overflow: hidden;
}

.hero-photo-frame {
  position: relative;
  min-height: 300px;
}

.hero-photo-frame .visual-top {
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  padding: 18px;
  background: linear-gradient(180deg, rgba(5, 7, 6, .72), transparent);
}

.hero-photo-frame img {
  width: 100%;
  height: clamp(300px, 34vw, 460px);
  object-fit: cover;
  filter: saturate(.84) contrast(1.07) brightness(.82);
}

.visual-top,
.system-metrics,
.scan-line,
.chapter-label,
.brand-preview p,
.brand-preview a,
.inspection-top,
.inspection-item,
.contact-proof,
.site-footer nav {
  font-family: var(--mono);
  text-transform: uppercase;
}

.visual-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 18px 0;
  color: var(--pear);
  font-size: 11px;
  letter-spacing: .14em;
}

.car-line {
  width: 100%;
  min-height: 245px;
  padding: 18px;
}

.draw {
  stroke-dasharray: 980;
  stroke-dashoffset: 980;
  animation: drawLine 2.4s var(--ease) forwards;
}

.draw-accent {
  animation-delay: .24s;
}

.draw-roof {
  animation-delay: .42s;
}

.system-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(245, 241, 223, .12);
  border: 1px solid rgba(245, 241, 223, .12);
  letter-spacing: .08em;
}

.system-metrics div {
  min-height: 112px;
  padding: 18px;
  background: rgba(5, 7, 6, .76);
}

.system-metrics strong {
  display: block;
  color: var(--bone);
  font-family: var(--display);
  font-size: clamp(1.85rem, 2.72vw, 3rem);
  line-height: .82;
  white-space: nowrap;
}

.system-metrics span {
  color: rgba(245, 241, 223, .62);
  font-size: 10px;
}

.marquee {
  margin-top: clamp(72px, 9vw, 130px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.marquee div {
  display: flex;
  width: max-content;
  animation: marquee 36s linear infinite;
}

.marquee span {
  padding: 22px 42px;
  color: rgba(245, 241, 223, .48);
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4.8rem);
  line-height: .8;
  text-transform: uppercase;
  white-space: nowrap;
}

.chapter {
  position: relative;
  padding: clamp(92px, 12vw, 190px) 0;
}

section[id] {
  scroll-margin-top: 96px;
}

.chapter.light {
  background: var(--bone-2);
  color: var(--ink);
}

.chapter.dark {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 86% 12%, rgba(205, 211, 51, .11), transparent 36vw),
    var(--ink);
}

.statement-grid,
.split-intro,
.diagnostic-layout,
.proof-grid,
.faq-layout,
.contact-layout,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(180px, .32fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 116px);
  align-items: start;
}

.chapter-label {
  display: grid;
  gap: 10px;
  color: var(--leaf);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
}

.dark .chapter-label,
.contact-section .chapter-label {
  color: var(--pear);
}

.chapter-label span {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.chapter-label.inline {
  margin-bottom: 22px;
}

.statement h2,
.split-intro h2,
.diagnostic-copy h2,
.proof-copy h2,
.faq-heading h2,
.contact-copy h2 {
  max-width: 1120px;
  margin-bottom: 24px;
  font-size: clamp(3.6rem, 8vw, 10.8rem);
  line-height: .82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.statement p,
.diagnostic-copy p,
.proof-copy p,
.contact-copy p {
  max-width: 760px;
  color: rgba(5, 7, 6, .66);
  font-size: clamp(1.05rem, 1.45vw, 1.32rem);
}

.dark .proof-copy p,
.contact-copy p {
  color: rgba(245, 241, 223, .68);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(54px, 7vw, 94px);
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.principle-card,
.service-panel,
.seo-block {
  transition: transform .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
}

.principle-card {
  min-height: 330px;
  padding: clamp(24px, 3vw, 40px);
  background: #fff;
}

.principle-card:hover,
.service-panel:hover,
.seo-block:hover,
.review-card:hover,
.photo-tile:hover {
  transform: translateY(-6px);
}

.principle-card span,
.service-panel span {
  display: block;
  margin-bottom: 22px;
  color: var(--leaf);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.principle-card h3,
.service-panel h3 {
  max-width: 500px;
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.4vw, 4.4rem);
  line-height: .88;
  letter-spacing: 0;
}

.principle-card p,
.service-panel p,
.seo-block p,
.faq-list p {
  color: rgba(5, 7, 6, .64);
}

.credibility-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(34px, 5vw, 72px);
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.credibility-strip span {
  display: grid;
  gap: 10px;
  min-height: 122px;
  padding: 20px;
  background: #fff;
  color: rgba(5, 7, 6, .62);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.credibility-strip strong {
  color: var(--leaf);
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.7vw, 3rem);
  line-height: .9;
  letter-spacing: 0;
}

.brand-lab {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .34fr);
  gap: 1px;
  margin-top: clamp(42px, 6vw, 86px);
  border: 1px solid var(--line);
  background: var(--line);
}

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

.brand-chip {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  min-height: 178px;
  border: 0;
  background: rgba(17, 24, 17, .86);
  color: var(--bone);
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.75vw, 3.65rem);
  font-weight: 600;
  line-height: .88;
  letter-spacing: 0;
  text-align: left;
  text-transform: uppercase;
  overflow-wrap: normal;
  padding: 24px;
  transition: background .28s var(--ease), color .28s var(--ease), transform .28s var(--ease);
}

.brand-chip:hover,
.brand-chip.is-active {
  background: var(--pear);
  color: var(--ink);
}

.brand-logo-frame {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 54px;
}

.brand-mark {
  display: block;
  max-width: min(150px, 82%);
  max-height: 52px;
  object-fit: contain;
  object-position: left center;
  opacity: .76;
  filter: brightness(0) invert(1);
  transition: filter .28s var(--ease), opacity .28s var(--ease), transform .28s var(--ease);
}

.brand-chip:hover .brand-mark,
.brand-chip.is-active .brand-mark {
  opacity: .94;
  filter: brightness(0);
  transform: translateY(-2px);
}

.brand-chip[data-brand="Porsche"] .brand-mark,
.brand-chip[data-brand="Jaguar"] .brand-mark {
  max-width: min(172px, 92%);
}

.brand-chip[data-brand="Mercedes-Benz"] .brand-mark {
  width: min(168px, 92%);
  max-width: 92%;
  max-height: 44px;
}

.brand-chip[data-brand="Land Rover"] .brand-mark {
  max-width: min(142px, 82%);
  filter: none;
  opacity: .94;
}

.brand-chip[data-brand="Land Rover"]:hover .brand-mark,
.brand-chip[data-brand="Land Rover"].is-active .brand-mark {
  filter: none;
  opacity: 1;
}

.brand-chip-label {
  display: block;
  width: 100%;
}

.brand-chip.long {
  font-size: clamp(1.52rem, 1.85vw, 2.35rem);
  line-height: .95;
}

.brand-chip.stacked {
  align-items: flex-start;
  justify-content: flex-end;
}

.brand-chip.stacked .brand-chip-label span,
.brand-chip.compact .brand-chip-label span {
  display: block;
}

.brand-chip.compact {
  font-size: clamp(1.2rem, 1.55vw, 2rem);
  white-space: nowrap;
}

.brand-preview {
  display: grid;
  align-content: space-between;
  min-height: 100%;
  padding: 28px;
  background:
    linear-gradient(160deg, rgba(245, 241, 223, .12), rgba(245, 241, 223, .035)),
    var(--ink-2);
}

.brand-preview p,
.brand-preview a {
  color: var(--pear);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
}

.brand-preview strong {
  display: block;
  margin: 22px 0;
  font-family: var(--display);
  font-size: clamp(4rem, 7vw, 8rem);
  line-height: .82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-preview strong.is-long {
  font-size: clamp(2.75rem, 3.75vw, 4.65rem);
  line-height: .92;
  overflow-wrap: break-word;
}

.brand-preview span {
  display: block;
  color: rgba(245, 241, 223, .7);
  font-size: 1.05rem;
}

.brand-preview a {
  align-self: end;
  margin-top: 42px;
}

.brand-disclaimer {
  grid-column: 1 / -1;
  margin: 0;
  padding: 16px 18px;
  background: rgba(5, 7, 6, .72);
  color: rgba(245, 241, 223, .58);
  font-size: .86rem;
}

.photo-story {
  overflow: hidden;
}

.photo-story-layout {
  display: grid;
  grid-template-columns: minmax(320px, .42fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
}

.photo-copy h2 {
  max-width: 420px;
  margin-bottom: 24px;
  font-size: clamp(2.9rem, 3.55vw, 4.55rem);
  line-height: .88;
  overflow-wrap: break-word;
  text-transform: uppercase;
}

.photo-copy p {
  max-width: 560px;
  color: rgba(245, 241, 223, .7);
  font-size: clamp(1.04rem, 1.35vw, 1.24rem);
}

.photo-copy .button {
  margin-top: 20px;
}

.photo-mosaic {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 14px;
}

.photo-tile {
  position: relative;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(245, 241, 223, .16);
  background: var(--ink-3);
  transition: transform .35s var(--ease);
}

.photo-tile.wide {
  grid-row: span 2;
  min-height: 660px;
}

.photo-tile img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(.82) contrast(1.06) brightness(.78);
}

.photo-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5, 7, 6, .86));
}

.photo-tile figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: var(--pear);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.diagnostic-stage {
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 14%, rgba(205, 211, 51, .17), transparent 34vw),
    var(--bone-2);
  color: var(--ink);
}

.diagnostic-layout {
  grid-template-columns: minmax(0, .72fr) minmax(430px, 1fr);
  align-items: center;
}

.diagnostic-copy h2 {
  max-width: 680px;
  font-size: clamp(3.2rem, 6.3vw, 7.4rem);
}

.dark-button {
  margin-top: 12px;
  background: var(--ink);
  color: var(--bone);
}

.scan-board {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  padding: clamp(20px, 4vw, 44px);
  border: 1px solid rgba(5, 7, 6, .18);
  background: var(--ink);
  color: var(--bone);
  box-shadow: 0 40px 100px rgba(5, 7, 6, .24);
}

.diagnostic-photo-card {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(5, 7, 6, .18);
  background: var(--ink);
  color: var(--bone);
  box-shadow: 0 40px 100px rgba(5, 7, 6, .24);
}

.diagnostic-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  filter: saturate(.84) contrast(1.08) brightness(.78);
}

.diagnostic-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 6, .1) 30%, rgba(5, 7, 6, .88)),
    linear-gradient(90deg, rgba(5, 7, 6, .44), transparent 58%);
}

.diagnostic-photo-card figcaption,
.diagnostic-proof-list {
  position: absolute;
  z-index: 2;
}

.diagnostic-photo-card figcaption {
  left: clamp(20px, 4vw, 38px);
  right: clamp(20px, 4vw, 38px);
  bottom: clamp(148px, 14vw, 180px);
  margin: 0;
}

.diagnostic-photo-card figcaption span,
.diagnostic-proof-list span {
  display: block;
  color: var(--pear);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.diagnostic-photo-card figcaption strong {
  display: block;
  max-width: 560px;
  margin-top: 12px;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 5rem);
  line-height: .9;
  text-transform: uppercase;
}

.diagnostic-proof-list {
  left: clamp(20px, 4vw, 38px);
  right: clamp(20px, 4vw, 38px);
  bottom: clamp(20px, 4vw, 38px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(245, 241, 223, .18);
  background: rgba(245, 241, 223, .18);
}

.diagnostic-proof-list div {
  min-height: 96px;
  padding: 18px;
  background: rgba(5, 7, 6, .76);
}

.diagnostic-proof-list strong {
  display: block;
  margin-top: 8px;
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.7vw, 1.65rem);
  line-height: 1;
  text-transform: uppercase;
}

.workflow-tabs {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  background: var(--line);
}

.workflow-tab {
  min-height: 44px;
  border: 0;
  background: rgba(245, 241, 223, .05);
  color: rgba(245, 241, 223, .72);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.workflow-tab.is-active,
.workflow-tab:hover {
  background: var(--pear);
  color: var(--ink);
}

.scan-line {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: .12em;
}

.scan-line span,
.scan-line em {
  color: var(--pear);
  font-style: normal;
}

.scan-line.is-active {
  background: linear-gradient(90deg, rgba(205, 211, 51, .12), transparent);
}

.workflow-readout {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin-top: 26px;
  padding: 22px;
  border: 1px solid rgba(245, 241, 223, .14);
  background: rgba(245, 241, 223, .045);
}

.workflow-readout span {
  display: block;
  margin-bottom: 12px;
  color: var(--pear);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
}

.workflow-readout strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 3.4rem);
  line-height: .9;
  text-transform: uppercase;
}

.workflow-readout p {
  margin: 0;
  color: rgba(245, 241, 223, .7);
}

.signal-map {
  position: absolute;
  inset: auto 10% 8% 10%;
  height: 310px;
}

.signal-map::before,
.signal-map::after {
  content: "";
  position: absolute;
  inset: 10% 0 0;
  border: 1px solid rgba(245, 241, 223, .16);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.signal-map::after {
  inset: 22% 14% 12%;
  border-color: rgba(205, 211, 51, .34);
  animation: pulseRing 2.8s ease-in-out infinite;
}

.signal-map i {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--pear);
  box-shadow: 0 0 28px rgba(205, 211, 51, .58);
}

.signal-map i:nth-child(1) { left: 10%; top: 55%; }
.signal-map i:nth-child(2) { left: 28%; top: 30%; }
.signal-map i:nth-child(3) { left: 47%; top: 62%; }
.signal-map i:nth-child(4) { left: 66%; top: 24%; }
.signal-map i:nth-child(5) { left: 78%; top: 54%; }
.signal-map i:nth-child(6) { left: 90%; top: 38%; }

.service-rail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: clamp(44px, 7vw, 92px);
}

.service-panel {
  min-height: 360px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line-dark);
  background: #fff;
}

.service-panel h3 {
  font-size: clamp(2.2rem, 2.55vw, 3.15rem);
  line-height: .9;
  overflow-wrap: break-word;
}

.proof-section {
  overflow: hidden;
}

.proof-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, .55fr);
  align-items: center;
}

.inspection-card {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(245, 241, 223, .2);
  background: linear-gradient(145deg, rgba(245, 241, 223, .12), rgba(245, 241, 223, .04));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.inspection-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--pear);
  font-size: 11px;
  letter-spacing: .16em;
}

.inspection-top img {
  width: 42px;
  height: 42px;
  padding: 5px;
  background: var(--bone-2);
}

.inspection-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: .08em;
}

.inspection-item span {
  color: var(--pear);
}

.inspection-card p {
  margin: 22px 0 0;
  color: rgba(245, 241, 223, .72);
  font-size: 1.15rem;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 790px;
  margin-top: 34px;
  border: 1px solid var(--line);
  background: var(--line);
}

.proof-stats span {
  display: grid;
  gap: 6px;
  min-height: 118px;
  padding: 18px;
  background: rgba(245, 241, 223, .06);
  color: rgba(245, 241, 223, .62);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.proof-stats strong {
  color: var(--bone);
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 4rem);
  line-height: .9;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(38px, 6vw, 86px);
}

.review-card {
  min-height: 260px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(245, 241, 223, .16);
  background: rgba(245, 241, 223, .055);
  transition: transform .35s var(--ease), background .35s var(--ease);
}

.review-card span,
.seo-block span,
.form-note,
.form-status {
  color: var(--pear);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.review-card p {
  margin: 24px 0;
  color: rgba(245, 241, 223, .78);
  font-size: clamp(1.2rem, 1.9vw, 1.8rem);
  line-height: 1.22;
}

.review-card strong {
  color: rgba(245, 241, 223, .56);
  font-size: .95rem;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(42px, 6vw, 88px);
}

.seo-block {
  min-height: 360px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line-dark);
  background: #fff;
  color: var(--ink);
}

.seo-block h2 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(2.3rem, 5vw, 6.3rem);
  line-height: .84;
  letter-spacing: 0;
  text-transform: uppercase;
}

.seo-block span {
  display: inline-block;
  margin-top: 22px;
  color: var(--leaf);
}

.faq-layout {
  grid-template-columns: minmax(230px, .34fr) minmax(0, 1fr);
  gap: clamp(58px, 9vw, 150px);
}

.faq-heading h2 {
  max-width: 430px;
  font-size: clamp(2.6rem, 4vw, 4.95rem);
}

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

details {
  border: 1px solid var(--line);
  background: rgba(245, 241, 223, .05);
}

summary {
  cursor: pointer;
  padding: 24px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.2vw, 4.4rem);
  line-height: .88;
  letter-spacing: 0;
  text-transform: uppercase;
}

details p {
  max-width: 880px;
  margin: 0;
  padding: 0 24px 24px;
  color: rgba(245, 241, 223, .67);
}

.dark .faq-list p {
  color: rgba(245, 241, 223, .72);
}

.contact-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(205, 211, 51, .18), transparent 38vw),
    radial-gradient(circle at 82% 84%, rgba(47, 91, 43, .28), transparent 42vw),
    var(--ink);
}

.contact-layout {
  grid-template-columns: minmax(0, .86fr) minmax(380px, .64fr);
  align-items: start;
}

.contact-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.contact-copy h2 {
  font-size: clamp(3rem, 5.8vw, 7.2rem);
}

.contact-proof span {
  display: inline-flex;
  padding: 11px 13px;
  border: 1px solid var(--line);
  color: var(--pear);
  font-size: 11px;
  letter-spacing: .11em;
}

.contact-direct {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  color: rgba(245, 241, 223, .7);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.contact-direct a {
  color: var(--bone);
  text-decoration: underline;
  text-decoration-color: rgba(205, 211, 51, .52);
  text-underline-offset: 5px;
}

.contact-direct span {
  color: rgba(245, 241, 223, .58);
}

.service-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid rgba(245, 241, 223, .2);
  background: rgba(17, 24, 17, .78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.service-form label {
  display: grid;
  gap: 8px;
  color: rgba(245, 241, 223, .68);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.service-form .full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(245, 241, 223, .16);
  border-radius: 0;
  background: rgba(5, 7, 6, .76);
  color: var(--bone);
  padding: 15px 14px;
  outline: none;
}

input[type="file"] {
  padding: 12px 14px;
}

input[type="file"]::file-selector-button {
  margin-right: 12px;
  border: 0;
  border-radius: 999px;
  background: var(--pear);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  padding: 9px 12px;
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-note {
  margin: 0;
  color: rgba(245, 241, 223, .56);
  line-height: 1.6;
}

.form-status {
  min-height: 18px;
  margin: -2px 0 0;
  color: rgba(245, 241, 223, .72);
  line-height: 1.6;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--pear);
}

.service-form button {
  grid-column: 1 / -1;
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  background: var(--pear);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.service-form.is-sent button {
  background: var(--leaf-bright);
  color: white;
}

.service-form.is-sending button {
  opacity: .78;
  cursor: wait;
}

.service-form.is-error button {
  background: var(--stem);
  color: var(--bone-2);
}

.site-footer {
  padding: 64px 0;
  border-top: 1px solid var(--line);
  background: #030403;
}

.footer-grid {
  grid-template-columns: minmax(0, 520px) 1fr;
  align-items: end;
}

.footer-grid img {
  max-width: 360px;
  padding: 14px;
  background: var(--bone-2);
}

.footer-grid p {
  color: rgba(245, 241, 223, .68);
}

.footer-contact {
  max-width: 520px;
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  line-height: 1.8;
  text-transform: uppercase;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: rgba(245, 241, 223, .62);
  font-size: 11px;
  letter-spacing: .16em;
}

.service-page {
  background: var(--bone-2);
  color: var(--ink);
}

.service-page::before {
  background:
    radial-gradient(circle at 80% 8%, rgba(205, 211, 51, .22), transparent 34vw),
    var(--bone-2);
}

.service-page .site-header {
  color: var(--bone);
  background: linear-gradient(180deg, rgba(5, 7, 6, .92), rgba(5, 7, 6, .68) 78%, transparent);
}

.service-hero {
  padding: 150px 0 80px;
  background: var(--ink);
  color: var(--bone);
}

.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, .72fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: center;
}

.service-hero h1 {
  max-width: 980px;
  font-size: clamp(3.4rem, 7.2vw, 8.4rem);
  line-height: .86;
}

.service-hero p:not(.microline) {
  max-width: 780px;
  color: rgba(245, 241, 223, .74);
  font-size: clamp(1.08rem, 1.55vw, 1.42rem);
}

.service-hero img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(245, 241, 223, .16);
  filter: saturate(.85) contrast(1.06) brightness(.82);
}

.service-detail {
  color: var(--ink);
}

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

.detail-grid article {
  min-height: 380px;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--line-dark);
  background: #fff;
}

.detail-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--leaf);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.detail-grid h2 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 5vw, 6.4rem);
  line-height: .86;
  text-transform: uppercase;
}

.detail-grid p {
  color: rgba(5, 7, 6, .66);
  font-size: clamp(1.02rem, 1.32vw, 1.2rem);
}

body.has-motion .reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(8px);
  transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease);
}

body.has-motion .reveal.is-visible,
.reveal {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

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

@keyframes floatGlow {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(4vw, -2vw, 0) scale(1.08);
  }
}

@keyframes pulseRing {
  0%, 100% {
    opacity: .5;
    transform: rotate(8deg) scale(.96);
  }
  50% {
    opacity: .95;
    transform: rotate(8deg) scale(1.03);
  }
}

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

  .cursor-glow {
    display: none;
  }
}

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

  .hero-wrap,
  .statement-grid,
  .split-intro,
  .photo-story-layout,
  .diagnostic-layout,
  .proof-grid,
  .faq-layout,
  .contact-layout,
  .footer-grid,
  .service-hero-grid,
  .detail-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .brand-lab {
    grid-template-columns: minmax(0, 1fr);
  }

  .brand-selector,
  .principle-grid,
  .credibility-strip,
  .service-rail,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-system {
    padding-bottom: 0;
  }
}

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

  .site-header {
    padding: 12px 14px;
  }

  .brand {
    gap: 9px;
    font-size: 14px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .nav-cta {
    display: none;
  }

  .cursor-glow {
    display: none;
  }

  .hero {
    padding-top: 104px;
  }

.hero-wrap {
    gap: 34px;
  }

  .hero-wrap,
  .hero-copy,
  .hero-system {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.7rem, 11.3vw, 3.25rem);
    line-height: .9;
    overflow-wrap: normal;
  }

  h1 span {
    display: block;
  }

  .microline {
    max-width: 100%;
    line-height: 1.7;
    white-space: normal;
  }

  .hero-lede {
    font-size: 1.02rem;
  }

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

  .button,
  .contact-proof span {
    width: 100%;
  }

  .system-glass {
    padding: 12px;
    width: 100%;
    min-width: 0;
  }

  .identity-plate {
    padding: 12px;
  }

  .identity-plate img,
  .identity-plate picture {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  .visual-top,
  .scan-line,
  .inspection-item {
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 8px;
  }

  .car-line {
    min-height: 180px;
  }

  .system-metrics,
  .brand-selector,
  .principle-grid,
  .credibility-strip,
  .service-rail,
  .seo-grid,
  .photo-mosaic,
  .review-grid,
  .proof-stats {
    grid-template-columns: 1fr;
  }

  .system-metrics div {
    min-height: 92px;
  }

  .marquee span {
    padding: 16px 26px;
  }

  .chapter {
    padding: 84px 0;
  }

  .chapter-label {
    margin-bottom: 22px;
  }

  .statement h2,
  .split-intro h2,
  .diagnostic-copy h2,
  .proof-copy h2,
  .photo-copy h2,
  .faq-heading h2,
  .contact-copy h2,
  .service-hero h1,
  .detail-grid h2 {
    font-size: clamp(2.45rem, 10.4vw, 3.55rem);
    line-height: .9;
    overflow-wrap: break-word;
  }

  .principle-card,
  .service-panel,
  .seo-block {
    min-height: auto;
  }

  .brand-chip {
    min-height: 116px;
  }

  .photo-tile,
  .photo-tile.wide {
    min-height: 310px;
  }

  .scan-board {
    min-height: 470px;
  }

  .diagnostic-photo-card,
  .diagnostic-photo-card img {
    min-height: 500px;
  }

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

  .diagnostic-proof-list div {
    min-height: 66px;
    padding: 12px 16px;
  }

  .diagnostic-proof-list strong {
    font-size: 1.08rem;
  }

  .diagnostic-photo-card figcaption {
    bottom: 240px;
  }

  .diagnostic-photo-card figcaption strong {
    font-size: clamp(2rem, 8vw, 2.85rem);
  }

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

  .signal-map {
    inset: auto 4% 8% 4%;
  }

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

  .footer-grid {
    gap: 26px;
  }

  .footer-grid img {
    max-width: 100%;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .wrap {
    width: min(100% - 28px, 362px);
    margin-left: 14px;
    margin-right: auto;
  }

  .microline {
    font-size: 10px;
    letter-spacing: .12em;
  }

  h1 {
    font-size: clamp(2.45rem, 10.2vw, 2.9rem);
  }

  .hero-copy,
  .hero-system,
  .system-glass,
  .identity-plate,
  .diagnostic-visual {
    max-width: 362px;
  }

  .brand-preview strong {
    font-size: 3.5rem;
  }
}
