:root {
  --ink: #030608;
  --ink-2: #07111a;
  --panel: #0f1b24;
  --surface: #07111a;
  --surface-2: #0b1822;
  --surface-3: #101e29;
  --cream: #030608;
  --paper: #ffffff;
  --muted: #7d8a93;
  --line: rgba(255, 255, 255, 0.16);
  --line-dark: rgba(255, 255, 255, 0.14);
  --accent: #12bdfb;
  --accent-2: #0b73b7;
  --steel: #94a9b5;
  --max: 1180px;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(3, 6, 8, 0.26);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 0;
  z-index: 100;
  transform: translateY(-140%);
  opacity: 0;
  pointer-events: none;
  background: var(--accent);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
}

.skip-link:focus,
.skip-link:focus-visible {
  top: 16px;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 42px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: var(--paper);
  background: rgba(3, 6, 8, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
}

.brand-mark {
  width: 54px;
  height: 42px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.14));
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  color: var(--paper);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--paper);
  font-weight: 900;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-width: 100%;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 950;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
  white-space: normal;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.nav-cta,
.button-primary {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(18, 189, 251, 0.22);
}

.button-secondary {
  background: var(--paper);
  color: var(--ink);
}

.button-secondary:hover {
  box-shadow: 0 16px 40px rgba(255, 255, 255, 0.16);
}

.button-ghost {
  background: transparent;
  color: var(--paper);
  border-color: var(--line);
}

.button-ghost.dark {
  color: var(--paper);
  border-color: var(--line);
}

.button-ghost:hover {
  border-color: rgba(18, 189, 251, 0.5);
  background: rgba(18, 189, 251, 0.09);
}

.text-link {
  display: inline-flex;
  color: var(--accent);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
}

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

h1,
h2 {
  font-family: "Arial Narrow", "Roboto Condensed", Impact, Inter, ui-sans-serif, sans-serif;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1.02;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.3rem, 3.8vw, 3.1rem);
  margin-bottom: 18px;
}

h2 {
  max-width: 920px;
  font-size: clamp(1.85rem, 3.6vw, 3.05rem);
  margin-bottom: 14px;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.16;
  margin-bottom: 10px;
}

p {
  color: inherit;
}

