:root {
  --black: #090909;
  --black-soft: #111111;
  --graphite: #1a1a1a;
  --gray-900: #242424;
  --gray-700: #5c5c5c;
  --gray-500: #929292;
  --gray-300: #d0d0d0;
  --gray-200: #e7e7e5;
  --gray-100: #f3f3f1;
  --white: #ffffff;
  --red: #e20b12;
  --red-dark: #ba070d;
  --red-text: #ff4b52;
  --font-display: "Manrope", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --font-accent: "Cormorant Garamond", serif;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--black);
  background: var(--black);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

.reference-mode * {
  animation-play-state: paused !important;
}

.reference-mode .reveal {
  opacity: 1;
  filter: none;
  transform: none;
  transition: none;
}

.reference-mode .dial-hand {
  animation: none;
  transform: rotate(42deg);
}

.reference-mode .dial-copy strong,
.reference-mode .dial-copy > span {
  opacity: 1;
  animation: none;
  transform: none;
}

.gauge-capture {
  background: #090909;
}

.gauge-capture .site-header,
.gauge-capture .hero-content,
.gauge-capture .hero-bottom,
.gauge-capture .floating-note,
.gauge-capture .orbit,
.gauge-capture main > :not(.hero) {
  display: none;
}

.gauge-capture .hero {
  min-height: 100vh;
  padding: 0;
}

.gauge-capture .hero-grid {
  width: 100%;
  min-height: 100vh;
  grid-template-columns: 1fr;
  padding: 0;
}

.gauge-capture .hero-visual {
  min-height: 100vh;
}

.gauge-capture .time-card {
  width: 430px;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 120px 0;
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.brand {
  display: block;
  width: 202px;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.nav-panel-heading,
.nav-number,
.nav-copy small,
.nav-arrow {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-copy strong {
  font-weight: 400;
}

.nav-links a:hover {
  color: var(--white);
}

.main-nav .nav-cta {
  padding: 13px 19px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.main-nav .nav-cta:hover {
  border-color: var(--red);
  background: var(--red);
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
}

.hero {
  position: relative;
  z-index: 2;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px) 0 0 / 130px 130px,
    linear-gradient(25deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px) 0 0 / 130px 130px,
    var(--black);
  padding-top: 88px;
}

.hero::before {
  position: absolute;
  inset: 88px 0 auto;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
}

.hero-glow {
  position: absolute;
  top: 170px;
  right: -220px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 11, 18, 0.13), transparent 68%);
  pointer-events: none;
}

.hero-grid {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: 60px;
  padding-top: 60px;
  padding-bottom: 64px;
}

.eyebrow,
.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--red-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 27px;
  height: 2px;
  background: var(--red);
}

.hero h1 {
  max-width: 650px;
  margin: 24px 0 26px;
  font-family: var(--font-display);
  font-size: clamp(48px, 5.2vw, 76px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.052em;
}

.hero h1 em {
  display: inline-block;
  color: var(--red);
  font-family: var(--font-accent);
  font-size: 1.12em;
  font-weight: 600;
  line-height: .82;
  letter-spacing: -0.035em;
  transform: rotate(-1.5deg);
  transform-origin: left center;
}

.hero-lead {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--red);
}

.button-primary:hover {
  background: var(--red-dark);
}

.text-link {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  font-weight: 600;
}

.text-link:hover {
  color: var(--white);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 42px;
}

.trust-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-mark svg {
  width: 22px;
  fill: none;
  stroke: var(--gray-300);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.hero-trust p {
  margin: 0;
  color: var(--gray-500);
  font-size: 12px;
  line-height: 1.5;
}

.hero-trust strong {
  color: var(--gray-200);
  font-size: 13px;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
}

.time-card {
  position: relative;
  z-index: 2;
  width: min(100%, 540px);
  aspect-ratio: 16 / 9;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: #101010;
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.42);
  transition: transform 420ms cubic-bezier(.2,.8,.2,1);
}

