:root {
  --ink: #08111f;
  --navy: #050b14;
  --deep: #071321;
  --panel: rgba(11, 26, 44, 0.84);
  --panel-strong: #0c1c31;
  --sapphire: #25b9ff;
  --sapphire-2: #7fdcff;
  --electric: #2f7fff;
  --redline: #ff4f42;
  --gold: #f6c85f;
  --mint: #4ee7c2;
  --paper: #f5f8fc;
  --white: #ffffff;
  --muted: #66758a;
  --line: rgba(114, 155, 190, 0.24);
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

p,
li {
  line-height: 1.65;
}

h1,
h2,
h3,
p,
li {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  padding: 12px clamp(16px, 4vw, 48px);
  color: var(--white);
  background: rgba(4, 9, 17, 0.92);
  border-bottom: 1px solid rgba(127, 220, 255, 0.16);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.brand {
  width: clamp(132px, 14vw, 176px);
}

.brand img {
  width: 100%;
}

.site-header nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 5px;
  border: 1px solid rgba(127, 220, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.065);
}

.site-header nav a {
  padding: 9px 11px;
  color: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 850;
  white-space: nowrap;
}

.site-header nav a:hover,
.site-header nav a[aria-current="page"] {
  color: var(--sapphire-2);
  background: rgba(37, 185, 255, 0.12);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(127, 220, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 900;
}

.button,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button.primary,
.header-cta {
  color: #03111f;
  background: linear-gradient(135deg, var(--sapphire), #6bd7ff);
  box-shadow:
    0 0 0 1px rgba(127, 220, 255, 0.22),
    0 0 28px rgba(37, 185, 255, 0.58),
    0 16px 36px rgba(37, 185, 255, 0.24);
}

.button.primary:hover,
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(127, 220, 255, 0.38),
    0 0 40px rgba(37, 185, 255, 0.72),
    0 20px 44px rgba(37, 185, 255, 0.3);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
}

.button.dark {
  color: var(--ink);
  background: var(--white);
  border-color: rgba(8, 17, 31, 0.08);
}

.button.text {
  min-height: 0;
  padding: 0;
  color: var(--sapphire);
  border-radius: 0;
  background: transparent;
}

.button.mini {
  min-height: 38px;
  padding: 0 15px;
  color: #03111f;
  background: #dff7ff;
  border-color: rgba(37, 185, 255, 0.38);
  box-shadow: 0 10px 28px rgba(37, 185, 255, 0.16);
}

.button.mini:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #dff7ff, #8ee2ff);
}

.hero {
  position: relative;
  min-height: min(720px, calc(100vh - 74px));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 11, 20, 0.98) 0%, rgba(5, 11, 20, 0.82) 43%, rgba(5, 11, 20, 0.46) 72%, rgba(5, 11, 20, 0.72) 100%),
    url("./assets/hero-campaign-motion.png") center / cover no-repeat,
    #050b14;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(5, 11, 20, 0.22) 52%, rgba(5, 11, 20, 0.96) 100%),
    repeating-linear-gradient(90deg, rgba(127, 220, 255, 0.07) 0 1px, transparent 1px 130px);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: -20%;
  right: -20%;
  bottom: 11%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(37, 185, 255, 0.9), rgba(255, 79, 66, 0.9), transparent);
  opacity: 0.86;
  filter: blur(1px);
  animation: roadPulse 4.8s ease-in-out infinite;
}

.hero-content,
.section-inner,
.footer-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  min-width: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(82px, 10vw, 128px) 0 clamp(82px, 9vw, 120px);
}

.hero-copy-block {
  max-width: 790px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sapphire-2);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 830px;
  font-size: clamp(2.9rem, 5.8vw, 5.55rem);
}

.hero-copy {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.13rem, 2vw, 1.38rem);
}

.accent-line {
  color: var(--sapphire-2);
  text-shadow: 0 0 28px rgba(37, 185, 255, 0.4);
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
  max-width: 100%;
}

section {
  padding: clamp(70px, 8vw, 118px) 0;
}

.compact-section {
  padding: clamp(48px, 6vw, 76px) 0;
}

.light-section {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 251, 255, 0.98)),
    radial-gradient(circle at 88% 12%, rgba(37, 185, 255, 0.12), transparent 24%);
}

.pale-section {
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 8%, rgba(37, 185, 255, 0.14), transparent 28%),
    #edf5fb;
}

