:root {
  --bg: #050b16;
  --bg-2: #07111f;
  --panel: rgba(12, 22, 38, 0.78);
  --panel-strong: rgba(14, 27, 47, 0.92);
  --line: rgba(155, 190, 230, 0.18);
  --line-strong: rgba(33, 212, 255, 0.72);
  --text: #f7fbff;
  --muted: #b7c7dc;
  --blue: #2f80ff;
  --cyan: #21d4ff;
  --aqua: #27efe2;
  --green: #48e0a4;
  --amber: #ffc857;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
  --radius: 8px;
  --max: 1180px;
  --header-h: 66px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

@media (min-width: 821px) and (min-height: 700px) {
  html {
    scroll-snap-type: y mandatory;
  }

  main > section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  main > section[id] {
    scroll-margin-top: 0;
  }

  .site-footer {
    scroll-snap-align: end;
  }
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(5, 11, 22, 0.96), rgba(7, 17, 31, 0.97) 46%, #050b16),
    var(--bg);
  color: var(--text);
  cursor: default;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.76), transparent 92%);
}

body.menu-open {
  overflow: hidden;
}

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

body,
p,
h1,
h2,
h3,
li,
span {
  cursor: default;
}

input,
textarea {
  cursor: text;
}

button,
select,
a,
summary,
label,
.privacy-consent input {
  cursor: pointer;
}

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

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

.ambient-canvas,
.noise-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.ambient-canvas {
  z-index: -2;
  opacity: 0.7;
}

.noise-layer {
  z-index: -1;
  opacity: 0.055;
  background-image:
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: screen;
}

.page-shell {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.section {
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: 98px 0;
  position: relative;
}

.section-dark {
  background: transparent;
}

.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: #050b16;
  animation: introExit 1400ms cubic-bezier(0.22, 1, 0.36, 1) 900ms forwards;
}

.intro-mark {
  font-size: 42px;
  font-weight: 950;
  line-height: 1;
}

.intro-mark span:first-child,
.logo span:first-child {
  color: var(--text);
}

.intro-mark span:last-child,
.logo span:last-child {
  color: var(--blue);
}

.intro-line {
  position: absolute;
  width: 180px;
  height: 2px;
  margin-top: 74px;
  overflow: hidden;
  background: rgba(155, 190, 230, 0.16);
}

.intro-line::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  transform: translateX(-100%);
  animation: introLine 1100ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: var(--header-h);
  padding: 13px 24px;
  background: rgba(5, 11, 22, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(22px);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(33, 212, 255, 0.55), transparent);
  opacity: 0.48;
}

.logo {
  display: inline-flex;
  align-items: center;
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  color: var(--muted);
  font-size: 14px;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  transform-origin: center;
  transition: color 200ms ease, transform 200ms ease, text-shadow 200ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 22px;
  height: 2px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  opacity: 0;
  transform: translateX(-50%) scaleX(0.5);
  transition: opacity 200ms ease, transform 200ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--cyan);
}

.main-nav a.is-active {
  transform: scale(1.12);
  text-shadow: 0 0 16px rgba(33, 212, 255, 0.32);
}

.main-nav a.is-active::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(16, 28, 48, 0.88);
  color: var(--text);
}

.button,
.ghost-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 30px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #03101e;
  font-weight: 900;
  box-shadow: 0 16px 48px rgba(35, 150, 255, 0.23);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, filter 180ms ease;
}

.button::after,
.ghost-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.42) 48%, transparent 58% 100%);
  transform: translateX(-120%);
  transition: transform 650ms ease;
}

.button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 64px rgba(35, 150, 255, 0.36);
  filter: saturate(1.1);
}

.button:hover::after,
.ghost-button:hover::after {
  transform: translateX(120%);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button-small {
  min-height: 38px;
  padding: 0 15px;
  font-size: 14px;
}

.button-wide {
  width: 100%;
}

.ghost-button {
  background: rgba(14, 26, 46, 0.9);
  border-color: rgba(226, 238, 255, 0.72);
  color: var(--text);
  box-shadow: none;
}

.premium-surface {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(23, 38, 61, 0.88), rgba(8, 17, 31, 0.92)),
    var(--panel);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.22);
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.premium-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(33, 212, 255, 0.15), transparent 42%, rgba(47, 128, 255, 0.12));
  opacity: 0;
  transition: opacity 240ms ease;
}

.premium-surface:hover {
  transform: translateY(-6px);
  border-color: rgba(33, 212, 255, 0.58);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.3), 0 0 38px rgba(33, 212, 255, 0.14);
}

.premium-surface:hover::before {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 126px 0 84px;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(5, 11, 22, 0.96), rgba(7, 18, 31, 0.84) 43%, rgba(5, 11, 22, 0.72)),
    url("https://images.unsplash.com/photo-1519608487953-e999c86e7455?auto=format&fit=crop&w=2400&q=84");
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 11, 22, 0) 58%, var(--bg) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 118px);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: 68px;
}