.speedometer-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speedometer-watermark-cover {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: 15%;
  height: 25%;
  pointer-events: none;
  background:
    radial-gradient(circle at 0 0, rgba(18,18,18,.86), #101010 58%);
}

.card-topline {
  display: flex;
  justify-content: space-between;
  color: var(--gray-500);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(226, 11, 18, 0.1);
  animation: signal-pulse 1.8s ease-out infinite;
}

.dial {
  position: relative;
  display: grid;
  width: 264px;
  height: 264px;
  margin: 22px auto 30px;
  place-items: center;
}

.dial-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 57%, rgba(255,255,255,.035) 58%, transparent 59%),
    repeating-conic-gradient(from -2deg, rgba(255,255,255,.32) 0deg 0.8deg, transparent 0.8deg 9deg);
  mask: radial-gradient(circle, transparent 61%, #000 62%);
}

.dial-ring::after {
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
}

.dial-hand {
  position: absolute;
  top: 29px;
  left: calc(50% - 1px);
  width: 2px;
  height: 104px;
  background: linear-gradient(var(--red), rgba(226,11,18,.2));
  transform: rotate(42deg);
  transform-origin: 50% 100%;
  box-shadow: 0 0 13px rgba(226, 11, 18, .48);
}

.dial-center {
  position: absolute;
  z-index: 2;
  width: 8px;
  height: 8px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--red);
}

.dial-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 37px;
}

.dial-copy small {
  margin-bottom: 9px;
  color: var(--gray-500);
  font-size: 7px;
  letter-spacing: 0.16em;
}

.dial-copy strong {
  font-family: var(--font-display);
  font-size: 27px;
  letter-spacing: -0.04em;
}

.dial-copy span {
  color: var(--gray-500);
  font-size: 12px;
}

.recovery-path {
  display: flex;
  align-items: flex-start;
}

.path-item {
  width: 76px;
  text-align: center;
}

.path-item span {
  display: grid;
  width: 12px;
  height: 12px;
  margin: auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255,255,255,.035);
}

.path-item.active span {
  border-color: var(--red);
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(226,11,18,.1);
}

.path-item p {
  margin: 8px 0 0;
  color: var(--gray-500);
  font-size: 10px;
}

.path-item.active p {
  color: var(--gray-200);
}

.path-line {
  position: relative;
  flex: 1;
  height: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.path-line i {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 55%;
  height: 1px;
  background: var(--red);
}

.floating-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #161616;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
  animation: note-float 4.6s ease-in-out infinite;
}

