:root {
  --page: #f7f9fc;
  --surface: #ffffff;
  --band: #eff3f9;
  --ink: #0e1626;
  --ink-soft: #33415e;
  --muted: #52617d;
  --muted-light: #6b7892;
  --accent: #0c7895;
  --accent-dark: #075e76;
  --cyan: #57d7f2;
  --violet: #5d4bd4;
  --line: rgba(14, 32, 70, 0.1);
  --line-strong: rgba(14, 32, 70, 0.2);
  --shadow: 0 18px 50px rgba(14, 32, 70, 0.12);
  --shadow-dark: 0 24px 70px rgba(5, 11, 24, 0.34);
  --radius: 16px;
  --radius-small: 11px;
  --content: 1160px;
  --header-height: 68px;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--page);
  color: var(--ink);
  font-family: "IBM Plex Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(14, 143, 181, 0.18);
}

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

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

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-dark);
}

:focus-visible {
  outline: 3px solid rgba(12, 120, 149, 0.42);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: "Space Grotesk", "Avenir Next", Inter, ui-sans-serif, system-ui, sans-serif;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  color: #fff;
  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;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(14, 32, 70, 0.08);
  background: rgba(247, 249, 252, 0.92);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  color: var(--ink);
}

.brand:hover {
  color: var(--ink);
}

.brand-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  background: var(--cyan);
  color: #06121e;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 800;
}

.brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-name {
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-country {
  color: var(--accent);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  letter-spacing: 0.27em;
}

.primary-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 24px;
}

.nav-link {
  position: relative;
  padding-block: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 15px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--ink);
}