.dark-section {
  color: var(--white);
  background:
    radial-gradient(circle at 16% 14%, rgba(37, 185, 255, 0.15), transparent 26%),
    radial-gradient(circle at 84% 24%, rgba(255, 79, 66, 0.1), transparent 22%),
    linear-gradient(135deg, #050b14, #0b1a2c 55%, #050b14);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading h2,
.page-hero h1,
.lead-copy h2 {
  max-width: 760px;
  font-size: clamp(2.15rem, 4.1vw, 3.85rem);
}

.section-heading p,
.page-hero p,
.lead-copy p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.dark-section .section-heading p,
.dark-section p,
.dark-section li,
.page-hero p {
  color: rgba(255, 255, 255, 0.76);
}

.page-hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 11, 20, 0.95), rgba(5, 11, 20, 0.74)),
    url("./assets/hero-campaign-motion.png") center / cover no-repeat,
    var(--navy);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 185, 255, 0.8), transparent);
}

.page-hero .section-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: 34px;
  align-items: end;
}

.page-hero .hero-simple {
  display: block;
  max-width: 960px;
}

.page-hero .hero-simple p {
  max-width: 720px;
}

.motion-divider {
  position: relative;
  height: 42px;
  overflow: hidden;
  background:
    linear-gradient(90deg, #050b14, #0b1a2c 50%, #050b14),
    var(--navy);
}

.motion-divider::before,
.motion-divider::after {
  content: "";
  position: absolute;
  left: -20%;
  right: -20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 185, 255, 0.82), rgba(255, 79, 66, 0.66), transparent);
  filter: blur(0.5px);
  animation: streakMove 5.4s ease-in-out infinite;
}

.motion-divider::before {
  top: 15px;
}

.motion-divider::after {
  top: 27px;
  animation-delay: -2.1s;
  opacity: 0.58;
}

.grid-2,
.grid-3,
.grid-4,
.case-grid,
.team-grid,
.service-grid,
.machine-grid,
.proof-grid {
  display: grid;
  gap: 18px;
}

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

.grid-3,
.case-grid,
.service-grid,
.machine-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: start;
}

.card,
.service-card,
.case-card,
.machine-card,
.team-card,
.automation-card,
.seo-card,
.story-card,
.proof-card {
  border: 1px solid rgba(102, 117, 138, 0.2);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 18px 52px rgba(8, 17, 31, 0.07);
}

.card,
.service-card,
.machine-card,
.automation-card,
.seo-card,
.story-card,
.proof-card {
  padding: 25px;
}

.dark-card,
.machine-card,
.automation-card {
  color: var(--white);
  border-color: rgba(127, 220, 255, 0.2);
  background: rgba(255, 255, 255, 0.075);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 28px rgba(37, 185, 255, 0.08);
}

.card h3,
.service-card h3,
.case-card h3,
.machine-card h3,
.team-card h3,
.automation-card h3,
.seo-card h3,
.story-card h3,
.proof-card h3 {
  font-size: 1.32rem;
  line-height: 1.18;
}

.card p,
.service-card p,
.case-card p,
.machine-card p,
.team-card p,
.automation-card p,
.seo-card p,
.story-card p,
.proof-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.dark-card p,
.machine-card p,
.automation-card p {
  color: rgba(255, 255, 255, 0.74);
}

.tag,
.kicker {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-bottom: 14px;
  padding: 0 10px;
  color: #065f80;
  background: #dff7ff;
  border: 1px solid #bfecff;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.dark-section .tag,
.machine-card .tag {
  color: var(--sapphire-2);
  background: rgba(37, 185, 255, 0.1);
  border-color: rgba(127, 220, 255, 0.24);
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sapphire), var(--redline));
  opacity: 0;
  transition: opacity 180ms ease;
}

.service-card:hover::after {
  opacity: 1;
}

.service-path {
  border-color: rgba(37, 185, 255, 0.42);
  background:
    linear-gradient(135deg, rgba(37, 185, 255, 0.1), transparent),
    var(--white);
}

.image-card {
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 224px;
  object-fit: cover;
  background: #dbeafe;
}

.image-card .card-body {
  padding: 22px;
}

.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  padding: 0;
  list-style: none;
}

.metric-pill {
  min-width: 138px;
  padding: 13px 14px;
  color: var(--white);
  border: 1px solid rgba(127, 220, 255, 0.24);
  border-radius: 9px;
  background: rgba(7, 19, 33, 0.78);
}

.metric-pill strong {
  display: block;
  color: var(--sapphire-2);
  font-size: 1.45rem;
}

.machine-flow {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.machine-step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(127, 220, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.065);
}

.tool-grid .machine-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
  gap: 13px;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff, #f6fbff);
  border-color: rgba(37, 185, 255, 0.18);
}