.eyebrow,
.card-kicker,
.footer-kicker {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.83rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section,
.hero-section,
.cta-band,
.site-footer {
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
}

.hero-section {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding-top: 34px;
  padding-bottom: 34px;
  overflow: hidden;
}

.section-dark {
  color: var(--paper);
  background:
    radial-gradient(circle at 70% 25%, rgba(18, 189, 251, 0.16), transparent 34%),
    linear-gradient(90deg, var(--ink), #07111a 58%, #0b1822);
}

.section-muted {
  color: var(--paper);
  background:
    radial-gradient(circle at 18% 18%, rgba(18, 189, 251, 0.08), transparent 32%),
    linear-gradient(180deg, #07111a, #030608);
}

.hero-lede {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.01rem, 1.6vw, 1.12rem);
  font-weight: 650;
}

.credibility-strip {
  max-width: 680px;
  margin: 18px 0 0;
  padding: 13px 16px;
  border: 1px solid rgba(18, 189, 251, 0.28);
  border-radius: var(--radius);
  background: rgba(18, 189, 251, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 900;
}

.cta-row,
.feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 26px;
}

.hero-visual {
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-art {
  width: min(640px, 100%);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-photo-art {
  width: min(720px, 100%);
  display: block;
  border-radius: var(--radius);
  filter: saturate(1.04) contrast(1.02) brightness(1.04);
}

.recruiting-hero-photo {
  box-shadow: 0 24px 78px rgba(0, 0, 0, 0.26);
  mask-image: radial-gradient(ellipse at 54% 52%, #000 56%, rgba(0, 0, 0, 0.82) 68%, transparent 86%);
  -webkit-mask-image: radial-gradient(ellipse at 54% 52%, #000 56%, rgba(0, 0, 0, 0.82) 68%, transparent 86%);
}

.dashboard-art {
  width: 100%;
  margin: 0 0 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.home-immersive-hero,
.about-immersive-hero,
.recruiting-immersive-hero,
.cdl-immersive-hero,
.automotive-immersive-hero,
.systems-immersive-hero,
.growth-immersive-hero,
.contact-immersive-hero {
  min-height: clamp(640px, calc(100vh - 76px), 780px);
  display: block;
  position: relative;
  isolation: isolate;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  background: #030608;
}

.home-immersive-hero::before,
.home-immersive-hero::after,
.about-immersive-hero::before,
.about-immersive-hero::after,
.recruiting-immersive-hero::before,
.recruiting-immersive-hero::after,
.cdl-immersive-hero::before,
.cdl-immersive-hero::after,
.automotive-immersive-hero::before,
.automotive-immersive-hero::after,
.systems-immersive-hero::before,
.systems-immersive-hero::after,
.growth-immersive-hero::before,
.growth-immersive-hero::after,
.contact-immersive-hero::before,
.contact-immersive-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-immersive-hero::before {
  z-index: 1;
  background:
    linear-gradient(90deg, #030608 0%, rgba(3, 6, 8, 0.95) 27%, rgba(3, 6, 8, 0.56) 44%, rgba(3, 6, 8, 0.08) 70%, rgba(3, 6, 8, 0.12) 100%),
    linear-gradient(180deg, rgba(3, 6, 8, 0.1) 0%, rgba(3, 6, 8, 0) 50%, rgba(3, 6, 8, 0.9) 100%);
}

.home-immersive-hero::after {
  z-index: 2;
  background:
    radial-gradient(circle at 64% 32%, rgba(18, 189, 251, 0.12), transparent 34%),
    linear-gradient(180deg, transparent 74%, rgba(18, 189, 251, 0.08) 100%);
  mix-blend-mode: screen;
}

.about-immersive-hero::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 6, 8, 0.16) 0%, rgba(3, 6, 8, 0.18) 32%, rgba(3, 6, 8, 0.64) 57%, rgba(3, 6, 8, 0.94) 100%),
    linear-gradient(180deg, rgba(3, 6, 8, 0.08) 0%, rgba(3, 6, 8, 0) 50%, rgba(3, 6, 8, 0.86) 100%);
}

.about-immersive-hero::after {
  z-index: 2;
  background:
    radial-gradient(circle at 65% 32%, rgba(18, 189, 251, 0.1), transparent 34%),
    linear-gradient(180deg, transparent 74%, rgba(18, 189, 251, 0.08) 100%);
  mix-blend-mode: screen;
}

.recruiting-immersive-hero::before,
.cdl-immersive-hero::before,
.automotive-immersive-hero::before,
.systems-immersive-hero::before,
.growth-immersive-hero::before,
.contact-immersive-hero::before {
  z-index: 1;
  background:
    linear-gradient(90deg, #030608 0%, rgba(3, 6, 8, 0.96) 31%, rgba(3, 6, 8, 0.68) 49%, rgba(3, 6, 8, 0.14) 76%, rgba(3, 6, 8, 0.28) 100%),
    linear-gradient(180deg, rgba(3, 6, 8, 0.1) 0%, rgba(3, 6, 8, 0) 52%, #030608 100%);
}

.recruiting-immersive-hero::after,
.cdl-immersive-hero::after,
.automotive-immersive-hero::after,
.systems-immersive-hero::after,
.growth-immersive-hero::after,
.contact-immersive-hero::after {
  z-index: 2;
  background:
    radial-gradient(circle at 70% 34%, rgba(18, 189, 251, 0.13), transparent 36%),
    linear-gradient(180deg, transparent 74%, rgba(18, 189, 251, 0.08) 100%);
  mix-blend-mode: screen;
}

.home-immersive-hero .hero-copy,
.about-immersive-hero .hero-copy,
.recruiting-immersive-hero .hero-copy,
.cdl-immersive-hero .hero-copy,
.automotive-immersive-hero .hero-copy,
.systems-immersive-hero .hero-copy,
.growth-immersive-hero .hero-copy,
.contact-immersive-hero .hero-copy {
  width: min(680px, 52vw);
  min-height: clamp(640px, calc(100vh - 76px), 780px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 3;
  margin-left: max(80px, calc((100vw - 1440px) / 2 + 80px));
  padding-top: clamp(74px, 9vw, 122px);
  padding-bottom: clamp(74px, 9vw, 122px);
}

.about-immersive-hero .hero-copy {
  margin-left: auto;
  margin-right: max(48px, calc((100vw - 1440px) / 2 + 48px));
}

.home-immersive-hero .hero-copy {
  margin-left: max(52px, calc((100vw - 1440px) / 2 + 52px));
}

.cdl-immersive-hero .hero-copy,
.systems-immersive-hero .hero-copy,
.contact-immersive-hero .hero-copy {
  width: min(620px, 49vw);
  margin-left: max(24px, calc((100vw - 1440px) / 2 + 24px));
}

.cdl-immersive-hero .hero-copy,
.automotive-immersive-hero .hero-copy {
  width: min(570px, 46vw);
  margin-left: max(14px, calc((100vw - 1440px) / 2 + 14px));
}

.recruiting-immersive-hero .hero-copy,
.growth-immersive-hero .hero-copy {
  width: min(640px, 50vw);
  margin-left: max(32px, calc((100vw - 1440px) / 2 + 32px));
}

.growth-immersive-hero .hero-copy,
.contact-immersive-hero .hero-copy {
  width: min(600px, 47vw);
  margin-left: max(16px, calc((100vw - 1440px) / 2 + 16px));
}

.home-hero-media,
.about-hero-media,
.recruiting-hero-media,
.cdl-hero-media,
.automotive-hero-media,
.systems-hero-media,
.growth-hero-media,
.contact-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.home-hero-media::after,
.about-hero-media::after,
.recruiting-hero-media::after,
.cdl-hero-media::after,
.automotive-hero-media::after,
.systems-hero-media::after,
.growth-hero-media::after,
.contact-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 6, 8, 0.98) 0%, rgba(3, 6, 8, 0.42) 22%, rgba(3, 6, 8, 0.02) 50%),
    linear-gradient(180deg, rgba(3, 6, 8, 0.04) 0%, rgba(3, 6, 8, 0) 50%, rgba(3, 6, 8, 0.5) 100%);
}

.growth-hero-media::after {
  background:
    linear-gradient(90deg, rgba(3, 6, 8, 0.98) 0%, rgba(3, 6, 8, 0.34) 20%, rgba(3, 6, 8, 0.01) 48%),
    linear-gradient(180deg, rgba(3, 6, 8, 0.03) 0%, rgba(3, 6, 8, 0) 50%, rgba(3, 6, 8, 0.42) 100%);
}

.contact-hero-media::after {
  background:
    linear-gradient(90deg, rgba(3, 6, 8, 0.98) 0%, rgba(3, 6, 8, 0.38) 22%, rgba(3, 6, 8, 0.01) 52%),
    linear-gradient(180deg, rgba(3, 6, 8, 0.02) 0%, rgba(3, 6, 8, 0) 52%, rgba(3, 6, 8, 0.38) 100%);
}

.home-hero-portrait,
.about-hero-portrait,
.recruiting-hero-bg,
.cdl-hero-bg,
.automotive-hero-bg,
.systems-hero-bg,
.growth-hero-bg,
.contact-hero-bg {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1) contrast(1.02) brightness(1.04);
}

.recruiting-hero-bg,
.cdl-hero-bg,
.automotive-hero-bg,
.systems-hero-bg,
.growth-hero-bg,
.contact-hero-bg {
  object-position: center center;
}

.about-hero-portrait {
  filter: saturate(1) contrast(1.02) brightness(1.1);
  object-position: 44% center;
}

.home-hero-portrait {
  object-position: 70% center;
}

.home-operating-hero,
.about-operating-hero,
.about-product-hero,
.about-control-hero {
  min-height: 760px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-left: 0;
  padding-right: 0;
  background: #030608;
}

.home-operating-hero::before,
.home-operating-hero::after,
.about-operating-hero::before,
.about-operating-hero::after,
.about-product-hero::before,
.about-product-hero::after,
.about-control-hero::before,
.about-control-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-operating-hero::before,
.about-operating-hero::before,
.about-product-hero::before,
.about-control-hero::before {
  z-index: 1;
  background:
    linear-gradient(90deg, #030608 0%, rgba(3, 6, 8, 0.96) 30%, rgba(3, 6, 8, 0.7) 48%, rgba(3, 6, 8, 0.12) 72%, rgba(3, 6, 8, 0.28) 100%),
    linear-gradient(180deg, rgba(3, 6, 8, 0.1) 0%, rgba(3, 6, 8, 0) 48%, #030608 100%);
}

.home-operating-hero::after,
.about-operating-hero::after,
.about-product-hero::after,
.about-control-hero::after {
  z-index: 2;
  background:
    radial-gradient(circle at 68% 36%, rgba(18, 189, 251, 0.1), transparent 36%),
    linear-gradient(180deg, transparent 72%, rgba(18, 189, 251, 0.08) 100%);
  mix-blend-mode: screen;
}

.home-operating-media,
.about-operating-media,
.about-product-media,
.about-control-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.home-operating-media img,
.about-operating-media img,
.about-product-media img,
.about-control-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1) contrast(1.02) brightness(1.02);
}

.home-operating-content,
.about-operating-content,
.about-product-content,
.about-control-content {
  width: 100%;
  min-height: 760px;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: clamp(66px, 8vw, 104px) max(20px, calc((100vw - var(--max)) / 2));
}

.home-operating-content {
  padding-left: clamp(70px, 6vw, 110px);
}

.home-operating-content .section-header,
.about-operating-content .section-header,
.about-product-content .section-header,
.about-control-content .section-header {
  max-width: 760px;
}

.home-operating-content .section-header {
  max-width: 720px;
}

.home-operating-content .proof-card-grid,
.about-operating-content .proof-card-grid,
.about-operating-content .work-with-grid,
.about-product-content .work-with-grid,
.about-control-content .comparison-grid {
  max-width: 1050px;
}

.home-operating-content .proof-card-grid {
  max-width: 940px;
}

.about-control-content .comparison-card {
  background:
    radial-gradient(circle at 88% 0%, rgba(18, 189, 251, 0.1), transparent 36%),
    linear-gradient(180deg, rgba(14, 27, 38, 0.56), rgba(4, 10, 15, 0.42));
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 26px 76px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px) saturate(1.08);
  -webkit-backdrop-filter: blur(14px) saturate(1.08);
}

.section {
  padding-top: clamp(46px, 6vw, 72px);
  padding-bottom: clamp(46px, 6vw, 72px);
}

.section-header {
  max-width: 880px;
  margin-bottom: 26px;
}

.section-header p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

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

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

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

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

.comparison-grid,
.sales-role-grid,
.compact-proof-grid,
.real-life-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.real-life-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

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

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

.process-premium-grid,
.work-with-grid,
.background-grid {
  display: grid;
  gap: 16px;
}

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

.work-with-grid,
.background-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.mini-card,
.note-card,
.premium-card,
.systems-card,
.comparison-card,
.sales-role-card,
.compact-proof-card,
.real-life-card,
.faq-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.service-card,
.mini-card,
.note-card,
.premium-card,
.systems-card,
.proof-card,
.comparison-card,
.sales-role-card,
.compact-proof-card,
.real-life-card,
.faq-card,
.process-premium-card,
.work-with-card,
.background-card,
.loss-card,
.why-built-panel {
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.mini-card:hover,
.note-card:hover,
.premium-card:hover,
.systems-card:hover,
.proof-card:hover,
.comparison-card:hover,
.sales-role-card:hover,
.compact-proof-card:hover,
.real-life-card:hover,
.faq-card:hover,
.process-premium-card:hover,
.work-with-card:hover,
.background-card:hover,
.loss-card:hover,
.why-built-panel:hover {
  transform: translateY(-3px);
  border-color: rgba(18, 189, 251, 0.42);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.comparison-card,
.sales-role-card,
.compact-proof-card,
.real-life-card,
.faq-card {
  padding: 24px;
  color: var(--paper);
}

.compact-proof-card {
  min-height: 216px;
  background:
    radial-gradient(circle at 88% 0%, rgba(18, 189, 251, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(18, 189, 251, 0.1), rgba(255, 255, 255, 0.04));
}

.compact-proof-card span {
  display: block;
  min-height: 58px;
  color: var(--paper);
  font-size: 1.1rem;
  line-height: 1.16;
  font-weight: 950;
}

.compact-proof-card p,
.real-life-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.58;
}

.real-life-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.real-life-card {
  min-height: 260px;
  background:
    linear-gradient(180deg, rgba(16, 30, 41, 0.94), rgba(7, 17, 26, 0.94));
}

.real-life-card h3 {
  min-height: 82px;
  color: var(--paper);
  font-size: clamp(1.08rem, 1.45vw, 1.32rem);
}

.comparison-card {
  min-height: 430px;
  background:
    radial-gradient(circle at 90% 0%, rgba(18, 189, 251, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(16, 30, 41, 0.94), rgba(7, 17, 26, 0.94));
}

.comparison-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.comparison-card li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.76);
}

.comparison-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(18, 189, 251, 0.44);
}

.sales-role-card {
  min-height: 520px;
  display: block;
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(16, 30, 41, 0.96), rgba(7, 17, 26, 0.96));
}

.sales-role-card h3 {
  font-size: clamp(1.3rem, 1.6vw, 1.65rem);
}

.sales-role-card dl {
  display: grid;
  gap: 16px;
  margin: 20px 0 0;
}

.sales-role-card div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.sales-role-card dt {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sales-role-card dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.54;
}

.internal-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-top: 24px;
}

.owner-outcomes-section {
  background:
    radial-gradient(circle at 85% 18%, rgba(18, 189, 251, 0.1), transparent 32%),
    linear-gradient(180deg, #030608, #07111a);
}

.faq-card {
  min-height: 220px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.032));
}