.nav-link[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta {
  flex: 0 0 auto;
  padding: 10px 18px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  color: #fff;
  box-shadow: 0 7px 24px rgba(14, 32, 70, 0.27);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-icon {
  position: relative;
}

.menu-icon::before {
  position: absolute;
  top: -6px;
}

.menu-icon::after {
  position: absolute;
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  position: absolute;
  width: 760px;
  height: 620px;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero::before {
  top: -340px;
  left: -250px;
  background: radial-gradient(closest-side, rgba(14, 143, 181, 0.09), transparent);
}

.hero::after {
  top: -330px;
  right: -300px;
  background: radial-gradient(closest-side, rgba(93, 75, 212, 0.07), transparent);
}

.grid-texture::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(rgba(14, 32, 70, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(14, 32, 70, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  mask-image: radial-gradient(ellipse 90% 75% at 50% 0%, #000 25%, transparent 78%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(40px, 6vw, 68px);
  align-items: center;
  padding-block: clamp(76px, 9vw, 104px) 72px;
}

.page-hero .hero-grid {
  display: block;
  max-width: 880px;
  padding-block: 82px 70px;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--accent);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.display-title {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(44px, 6vw, 64px);
  text-wrap: balance;
}

.page-title {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(42px, 5.6vw, 58px);
  text-wrap: balance;
}

.lede {
  max-width: 620px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 17.5px);
  line-height: 1.7;
  text-wrap: pretty;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 700;
  transition: border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.button-primary {
  background: var(--ink);
  color: #fff;
}

.button-primary:hover {
  color: #fff;
  box-shadow: 0 8px 26px rgba(14, 32, 70, 0.3);
  transform: translateY(-1px);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.45);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

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

.button-violet:hover {
  color: #fff;
  box-shadow: 0 8px 26px rgba(93, 75, 212, 0.28);
  transform: translateY(-1px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14.5px;
  font-weight: 700;
}

.terminal-card,
.dark-sheet {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(139, 163, 217, 0.18);
  border-radius: var(--radius);
  background: rgba(13, 20, 36, 0.96);
  box-shadow: var(--shadow-dark);
  color: #c6d1e8;
}

.terminal-head {
  display: flex;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(139, 163, 217, 0.16);
  align-items: center;
  gap: 8px;
}

.terminal-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(139, 163, 217, 0.3);
}

.terminal-dot:last-of-type {
  background: var(--cyan);
  box-shadow: 0 0 9px rgba(87, 215, 242, 0.8);
}

.terminal-label,
.mono {
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

.terminal-label {
  margin-left: 5px;
  color: #8996b2;
  font-size: 11.5px;
}

.terminal-body {
  display: grid;
  gap: 13px;
  padding: 22px 18px;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12.5px;
}

.terminal-row,
.sheet-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.command::before {
  margin-right: 7px;
  color: #6e7c9e;
  content: "$";
}

.terminal-status {
  color: var(--cyan);
  text-align: right;
}

.terminal-foot {
  padding: 13px 18px;
  border-top: 1px solid rgba(139, 163, 217, 0.16);
  color: #7e8aa6;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11.5px;
}

.stats-wrap {
  position: relative;
  z-index: 1;
  padding-bottom: 82px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.stat-value {
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(23px, 3vw, 31px);
  font-weight: 800;
  line-height: 1.1;
}

.stat-label {
  margin-top: 7px;
  color: var(--muted-light);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section {
  padding-block: clamp(72px, 8vw, 96px);
  border-top: 1px solid rgba(14, 32, 70, 0.08);
}

.section-no-border {
  border-top: 0;
}

.band {
  position: relative;
  background: var(--band);
}

.section-heading {
  display: flex;
  margin-bottom: 42px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.section-title {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 44px);
  text-wrap: balance;
}

.section-intro {
  max-width: 650px;
  margin-bottom: 40px;
}

.section-intro .section-title {
  margin-bottom: 16px;
}

.body-copy {
  color: var(--muted);
  line-height: 1.7;
}

.body-copy:last-child {
  margin-bottom: 0;
}

.card-grid {
  display: grid;
  gap: 16px;
}

.card-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

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

.service-card,
.plain-card,
.product-card,
.process-card {
  min-width: 0;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.service-card {
  display: block;
  color: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card:hover {
  border-color: rgba(12, 120, 149, 0.48);
  color: inherit;
  box-shadow: 0 10px 30px rgba(14, 32, 70, 0.1);
  transform: translateY(-2px);
}

.service-card-new {
  border-color: rgba(12, 120, 149, 0.3);
}

.card-topline {
  display: flex;
  margin-bottom: 14px;
  align-items: center;
  justify-content: space-between;
}

.card-index {
  color: var(--accent);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
}

.chip {
  display: inline-flex;
  padding: 4px 9px;
  border: 1px solid rgba(12, 120, 149, 0.32);
  border-radius: 999px;
  background: rgba(12, 120, 149, 0.07);
  color: var(--accent-dark);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chip-violet {
  border-color: rgba(93, 75, 212, 0.3);
  background: rgba(93, 75, 212, 0.07);
  color: var(--violet);
}

.card-title {
  margin-bottom: 8px;
  font-size: 18px;
}

.card-copy {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(42px, 6vw, 68px);
  align-items: center;
}

.split-reverse {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.split-copy .section-title {
  margin-bottom: 18px;
}

.dark-sheet {
  padding: 27px;
}

.sheet-title {
  margin-bottom: 20px;
  color: #8996b2;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.sheet-list {
  display: grid;
  gap: 14px;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12.5px;
}

.sheet-key {
  color: #9aa7c4;
}

.sheet-value {
  color: #ecf2ff;
  text-align: right;
}

.sheet-note {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(139, 163, 217, 0.16);
  color: var(--cyan);
  font-size: 12px;
  line-height: 1.6;
}

.product-card {
  display: block;
  padding: 31px;
  color: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-card:hover {
  border-color: rgba(12, 120, 149, 0.42);
  color: inherit;
  box-shadow: 0 10px 30px rgba(14, 32, 70, 0.1);
  transform: translateY(-2px);
}

.product-name {
  margin: 18px 0 10px;
  font-size: 27px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  padding-top: 50px;
  border-top: 1px solid var(--line);
}

.diamond {
  width: 9px;
  height: 9px;
  margin: 3px 0 17px 2px;
  background: var(--accent);
  box-shadow: 0 2px 8px rgba(14, 143, 181, 0.4);
  transform: rotate(45deg);
}

.benefit-title {
  margin-bottom: 8px;
  font-size: 17px;
}

.benefit-copy {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.cta-band {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-band::before {
  position: absolute;
  top: -220px;
  left: 50%;
  width: 900px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(14, 143, 181, 0.1), transparent);
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.cta-inner {
  position: relative;
  max-width: 780px;
  padding-block: clamp(82px, 9vw, 108px);
}

.cta-title {
  margin-bottom: 18px;
  font-size: clamp(36px, 5vw, 48px);
  text-wrap: balance;
}

.cta-copy {
  margin: 0 auto 31px;
  color: var(--muted);
  font-size: 16.5px;
}

.cta-inner .button-row {
  justify-content: center;
}

.jump-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 32px;
}

.jump-link {
  padding: 8px 15px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink-soft);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 600;
}

.jump-link:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.jump-link-new {
  border-color: rgba(12, 120, 149, 0.42);
  color: var(--accent-dark);
}

.anchor-section {
  scroll-margin-top: 88px;
}

.bullet-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.bullet-list li {
  position: relative;
  padding-left: 21px;
  color: var(--ink-soft);
  font-size: 15px;
}

.bullet-list li::before {
  position: absolute;
  top: 0.72em;
  left: 2px;
  width: 7px;
  height: 7px;
  background: var(--accent);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.bullet-list-violet li::before {
  background: var(--violet);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12, 120, 149, 0.055);
  color: var(--ink-soft);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
}

.card-divider-note {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.process-card {
  padding: 24px;
}

.process-step {
  margin-bottom: 13px;
  color: var(--accent);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.process-card h3 {
  margin-bottom: 7px;
  font-size: 17px;
}

.mock-frame {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  border: 1px solid rgba(14, 32, 70, 0.14);
  border-radius: var(--radius);
  background: #dfe8f4;
  box-shadow: var(--shadow);
}

.mock-label {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 4;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(14, 22, 38, 0.82);
  color: #fff;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.meeting-ui {
  display: grid;
  min-height: 390px;
  grid-template-columns: 31% 69%;
  background: #eef3f9;
}

.meeting-sidebar {
  padding: 24px 17px;
  background: #10192b;
  color: #d8e0f0;
}

.mock-brand {
  display: flex;
  margin-bottom: 28px;
  align-items: center;
  gap: 8px;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.mock-brand-dot {
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background: var(--cyan);
}

.mock-nav-item {
  height: 10px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(213, 224, 245, 0.13);
}

.mock-nav-item:nth-child(3) {
  width: 76%;
  background: rgba(87, 215, 242, 0.3);
}

.mock-nav-item:nth-child(4) {
  width: 62%;
}

.mock-nav-item:nth-child(5) {
  width: 82%;
}

.meeting-main {
  padding: 25px 24px 44px;
}

.mock-topline {
  display: flex;
  margin-bottom: 24px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.mock-title-line {
  width: 54%;
  height: 16px;
  border-radius: 999px;
  background: #263752;
}

.mock-action {
  width: 70px;
  height: 26px;
  border-radius: 8px;
  background: var(--accent);
}

.meeting-card {
  padding: 20px;
  border: 1px solid rgba(14, 32, 70, 0.1);
  border-radius: 13px;
  background: #fff;
}

.summary-chip {
  width: 92px;
  height: 20px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(12, 120, 149, 0.14);
}

.transcript-row {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 11px;
  margin-bottom: 15px;
  align-items: start;
}

.avatar-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #d8e4f2;
}

.transcript-lines {
  display: grid;
  gap: 7px;
  padding-top: 2px;
}

.transcript-lines span {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: #d8e0eb;
}

.transcript-lines span:last-child {
  width: 68%;
}

.damage-ui {
  min-height: 390px;
  padding: 25px;
  background: linear-gradient(145deg, #131a2d 0%, #24234e 100%);
}

.damage-head {
  display: flex;
  margin-bottom: 24px;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
}

.damage-badge {
  padding: 5px 9px;
  border: 1px solid rgba(143, 123, 255, 0.5);
  border-radius: 999px;
  background: rgba(143, 123, 255, 0.15);
  color: #c7bcff;
  font-size: 10px;
}

.damage-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 16px;
}

.damage-photo {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 13px;
  background: linear-gradient(160deg, #58647a, #242c3f);
}

.car-shape {
  position: absolute;
  top: 49%;
  left: 50%;
  width: 72%;
  height: 27%;
  border-radius: 36% 24% 17% 17%;
  background: #c9d4df;
  box-shadow: inset -18px -15px 0 rgba(41, 51, 69, 0.18);
  transform: translate(-50%, -50%);
}

.car-shape::before {
  position: absolute;
  top: -43%;
  left: 22%;
  width: 49%;
  height: 60%;
  border-radius: 70% 55% 0 0;
  background: #92a1b3;
  content: "";
}

.car-shape::after {
  position: absolute;
  right: 11%;
  bottom: -17px;
  width: 37px;
  height: 37px;
  border: 7px solid #929fad;
  border-radius: 50%;
  background: #202a3a;
  box-shadow: -116px 0 0 -7px #202a3a, -116px 0 0 0 #929fad;
  content: "";
}

.damage-marker {
  position: absolute;
  top: 42%;
  right: 12%;
  width: 38px;
  height: 38px;
  border: 2px solid #ef8c84;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(239, 140, 132, 0.13);
}

.damage-report {
  display: grid;
  gap: 11px;
}

.report-block {
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.075);
}

.report-line {
  height: 7px;
  margin-bottom: 8px;
  border-radius: 999px;
  background: rgba(224, 230, 247, 0.3);
}

.report-line:last-child {
  width: 62%;
  margin-bottom: 0;
}

.report-result {
  border-color: rgba(143, 123, 255, 0.38);
  color: #c7bcff;
  font-size: 12px;
  font-weight: 700;
}

.visual-caption {
  margin: 12px 0 0;
  color: var(--muted-light);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10.5px;
  text-align: center;
}

.timeline {
  display: grid;
}

.timeline-item {
  display: grid;
  min-height: 100px;
  grid-template-columns: 24px 1fr;
  gap: 17px;
}

.timeline-track {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-dot {
  width: 11px;
  height: 11px;
  margin-top: 7px;
  background: var(--accent);
  box-shadow: 0 2px 8px rgba(14, 143, 181, 0.4);
  transform: rotate(45deg);
}

.timeline-line {
  width: 1px;
  flex: 1;
  background: rgba(14, 32, 70, 0.16);
}

.timeline-item:last-child .timeline-dot {
  background: var(--violet);
}

.timeline-item:last-child .timeline-line {
  display: none;
}

.timeline-year {
  margin-bottom: 3px;
  color: var(--accent);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

.timeline-item:last-child .timeline-year {
  color: var(--violet);
}

.timeline-title {
  margin-bottom: 4px;
  font-size: 17px;
}

.timeline-copy {
  color: var(--muted);
  font-size: 14px;
}

.address-card {
  margin-top: 24px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink-soft);
  font-style: normal;
}

.address-label {
  margin-bottom: 9px;
  color: var(--muted-light);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.workshop-visual {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(14, 32, 70, 0.14);
  border-radius: var(--radius);
  background: #172238;
  box-shadow: var(--shadow);
}

.workshop-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(87, 215, 242, 0.09) 1px, transparent 1px), linear-gradient(90deg, rgba(87, 215, 242, 0.09) 1px, transparent 1px);
  background-size: 34px 34px;
}

.machine-column {
  position: absolute;
  right: 14%;
  bottom: 16%;
  width: 26%;
  height: 58%;
  border: 1px solid rgba(87, 215, 242, 0.42);
  border-radius: 10px 10px 4px 4px;
  background: linear-gradient(135deg, #34435a, #1d2b42);
  box-shadow: -92px 78px 0 -36px #4e6077;
}

.machine-column::before {
  position: absolute;
  top: 18%;
  right: 19%;
  left: 19%;
  height: 34%;
  border: 1px solid rgba(87, 215, 242, 0.35);
  background: #111a2a;
  content: "";
}

.machine-column::after {
  position: absolute;
  bottom: -32px;
  left: -52%;
  width: 185%;
  height: 54px;
  border-radius: 5px;
  background: #46576d;
  content: "";
}

.workshop-copy {
  position: absolute;
  top: 36px;
  left: 32px;
  z-index: 2;
  max-width: 220px;
  color: #eef5ff;
}

.workshop-copy strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 22px;
}

.workshop-copy span {
  color: #a6b5cf;
  font-size: 13px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 46px;
  align-items: start;
}

.form-card {
  padding: clamp(24px, 4vw, 35px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

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

.field-full {
  grid-column: 1 / -1;
}

.field label,
.fieldset-label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.optional {
  color: var(--muted-light);
  font-weight: 400;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(14, 32, 70, 0.2);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-size: 14.5px;
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: #7d899f;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(12, 120, 149, 0.14);
}

.checkbox-field {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--accent);
}

.checkbox-field label {
  color: var(--muted);
  font-size: 13px;
}

.form-actions {
  display: flex;
  margin-top: 22px;
  align-items: center;
  gap: 16px;
}

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

.form-status {
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(196, 55, 46, 0.28);
  border-radius: 10px;
  background: rgba(196, 55, 46, 0.06);
  color: #a72e27;
  font-size: 13.5px;
}

.form-success {
  padding: 42px 22px;
  text-align: center;
}

.success-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin: 0 auto 21px;
  place-items: center;
  border: 1px solid rgba(12, 120, 149, 0.4);
  border-radius: 50%;
  background: rgba(12, 120, 149, 0.08);
  color: var(--accent);
  font-size: 23px;
  box-shadow: 0 0 30px rgba(14, 143, 181, 0.17);
}

.form-success h2 {
  margin-bottom: 10px;
  font-size: 26px;
}

.form-success p {
  max-width: 430px;
  margin: 0 auto 24px;
  color: var(--muted);
}

.contact-cards {
  display: grid;
  gap: 15px;
}

.contact-card {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.contact-card-label {
  margin-bottom: 10px;
  color: var(--muted-light);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-email {
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 19px;
  font-weight: 700;
}

.contact-card p,
.contact-card address {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 0.72fr);
  gap: 56px;
  align-items: start;
}

.privacy-nav {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 7px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.privacy-nav a {
  color: var(--muted);
  font-size: 13.5px;
}

.privacy-nav a:hover {
  color: var(--accent-dark);
}

.prose {
  max-width: 760px;
}

.prose section {
  scroll-margin-top: 96px;
  margin-bottom: 42px;
}

.prose h2 {
  margin-bottom: 13px;
  font-size: 26px;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose ul {
  padding-left: 20px;
}

.prose li + li {
  margin-top: 7px;
}

.updated {
  color: var(--muted-light);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

.not-found {
  display: grid;
  min-height: calc(100vh - var(--header-height));
  place-items: center;
  text-align: center;
}

.not-found-inner {
  max-width: 650px;
  padding: 80px 24px;
}

.error-code {
  margin-bottom: 12px;
  color: var(--accent);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 15px;
  letter-spacing: 0.12em;
}

.not-found h1 {
  margin-bottom: 16px;
  font-size: clamp(44px, 7vw, 68px);
}

.not-found p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 17px;
}

.site-footer {
  border-top: 1px solid rgba(14, 32, 70, 0.08);
  background: var(--band);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 1fr;
  gap: 48px;
  padding-block: 53px 42px;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 15px;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 800;
}

.footer-brand:hover {
  color: var(--ink);
}

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

.footer-heading {
  margin-bottom: 13px;
  color: var(--muted-light);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a,
.footer-contact {
  color: var(--muted);
  font-size: 14px;
}

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

.footer-contact {
  font-style: normal;
}

.footer-bottom {
  display: flex;
  padding-block: 22px;
  border-top: 1px solid rgba(14, 32, 70, 0.09);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted-light);
  font-size: 12.5px;
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
}

.footer-bottom a {
  color: var(--muted);
}

.trap-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

[hidden] {
  display: none !important;
}

@media (max-width: 980px) {
  .card-grid-four,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 30px;
  }

  .damage-layout {
    grid-template-columns: 1fr;
  }

  .damage-photo {
    min-height: 205px;
  }

  .damage-report {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 64px;
  }

  body[data-nav-open="true"] {
    overflow: hidden;
  }

  .shell {
    width: min(100% - 36px, var(--content));
  }

  .site-header {
    min-height: var(--header-height);
  }

  .nav-wrap {
    min-height: var(--header-height);
    gap: 12px;
  }

  .menu-toggle {
    display: grid;
  }

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100vh - var(--header-height));
    padding: 12px 18px 22px;
    border-bottom: 1px solid var(--line);
    background: rgba(247, 249, 252, 0.98);
    box-shadow: 0 18px 30px rgba(14, 32, 70, 0.12);
    gap: 0;
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .primary-nav[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link {
    padding: 13px 6px;
    border-bottom: 1px solid rgba(14, 32, 70, 0.07);
    font-size: 16px;
  }

  .nav-link::after {
    display: none;
  }

  .primary-nav .header-cta {
    margin-top: 13px;
    text-align: center;
  }

  .nav-wrap > .header-cta {
    display: none;
  }

  .hero-grid,
  .split,
  .split-reverse,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 46px;
    padding-block: 70px 60px;
  }

  .split-reverse > :first-child {
    order: 2;
  }

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

  .privacy-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .privacy-nav {
    position: static;
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.25fr 0.75fr;
  }

  .footer-grid > :last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 30px, var(--content));
  }

  .brand-country {
    letter-spacing: 0.2em;
  }

  .display-title {
    font-size: clamp(40px, 13vw, 52px);
  }

  .page-title {
    font-size: clamp(38px, 12vw, 48px);
  }

  .button-row,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .stats-grid,
  .card-grid-four,
  .card-grid-three,
  .card-grid-two,
  .benefit-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading .text-link {
    margin-top: -10px;
  }

  .terminal-row,
  .sheet-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .terminal-status,
  .sheet-value {
    padding-left: 20px;
    text-align: left;
  }

  .meeting-ui {
    grid-template-columns: 25% 75%;
  }

  .meeting-sidebar {
    padding-inline: 11px;
  }

  .mock-brand span:last-child {
    display: none;
  }

  .meeting-main {
    padding-inline: 16px;
  }

  .damage-layout,
  .damage-report {
    grid-template-columns: 1fr;
  }

  .workshop-copy {
    right: 24px;
    left: 24px;
  }

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

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

  .footer-grid > :last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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

@media print {
  .site-header,
  .site-footer,
  .button-row,
  .privacy-nav {
    display: none !important;
  }

  body {
    background: #fff;
  }

  main {
    overflow: visible;
  }
}