.floating-note p {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.floating-note small {
  color: var(--gray-500);
  font-size: 9px;
}

.floating-note strong {
  margin-top: 2px;
  font-size: 11px;
  font-weight: 600;
}

.note-icon {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  color: var(--red);
  background: rgba(226, 11, 18, 0.1);
}

.note-icon.shield {
  color: var(--gray-200);
  background: rgba(255, 255, 255, 0.06);
}

.note-one {
  top: 92px;
  right: -110px;
}

.note-two {
  bottom: 85px;
  left: -110px;
  animation-delay: -2.1s;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 50%;
}

.orbit-one {
  width: 510px;
  height: 510px;
  animation: orbit-spin 28s linear infinite;
}

.orbit-two {
  width: 610px;
  height: 360px;
  transform: rotate(-20deg);
  animation: orbit-breathe 7s ease-in-out infinite;
}

.hero-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.hero-bottom .container {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.hero-bottom p {
  margin: 0;
  color: var(--gray-500);
  font-size: 12px;
}

.ticker {
  display: flex;
  align-items: center;
  gap: 23px;
  color: var(--gray-300);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ticker i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
}

.journey-video {
  --journey-opacity: 0;
  --video-opacity: .88;
  --video-brightness: .86;
  --video-contrast: 1.08;
  position: fixed;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: var(--journey-opacity);
  background:
    radial-gradient(circle at 78% 52%, rgba(226,11,18,.14), transparent 34%),
    linear-gradient(125deg, #050505 0%, #0b0b0b 48%, #12090a 100%);
  transition: opacity 180ms linear;
}

.journey-video::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, #050505 0%, rgba(5,5,5,.97) 24%, rgba(5,5,5,.76) 52%, rgba(5,5,5,.12) 82%);
  transition: background 600ms ease;
}

.journey-video video {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: var(--video-opacity);
  filter:
    saturate(.88)
    contrast(var(--video-contrast))
    brightness(var(--video-brightness));
  transform: none;
  transition: filter 600ms ease, opacity 500ms ease;
  will-change: filter, opacity;
}

.journey-video-fill {
  inset: -4%;
  width: 108%;
  height: 108%;
  object-fit: cover;
  object-position: center;
  opacity: .68 !important;
  filter: blur(18px) saturate(.82) brightness(.68) contrast(1.12) !important;
  transform: scale(1.03);
}

.journey-video .journey-video-main {
  top: 4%;
  right: -2%;
  bottom: 4%;
  left: 10%;
  width: 92%;
  height: 92%;
  object-fit: contain;
  object-position: right center;
  -webkit-mask-image: radial-gradient(
    ellipse 82% 74% at 62% center,
    #000 36%,
    rgba(0,0,0,.94) 48%,
    rgba(0,0,0,.72) 62%,
    rgba(0,0,0,.38) 78%,
    rgba(0,0,0,.1) 91%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 82% 74% at 62% center,
    #000 36%,
    rgba(0,0,0,.94) 48%,
    rgba(0,0,0,.72) 62%,
    rgba(0,0,0,.38) 78%,
    rgba(0,0,0,.1) 91%,
    transparent 100%
  );
}

.journey-video[data-tone="light"] {
  --video-opacity: 1;
  --video-brightness: 1.08;
  --video-contrast: 1.28;
}

.journey-video[data-tone="light"]::before {
  background: linear-gradient(90deg, #050505 0%, rgba(5,5,5,.95) 24%, rgba(5,5,5,.48) 54%, rgba(5,5,5,.04) 82%);
}

.statement {
  position: relative;
  z-index: 1;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding-top: 92px;
  padding-bottom: 96px;
  color: var(--white);
  background: linear-gradient(90deg, rgba(5,5,5,.99) 0%, rgba(5,5,5,.9) 45%, rgba(5,5,5,.38) 69%, rgba(5,5,5,.04) 100%);
}

.statement .reveal {
  opacity: 1;
  filter: none;
  transform: none;
}

.statement-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.statement-copy {
  max-width: 1120px;
}

.section-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.section-label span {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
}

.section-label p {
  margin: 0;
  color: var(--red-text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.big-copy {
  max-width: 1120px;
  margin: 0 0 42px;
  font-family: var(--font-display);
  font-size: clamp(42px, 4.5vw, 61px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.big-copy strong {
  color: var(--red);
  font-family: var(--font-accent);
  font-size: 1.18em;
  font-style: italic;
  font-weight: 600;
  line-height: .8;
}

.statement-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.18);
}

.statement-detail p {
  max-width: 420px;
  margin: 0;
  color: rgba(255,255,255,.64);
  line-height: 1.75;
}

.services {
  position: relative;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.88) 52%, rgba(255,255,255,.68) 100%);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  margin-bottom: 60px;
}

.section-heading h2,
.method h2,
.diagnosis h2 {
  margin: 16px 0 0;
  font-family: var(--font-display);
  font-size: clamp(37px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.13;
  letter-spacing: -0.045em;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 570px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 44px;
  overflow: hidden;
  transition: transform 350ms ease, box-shadow 350ms ease;
}

.service-card:hover {
  z-index: 2;
  transform: translateY(-9px);
  box-shadow: 0 28px 65px rgba(0, 0, 0, .13);
}

.service-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.08) 48%, transparent 72%);
  transform: translateX(-120%);
  transition: transform 800ms ease;
}

.service-card:hover::after {
  transform: translateX(120%);
}

.service-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 10%, rgba(226, 11, 18, 0.15), transparent 28%),
    var(--black-soft);
}

.service-light {
  border: 1px solid var(--gray-200);
  background: var(--gray-100);
}

.service-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.service-light .service-icon {
  border-color: var(--gray-300);
}

.service-icon svg {
  width: 30px;
  fill: none;
  stroke: var(--red);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.service-tag {
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.service-card h3 {
  margin: 13px 0 15px;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.service-card > div p {
  max-width: 475px;
  margin: 0;
  color: var(--gray-500);
  line-height: 1.7;
}

.service-light > div p {
  color: var(--gray-700);
}

.service-card ul {
  display: grid;
  gap: 14px;
  margin: 32px 0 0;
  padding: 25px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none;
}

.service-light ul {
  border-color: var(--gray-300);
}

.service-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-300);
  font-size: 13px;
}

.service-light li {
  color: var(--gray-700);
}

.service-card li::before {
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 50%;
  background: var(--red);
}

.method {
  position: relative;
  z-index: 1;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255,255,255,.02) 1px, transparent 1px) 0 0 / 90px 90px,
    rgba(9,9,9,.84);
}