.faq-card h3 {
  color: var(--paper);
  font-size: clamp(1.12rem, 1.5vw, 1.35rem);
}

.faq-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
}

.proof-card {
  position: relative;
  min-height: 194px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 85% 0%, rgba(18, 189, 251, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(18, 189, 251, 0.11), rgba(255, 255, 255, 0.045));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.process-premium-section {
  background:
    radial-gradient(circle at 78% 18%, rgba(18, 189, 251, 0.11), transparent 30%),
    linear-gradient(180deg, #030608, #07111a);
  border-top: 1px solid var(--line);
}

.process-visual-section {
  min-height: 900px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 0;
  background: #030608;
}

.process-visual-section::before,
.process-visual-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.process-visual-section::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 6, 8, 0.08) 0%, rgba(3, 6, 8, 0.08) 42%, rgba(3, 6, 8, 0.74) 55%, rgba(3, 6, 8, 0.96) 100%),
    linear-gradient(180deg, rgba(3, 6, 8, 0.16) 0%, rgba(3, 6, 8, 0) 45%, rgba(3, 6, 8, 0.88) 100%);
}

.process-visual-section::after {
  z-index: 2;
  background:
    radial-gradient(circle at 32% 42%, rgba(18, 189, 251, 0.1), transparent 34%),
    linear-gradient(180deg, transparent 72%, rgba(18, 189, 251, 0.08) 100%);
  mix-blend-mode: screen;
}