.hero-kicker {
  margin: 0 0 16px;
  color: var(--cyan);
  font-weight: 850;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.cta-panel h2 {
  margin: 0;
  font-size: 76px;
  line-height: 0.96;
  font-weight: 950;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy h1 span,
.section-heading h2 span,
.cta-panel h2 span {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy > p:not(.hero-kicker) {
  max-width: 690px;
  margin: 24px 0 0;
  color: #d2deee;
  font-size: 21px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  padding: 8px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(10, 20, 34, 0.82);
  font-size: 13px;
  backdrop-filter: blur(14px);
}

.stars {
  color: var(--cyan);
  letter-spacing: 0;
}

.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  padding: 0;
  margin: 32px 0 0;
  list-style: none;
  font-weight: 800;
}

.hero-bullets li {
  position: relative;
  padding-left: 16px;
}

.hero-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
}

.hero-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-options span {
  padding: 9px 13px;
  border: 1px solid rgba(155, 190, 230, 0.2);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(8, 17, 31, 0.76);
  font-size: 13px;
  font-weight: 850;
}

.hero-stage {
  position: relative;
  display: flex;
  align-items: center;
  min-height: auto;
}

.quote-card {
  position: relative;
  width: 100%;
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(14, 26, 44, 0.94), rgba(8, 17, 31, 0.96)),
    rgba(10, 19, 33, 0.95);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.quote-card:hover {
  transform: translateY(-4px);
}

.quote-card h2 {
  margin: 8px 0 0;
  font-size: 34px;
  line-height: 1.05;
}

.quote-card .muted {
  margin: 6px 0 24px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow .lucide {
  width: 16px;
  height: 16px;
  vertical-align: -3px;
  margin-right: 6px;
}

.muted,
.section-heading p,
.site-footer p {
  color: var(--muted);
}

form {
  display: grid;
  gap: 12px;
}

label span {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(21, 33, 51, 0.82);
  color: var(--text);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

input,
select {
  min-height: 48px;
  padding: 0 13px;
}

textarea {
  min-height: 96px;
  resize: vertical;
  padding: 13px;
}

input::placeholder,
textarea::placeholder,
select:invalid {
  color: #a9b6c8;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(33, 212, 255, 0.78);
  background: rgba(24, 39, 60, 0.95);
  box-shadow: 0 0 0 4px rgba(33, 212, 255, 0.11);
}

.privacy-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.privacy-consent span {
  position: static;
  width: auto;
  height: auto;
  clip: auto;
  overflow: visible;
}

.privacy-consent input {
  width: 18px;
  height: 18px;
  min-height: auto;
  margin: 1px 0 0;
  padding: 0;
  accent-color: var(--cyan);
}

.form-status {
  min-height: 18px;
  margin: 2px 0 0;
  color: var(--cyan);
  font-size: 12px;
  text-align: center;
}

.form-status.is-error {
  color: #ffb4b4;
}

.hero-ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 1;
  overflow: hidden;
  border-block: 1px solid rgba(155, 190, 230, 0.12);
  background: rgba(5, 11, 22, 0.52);
  backdrop-filter: blur(12px);
}

.hero-ticker-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: ticker 38s linear infinite;
}

.hero-ticker-group {
  display: flex;
  flex: 0 0 auto;
  min-width: max-content;
}

.hero-ticker span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 28px;
  color: rgba(247, 251, 255, 0.82);
  font-weight: 850;
  text-transform: uppercase;
}

.section-heading {
  margin-bottom: 52px;
}

.section-heading.centered {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  align-items: end;
  gap: 48px;
}

.section-heading.split > p {
  max-width: 520px;
}

.section-heading h2 {
  font-size: 62px;
}

.section-heading p {
  margin: 16px 0 0;
  font-size: 18px;
}

.premium-grid,
.industry-grid,
.stats-grid,
.reason-grid,
.review-grid {
  display: grid;
  gap: 24px;
}

.services-section {
  overflow: hidden;
  padding: 72px 0 42px;
}

.services-heading {
  margin-bottom: 18px;
}

.services-heading h2 {
  font-size: 56px;
}

.services-heading p {
  margin-top: 10px;
}

.services-heading h2 span {
  position: relative;
  background-size: 220% 100%;
  animation: servicesHeadlineGlow 1600ms cubic-bezier(0.22, 1, 0.36, 1) 360ms both;
  text-shadow: 0 0 0 rgba(33, 212, 255, 0);
}

.service-process {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 22px;
  color: #d7e4f4;
}

.service-process > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.service-process .lucide {
  flex: 0 0 auto;
}

.service-process > span .lucide {
  width: 34px;
  height: 34px;
  padding: 8px;
  color: var(--cyan);
  border: 1px solid rgba(47, 128, 255, 0.46);
  border-radius: 50%;
  background: rgba(47, 128, 255, 0.08);
  box-shadow: 0 0 26px rgba(47, 128, 255, 0.12);
}

.service-process > .lucide {
  --process-opacity: 0.78;
  width: 34px;
  height: 18px;
  color: #85b4e8;
  opacity: 0.78;
}

.service-process > span {
  --process-opacity: 1;
}

.service-process > * {
  opacity: 0;
  transform: translateY(10px) scale(0.94);
}

.service-process.is-visible > * {
  animation: serviceProcessChain 7600ms cubic-bezier(0.22, 1, 0.36, 1) infinite both;
}

.service-process.is-visible > :nth-child(1) {
  animation-delay: 0ms;
}

.service-process.is-visible > :nth-child(2) {
  animation-delay: 180ms;
}

.service-process.is-visible > :nth-child(3) {
  animation-delay: 360ms;
}

.service-process.is-visible > :nth-child(4) {
  animation-delay: 540ms;
}

.service-process.is-visible > :nth-child(5) {
  animation-delay: 720ms;
}

.service-process.is-visible > :nth-child(6) {
  animation-delay: 900ms;
}

.service-process.is-visible > :nth-child(7) {
  animation-delay: 1080ms;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 218px;
  padding: 24px;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--spotlight-x, 50%) var(--spotlight-y, 50%), rgba(33, 212, 255, 0.22), transparent 16rem),
    linear-gradient(145deg, rgba(33, 212, 255, 0.06), transparent 42%);
  opacity: 0;
  transition: opacity 220ms ease;
}

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

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-design {
  grid-column: span 4;
}

.service-responsive {
  grid-column: span 3;
}

.service-management {
  grid-column: span 3;
}

.service-performance {
  grid-column: span 4;
}

.service-development {
  grid-column: span 5;
  min-height: 204px;
  background:
    radial-gradient(circle at 75% 75%, rgba(47, 128, 255, 0.24), transparent 13rem),
    linear-gradient(145deg, rgba(23, 38, 61, 0.88), rgba(8, 17, 31, 0.92)),
    var(--panel);
}