.method-grid {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 100px;
}

.kicker-light {
  color: var(--gray-500);
}

.method h2 em {
  color: var(--red);
  font-family: var(--font-accent);
  font-size: 1.12em;
  font-weight: 600;
  line-height: .82;
}

.method-intro > p {
  max-width: 430px;
  margin: 28px 0 34px;
  color: var(--gray-500);
  line-height: 1.75;
}

.button-outline {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.button-outline:hover {
  border-color: var(--red);
}

.method-list {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.method-step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: border-color 650ms ease;
}

.method-step::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: .7;
  background: linear-gradient(90deg, transparent, rgba(226,11,18,.08) 44%, rgba(255,255,255,.025) 66%, transparent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 700ms cubic-bezier(.16,1,.3,1), opacity 700ms ease;
}

.method-step:hover {
  border-color: rgba(226,11,18,.45);
}

.method-step:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.method-step .step-copy {
  position: relative;
  z-index: 1;
  transition: transform 650ms cubic-bezier(.16,1,.3,1);
}

.method-step:hover .step-copy {
  transform: translateX(4px);
}

.step-copy h3 {
  margin: 0 0 9px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
}

.step-copy p {
  max-width: 565px;
  margin: 0;
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.65;
}

.why {
  position: relative;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(243,243,241,.94) 0%, rgba(243,243,241,.86) 52%, rgba(243,243,241,.65) 100%);
}

.why-top {
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  gap: 55px;
  margin-bottom: 80px;
}

.why-top h2 {
  max-width: 850px;
  margin: -9px 0 0;
  font-family: var(--font-display);
  font-size: clamp(37px, 4vw, 53px);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.045em;
}

.why-top h2 strong {
  color: var(--red);
  font-family: var(--font-accent);
  font-size: 1.15em;
  font-style: italic;
  font-weight: 600;
  line-height: .82;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 16px;
  border-top: 1px solid var(--gray-300);
  border-right: 1px solid rgba(208,208,208,.7);
  border-left: 1px solid rgba(208,208,208,.7);
}

.benefit {
  position: relative;
  min-height: 255px;
  padding: 30px 26px 24px;
  overflow: hidden;
  border-right: 1px solid var(--gray-300);
  transition:
    background 650ms ease,
    box-shadow 650ms ease;
}

.benefit::before {
  position: absolute;
  top: 0;
  right: 26px;
  left: 26px;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 700ms cubic-bezier(.16,1,.3,1);
}

.benefit:hover {
  z-index: 2;
  background: rgba(255,255,255,.15);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.38);
}

.benefit:hover::before {
  transform: scaleX(1);
}

.benefit + .benefit {
  padding-left: 26px;
}

.benefit:last-child {
  border-right: 0;
}

.benefit h3 {
  margin: 20px 0 13px;
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.35;
  transition: transform 650ms cubic-bezier(.16,1,.3,1);
}

.benefit p {
  margin: 0;
  color: var(--gray-700);
  font-size: 14px;
  line-height: 1.65;
  transition: transform 650ms cubic-bezier(.16,1,.3,1);
}

.benefit:hover h3,
.benefit:hover p {
  transform: translateX(4px);
}

.diagnosis {
  position: relative;
  z-index: 1;
  padding-bottom: 0;
  background: transparent;
}

.diagnosis-shell {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 85px;
  padding: 72px 72px 48px;
  color: var(--white);
  background: linear-gradient(90deg, rgba(5,5,5,.22), rgba(5,5,5,.07));
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: none;
}

.diagnosis-copy > p {
  margin: 24px 0 31px;
  color: var(--gray-500);
  line-height: 1.75;
}

.diagnosis-points {
  display: grid;
  gap: 13px;
  color: var(--gray-300);
  font-size: 13px;
}

.diagnosis-points span {
  display: flex;
  gap: 10px;
}

.diagnosis-points i {
  color: var(--red);
  font-style: normal;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--gray-300);
  font-size: 12px;
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  outline: 0;
  color: var(--white);
  background: rgba(5,5,5,.48);
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-form input,
.contact-form select {
  height: 52px;
  padding: 0 15px;
}