.process-visual-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.process-visual-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1) contrast(1.02) brightness(1.02);
}

.process-visual-content {
  width: 100%;
  min-height: 900px;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(420px, 0.78fr) minmax(720px, 1fr);
  gap: clamp(30px, 4vw, 70px);
  align-items: center;
  padding: clamp(112px, 8vw, 142px) max(20px, calc((100vw - 1600px) / 2)) clamp(58px, 6vw, 90px);
}

.process-visual-copy {
  grid-column: 2;
  width: min(100%, 900px);
}

.process-visual-copy .section-header {
  max-width: 860px;
}

.process-visual-copy .process-premium-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.process-visual-copy .process-premium-card {
  min-height: 188px;
  padding: 17px;
  background:
    radial-gradient(circle at 88% 0%, rgba(18, 189, 251, 0.13), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.086), rgba(255, 255, 255, 0.038));
}

.process-visual-copy .process-premium-card::before {
  width: 34px;
  height: 3px;
  margin-bottom: 16px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(18, 189, 251, 0.18));
  box-shadow: 0 0 22px rgba(18, 189, 251, 0.26);
}

.home-stage-bridge {
  min-height: clamp(560px, 48vw, 720px);
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(82px, 9vw, 132px) max(20px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(90deg, rgba(3, 6, 8, 0.96) 0%, rgba(3, 6, 8, 0.91) 34%, rgba(3, 6, 8, 0.76) 62%, rgba(3, 6, 8, 0.86) 100%),
    radial-gradient(circle at 78% 50%, rgba(18, 189, 251, 0.16), transparent 30%),
    #030608;
}

.home-stage-bridge::before,
.home-stage-bridge::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-stage-bridge::before {
  z-index: -2;
  background:
    radial-gradient(circle at 76% 48%, rgba(18, 189, 251, 0.13), transparent 28%),
    linear-gradient(90deg, rgba(3, 6, 8, 0.96) 0%, rgba(3, 6, 8, 0.86) 50%, transparent 78%);
}

.home-stage-bridge::after {
  z-index: -1;
  opacity: 0.66;
  background:
    linear-gradient(90deg, rgba(3, 6, 8, 0.96) 0%, rgba(3, 6, 8, 0.84) 38%, rgba(3, 6, 8, 0.24) 70%, rgba(3, 6, 8, 0.78) 100%),
    linear-gradient(180deg, rgba(3, 6, 8, 0.84) 0%, rgba(3, 6, 8, 0.18) 46%, rgba(3, 6, 8, 0.88) 100%),
    url("/assets/milad-yousif-stage-operator-background.jpg?v=20260530a");
  background-size: auto 116%;
  background-position: 80% center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.home-stage-bridge-copy {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.home-stage-bridge-copy h2 {
  max-width: 740px;
  margin-bottom: 18px;
}

.home-stage-bridge-copy p:not(.eyebrow) {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
  line-height: 1.58;
}

.process-premium-card,
.work-with-card,
.background-card,
.why-built-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.035));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.process-premium-card {
  min-height: 228px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.process-premium-card::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  margin-bottom: 30px;
  border-radius: 999px;
  border: 1px solid rgba(18, 189, 251, 0.62);
  background: rgba(18, 189, 251, 0.13);
  box-shadow: 0 0 34px rgba(18, 189, 251, 0.28);
}

.process-premium-card span,
.background-card span {
  display: block;
  color: var(--paper);
  font-weight: 950;
  line-height: 1.16;
}

.process-premium-card span {
  font-size: 1.15rem;
}

.process-premium-card p,
.work-with-card p,
.background-card p,
.why-built-panel p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.58;
}