.service-support {
  grid-column: span 3;
}

.service-strategy {
  grid-column: span 3;
}

.service-analytics {
  grid-column: span 3;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(33, 212, 255, 0.32);
  border-radius: var(--radius);
  color: var(--cyan);
  background: linear-gradient(145deg, rgba(47, 128, 255, 0.16), rgba(5, 11, 22, 0.72));
  box-shadow: inset 0 0 24px rgba(33, 212, 255, 0.08), 0 0 26px rgba(47, 128, 255, 0.08);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.service-icon .lucide {
  width: 30px;
  height: 30px;
  stroke-width: 2.2;
  transition: transform 260ms ease, color 220ms ease;
}

.reason-card > .lucide,
.industry-grid .lucide {
  width: 48px;
  height: 48px;
  padding: 12px;
  border-radius: var(--radius);
  color: var(--cyan);
  background: rgba(33, 212, 255, 0.1);
  transition: transform 220ms ease, color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.industry-grid article:hover > .lucide,
.reason-card:hover > .lucide {
  color: #04101d;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 22px rgba(33, 212, 255, 0.28);
  transform: scale(1.06);
}

.service-card:hover .service-icon {
  border-color: rgba(33, 212, 255, 0.74);
  background: linear-gradient(135deg, rgba(33, 212, 255, 0.24), rgba(47, 128, 255, 0.18));
  box-shadow: inset 0 0 26px rgba(33, 212, 255, 0.13), 0 0 28px rgba(33, 212, 255, 0.2);
}

.service-design:hover .service-icon .lucide {
  transform: rotate(-10deg) scale(1.08);
}

.service-responsive:hover .service-icon .lucide {
  animation: servicePhone 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-management:hover .service-icon .lucide {
  animation: serviceGear 1000ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-performance:hover .service-icon .lucide {
  animation: serviceGauge 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-development:hover .service-icon .lucide {
  animation: serviceCode 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-support:hover .service-icon .lucide {
  animation: serviceBounce 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-strategy:hover .service-icon .lucide {
  animation: serviceTarget 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-analytics:hover .service-icon .lucide {
  animation: serviceBars 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card h3 {
  margin: 18px 0 6px;
  font-size: 22px;
  line-height: 1.25;
}

.reason-card h3,
.review-card h3 {
  margin: 24px 0 8px;
  font-size: 22px;
  line-height: 1.25;
}

.service-card p,
.reason-card p,
.review-card span {
  color: #c7d7eb;
}

.service-card p {
  max-width: 420px;
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.48;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 14px;
  margin-top: auto;
  color: #b8c8dd;
  font-size: 13px;
}

.service-tags span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.service-tags .lucide {
  width: 15px;
  height: 15px;
  padding: 2px;
  color: var(--cyan);
  border: 1px solid rgba(33, 212, 255, 0.4);
  border-radius: 50%;
}

.service-tags-dots span + span::before {
  content: "";
  width: 3px;
  height: 3px;
  margin-right: 8px;
  border-radius: 50%;
  background: rgba(33, 212, 255, 0.72);
  box-shadow: 0 0 8px rgba(33, 212, 255, 0.6);
}

.service-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 18px;
}

.service-process-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 3px;
  color: var(--cyan);
  font-weight: 800;
  border-bottom: 1px dotted rgba(33, 212, 255, 0.58);
}

.service-process-link:hover {
  color: var(--text);
}

.service-process-link .lucide {
  width: 18px;
  height: 18px;
}

.industry-grid {
  grid-template-columns: repeat(4, 1fr);
}

.industry-grid article {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 20px;
  font-weight: 850;
}

.industry-grid article:nth-child(3n) .lucide {
  color: var(--green);
  background: rgba(72, 224, 164, 0.11);
}

.industry-grid article:nth-child(4n) .lucide {
  color: var(--amber);
  background: rgba(255, 200, 87, 0.1);
}

.industry-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, 0.95fr);
  align-items: center;
  gap: 72px;
}

.industry-copy,
.industry-board {
  min-width: 0;
}

.industry-copy h2 {
  max-width: 650px;
  margin: 0;
  font-size: 62px;
  line-height: 1.03;
  font-weight: 950;
}

.industry-copy h2 span {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.industry-copy > p {
  max-width: 520px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 22px;
}

.workflow-strip {
  display: grid;
  grid-template-columns: minmax(158px, 1fr) 48px minmax(158px, 1fr);
  align-items: center;
  gap: 14px;
  max-width: 500px;
  margin-top: 54px;
  scroll-margin-top: 110px;
}

.workflow-step {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 12px;
  height: 82px;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid rgba(47, 128, 255, 0.48);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(16, 35, 62, 0.78), rgba(7, 17, 31, 0.86));
  box-shadow: inset 0 0 24px rgba(33, 212, 255, 0.04);
}

.workflow-step .lucide {
  width: 34px;
  height: 34px;
  padding: 7px;
  color: var(--cyan);
  border: 1px solid rgba(33, 212, 255, 0.3);
  border-radius: var(--radius);
  background: rgba(33, 212, 255, 0.08);
}

.workflow-step span {
  color: var(--text);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.16;
}

.workflow-arrow {
  position: relative;
  height: 2px;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(47, 128, 255, 0.32);
}

.workflow-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(33, 212, 255, 0.95), rgba(47, 128, 255, 0.95), transparent);
  filter: drop-shadow(0 0 8px rgba(33, 212, 255, 0.72));
  transform: translateX(-100%);
  animation: workflowPulse 2400ms ease-in-out infinite;
}

.workflow-arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
  filter: drop-shadow(0 0 7px rgba(33, 212, 255, 0.68));
  opacity: 0.62;
  transform: translateY(-50%) rotate(45deg);
}

.industry-benefits {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 18px;
  margin-top: 44px;
  color: var(--muted);
}

.industry-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-weight: 700;
}

.industry-benefits .lucide {
  width: 34px;
  height: 34px;
  padding: 7px;
  color: var(--blue);
  border: 1px solid rgba(47, 128, 255, 0.34);
  border-radius: 50%;
  background: rgba(47, 128, 255, 0.08);
}

.industry-board {
  display: grid;
  gap: 22px;
}

.industry-featured {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 30px;
  min-height: 184px;
  padding: 28px;
  border-color: rgba(47, 128, 255, 0.72);
  background:
    radial-gradient(circle at 24% 30%, rgba(47, 128, 255, 0.18), transparent 16rem),
    linear-gradient(145deg, rgba(16, 35, 62, 0.92), rgba(7, 17, 31, 0.95));
  box-shadow: 0 22px 80px rgba(47, 128, 255, 0.2), inset 0 0 42px rgba(33, 212, 255, 0.04);
}

.industry-featured.is-changing {
  animation: featuredLift 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.industry-featured-icon {
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
  border: 1px solid rgba(47, 128, 255, 0.44);
  border-radius: var(--radius);
  color: var(--cyan);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    rgba(47, 128, 255, 0.08);
  background-size: 22px 22px;
}

.industry-featured-icon .lucide {
  width: 70px;
  height: 70px;
  stroke-width: 1.75;
}

.industry-featured-topline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.industry-featured h3 {
  margin: 0;
  font-size: 34px;
  line-height: 1.05;
}

.industry-featured-topline span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border: 1px solid rgba(47, 128, 255, 0.45);
  border-radius: var(--radius);
  color: var(--cyan);
  background: rgba(47, 128, 255, 0.12);
  font-size: 13px;
  font-weight: 850;
}

.industry-featured:not([data-active-industry="roofing"]) .industry-badge {
  display: none;
}

.industry-featured-topline .lucide {
  width: 15px;
  height: 15px;
}

.industry-featured p {
  max-width: 360px;
  margin: 16px 0 20px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 750;
  line-height: 1.35;
}

.industry-featured a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-size: 18px;
  font-weight: 850;
}