.tool-grid .machine-card:nth-child(even) {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 12%, rgba(37, 185, 255, 0.18), transparent 31%),
    linear-gradient(135deg, #071321, #10233a);
  border-color: rgba(127, 220, 255, 0.24);
}

.tool-grid .machine-card p {
  margin-top: 0;
  color: var(--muted);
}

.tool-grid .machine-card:nth-child(even) p {
  color: rgba(255, 255, 255, 0.76);
}

.tool-logo {
  width: auto;
  max-width: 178px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
}

.tool-logo.text-mark {
  max-width: 148px;
  height: 40px;
}

.tool-note {
  color: #0b6790 !important;
  font-weight: 900;
}

.tool-system-note {
  margin-top: auto !important;
  color: #31516a !important;
  font-size: 0.92rem;
  font-weight: 850;
}

.tool-grid .machine-card:nth-child(even) .tool-note {
  color: var(--sapphire-2) !important;
}

.tool-grid .machine-card:nth-child(even) .tool-system-note {
  color: rgba(255, 255, 255, 0.74) !important;
}

.insights-hero {
  background:
    linear-gradient(90deg, rgba(5, 11, 20, 0.96), rgba(5, 11, 20, 0.76)),
    url("./assets/hero-campaign-motion.png") center / cover no-repeat,
    var(--navy);
}

.insight-stack {
  display: grid;
  gap: 14px;
}

.insight-mini-card,
.featured-post,
.editorial-note,
.insight-card,
.post-row {
  border: 1px solid rgba(102, 117, 138, 0.2);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 18px 52px rgba(8, 17, 31, 0.07);
}

.insight-mini-card {
  padding: 20px;
}

.insight-mini-card h3,
.featured-post h3,
.editorial-note h3,
.insight-card h3,
.post-row h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.15;
}

.featured-insight {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 18px;
}