.contact-form textarea {
  padding: 15px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--gray-700);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  background: rgba(255, 255, 255, 0.06);
}

.contact-form select option {
  color: var(--black);
}

.contact-form .invalid {
  border-color: var(--red);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin: -5px 0 0;
  color: var(--gray-700);
  font-size: 10px;
  text-align: center;
}

.form-success {
  display: none;
  padding: 16px;
  border: 1px solid rgba(226, 11, 18, .35);
  background: rgba(226, 11, 18, .08);
}

.form-success.visible {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-success strong {
  color: var(--white);
  font-size: 13px;
}

.form-success span {
  color: var(--gray-500);
  font-size: 12px;
}

.form-error {
  display: none;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .04);
}

.form-error.visible {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-error strong {
  color: var(--white);
  font-size: 13px;
}

.form-error span {
  color: var(--gray-500);
  font-size: 12px;
}

.site-footer {
  position: relative;
  z-index: 1;
  color: var(--white);
  background: #050505;
}

.footer-top {
  min-height: 195px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.footer-brand {
  width: 225px;
}

.footer-top p {
  margin: 0;
  color: var(--gray-500);
  font-size: 13px;
  line-height: 1.65;
}

.footer-link {
  justify-self: end;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--red);
  font-size: 13px;
}

.footer-link span {
  margin-left: 18px;
  color: var(--red);
}

.footer-bottom {
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gray-500);
  font-size: 10px;
}

.reveal {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(34px);
  transition: opacity 800ms ease, transform 800ms cubic-bezier(.2,.8,.2,1), filter 800ms ease;
}

.reveal.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.service-card:nth-child(2),
.benefit:nth-child(2) {
  transition-delay: 90ms;
}

.benefit:nth-child(3) {
  transition-delay: 180ms;
}

.benefit:nth-child(4) {
  transition-delay: 270ms;
}

@keyframes signal-pulse {
  0% { box-shadow: 0 0 0 0 rgba(226,11,18,.45); }
  70% { box-shadow: 0 0 0 9px rgba(226,11,18,0); }
  100% { box-shadow: 0 0 0 0 rgba(226,11,18,0); }
}

@keyframes note-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

@keyframes orbit-breathe {
  0%, 100% { opacity: .45; transform: rotate(-20deg) scale(.97); }
  50% { opacity: 1; transform: rotate(-15deg) scale(1.04); }
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 20px;
  }


.footer-top {
  min-height: 195px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.footer-brand {
  width: 225px;
}

.footer-top p {
  margin: 0;
  color: var(--gray-500);
  font-size: 13px;
  line-height: 1.65;
}

.footer-link {
  justify-self: end;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--red);
  font-size: 13px;
}

.footer-link span {
  margin-left: 18px;
  color: var(--red);
}

.footer-bottom {
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gray-500);
  font-size: 10px;
}

.reveal {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(34px);
  transition: opacity 800ms ease, transform 800ms cubic-bezier(.2,.8,.2,1), filter 800ms ease;
}

.reveal.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.service-card:nth-child(2),
.benefit:nth-child(2) {
  transition-delay: 90ms;
}

.benefit:nth-child(3) {
  transition-delay: 180ms;
}

.benefit:nth-child(4) {
  transition-delay: 270ms;
}

@keyframes signal-pulse {
  0% { box-shadow: 0 0 0 0 rgba(226,11,18,.45); }
  70% { box-shadow: 0 0 0 9px rgba(226,11,18,0); }
  100% { box-shadow: 0 0 0 0 rgba(226,11,18,0); }
}

@keyframes note-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