.work-with-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(3, 6, 8, 0.78) 0%, rgba(3, 6, 8, 0.88) 42%, rgba(3, 6, 8, 0.96) 100%),
    #030608;
}

.work-with-section::before,
.work-with-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.work-with-section::before {
  z-index: -2;
  opacity: 0.82;
  background-image: url("/assets/milad-yousif-brand-growth-background.png?v=20260530a");
  background-size: auto 84%;
  background-position: -170px center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.work-with-section::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 6, 8, 0.34) 0%, rgba(3, 6, 8, 0.52) 28%, rgba(3, 6, 8, 0.86) 48%, rgba(3, 6, 8, 0.96) 100%),
    linear-gradient(180deg, rgba(3, 6, 8, 0.72) 0%, rgba(3, 6, 8, 0.24) 46%, rgba(3, 6, 8, 0.86) 100%),
    radial-gradient(circle at 24% 42%, rgba(18, 189, 251, 0.12), transparent 32%);
}

.work-with-section > * {
  position: relative;
  z-index: 1;
}

.work-with-section > .section-header,
.work-with-section > .work-with-grid {
  width: min(100%, 800px);
  margin-left: auto;
}

.work-with-section > .work-with-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.work-with-card {
  min-height: 206px;
  padding: 22px;
}

.work-with-card h3 {
  color: var(--paper);
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
}

.operational-background-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.background-card {
  min-height: 210px;
  padding: 22px;
  background:
    radial-gradient(circle at 92% 0%, rgba(18, 189, 251, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(16, 30, 41, 0.95), rgba(3, 6, 8, 0.95));
}

.background-card span {
  min-height: 48px;
  font-size: 1.22rem;
}

.why-built-section {
  background:
    radial-gradient(circle at 16% 24%, rgba(18, 189, 251, 0.08), transparent 30%),
    linear-gradient(180deg, #07111a, #030608);
}

.why-built-section p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.76);
}

.why-built-panel {
  padding: clamp(24px, 4vw, 34px);
  background:
    radial-gradient(circle at 84% 18%, rgba(18, 189, 251, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.why-built-panel span {
  display: block;
  margin-bottom: 16px;
  color: var(--paper);
  font-size: clamp(1.45rem, 2.4vw, 2.35rem);
  line-height: 1.05;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, Inter, ui-sans-serif, sans-serif;
  font-weight: 950;
  text-transform: uppercase;
}

.proof-card::before {
  content: "";
  display: block;
  width: 38px;
  height: 4px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 24px rgba(18, 189, 251, 0.52);
}

.proof-card span {
  display: block;
  min-height: 42px;
  color: var(--paper);
  font-size: 1.12rem;
  line-height: 1.16;
  font-weight: 950;
}

.proof-card p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
  line-height: 1.58;
}

.loss-section {
  background:
    radial-gradient(circle at 88% 20%, rgba(18, 189, 251, 0.08), transparent 30%),
    linear-gradient(180deg, #030608, #07111a);
}

.loss-section p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.74);
}

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

.loss-card {
  min-height: 142px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
}

.loss-card h3 {
  color: var(--paper);
  font-size: 1.1rem;
}

.loss-card p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}

.service-card,
.mini-card,
.note-card,
.premium-card,
.systems-card {
  padding: 24px;
}

.service-card p,
.mini-card p,
.note-card p,
.premium-card p,
.systems-card p {
  color: rgba(255, 255, 255, 0.7);
}

.premium-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(16, 30, 41, 0.96), rgba(7, 17, 26, 0.96));
}

.premium-card h3 {
  font-size: clamp(1.35rem, 1.65vw, 1.7rem);
}

.premium-card dl {
  display: grid;
  gap: 14px;
  margin: 14px 0 0;
}