.industry-featured a .lucide {
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

.industry-featured a:hover .lucide {
  transform: translateX(4px);
}

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

.industry-option {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 94px;
  padding: 18px 20px;
  color: var(--text);
  text-align: left;
  font-weight: 850;
}

.industry-option.is-selected {
  display: none;
}

.industry-option[data-industry="local"] {
  grid-column: 1 / -1;
}

.industry-option .lucide {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  padding: 13px;
  border-radius: var(--radius);
  color: var(--cyan);
  background: rgba(33, 212, 255, 0.1);
  transition: transform 220ms ease, color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.industry-option:hover .lucide,
.industry-option:focus-visible .lucide {
  color: #04101d;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 22px rgba(33, 212, 255, 0.28);
  transform: scale(1.06);
}

.work-deck {
  position: relative;
  min-height: 500px;
  margin-top: 12px;
  perspective: 1200px;
}

.work-card {
  --x: 0px;
  --focus-x: 0px;
  --y: 0px;
  --r: 0deg;
  --focus-r: 0deg;
  --z: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: var(--z);
  width: 270px;
  height: 380px;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-strong);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  opacity: 0;
  transform: translate(-50%, calc(-50% + var(--y) + 28px)) translateX(var(--x)) rotate(var(--r)) scale(0.94);
  transform-origin: 50% 92%;
  transition: opacity 700ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1), border-color 260ms ease, box-shadow 260ms ease, filter 260ms ease;
}

.work-card:nth-child(1) {
  --x: -330px;
  --focus-x: -376px;
  --y: 24px;
  --r: -10deg;
  --focus-r: -5deg;
  --z: 1;
}

.work-card:nth-child(2) {
  --x: -198px;
  --focus-x: -228px;
  --y: 10px;
  --r: -6deg;
  --focus-r: -3deg;
  --z: 2;
}

.work-card:nth-child(3) {
  --x: -66px;
  --focus-x: -82px;
  --y: 0px;
  --r: -2deg;
  --focus-r: -1deg;
  --z: 4;
}

.work-card:nth-child(4) {
  --x: 66px;
  --focus-x: 82px;
  --y: 0px;
  --r: 2deg;
  --focus-r: 1deg;
  --z: 5;
}

.work-card:nth-child(5) {
  --x: 198px;
  --focus-x: 228px;
  --y: 10px;
  --r: 6deg;
  --focus-r: 3deg;
  --z: 6;
}

.work-card:nth-child(6) {
  --x: 330px;
  --focus-x: 376px;
  --y: 24px;
  --r: 10deg;
  --focus-r: 5deg;
  --z: 7;
}

.work-card[data-reveal].is-visible {
  opacity: 1;
  transform: translate(-50%, calc(-50% + var(--y))) translateX(var(--x)) rotate(var(--r)) scale(1);
}

.work-deck.is-focused .work-card[data-reveal].is-visible {
  opacity: 0.72;
  transform: translate(-50%, calc(-50% + var(--y))) translateX(var(--focus-x)) rotate(var(--focus-r)) scale(0.94);
}

.work-deck.is-focused .work-card.is-active[data-reveal].is-visible {
  opacity: 1;
  z-index: 30;
  transform: translate(-50%, calc(-58% + var(--y))) translateX(var(--x)) rotate(0deg) scale(1.1);
  border-color: rgba(33, 212, 255, 0.7);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34), 0 0 44px rgba(33, 212, 255, 0.16);
}

.work-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.08);
  transform: scale(1.02);
  transition: transform 700ms ease, filter 700ms ease;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 11, 22, 0.06), rgba(5, 11, 22, 0.88)),
    linear-gradient(90deg, rgba(33, 212, 255, 0.1), transparent 36%);
}