.featured-post {
  min-height: 360px;
  padding: clamp(24px, 4vw, 40px);
  color: var(--white);
  background:
    radial-gradient(circle at 16% 12%, rgba(37, 185, 255, 0.22), transparent 30%),
    linear-gradient(135deg, #071321, #10233a 58%, #0c1728);
  border-color: rgba(127, 220, 255, 0.24);
}

.featured-post p,
.editorial-note p,
.insight-card p,
.post-row p {
  margin: 14px 0 0;
  color: var(--muted);
}

.featured-post p {
  color: rgba(255, 255, 255, 0.76);
}

.editorial-note,
.insight-card {
  padding: 24px;
}

.editorial-note {
  align-self: stretch;
  background: linear-gradient(180deg, #ffffff, #f6fbff);
}

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

.post-list {
  display: grid;
  gap: 14px;
}

.post-row {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
  align-items: center;
  padding: 22px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(127, 220, 255, 0.2);
}

.post-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.post-meta,
.blog-meta {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
  font-weight: 800;
}

.post-meta {
  margin: -2px 0 12px !important;
}

.post-row.is-live {
  border-color: rgba(127, 220, 255, 0.34);
  background:
    radial-gradient(circle at 12% 18%, rgba(37, 185, 255, 0.18), transparent 32%),
    rgba(255, 255, 255, 0.095);
}

.post-row a:not(.button) {
  color: var(--sapphire-2);
  font-weight: 950;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.blog-meta span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(127, 220, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.blog-article {
  background:
    linear-gradient(180deg, #ffffff, #f6fbff 62%, #eef7fd);
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.article-sidebar {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 16px;
}

.article-nav {
  display: grid;
  gap: 9px;
  margin: 14px 0 0;
  padding-left: 21px;
}

.article-nav a {
  color: #184b68;
  font-weight: 850;
}

.article-body {
  display: grid;
  gap: clamp(28px, 4vw, 44px);
}

.article-lede {
  margin: 0;
  color: #213047;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.55;
}

.article-section {
  position: relative;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(102, 117, 138, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 52px rgba(8, 17, 31, 0.06);
}

.article-section h2 {
  margin-top: 8px;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
}

.article-section p {
  color: #41566e;
}

.step-label {
  color: var(--sapphire);
  font-size: 0.82rem;
  font-weight: 950;
}

.article-cta {
  padding: clamp(24px, 4vw, 40px);
  color: var(--white);
  border: 1px solid rgba(127, 220, 255, 0.28);
  border-radius: 14px;
  background:
    radial-gradient(circle at 14% 16%, rgba(37, 185, 255, 0.2), transparent 34%),
    linear-gradient(135deg, #071321, #10233a 68%, #071321);
  box-shadow: 0 22px 60px rgba(8, 17, 31, 0.16);
}

.article-cta h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.article-cta p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.76);
}

.step-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #03111f;
  border-radius: 999px;
  background: var(--sapphire);
  font-weight: 950;
}

.machine-card a,
.dark-section a:not(.button) {
  color: var(--sapphire-2);
  font-weight: 900;
}

.team-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.44fr) minmax(0, 0.56fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  margin-bottom: 22px;
  padding: clamp(22px, 3vw, 34px);
  color: var(--white);
  border: 1px solid rgba(127, 220, 255, 0.2);
  border-radius: 12px;
  background:
    radial-gradient(circle at 18% 18%, rgba(37, 185, 255, 0.2), transparent 30%),
    linear-gradient(135deg, #071321, #0c1c31);
}

.team-feature img,
.team-card img {
  width: 100%;
  object-fit: cover;
  background: #dbeafe;
}

.team-feature img {
  aspect-ratio: 4 / 5;
  border-radius: 10px;
  object-position: center 22%;
}

.team-card {
  overflow: hidden;
}

.team-card img {
  aspect-ratio: 1 / 1;
}

.team-card .card-body {
  padding: 20px;
}

.role {
  display: block;
  margin: 7px 0 0;
  color: var(--sapphire);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.recognitions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  padding: 0;
  list-style: none;
}

.recognitions li {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(127, 220, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 800;
}

.team-card .recognitions li {
  color: #0e3854;
  border-color: rgba(37, 185, 255, 0.22);
  background: #ecf9ff;
}

.case-article {
  background: var(--white);
}

.case-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 34px;
  align-items: start;
}

.case-sidebar {
  position: sticky;
  top: 98px;
}

.case-sidebar img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  padding: 20px;
  border: 1px solid rgba(102, 117, 138, 0.18);
  border-radius: 10px;
  background: #f2f6fb;
}

.case-body {
  display: grid;
  gap: 22px;
}

.case-callout {
  padding: clamp(18px, 3vw, 26px);
  color: var(--white);
  border: 1px solid rgba(127, 220, 255, 0.28);
  border-radius: 10px;
  background:
    radial-gradient(circle at 14% 16%, rgba(37, 185, 255, 0.18), transparent 34%),
    linear-gradient(135deg, #071321, #10233a);
  box-shadow: 0 18px 48px rgba(8, 17, 31, 0.14);
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  font-weight: 950;
  line-height: 1.15;
}

.case-body h2 {
  font-size: clamp(1.75rem, 3vw, 2.65rem);
}

.check-list {
  margin: 18px 0 0;
  padding-left: 21px;
}

.check-list li {
  margin: 9px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 28px;
  align-items: start;
}

.direct-contact {
  display: grid;
  gap: 14px;
}

.contact-method {
  padding: 18px;
  border: 1px solid rgba(102, 117, 138, 0.2);
  border-radius: 10px;
  background: var(--white);
}

.contact-method a {
  overflow-wrap: anywhere;
}

.contact-method strong {
  display: block;
  margin-bottom: 4px;
}

.lead-form {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(37, 185, 255, 0.24);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(8, 17, 31, 0.1);
}

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

.form-section {
  grid-column: 1 / -1;
  padding: 18px;
  border: 1px solid rgba(102, 117, 138, 0.16);
  border-radius: 10px;
  background: linear-gradient(180deg, #fbfdff, #f5faff);
}

.form-section h3 {
  margin-bottom: 14px;
  font-size: 1.08rem;
}

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

.field,
.field.full {
  display: grid;
  gap: 7px;
}

.field.full,
.choice-group,
.form-actions {
  grid-column: 1 / -1;
}

label,
legend {
  color: #26364a;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  border: 1px solid rgba(102, 117, 138, 0.28);
  border-radius: 8px;
  background: #fbfdff;
  font: inherit;
}

textarea {
  resize: vertical;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.choice {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  padding: 12px;
  border: 1px solid rgba(102, 117, 138, 0.22);
  border-radius: 8px;
  background: #f7fbff;
  font-weight: 750;
}

.choice input {
  width: auto;
  min-height: 0;
  margin-top: 4px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 8px;
}

.fine-print {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-helper {
  margin: -2px 0 18px;
  color: var(--muted);
}

.score-panel {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
}

.thank-you-section {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
}

.confirmation-panel,
.brief-result {
  display: grid;
  gap: 26px;
  align-items: center;
}

.confirmation-panel {
  grid-template-columns: minmax(170px, 0.28fr) minmax(0, 0.72fr);
  margin-bottom: 34px;
}

.confirmation-panel h1 {
  font-size: clamp(2.35rem, 4.8vw, 4.8rem);
}

.status-mark {
  display: grid;
  place-items: center;
  width: clamp(132px, 16vw, 174px);
  aspect-ratio: 1;
  color: var(--white);
  border: 1px solid rgba(127, 220, 255, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(37, 185, 255, 0.12) 0 52%, transparent 53%),
    linear-gradient(135deg, rgba(37, 185, 255, 0.52), rgba(127, 220, 255, 0.12));
  box-shadow: 0 0 44px rgba(37, 185, 255, 0.24);
}

.status-mark strong {
  color: var(--white);
  font-size: clamp(1.15rem, 2.3vw, 1.85rem);
}

.brief-result {
  grid-template-columns: minmax(0, 1fr);
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(127, 220, 255, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
}

pre {
  max-height: 380px;
  overflow: auto;
  padding: 16px;
  color: #dff7ff;
  border: 1px solid rgba(127, 220, 255, 0.2);
  border-radius: 10px;
  background: #06101d;
  white-space: pre-wrap;
}

.lead-toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  max-width: 360px;
  padding: 16px;
  color: var(--white);
  border: 1px solid rgba(127, 220, 255, 0.24);
  border-radius: 10px;
  background: rgba(7, 19, 33, 0.94);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
  transform: translateY(140%);
  transition: transform 200ms ease;
}

.lead-toast[aria-hidden="false"] {
  transform: translateY(0);
}

footer {
  color: rgba(255, 255, 255, 0.78);
  background: #040911;
  border-top: 1px solid rgba(127, 220, 255, 0.16);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(130px, 0.45fr) minmax(150px, 0.5fr) minmax(220px, 0.7fr);
  gap: clamp(26px, 5vw, 64px);
  padding: 46px 0;
}

footer img {
  width: 170px;
  margin-bottom: 16px;
}

footer h3 {
  color: var(--white);
  font-size: 1rem;
}

footer ul {
  display: grid;
  gap: 9px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

footer a:hover {
  color: var(--sapphire-2);
}

footer a {
  overflow-wrap: anywhere;
}

[data-reveal] {
  opacity: 1;
  transform: none;
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes roadPulse {
  0%,
  100% {
    transform: translateX(-4%);
    opacity: 0.52;
  }
  50% {
    transform: translateX(4%);
    opacity: 0.95;
  }
}

@keyframes streakMove {
  0%,
  100% {
    transform: translateX(-5%);
    opacity: 0.42;
  }
  50% {
    transform: translateX(5%);
    opacity: 0.94;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .site-header nav {
    position: fixed;
    inset: 68px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 14px;
    background: rgba(4, 9, 17, 0.96);
  }

  body.menu-open .site-header nav {
    display: flex;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .header-cta {
    display: none;
  }

  .grid-3,
  .grid-4,
  .case-grid,
  .service-grid,
  .machine-grid,
  .team-grid,
  .proof-grid,
  .insight-grid,
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-hero .section-inner,
  .split,
  .featured-insight,
  .post-row,
  .blog-layout,
  .case-layout,
  .contact-layout,
  .score-panel,
  .confirmation-panel,
  .team-feature {
    grid-template-columns: 1fr;
  }

  .case-sidebar {
    position: static;
  }

  .article-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    width: auto;
    max-width: 358px;
    margin-left: 16px;
    margin-right: 16px;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .section-inner,
  .footer-inner {
    width: auto;
    max-width: 358px;
    margin-left: 16px;
    margin-right: 16px;
  }

  .hero-copy-block,
  .page-hero .hero-simple,
  .section-heading,
  .lead-copy,
  .page-hero .section-inner > *,
  .grid-2 > *,
  .grid-3 > *,
  .grid-4 > *,
  .service-grid > *,
  .machine-grid > *,
  .proof-grid > *,
  .insight-grid > *,
  .case-grid > * {
    min-width: 0;
  }

  h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(1.95rem, 8vw, 2.35rem);
    line-height: 1.04;
  }

  .section-heading h2,
  .page-hero h1,
  .lead-copy h2 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(1.85rem, 7.6vw, 2.18rem);
    line-height: 1.06;
  }

  .accent-line {
    display: block;
  }

  .hero-copy,
  .page-hero p,
  .section-heading p,
  .lead-copy p {
    width: 100%;
    max-width: 100%;
    font-size: 0.98rem;
  }

  .hero-actions,
  .cta-row,
  .form-actions {
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .header-cta {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.15;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .case-grid,
  .service-grid,
  .machine-grid,
  .team-grid,
  .proof-grid,
  .insight-grid,
  .footer-inner,
  .form-grid,
  .section-fields,
  .choices {
    grid-template-columns: 1fr;
  }

  .machine-step {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .machine-step .button {
    grid-column: 1 / -1;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