.premium-card div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.premium-card dt {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.premium-card dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.distinction-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background:
    radial-gradient(circle at 80% 18%, rgba(18, 189, 251, 0.1), transparent 32%),
    linear-gradient(135deg, #030608, #08131d 58%, #0b1822);
}

.distinction-copy p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.distinction-copy strong {
  color: var(--paper);
}

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

.distinction-list span {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: var(--paper);
  font-size: 1.05rem;
  font-weight: 950;
}

.systems-results {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.operator-systems-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 10%, rgba(18, 189, 251, 0.13), transparent 34%),
    linear-gradient(180deg, #07111a, #030608);
}

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

.operator-system-panel {
  min-height: 334px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 0%, rgba(18, 189, 251, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(16, 30, 41, 0.98), rgba(7, 17, 26, 0.98));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.operator-system-panel:hover {
  transform: translateY(-3px);
  border-color: rgba(18, 189, 251, 0.5);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.4), 0 0 42px rgba(18, 189, 251, 0.11);
}

.operator-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.operator-panel-top span,
.operator-panel-top small,
.operator-panel-rows span {
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.operator-panel-top small {
  color: rgba(255, 255, 255, 0.62);
}

.operator-system-panel h3 {
  margin-bottom: 20px;
  color: var(--paper);
  font-size: clamp(1.45rem, 1.9vw, 2rem);
  line-height: 1.08;
}

.operator-panel-rows {
  display: grid;
  gap: 10px;
}

.operator-panel-rows div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(3, 6, 8, 0.3);
}

.operator-panel-rows strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  text-align: right;
}