.work-card:hover img,
.work-card.is-active img {
  transform: scale(1.1);
  filter: saturate(1.08) contrast(1.12);
}

.work-card div {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.work-card:hover div,
.work-card.is-active div {
  opacity: 1;
  transform: translateY(0);
}

.work-card p {
  margin: 0 0 2px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.work-card h3 {
  margin: 0;
  font-size: 20px;
}

.position-section {
  overflow: hidden;
  padding: 86px 0 72px;
}

.position-section::before {
  content: "";
  position: absolute;
  inset: 10% 0 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(47, 128, 255, 0.04) 0 1px, transparent 1px 118px),
    repeating-linear-gradient(0deg, rgba(47, 128, 255, 0.032) 0 1px, transparent 1px 118px);
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 82%, transparent);
}

.position-intro {
  max-width: 950px;
  margin-bottom: 58px;
}

.position-intro h2 {
  font-size: 58px;
}

.position-intro p:not(.eyebrow) {
  max-width: 680px;
  margin-inline: auto;
  color: #d2deee;
  font-size: 20px;
}

.position-intro::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  margin: 22px auto 0;
  border-radius: var(--radius);
  background: linear-gradient(90deg, transparent, var(--cyan), var(--blue), transparent);
  box-shadow: 0 0 18px rgba(33, 212, 255, 0.42);
}

.position-timeline {
  isolation: isolate;
  position: relative;
  display: grid;
  gap: 38px;
  max-width: 980px;
  margin: 0 auto;
}

.position-timeline::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 8px;
  left: 306px;
  z-index: 0;
  width: 1px;
  background: rgba(47, 128, 255, 0.62);
  box-shadow:
    0 0 10px rgba(33, 212, 255, 0.22),
    0 0 18px rgba(47, 128, 255, 0.24);
}

.position-timeline::after {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 8px;
  left: 305px;
  z-index: 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 30%,
    rgba(33, 212, 255, 0.24) 42%,
    var(--cyan) 50%,
    rgba(47, 128, 255, 0.8) 58%,
    transparent 72%,
    transparent 100%
  );
  background-size: 100% 240%;
  background-position: 0 -130%;
  box-shadow:
    0 0 14px rgba(33, 212, 255, 0.72),
    0 0 34px rgba(47, 128, 255, 0.42);
  opacity: 0.82;
  pointer-events: none;
  animation: positionLineSweep 4.8s linear infinite;
}

.position-item {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 250px 112px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
}

.position-item::after {
  content: "";
  position: absolute;
  left: 301px;
  top: 50%;
  z-index: 1;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 20px rgba(33, 212, 255, 0.68);
  transform: translateY(-50%);
}

.position-meta {
  justify-self: start;
}

.position-number {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  border: 1px solid rgba(47, 128, 255, 0.52);
  border-radius: var(--radius);
  color: #91c6ff;
  font-size: 20px;
  font-weight: 900;
  background: rgba(47, 128, 255, 0.08);
}

.position-meta .eyebrow {
  margin-bottom: 12px;
}

.position-meta h3 {
  max-width: 230px;
  margin: 0;
  font-size: 34px;
  line-height: 1.12;
}

.position-meta h3 span {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.position-node {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 130px;
  height: 130px;
  margin-left: -22px;
  border: 1px solid rgba(47, 128, 255, 0.5);
  border-radius: 50%;
  background: linear-gradient(145deg, #07121f, #091e36);
  box-shadow: 0 0 42px rgba(47, 128, 255, 0.16);
}

.position-icon {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(33, 212, 255, 0.72);
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(33, 212, 255, 0.08);
  box-shadow: inset 0 0 26px rgba(33, 212, 255, 0.08), 0 0 26px rgba(33, 212, 255, 0.18);
  transition: transform 240ms ease, color 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.position-icon .lucide {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  stroke-width: 2.1;
}

.position-item:hover .position-icon {
  color: #04101d;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 34px rgba(33, 212, 255, 0.38);
}

.position-card {
  margin-left: 18px;
  min-height: 186px;
  padding: 42px 72px 42px 56px;
  border-color: rgba(33, 212, 255, 0.58);
}

.position-card:hover {
  border-color: rgba(33, 212, 255, 0.82);
}

.position-card p {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0;
  color: var(--text);
  font-size: 24px;
  font-weight: 850;
  line-height: 1.45;
}

.position-card p span {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.position-quote {
  position: absolute;
  right: 50px;
  top: 50%;
  z-index: 0;
  width: 72px;
  height: 72px;
  color: rgba(47, 128, 255, 0.13);
  opacity: 0.58;
  transform: translateY(-50%);
  pointer-events: none;
}

.position-assurance {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  max-width: 540px;
  margin: 48px auto 0;
  padding-inline: 28px;
  color: var(--muted);
  border-inline: 1px solid rgba(33, 212, 255, 0.4);
}

.position-assurance .lucide {
  width: 52px;
  height: 52px;
  color: var(--blue);
}

.position-assurance strong {
  display: block;
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
}

.position-assurance p {
  margin: 2px 0 0;
}

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

.stats-grid article {
  display: grid;
  place-items: center;
  min-height: 128px;
  padding: 24px;
}

.stats-grid strong {
  color: var(--blue);
  font-size: 52px;
  line-height: 1;
  transition: color 220ms ease, text-shadow 220ms ease, transform 220ms ease;
}

.stats-grid article:hover strong {
  color: var(--cyan);
  text-shadow: 0 0 18px rgba(33, 212, 255, 0.42);
  transform: scale(1.03);
}

.stats-grid span {
  color: var(--muted);
}

.reason-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 64px;
}

.reason-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 28px 24px;
}

.reason-card h3 {
  margin-top: 0;
}

.review-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

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

.review-card {
  min-height: 230px;
  padding: 30px 32px;
}

.review-card > .lucide {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  color: rgba(33, 212, 255, 0.32);
  transition: color 220ms ease, transform 220ms ease;
}

.review-card:hover > .lucide {
  color: rgba(33, 212, 255, 0.78);
  transform: scale(1.08);
}

.review-card .stars {
  transition: text-shadow 220ms ease;
}

.review-card:hover .stars {
  text-shadow: 0 0 16px rgba(33, 212, 255, 0.58);
}

.review-card p {
  margin: 18px 0 26px;
  max-width: 88%;
  color: var(--text);
  font-size: 16px;
}

.review-card h3 {
  margin: 0;
  font-size: 16px;
}

.faq-shell {
  max-width: 760px;
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(14, 24, 41, 0.92);
  overflow: hidden;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

details[open] {
  border-color: rgba(33, 212, 255, 0.34);
  background: rgba(16, 28, 48, 0.96);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 62px;
  padding: 0 18px 0 24px;
  font-size: 17px;
  font-weight: 850;
  list-style: none;
  transition: color 180ms ease;
}

summary:hover {
  color: var(--cyan);
}

summary > span:first-child {
  flex: 1;
}

summary::-webkit-details-marker {
  display: none;
}

.faq-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(134, 171, 214, 0.22);
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(33, 212, 255, 0.07);
  transition: transform 260ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.faq-arrow .lucide {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
}

.faq-arrow svg {
  pointer-events: none;
}

details[open] .faq-arrow {
  border-color: transparent;
  color: #04101d;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 330ms cubic-bezier(0.22, 1, 0.36, 1);
}

details[open] .faq-content {
  max-height: var(--faq-height, 280px);
}

.faq-content p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 240ms ease, transform 240ms ease;
}

details[open]:not(.is-closing) .faq-content p {
  opacity: 1;
  transform: translateY(0);
}

.final-cta {
  padding-top: 70px;
}

.cta-panel {
  display: grid;
  place-items: center;
  min-height: 486px;
  padding: 60px 28px;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(19, 36, 58, 0.92), rgba(7, 15, 28, 0.96)),
    rgba(9, 18, 32, 0.92);
}

.cta-panel h2 {
  max-width: 720px;
  font-size: 66px;
}

.cta-panel p {
  max-width: 620px;
  margin: 20px auto 12px;
  color: var(--muted);
  font-size: 18px;
}

.cta-note {
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #050a13;
}

.site-footer .page-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
}