@keyframes orbit-breathe {
  0%, 100% { opacity: .45; transform: rotate(-20deg) scale(.97); }
  50% { opacity: 1; transform: rotate(-15deg) scale(1.04); }
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 20px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.8fr;
    gap: 25px;
  }

  .note-one {
    right: -80px;
  }

  .method-grid {
    gap: 55px;
  }

  .diagnosis-shell {
    gap: 50px;
    padding: 55px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 90px 0;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: grid;
    width: 38px;
    height: 38px;
    padding: 10px;
    place-content: center;
    gap: 6px;
    cursor: pointer;
  }

  .menu-open .brand {
    position: relative;
    z-index: 102;
  }

  .menu-toggle span {
    width: 21px;
    height: 1px;
    background: var(--white);
    transition: transform 180ms ease;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 106px 28px 30px;
    visibility: hidden;
    opacity: 0;
    color: var(--white);
    background:
      radial-gradient(circle at 100% 0, rgba(226,11,18,.16), transparent 35%),
      var(--black);
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .menu-open .main-nav {
    visibility: visible;
    opacity: 1;
  }

  .nav-panel-heading {
    display: block;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,.12);
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 350ms ease 80ms, transform 350ms ease 80ms;
  }

  .nav-panel-heading span {
    color: var(--red);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
  }

  .nav-panel-heading p {
    max-width: 290px;
    margin: 10px 0 0;
    color: var(--gray-500);
    font-family: var(--font-display);
    font-size: 15px;
    line-height: 1.5;
  }

  .nav-links {
    display: grid;
    gap: 0;
  }

  .nav-links a {
    display: grid;
    grid-template-columns: 1fr 24px;
    align-items: center;
    min-height: 92px;
    border-bottom: 1px solid rgba(255,255,255,.12);
    opacity: 0;
    transform: translateX(-18px);
    transition: color 180ms ease, background 180ms ease, padding 180ms ease, opacity 350ms ease, transform 350ms ease;
  }

  .nav-links a:nth-child(1) { transition-delay: 130ms; }
  .nav-links a:nth-child(2) { transition-delay: 190ms; }
  .nav-links a:nth-child(3) { transition-delay: 250ms; }

  .nav-links a:hover {
    padding-left: 10px;
    background: rgba(255,255,255,.035);
  }

  .nav-number,
  .nav-copy small,
  .nav-arrow {
    display: block;
  }

  .nav-number {
    align-self: start;
    padding-top: 28px;
    color: var(--red);
    font-size: 10px;
    font-weight: 700;
  }

  .nav-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .nav-copy strong {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
  }

  .nav-copy small {
    color: var(--gray-500);
    font-family: var(--font-body);
    font-size: 11px;
  }

  .nav-arrow {
    color: var(--gray-700);
    font-size: 18px;
  }

  .main-nav .nav-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    margin-top: auto;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 350ms ease 310ms, transform 350ms ease 310ms, background 180ms ease;
    font-family: var(--font-body);
    font-size: 15px;
  }

  .menu-open .nav-panel-heading,
  .menu-open .nav-links a,
  .menu-open .main-nav .nav-cta {
    opacity: 1;
    transform: translate(0);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 95px;
  }

  .hero-content {
    max-width: 720px;
  }

  .hero-visual {
    display: none;
  }

  .hero-bottom .container {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .statement-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .journey-video {
    display: none;
  }

  .statement {
    background: rgba(5,5,5,.97);
  }

  .services {
    background: rgba(255,255,255,.92);
  }

  .why {
    background: rgba(243,243,241,.92);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-heading > p {
    max-width: 620px;
  }

  .service-card {
    padding: 35px;
  }

  .method-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .why-top {
    grid-template-columns: 1fr;
  }

  .benefit-grid {
    grid-template-columns: 1fr 1fr;
    padding: 0 12px;
  }

  .orbit-two {
    width: 500px;
  }

  .ticker {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .ticker i {
    display: none;
  }

  .statement-detail,
  .service-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .statement-detail {
    gap: 24px;
  }

  .service-card {
    min-height: 540px;
    padding: 30px 25px;
  }

  .service-card h3 {
    font-size: 29px;
  }

  .method-step {
    grid-template-columns: 1fr;
  }

  .step-mark {
    display: none;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit,
  .benefit + .benefit {
    min-height: auto;
    padding: 27px 18px 30px;
    border-right: 0;
    border-top: 1px solid var(--gray-300);
  }

  .benefit h3 {
    margin-top: 28px;
  }

  .diagnosis {
    padding: 0;
    background: transparent;
  }

  .diagnosis-shell {
    grid-template-columns: 1fr;
    width: min(calc(100% - 32px), var(--container));
    gap: 45px;
    padding: 72px 0;
    border: 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .footer-link {
    justify-self: start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 20px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .dial-hand,
  .dial-copy strong,
  .dial-copy > span,
  .live-dot,
  .floating-note,
  .orbit {
    animation: none;
  }
}