.owner-dashboard-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.owner-dashboard-mockup {
  max-width: 980px;
  margin: 0 auto;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 0%, rgba(18, 189, 251, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(16, 30, 41, 0.98), rgba(3, 6, 8, 0.98));
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.owner-dashboard-top,
.owner-dashboard-summary,
.owner-dashboard-table div {
  display: grid;
  gap: 12px;
}

.owner-dashboard-top {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.owner-dashboard-top span,
.owner-dashboard-top small,
.owner-dashboard-summary span,
.owner-dashboard-table span {
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.owner-dashboard-top h3 {
  margin: 8px 0 0;
  color: var(--paper);
  font-size: clamp(1.6rem, 2vw, 2.2rem);
}

.owner-dashboard-top small {
  color: rgba(255, 255, 255, 0.62);
}

.owner-dashboard-summary {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 16px;
}

.owner-dashboard-summary div,
.owner-dashboard-table div {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(3, 6, 8, 0.32);
}

.owner-dashboard-summary div {
  display: grid;
  align-content: space-between;
  gap: 14px;
  min-height: 106px;
  padding: 16px;
  overflow: hidden;
}

.owner-dashboard-summary strong {
  display: block;
  color: var(--paper);
  font-size: clamp(1.35rem, 1.85vw, 1.8rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.owner-dashboard-table {
  display: grid;
  gap: 10px;
}

.owner-dashboard-table div {
  grid-template-columns: 0.72fr 1fr 1fr auto;
  align-items: center;
  min-height: 54px;
  padding: 12px 14px;
}

.owner-dashboard-table strong,
.owner-dashboard-table em,
.owner-dashboard-table small {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-style: normal;
}

.owner-dashboard-table em,
.owner-dashboard-table small {
  color: rgba(255, 255, 255, 0.66);
}

.systems-process-flow {
  position: relative;
}

.systems-process-flow::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(18, 189, 251, 0.55), transparent);
  pointer-events: none;
}

.systems-process-flow .process-list {
  position: relative;
}

.systems-process-flow .process-list li {
  position: relative;
}

.systems-process-flow .process-list li::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 29px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 22px rgba(18, 189, 251, 0.44);
}

.systems-authority-statement {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(32px, 5vw, 54px) clamp(20px, 5vw, 42px);
}

.systems-authority-statement p {
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(18, 189, 251, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 0%, rgba(18, 189, 251, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(16, 30, 41, 0.94), rgba(3, 6, 8, 0.94));
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  font-weight: 750;
  line-height: 1.55;
}

.systems-card {
  min-height: 260px;
  background:
    linear-gradient(180deg, rgba(16, 30, 41, 0.95), rgba(7, 17, 26, 0.95));
}

.systems-card span {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.systems-card h3 {
  font-size: clamp(1.45rem, 1.8vw, 1.9rem);
}

.authority-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background:
    linear-gradient(180deg, #030608, #07111a);
}

.authority-copy p {
  max-width: 850px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.07rem;
}

.authority-stats {
  display: grid;
  gap: 12px;
}

.authority-stats span,
.secondary-label {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: var(--paper);
  font-weight: 950;
}

.recruiting-first {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.operator-section p {
  max-width: 760px;
}

.product-secondary {
  background:
    radial-gradient(circle at 18% 22%, rgba(18, 189, 251, 0.1), transparent 30%),
    linear-gradient(180deg, #07111a, #030608);
}

.secondary-label {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--accent);
}

.service-card a {
  color: var(--accent);
  font-weight: 900;
  text-decoration: none;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.section-dark .mini-card,
.section-dark .note-card,
.section-dark .service-card {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.section-dark p,
.section-dark .service-card p,
.section-dark .mini-card p {
  color: rgba(255, 255, 255, 0.78);
}

.proof-stack {
  display: grid;
  gap: 12px;
}

.proof-stack h3 {
  margin-bottom: 4px;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.proof-stack span {
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.07);
  color: var(--paper);
  font-weight: 900;
}

.proof-stack.light span {
  color: var(--paper);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.07);
}

.social-links,
.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social-links {
  margin-top: 24px;
}

.social-links a,
.footer-social-links a {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--paper);
  text-decoration: none;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.social-links a:hover,
.footer-social-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(18, 189, 251, 0.54);
  background: rgba(18, 189, 251, 0.1);
  color: var(--accent);
}

.social-links svg,
.footer-social-links svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: process;
}

.process-list li {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(16, 30, 41, 0.92), rgba(3, 6, 8, 0.92));
  color: var(--paper);
  counter-increment: process;
}

.process-list li::before {
  content: "0" counter(process);
  color: var(--accent);
  font-weight: 950;
}

.process-list span {
  display: block;
  margin: 28px 0 10px;
  font-size: 1.25rem;
  font-weight: 950;
}

.process-list p {
  color: rgba(255, 255, 255, 0.78);
}

.note-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.note-card {
  min-height: 180px;
}

.seo-block {
  background:
    radial-gradient(circle at 75% 20%, rgba(18, 189, 251, 0.09), transparent 34%),
    linear-gradient(180deg, #030608, #07111a);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding-top: 62px;
  padding-bottom: 62px;
}

.cta-band h2 {
  max-width: 760px;
}

.cta-band p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
}

.contact-social-block {
  margin-top: 32px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
}

label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  font: inherit;
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
}

textarea {
  resize: vertical;
}

.form-note,
.policy-content p {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer {
  padding-top: clamp(66px, 8vw, 96px);
  color: var(--paper);
  background:
    radial-gradient(circle at 70% 10%, rgba(18, 189, 251, 0.12), transparent 32%),
    linear-gradient(180deg, #07111a, var(--ink));
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(680px, 1.28fr);
  gap: clamp(28px, 4vw, 52px);
  max-width: var(--max);
  margin: 0 auto;
}

.footer-inner h2 {
  max-width: 650px;
  font-size: clamp(2rem, 3.7vw, 3.45rem);
}

.footer-inner p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-links {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr 1.45fr 1.15fr 1.2fr;
  gap: 20px;
}

.footer-links h3 {
  margin-bottom: 14px;
  font-size: clamp(1rem, 1.04vw, 1.12rem);
  line-height: 1.12;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.footer-links a {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.96rem;
  line-height: 1.42;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

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

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

.footer-bottom {
  max-width: var(--max);
  margin: 56px auto 0;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 22px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom .footer-legal-primary {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 750;
}

.contact-credibility-strip {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1420px) and (min-width: 981px) {
  .process-visual-content {
    grid-template-columns: minmax(360px, 0.75fr) minmax(600px, 1fr);
    padding-left: max(20px, calc((100vw - 1240px) / 2));
    padding-right: max(20px, calc((100vw - 1240px) / 2));
  }

  .process-visual-copy {
    width: min(100%, 760px);
  }

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

  .work-with-section::before {
    background-size: auto 82%;
    background-position: -190px center;
  }

  .work-with-section > .section-header,
  .work-with-section > .work-with-grid {
    width: min(100%, 740px);
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    padding: 22px;
    background: rgba(3, 6, 8, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: grid;
    gap: 14px;
  }

  .site-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

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

  .hero-section {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-visual {
    min-height: 340px;
  }

  .home-immersive-hero,
  .about-immersive-hero,
  .recruiting-immersive-hero,
  .cdl-immersive-hero,
  .automotive-immersive-hero,
  .systems-immersive-hero,
  .growth-immersive-hero,
  .contact-immersive-hero {
    min-height: auto;
    display: grid;
    padding-top: 54px;
    padding-bottom: 0;
  }

  .home-immersive-hero::before,
  .about-immersive-hero::before,
  .recruiting-immersive-hero::before,
  .cdl-immersive-hero::before,
  .automotive-immersive-hero::before,
  .systems-immersive-hero::before,
  .growth-immersive-hero::before,
  .contact-immersive-hero::before {
    background:
      linear-gradient(180deg, rgba(3, 6, 8, 0.98) 0%, rgba(3, 6, 8, 0.9) 58%, rgba(3, 6, 8, 0.28) 100%),
      linear-gradient(90deg, #030608 0%, rgba(3, 6, 8, 0.76) 100%);
  }

  .home-immersive-hero .hero-copy,
  .about-immersive-hero .hero-copy,
  .recruiting-immersive-hero .hero-copy,
  .cdl-immersive-hero .hero-copy,
  .automotive-immersive-hero .hero-copy,
  .systems-immersive-hero .hero-copy,
  .growth-immersive-hero .hero-copy,
  .contact-immersive-hero .hero-copy {
    width: 100%;
    min-height: auto;
    justify-content: flex-start;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 34px;
  }

  .home-hero-media,
  .about-hero-media,
  .recruiting-hero-media,
  .cdl-hero-media,
  .automotive-hero-media,
  .systems-hero-media,
  .growth-hero-media,
  .contact-hero-media {
    position: relative;
    inset: auto;
    width: calc(100% + 40px);
    z-index: 2;
    min-height: 420px;
    margin: 0 -20px;
  }

  .home-hero-media::after,
  .about-hero-media::after,
  .recruiting-hero-media::after,
  .cdl-hero-media::after,
  .automotive-hero-media::after,
  .systems-hero-media::after,
  .growth-hero-media::after,
  .contact-hero-media::after {
    background: linear-gradient(180deg, rgba(3, 6, 8, 0.44) 0%, rgba(3, 6, 8, 0.02) 36%, rgba(3, 6, 8, 0.7) 100%);
  }

  .home-operating-hero,
  .about-operating-hero,
  .about-product-hero,
  .about-control-hero {
    min-height: auto;
  }

  .home-operating-hero::before {
    background:
      linear-gradient(180deg, rgba(3, 6, 8, 0.98) 0%, rgba(3, 6, 8, 0.94) 54%, rgba(3, 6, 8, 0.82) 100%),
      linear-gradient(90deg, rgba(3, 6, 8, 0.96) 0%, rgba(3, 6, 8, 0.82) 100%);
  }

  .home-operating-content,
  .about-operating-content,
  .about-product-content,
  .about-control-content {
    min-height: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .process-visual-section {
    min-height: auto;
  }

  .process-visual-content {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .process-visual-copy {
    grid-column: 1;
    width: min(100%, 720px);
    margin-left: auto;
  }

  .home-stage-bridge {
    min-height: 560px;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .home-stage-bridge::before,
  .home-stage-bridge::after {
    background-attachment: scroll;
  }

  .home-stage-bridge::before {
    background:
      radial-gradient(circle at 74% 48%, rgba(18, 189, 251, 0.1), transparent 30%),
      linear-gradient(90deg, rgba(3, 6, 8, 0.94) 0%, rgba(3, 6, 8, 0.82) 52%, transparent 78%);
  }

  .home-stage-bridge::after {
    background-size: auto 104%;
    background-position: 80% center;
  }

  .work-with-section::before,
  .work-with-section::after {
    background-attachment: scroll;
  }

  .work-with-section::before {
    opacity: 0.58;
    background-size: auto 104%;
    background-position: 12% center;
  }

  .work-with-section > .section-header,
  .work-with-section > .work-with-grid {
    width: min(100%, 760px);
    margin-left: auto;
  }

  .card-grid.three,
  .card-grid.four,
  .premium-card-grid,
  .comparison-grid,
  .sales-role-grid,
  .compact-proof-grid,
  .real-life-grid,
  .faq-grid,
  .systems-results-grid,
  .operator-system-grid,
  .owner-dashboard-summary,
  .proof-card-grid,
  .process-premium-grid,
  .work-with-grid,
  .background-grid,
  .process-list,
  .note-grid,
  .footer-links,
  .authority-section,
  .distinction-section,
  .loss-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .site-header {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 46px;
    height: 36px;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 2.55rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 2.85rem);
  }

  .hero-section {
    padding-top: 42px;
  }

  .home-immersive-hero,
  .about-immersive-hero,
  .recruiting-immersive-hero,
  .cdl-immersive-hero,
  .automotive-immersive-hero,
  .systems-immersive-hero,
  .growth-immersive-hero,
  .contact-immersive-hero {
    padding-top: 42px;
  }

  .home-hero-media,
  .about-hero-media,
  .recruiting-hero-media,
  .cdl-hero-media,
  .automotive-hero-media,
  .systems-hero-media,
  .growth-hero-media,
  .contact-hero-media {
    min-height: 360px;
  }

  .home-hero-portrait,
  .about-hero-portrait,
  .recruiting-hero-bg,
  .cdl-hero-bg,
  .automotive-hero-bg,
  .systems-hero-bg,
  .growth-hero-bg,
  .contact-hero-bg {
    width: 100%;
    height: 100%;
    object-position: 58% 50%;
    object-fit: cover;
  }

  .home-operating-content,
  .about-operating-content,
  .about-product-content,
  .about-control-content {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .process-visual-content {
    padding-top: 72px;
    padding-bottom: 46px;
  }

  .process-visual-copy .process-premium-grid {
    grid-template-columns: 1fr;
  }

  .process-visual-section::before {
    background:
      linear-gradient(180deg, rgba(3, 6, 8, 0.1) 0%, rgba(3, 6, 8, 0.48) 34%, rgba(3, 6, 8, 0.94) 100%),
      linear-gradient(90deg, rgba(3, 6, 8, 0.16), rgba(3, 6, 8, 0.72));
  }

  .home-stage-bridge {
    min-height: 500px;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .home-stage-bridge::before {
    background:
      radial-gradient(circle at 72% 48%, rgba(18, 189, 251, 0.08), transparent 34%),
      linear-gradient(90deg, rgba(3, 6, 8, 0.88) 0%, rgba(3, 6, 8, 0.58) 56%, transparent 86%);
  }

  .home-stage-bridge::after {
    opacity: 0.62;
    background-size: auto 92%;
    background-position: 80% center;
  }

  .home-stage-bridge-copy {
    max-width: 350px;
  }

  .home-stage-bridge-copy h2 {
    max-width: 330px;
  }

  .home-stage-bridge-copy p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .work-with-section::before {
    opacity: 0.48;
    background-size: cover;
    background-position: 38% center;
  }

  .work-with-section > .section-header,
  .work-with-section > .work-with-grid {
    width: 100%;
    margin-left: 0;
  }

  .work-with-section::after {
    background:
      linear-gradient(180deg, rgba(3, 6, 8, 0.72) 0%, rgba(3, 6, 8, 0.82) 34%, rgba(3, 6, 8, 0.94) 100%),
      linear-gradient(90deg, rgba(3, 6, 8, 0.48), rgba(3, 6, 8, 0.9));
  }

  .work-with-section > .work-with-grid {
    grid-template-columns: 1fr;
  }

  .hero-lede {
    font-size: 0.98rem;
    line-height: 1.48;
  }

  .cta-row {
    margin-top: 20px;
  }

  .card-grid.three,
  .card-grid.four,
  .premium-card-grid,
  .comparison-grid,
  .sales-role-grid,
  .compact-proof-grid,
  .real-life-grid,
  .faq-grid,
  .systems-results-grid,
  .operator-system-grid,
  .owner-dashboard-summary,
  .proof-card-grid,
  .process-premium-grid,
  .work-with-grid,
  .background-grid,
  .process-list,
  .note-grid,
  .footer-links,
  .authority-section,
  .distinction-section,
  .loss-grid {
    grid-template-columns: 1fr;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .owner-dashboard-table div {
    grid-template-columns: 1fr;
  }

  .systems-process-flow::before {
    left: 28px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(18, 189, 251, 0.5), transparent);
  }
}