.site-footer a:last-child {
  color: var(--cyan);
  font-weight: 800;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.premium-surface[data-reveal] {
  transition: opacity 700ms ease, transform 260ms ease, border-color 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.premium-surface[data-reveal].is-visible:hover {
  transform: translateY(-6px);
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 120;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
}

.cursor-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(33, 212, 255, 0.62);
  border-radius: 50%;
  transition: width 180ms ease, height 180ms ease, border-color 180ms ease, background 180ms ease;
}

body.cursor-ready .cursor-dot,
body.cursor-ready .cursor-ring {
  opacity: 1;
}

body.cursor-hover .cursor-ring {
  width: 58px;
  height: 58px;
  border-color: rgba(33, 212, 255, 0.9);
  background: rgba(33, 212, 255, 0.07);
}

@keyframes introLine {
  to {
    transform: translateX(0);
  }
}

@keyframes introExit {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes ticker {
  to {
    transform: translate3d(-33.333333%, 0, 0);
  }
}

@keyframes servicesHeadlineGlow {
  0% {
    background-position: 100% 0;
    filter: drop-shadow(0 0 0 rgba(33, 212, 255, 0));
  }
  62% {
    filter: drop-shadow(0 0 18px rgba(33, 212, 255, 0.46));
  }
  100% {
    background-position: 0 0;
    filter: drop-shadow(0 0 8px rgba(33, 212, 255, 0.2));
  }
}

@keyframes serviceProcessChain {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.94);
  }
  7%,
  68% {
    opacity: var(--process-opacity, 1);
    transform: translateY(0) scale(1);
  }
  78%,
  100% {
    opacity: 0;
    transform: translateY(-6px) scale(0.97);
  }
}

@keyframes servicePhone {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  45% {
    transform: translateY(-3px) scale(1.12);
  }
}

@keyframes serviceGear {
  to {
    transform: rotate(180deg) scale(1.06);
  }
}

@keyframes serviceGauge {
  0%,
  100% {
    transform: rotate(0deg) translateY(0);
  }
  45% {
    transform: rotate(-8deg) translateY(-2px);
  }
}

@keyframes serviceCode {
  0%,
  100% {
    transform: scaleX(1);
  }
  45% {
    transform: scaleX(1.16);
  }
}

@keyframes serviceBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  35% {
    transform: translateY(-5px);
  }
  68% {
    transform: translateY(2px);
  }
}

@keyframes serviceTarget {
  0%,
  100% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.16);
  }
}

@keyframes serviceBars {
  0%,
  100% {
    transform: translateY(0) scaleY(1);
  }
  45% {
    transform: translateY(-3px) scaleY(1.12);
  }
}

@keyframes workflowPulse {
  0% {
    opacity: 0;
    transform: translateX(-115%);
  }
  18% {
    opacity: 1;
  }
  64% {
    opacity: 1;
    transform: translateX(115%);
  }
  100% {
    opacity: 0;
    transform: translateX(115%);
  }
}

@keyframes workflowPulseVertical {
  0% {
    opacity: 0;
    transform: translateY(-115%);
  }
  18% {
    opacity: 1;
  }
  64% {
    opacity: 1;
    transform: translateY(115%);
  }
  100% {
    opacity: 0;
    transform: translateY(115%);
  }
}

@keyframes featuredLift {
  0% {
    opacity: 0.82;
    transform: translateY(16px) scale(0.97);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes positionLineSweep {
  0%,
  14% {
    opacity: 0;
    background-position: 0 135%;
  }
  22% {
    opacity: 0.92;
  }
  76% {
    opacity: 0.92;
    background-position: 0 -135%;
  }
  88%,
  100% {
    opacity: 0;
    background-position: 0 -135%;
  }
}

@media (hover: hover) and (pointer: fine) {
  body.cursor-ready,
  body.cursor-ready * {
    cursor: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-snap-type: none;
  }

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

  .ambient-canvas,
  .cursor-dot,
  .cursor-ring,
  .intro-screen {
    display: none;
  }
}

@media (max-width: 1180px) {
  .hero-copy h1 {
    font-size: 64px;
  }

  .section-heading h2,
  .cta-panel h2 {
    font-size: 56px;
  }
}

@media (max-width: 1440px), (max-height: 850px) {
  .page-shell {
    width: min(1100px, calc(100% - 44px));
  }

  .section {
    padding: 82px 0;
  }

  .services-section {
    padding: 62px 0 34px;
  }

  .hero {
    padding: 104px 0 74px;
  }

  .hero-content {
    gap: 54px;
  }

  .hero-copy h1 {
    font-size: 62px;
  }

  .hero-copy > p:not(.hero-kicker) {
    font-size: 19px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2,
  .cta-panel h2 {
    font-size: 52px;
  }

  .quote-card {
    padding: 26px;
  }

  .quote-card h2 {
    font-size: 30px;
  }

  form {
    gap: 10px;
  }

  input,
  select {
    min-height: 44px;
  }

  textarea {
    min-height: 82px;
  }

  .service-card {
    min-height: 190px;
    padding: 22px;
  }

  .service-grid {
    gap: 12px;
  }

  .service-icon {
    width: 56px;
    height: 56px;
  }

  .service-icon .lucide {
    width: 30px;
    height: 30px;
  }

  .service-card h3 {
    margin-top: 16px;
    font-size: 22px;
  }

  .service-card p {
    margin-bottom: 22px;
    font-size: 16px;
  }

  .service-tags {
    gap: 10px 14px;
    font-size: 13px;
  }

  .industry-showcase {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.9fr);
    gap: 48px;
  }

  .industry-copy h2 {
    font-size: 52px;
  }

  .industry-copy > p {
    font-size: 19px;
  }

  .workflow-strip {
    grid-template-columns: minmax(146px, 1fr) 42px minmax(146px, 1fr);
    max-width: 470px;
    margin-top: 40px;
  }

  .workflow-step {
    height: 74px;
    padding: 12px 14px;
  }

  .industry-featured {
    grid-template-columns: 126px 1fr;
    min-height: 164px;
    padding: 24px;
    gap: 24px;
  }

  .industry-featured-icon {
    width: 108px;
    height: 108px;
  }

  .industry-featured-icon .lucide {
    width: 58px;
    height: 58px;
  }

  .industry-featured h3 {
    font-size: 30px;
  }

  .industry-featured p {
    font-size: 18px;
  }

  .industry-benefits {
    gap: 14px;
  }

  .industry-benefits span {
    font-size: 14px;
  }

  .industry-option {
    min-height: 82px;
  }

  .work-deck {
    min-height: 410px;
  }

  .work-card {
    width: 220px;
    height: 310px;
  }

  .work-card:nth-child(1) {
    --x: -296px;
    --focus-x: -330px;
  }

  .work-card:nth-child(2) {
    --x: -178px;
    --focus-x: -204px;
  }

  .work-card:nth-child(3) {
    --x: -60px;
    --focus-x: -74px;
  }

  .work-card:nth-child(4) {
    --x: 60px;
    --focus-x: 74px;
  }

  .work-card:nth-child(5) {
    --x: 178px;
    --focus-x: 204px;
  }

  .work-card:nth-child(6) {
    --x: 296px;
    --focus-x: 330px;
  }

  .position-section {
    padding: 74px 0 56px;
  }

  .position-intro {
    margin-bottom: 44px;
  }

  .position-intro h2 {
    font-size: 50px;
  }

  .position-timeline {
    max-width: 900px;
    gap: 30px;
  }

  .position-timeline::before {
    left: 272px;
  }

  .position-timeline::after {
    left: 270px;
  }

  .position-item::after {
    left: 267px;
  }

  .position-item {
    grid-template-columns: 220px 96px minmax(0, 1fr);
    gap: 18px;
  }

  .position-meta h3 {
    font-size: 30px;
  }

  .position-node {
    width: 110px;
    height: 110px;
  }

  .position-icon {
    width: 78px;
    height: 78px;
  }

  .position-icon .lucide {
    width: 38px;
    height: 38px;
  }

  .position-card {
    min-height: 160px;
    margin-left: 14px;
    padding: 32px 58px 32px 46px;
  }

  .position-card p {
    font-size: 21px;
  }

  .position-quote {
    right: 34px;
    width: 58px;
    height: 58px;
  }

  .stats-grid article {
    min-height: 112px;
  }

  .stats-grid strong {
    font-size: 46px;
  }

  .reason-grid {
    margin-top: 44px;
  }
}

@media (max-width: 1040px) {
  .industry-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .service-card {
    grid-column: auto;
  }

  .service-card-wide {
    grid-column: 1 / -1;
  }

  .industry-showcase {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .industry-copy h2 {
    max-width: 760px;
  }

  .hero-content,
  .section-heading.split {
    grid-template-columns: 1fr;
  }

  .hero-content {
    gap: 42px;
  }

  .hero-stage {
    min-height: auto;
  }

  .quote-card {
    position: relative;
    inset: auto;
  }
}

@media (max-width: 820px) {
  html {
    scroll-snap-type: none;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .main-nav,
  .header-actions {
    position: fixed;
    left: 16px;
    right: 16px;
    display: none;
    background: rgba(8, 17, 31, 0.98);
    border: 1px solid var(--line);
    backdrop-filter: blur(18px);
  }

  .main-nav {
    top: 70px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .main-nav a {
    padding: 13px 14px;
  }

  .main-nav a::after {
    left: 14px;
    bottom: 8px;
    transform: scaleX(0.45);
  }

  .main-nav a.is-active {
    transform: none;
  }

  .main-nav a.is-active::after {
    transform: scaleX(1);
  }

  .header-actions {
    top: 296px;
    align-items: stretch;
    justify-content: space-between;
    padding: 12px;
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .menu-open .main-nav,
  .menu-open .header-actions,
  .menu-button {
    display: flex;
  }

  .menu-button {
    align-items: center;
    justify-content: center;
  }

  .hero {
    padding-top: 108px;
  }

  .hero-copy h1 {
    font-size: 54px;
  }

  .section-heading h2,
  .cta-panel h2 {
    font-size: 48px;
  }

  .service-process {
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .service-process > .lucide {
    width: 24px;
  }

  .industry-copy h2 {
    font-size: 46px;
  }

  .workflow-strip {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .workflow-arrow {
    width: 2px;
    height: 34px;
    margin-left: 36px;
    overflow: hidden;
  }

  .workflow-arrow::before {
    transform-origin: top center;
    animation-name: workflowPulseVertical;
  }

  .workflow-arrow::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -1px;
    transform: translateX(-50%) rotate(135deg);
  }

  .industry-featured {
    grid-template-columns: 1fr;
  }

  .industry-featured-icon {
    width: 92px;
    height: 92px;
  }

  .industry-featured-icon .lucide {
    width: 50px;
    height: 50px;
  }

  .industry-selector {
    grid-template-columns: 1fr;
  }

  .industry-option[data-industry="local"] {
    grid-column: auto;
  }

  .review-grid,
  .reason-grid {
    grid-template-columns: 1fr;
  }

  .work-deck {
    display: flex;
    gap: 16px;
    min-height: auto;
    margin-inline: -16px;
    padding: 0 16px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .work-deck::-webkit-scrollbar {
    display: none;
  }

  .work-card {
    position: relative;
    top: auto;
    left: auto;
    flex: 0 0 82%;
    width: auto;
    height: 380px;
    scroll-snap-align: center;
    transform: none;
  }

  .work-card[data-reveal] {
    transform: translateY(24px);
  }

  .work-card[data-reveal].is-visible {
    opacity: 1;
    transform: none;
  }

  .work-deck.is-focused .work-card[data-reveal].is-visible,
  .work-deck.is-focused .work-card.is-active[data-reveal].is-visible {
    opacity: 1;
    transform: none;
  }

  .work-card:hover,
  .work-card[data-reveal].is-visible:hover {
    transform: translateY(-4px) scale(1.02);
  }

  .work-card div {
    opacity: 1;
    transform: none;
  }

  .position-intro h2 {
    font-size: 44px;
  }

  .position-timeline {
    gap: 34px;
  }

  .position-timeline::before {
    left: 40px;
  }

  .position-timeline::after {
    left: 38px;
  }

  .position-item::after {
    left: 35px;
  }

  .position-item {
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 18px;
  }

  .position-meta {
    grid-column: 2;
    grid-row: 1;
  }

  .position-node {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 80px;
    height: 80px;
    margin-left: 0;
  }

  .position-icon {
    width: 62px;
    height: 62px;
  }

  .position-icon .lucide {
    width: 32px;
    height: 32px;
  }

  .position-card {
    grid-column: 2;
    grid-row: 2;
    margin-left: 0;
    min-height: 0;
    padding: 26px;
  }

  .position-card::after,
  .position-quote {
    display: none;
  }

  .position-card p {
    font-size: 20px;
  }

  .position-assurance {
    margin-top: 36px;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 28px, var(--max));
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding-bottom: 88px;
  }

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

  .hero-copy h1 {
    font-size: 44px;
  }

  .hero-copy > p:not(.hero-kicker) {
    font-size: 18px;
  }

  .hero-bullets,
  .hero-options {
    display: grid;
    gap: 12px;
  }

  .quote-card,
  .service-card,
  .review-card,
  .position-card,
  .cta-panel {
    padding: 24px;
  }

  .service-grid,
  .industry-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card-wide {
    grid-column: 1 / -1;
  }

  .service-process {
    justify-content: flex-start;
  }

  .service-process > .lucide {
    display: none;
  }

  .service-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .section-heading.centered {
    text-align: left;
  }

  .section-heading h2,
  .cta-panel h2 {
    font-size: 40px;
  }

  .industry-copy h2 {
    font-size: 40px;
  }

  .industry-copy > p {
    font-size: 18px;
  }

  .industry-benefits {
    display: grid;
    gap: 12px;
  }

  .industry-featured,
  .industry-option {
    padding: 20px;
  }

  .position-intro h2 {
    font-size: 38px;
  }

  .position-intro p:not(.eyebrow) {
    font-size: 18px;
  }

  .position-item {
    grid-template-columns: 1fr;
  }

  .position-timeline::before,
  .position-timeline::after,
  .position-item::after {
    display: none;
  }

  .position-meta,
  .position-node,
  .position-card {
    grid-column: auto;
    grid-row: auto;
  }

  .position-meta h3 {
    max-width: none;
    font-size: 28px;
  }

  .position-number {
    margin-bottom: 16px;
  }

  .position-node {
    justify-self: start;
  }

  .position-card {
    padding: 24px;
  }

  .position-assurance {
    grid-template-columns: 1fr;
    padding-inline: 0;
    border-inline: 0;
  }

  .review-score {
    justify-content: flex-start;
  }

  .site-footer .page-shell {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 0;
  }
}
