:root {
  --ink: #03070a;
  --panel: #081218;
  --panel-soft: #0d1a22;
  --paper: #04090d;
  --muted: #8fa0a8;
  --line: rgba(146, 226, 255, 0.16);
  --cyan: #6ee7ff;
  --cyan-soft: rgba(110, 231, 255, 0.16);
  --blue: #0d5d86;
  --coral: #ff6b4a;
  --amber: #e8d6a7;
  --green: #8bcf87;
  --white: #ffffff;
  --radius: 8px;
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  background:
    radial-gradient(circle at 18% 2%, rgba(26, 150, 192, 0.18), transparent 34rem),
    linear-gradient(180deg, #020608 0%, #061014 44%, #020507 100%);
  color: var(--white);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.22;
  background:
    linear-gradient(rgba(110, 231, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 231, 255, 0.045) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, transparent 0%, black 18%, black 74%, transparent 100%);
}

::selection {
  background: rgba(110, 231, 255, 0.28);
  color: var(--white);
}

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

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

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

.site-header {
  position: fixed;
  top: 16px;
  left: clamp(12px, 3vw, 36px);
  right: clamp(12px, 3vw, 36px);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(14px, 2vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: var(--radius);
  background: rgba(3, 7, 10, 0.28);
  color: var(--white);
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(3, 7, 10, 0.72);
  color: var(--white);
  border-color: var(--line);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0;
}

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

.brand-lockup small {
  color: rgba(232, 246, 250, 0.58);
  font-size: 0.62rem;
  font-weight: 700;
}

.brand-mark {
  display: inline-flex;
  width: 54px;
  height: 34px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 22px rgba(7, 16, 20, 0.18);
  transition:
    transform 180ms var(--ease-premium),
    box-shadow 180ms ease;
}

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

.brand:hover .brand-mark {
  transform: translateY(-1px) scale(1.03);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.24),
    0 0 26px rgba(110, 231, 255, 0.16);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 32px);
  color: inherit;
  font-size: 0.92rem;
}

.nav-links a {
  opacity: 0.82;
  transition:
    color 180ms ease,
    opacity 180ms ease,
    text-shadow 180ms ease;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--cyan);
  text-shadow: 0 0 18px rgba(110, 231, 255, 0.42);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(110, 231, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
  cursor: pointer;
  box-shadow: inset 0 0 22px rgba(110, 231, 255, 0.035);
  transition:
    transform 180ms var(--ease-premium),
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(110, 231, 255, 0.38);
  background: rgba(110, 231, 255, 0.07);
  box-shadow:
    inset 0 0 24px rgba(110, 231, 255, 0.045),
    0 0 24px rgba(110, 231, 255, 0.08);
}

.menu-toggle span:not(.sr-only) {
  position: absolute;
  width: 18px;
  height: 1px;
  background: rgba(232, 246, 250, 0.92);
  transition:
    transform 180ms var(--ease-premium),
    opacity 180ms ease;
}

.menu-toggle span:not(.sr-only):nth-of-type(2) {
  transform: translateY(-4px);
}

.menu-toggle span:not(.sr-only):nth-of-type(3) {
  transform: translateY(4px);
}

.site-header.is-menu-open .menu-toggle span:not(.sr-only):nth-of-type(2) {
  transform: rotate(42deg);
}

.site-header.is-menu-open .menu-toggle span:not(.sr-only):nth-of-type(3) {
  transform: rotate(-42deg);
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(110, 231, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(3, 9, 13, 0.86);
  box-shadow:
    0 18px 54px rgba(0, 0, 0, 0.38),
    inset 0 0 34px rgba(110, 231, 255, 0.035);
  backdrop-filter: blur(22px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.985);
  transform-origin: top center;
  transition:
    opacity 180ms ease,
    transform 180ms var(--ease-premium);
}

.mobile-menu a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(232, 246, 250, 0.82);
  font-size: 0.82rem;
  font-weight: 850;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  color: var(--white);
  border-color: rgba(110, 231, 255, 0.32);
  background: rgba(110, 231, 255, 0.075);
  box-shadow: 0 0 22px rgba(110, 231, 255, 0.08);
  outline: 0;
}

.site-header.is-menu-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.header-action,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.header-action {
  border: 1px solid rgba(110, 231, 255, 0.34);
  padding: 0 16px;
  font-size: 0.88rem;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 24px rgba(110, 231, 255, 0.04);
  backdrop-filter: blur(16px);
  transition:
    transform 180ms var(--ease-premium),
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.header-action:hover {
  transform: translateY(-2px);
  border-color: rgba(110, 231, 255, 0.5);
  background: rgba(110, 231, 255, 0.08);
  box-shadow:
    inset 0 0 28px rgba(110, 231, 255, 0.06),
    0 0 30px rgba(110, 231, 255, 0.1);
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}

.hero-image,
.hero-shade,
.hero-grid,
.scan-line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    radial-gradient(circle at 77% 42%, rgba(110, 231, 255, 0.12), transparent 21rem),
    linear-gradient(90deg, rgba(3, 7, 10, 0.94) 0%, rgba(3, 7, 10, 0.68) 43%, rgba(3, 7, 10, 0.1) 78%),
    linear-gradient(0deg, rgba(3, 7, 10, 0.74) 0%, rgba(3, 7, 10, 0) 38%);
  z-index: 1;
}

.hero-grid {
  z-index: 2;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(110, 231, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 231, 255, 0.13) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black 0%, black 54%, transparent 86%);
}

.scan-line {
  z-index: 3;
  opacity: 0.38;
  background: linear-gradient(90deg, transparent 0%, rgba(110, 231, 255, 0.28) 48%, transparent 100%);
  height: 1px;
  top: 22%;
  filter: blur(0.4px);
  animation: scan 7.5s ease-in-out infinite;
}

.hud-ring {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(110, 231, 255, 0.28);
  border-radius: 50%;
  pointer-events: none;
  box-shadow:
    inset 0 0 42px rgba(110, 231, 255, 0.04),
    0 0 42px rgba(110, 231, 255, 0.08);
}

.hud-ring::before,
.hud-ring::after {
  content: "";
  position: absolute;
  inset: 16%;
  border: 1px dashed rgba(110, 231, 255, 0.2);
  border-radius: inherit;
}

.ring-one {
  width: 260px;
  height: 260px;
  right: 17vw;
  top: 23%;
  animation: float 8s ease-in-out infinite;
}

.ring-two {
  width: 150px;
  height: 150px;
  right: 7vw;
  bottom: 19%;
  opacity: 0.72;
  animation: float 9s ease-in-out 1.4s infinite;
}

.hud-panel {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 3px;
  min-width: 172px;
  padding: 12px 14px;
  border: 1px solid rgba(110, 231, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(4, 12, 17, 0.42);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 800;
  backdrop-filter: blur(18px);
  box-shadow: 0 0 36px rgba(110, 231, 255, 0.08);
}

.hud-panel strong {
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 900;
}

.hud-panel-top {
  right: clamp(24px, 6vw, 78px);
  top: 28%;
}

.hud-panel-bottom {
  right: clamp(18px, 16vw, 250px);
  bottom: 15%;
}

.hero-content {
  position: relative;
  z-index: 5;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 84px);
  padding-top: 82px;
  color: var(--white);
  animation: fadeUp 700ms ease both;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 22px rgba(110, 231, 255, 0.34);
}

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

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

h1 {
  max-width: 11ch;
  font-size: clamp(3.25rem, 6vw, 6rem);
  font-weight: 860;
  text-shadow: 0 0 42px rgba(255, 255, 255, 0.12);
}

h2 {
  max-width: 12ch;
  font-size: clamp(2.35rem, 5.6vw, 5.8rem);
  font-weight: 780;
}

h3 {
  font-size: 1.32rem;
  line-height: 1.1;
}

.hero-copy {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  padding: 0 22px;
  transition:
    transform 180ms var(--ease-premium),
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  translate: -120% 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transition: translate 620ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button:focus-visible,
.header-action:focus-visible,
.nav-links a:focus-visible,
.quote-step:focus-visible,
.social-links a:focus-visible {
  outline: 0;
  box-shadow:
    0 0 0 3px rgba(110, 231, 255, 0.12),
    0 0 34px rgba(110, 231, 255, 0.16);
}

.button:hover::after {
  translate: 120% 0;
}

.button.primary::after {
  animation: buttonShimmer 6.4s ease-in-out infinite;
}

.button.primary {
  border-color: rgba(110, 231, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(110, 231, 255, 0.18), rgba(110, 231, 255, 0.05)),
    rgba(7, 18, 25, 0.72);
  color: var(--white);
  box-shadow:
    inset 0 0 22px rgba(110, 231, 255, 0.08),
    0 12px 32px rgba(0, 0, 0, 0.36),
    0 0 28px rgba(110, 231, 255, 0.12);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(16px);
}

.contact-section .button.secondary,
.estimate-section .button.secondary {
  border-color: var(--line);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.full {
  width: 100%;
}

.hero-stats {
  display: flex;
  gap: 10px;
  margin: 48px 0 0;
  padding: 0;
}

.hero-stats div {
  min-width: 104px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(5, 16, 22, 0.46);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 0 22px rgba(110, 231, 255, 0.035);
  transition:
    transform 180ms var(--ease-premium),
    border-color 180ms ease,
    background 180ms ease;
}

.hero-stats div:hover {
  transform: translateY(-3px);
  border-color: rgba(110, 231, 255, 0.34);
  background: rgba(7, 24, 32, 0.58);
}

.hero-stats dt {
  color: var(--amber);
  font-weight: 900;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.section,
.statement {
  position: relative;
  padding: clamp(72px, 11vw, 144px) 0;
}

.section::before,
.statement::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(110, 231, 255, 0.22), transparent);
}

.section-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.statement {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #020608 0%, #071117 100%);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.statement::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background:
    linear-gradient(90deg, transparent 0%, rgba(110, 231, 255, 0.08) 50%, transparent 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 92px);
}

.statement-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: end;
}

.statement p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
}

.statement h2 {
  max-width: 10ch;
  color: var(--white);
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: clamp(32px, 5vw, 58px);
}

.section-heading h2 {
  text-wrap: balance;
}

.section-heading p:not(.eyebrow) {
  max-width: 440px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(7, 18, 25, 0.78);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  transition:
    transform 220ms var(--ease-premium),
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(110, 231, 255, 0.18), transparent 34%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(110, 231, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.03)),
    rgba(8, 22, 30, 0.82);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.34),
    0 0 34px rgba(110, 231, 255, 0.075);
}

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

.service-card .icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(110, 231, 255, 0.24);
  background: rgba(110, 231, 255, 0.08);
  color: rgba(232, 246, 250, 0.92);
  box-shadow: 0 0 24px rgba(110, 231, 255, 0.12);
}

.service-card .icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.92;
}

.service-card .icon-gift svg {
  width: 21px;
  height: 21px;
  fill: rgba(232, 246, 250, 0.08);
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-block: 1px solid var(--line);
  background: #020608;
}

.showcase-item {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 4vw, 48px);
  overflow: hidden;
  border-right: 1px solid var(--line);
  transition:
    background 220ms ease,
    box-shadow 220ms ease;
}

.showcase-item::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    linear-gradient(135deg, rgba(110, 231, 255, 0.12), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent);
  transition: opacity 220ms ease;
}

.showcase-item:hover::before {
  opacity: 1;
}

.showcase-item::after {
  content: "";
  position: absolute;
  inset: auto 24px 24px auto;
  width: 80px;
  height: 80px;
  border-top: 1px solid rgba(110, 231, 255, 0.24);
  border-right: 1px solid rgba(110, 231, 255, 0.24);
  opacity: 0.72;
}

.showcase-item span {
  position: relative;
  z-index: 1;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.showcase-item strong {
  position: relative;
  z-index: 1;
  max-width: 390px;
  font-size: clamp(1.6rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.showcase-item.dark {
  background: linear-gradient(180deg, #09151c 0%, #04090d 100%);
  color: var(--white);
}

.showcase-item.light {
  background: linear-gradient(180deg, #0d1c24 0%, #071016 100%);
  color: var(--white);
}

.showcase-item.accent {
  background: linear-gradient(180deg, #0a2430 0%, #061016 100%);
  color: var(--white);
  border-right: 0;
}

.preview-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 38%, rgba(110, 231, 255, 0.08), transparent 28rem),
    linear-gradient(180deg, #020608 0%, #061014 100%);
}

.preview-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(32px, 8vw, 94px);
  align-items: center;
}

.preview-copy {
  margin-bottom: 0;
}

.product-preview {
  position: relative;
  min-height: clamp(360px, 48vw, 560px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(110, 231, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(110, 231, 255, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 231, 255, 0.065) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(110, 231, 255, 0.12), transparent 18rem),
    rgba(2, 8, 12, 0.74);
  background-size: 58px 58px, 58px 58px, auto, auto;
  box-shadow:
    inset 0 0 70px rgba(110, 231, 255, 0.035),
    0 22px 80px rgba(0, 0, 0, 0.32);
  perspective: 900px;
  isolation: isolate;
}

.product-preview::before,
.product-preview::after {
  content: "";
  position: absolute;
  inset: 24px;
  pointer-events: none;
  border: 1px solid rgba(110, 231, 255, 0.12);
  border-radius: inherit;
}

.product-preview::after {
  inset: 50% 8% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(110, 231, 255, 0.42), transparent);
  border: 0;
  filter: blur(0.3px);
  animation: previewScan 5.8s ease-in-out infinite;
}

.preview-orbit {
  position: absolute;
  width: min(56vw, 420px);
  aspect-ratio: 1;
  border: 1px solid rgba(110, 231, 255, 0.28);
  border-radius: 50%;
  box-shadow:
    inset 0 0 42px rgba(110, 231, 255, 0.035),
    0 0 40px rgba(110, 231, 255, 0.08);
  transform: rotateX(66deg) rotateZ(-18deg);
}

.preview-orbit::before,
.preview-orbit::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px dashed rgba(110, 231, 255, 0.18);
  border-radius: inherit;
}

.preview-orbit::after {
  inset: 38%;
  border-style: solid;
  opacity: 0.68;
}

.preview-object {
  position: relative;
  width: min(34vw, 250px);
  aspect-ratio: 1;
  transform-style: preserve-3d;
  animation: objectRotate 10s var(--ease-premium) infinite;
}

.object-core,
.object-face {
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(232, 246, 250, 0.32);
  border-radius: 22%;
  background:
    linear-gradient(145deg, rgba(232, 246, 250, 0.16), rgba(110, 231, 255, 0.035)),
    rgba(7, 18, 25, 0.88);
  box-shadow:
    inset 0 0 32px rgba(255, 255, 255, 0.04),
    0 0 46px rgba(110, 231, 255, 0.12);
}

.object-core {
  transform: translateZ(54px) rotate(45deg);
}

.object-face {
  opacity: 0.78;
}

.face-a {
  transform: rotateY(62deg) translateZ(36px);
}

.face-b {
  transform: rotateX(62deg) translateZ(-36px);
}

.face-c {
  transform: rotateY(-34deg) rotateX(28deg) translateZ(10px) scale(0.74);
  border-radius: 50%;
}

.preview-readout {
  position: absolute;
  right: clamp(18px, 4vw, 42px);
  bottom: clamp(18px, 4vw, 42px);
  display: grid;
  gap: 4px;
  min-width: 168px;
  padding: 12px 14px;
  border: 1px solid rgba(110, 231, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(3, 10, 14, 0.58);
  backdrop-filter: blur(18px);
  box-shadow: 0 0 32px rgba(110, 231, 255, 0.08);
}

.preview-readout span {
  color: rgba(232, 246, 250, 0.58);
  font-size: 0.68rem;
  font-weight: 900;
}

.preview-readout strong {
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 900;
}

.process-section {
  background:
    radial-gradient(circle at 82% 20%, rgba(110, 231, 255, 0.09), transparent 30rem),
    #04090d;
}

.process-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(32px, 8vw, 96px);
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 110px;
  margin-bottom: 0;
}

.steps {
  position: relative;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(110, 231, 255, 0.24), transparent);
}

.steps li {
  position: relative;
  display: grid;
  min-height: 132px;
  place-items: center;
  padding: 28px clamp(20px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(7, 18, 25, 0.68);
  box-shadow: inset 0 0 36px rgba(110, 231, 255, 0.025);
  backdrop-filter: blur(18px);
  overflow: hidden;
  transition:
    transform 220ms var(--ease-premium),
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.steps li::after {
  content: "";
  position: absolute;
  left: -4px;
  top: 50%;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(110, 231, 255, 0.42);
  border-radius: 50%;
  background: #061014;
  box-shadow: 0 0 18px rgba(110, 231, 255, 0.16);
  transform: translateY(-50%);
}

.steps li::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(110, 231, 255, 0.13), transparent),
    radial-gradient(circle at 50% 0%, rgba(110, 231, 255, 0.1), transparent 54%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.steps li:hover {
  transform: translateY(-3px);
  border-color: rgba(110, 231, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(8, 22, 30, 0.78);
  box-shadow:
    inset 0 0 44px rgba(110, 231, 255, 0.04),
    0 18px 52px rgba(0, 0, 0, 0.32),
    0 0 32px rgba(110, 231, 255, 0.09);
}

.steps li:hover::before {
  opacity: 1;
}

.steps li > div {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 10px;
  max-width: 540px;
  text-align: center;
}

.steps h3 {
  margin: 0;
  line-height: 1.12;
  text-align: center;
}

.steps p {
  margin: 0;
  color: var(--muted);
  text-align: center;
}

.trust-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(110, 231, 255, 0.08), transparent 26rem),
    linear-gradient(180deg, #04090d, #020609 62%, #04090d);
}

.trust-layout {
  display: grid;
  gap: clamp(28px, 5vw, 56px);
}

.trust-copy {
  max-width: 760px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.trust-card,
.faq-panel {
  position: relative;
  border: 1px solid rgba(110, 231, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.022)),
    rgba(5, 15, 21, 0.64);
  box-shadow:
    inset 0 0 34px rgba(110, 231, 255, 0.024),
    0 22px 60px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.trust-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 220px;
  padding: clamp(18px, 2.4vw, 26px);
  transition:
    transform 220ms var(--ease-premium),
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.trust-card::before,
.faq-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(110, 231, 255, 0.14), transparent) top / 100% 1px no-repeat,
    radial-gradient(circle at 15% 0%, rgba(110, 231, 255, 0.11), transparent 48%);
  opacity: 0.58;
}

.trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(110, 231, 255, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.028)),
    rgba(7, 19, 26, 0.78);
  box-shadow:
    inset 0 0 42px rgba(110, 231, 255, 0.034),
    0 24px 70px rgba(0, 0, 0, 0.34),
    0 0 30px rgba(110, 231, 255, 0.075);
}

.trust-card span {
  position: relative;
  z-index: 1;
  width: max-content;
  border: 1px solid rgba(110, 231, 255, 0.18);
  border-radius: 999px;
  padding: 5px 9px;
  color: rgba(110, 231, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 900;
}

.trust-card h3,
.faq-heading h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--white);
  letter-spacing: 0;
}

.trust-card p,
.faq-list p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(232, 246, 250, 0.7);
}

.trust-card-wide {
  grid-column: span 2;
}

.faq-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) 1fr;
  gap: clamp(18px, 3vw, 34px);
  padding: clamp(18px, 3vw, 30px);
}

.faq-heading,
.faq-list {
  position: relative;
  z-index: 1;
}

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

.faq-list details {
  border: 1px solid rgba(110, 231, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(2, 8, 12, 0.62);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.faq-list details[open],
.faq-list details:hover {
  border-color: rgba(110, 231, 255, 0.26);
  background: rgba(5, 16, 22, 0.78);
  box-shadow: inset 0 0 28px rgba(110, 231, 255, 0.025);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  padding: 0 16px;
  color: rgba(232, 246, 250, 0.9);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  display: grid;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(110, 231, 255, 0.16);
  border-radius: 50%;
  color: rgba(110, 231, 255, 0.76);
  font-size: 1rem;
  line-height: 1;
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.faq-list details[open] summary::after {
  border-color: rgba(110, 231, 255, 0.34);
  transform: rotate(45deg);
}

.faq-list p {
  padding: 0 16px 16px;
}

.estimate-section {
  background:
    linear-gradient(135deg, rgba(110, 231, 255, 0.09), transparent 30rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 28%),
    var(--ink);
  color: var(--white);
}

.estimate-layout {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(32px, 8vw, 96px);
  align-items: start;
}

.estimate-copy p:not(.eyebrow) {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.quote-form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(110, 231, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(5, 15, 21, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  overflow: hidden;
  isolation: isolate;
}

.quote-form::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(90deg, transparent, rgba(110, 231, 255, 0.16), transparent) top / 100% 1px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 38%);
  opacity: 0.74;
}

.quote-glow {
  position: absolute;
  inset: -40%;
  z-index: -1;
  opacity: 0.36;
  background:
    radial-gradient(circle at 22% 18%, rgba(110, 231, 255, 0.18), transparent 22rem),
    radial-gradient(circle at 82% 72%, rgba(255, 255, 255, 0.08), transparent 20rem);
  filter: blur(8px);
  animation: quoteDrift 12s ease-in-out infinite;
}

.quote-progress,
.quote-stage,
.quote-nav {
  grid-column: 1 / -1;
}

.quote-progress {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(110, 231, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(1, 6, 9, 0.46);
}

.quote-step {
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  color: rgba(232, 246, 250, 0.58);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.quote-step span {
  display: block;
  margin-bottom: 3px;
  color: rgba(110, 231, 255, 0.62);
  font-size: 0.68rem;
}

.quote-step:hover,
.quote-step.is-active {
  color: var(--white);
  border-color: rgba(110, 231, 255, 0.28);
  background:
    linear-gradient(180deg, rgba(110, 231, 255, 0.13), rgba(110, 231, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    inset 0 0 22px rgba(110, 231, 255, 0.035),
    0 0 24px rgba(110, 231, 255, 0.08);
}

.quote-step.is-complete {
  color: rgba(232, 246, 250, 0.78);
  border-color: rgba(110, 231, 255, 0.14);
  background: rgba(110, 231, 255, 0.045);
}

.quote-step.is-gliding {
  animation: quoteStepGlide 360ms var(--ease-premium);
}

.quote-step:hover {
  transform: translateY(-1px);
}

.quote-stage {
  position: relative;
  min-height: 330px;
}

.form-group {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(110, 231, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.985);
  transition:
    opacity 260ms ease,
    transform 260ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.form-group.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.form-group:not(.is-active) {
  position: absolute;
  inset: 0;
}

.form-group.is-active:hover {
  border-color: rgba(110, 231, 255, 0.18);
  box-shadow: inset 0 0 34px rgba(110, 231, 255, 0.03);
}

.form-group p {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(232, 246, 250, 0.9);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-form label {
  display: grid;
  gap: 8px;
}

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

.quote-form span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 800;
}

select,
input,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(110, 231, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(2, 8, 12, 0.86);
  color: var(--white);
  font: inherit;
  padding: 0 12px;
  outline: none;
  box-shadow: inset 0 0 22px rgba(110, 231, 255, 0.025);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

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

.upload-field {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(110, 231, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(110, 231, 255, 0.07), transparent 62%),
    rgba(255, 255, 255, 0.026);
  box-shadow: inset 0 0 28px rgba(110, 231, 255, 0.02);
}

.upload-field input[type="file"] {
  min-height: auto;
  padding: 12px;
  color: rgba(232, 246, 250, 0.76);
}

.upload-field input[type="file"]::file-selector-button {
  margin-right: 14px;
  border: 1px solid rgba(110, 231, 255, 0.2);
  border-radius: 999px;
  background: rgba(110, 231, 255, 0.08);
  color: rgba(232, 246, 250, 0.92);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  padding: 9px 14px;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.upload-field input[type="file"]::file-selector-button:hover {
  border-color: rgba(110, 231, 255, 0.44);
  box-shadow: 0 0 22px rgba(110, 231, 255, 0.12);
  transform: translateY(-1px);
}

.upload-field small {
  color: var(--muted);
  line-height: 1.55;
}

.ai-helper {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(110, 231, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(110, 231, 255, 0.09), transparent 64%),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 0 30px rgba(110, 231, 255, 0.025);
}

.ai-helper span {
  display: block;
  margin-bottom: 5px;
  color: rgba(232, 246, 250, 0.92);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ai-helper p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.ai-helper .button {
  grid-column: auto;
  min-width: 148px;
}

.ai-output-field textarea {
  min-height: 190px;
}

.ai-status {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: -4px 0 0;
  color: rgba(110, 231, 255, 0.8);
  font-size: 0.86rem;
}

.quote-form.is-thinking .quote-glow {
  opacity: 0.62;
  animation-duration: 5s;
}

.quote-form.is-thinking [data-ai-helper] {
  cursor: wait;
  opacity: 0.72;
}

input::placeholder,
textarea::placeholder {
  color: rgba(143, 160, 168, 0.72);
}

select:focus,
input:focus,
textarea:focus {
  border-color: rgba(110, 231, 255, 0.55);
  background: rgba(2, 10, 15, 0.92);
  box-shadow:
    0 0 0 3px rgba(110, 231, 255, 0.08),
    inset 0 0 28px rgba(110, 231, 255, 0.035);
}

.estimate-result {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(110, 231, 255, 0.2);
  background: rgba(110, 231, 255, 0.06);
  color: var(--white);
  box-shadow: inset 0 0 28px rgba(110, 231, 255, 0.03);
}

.estimate-result span {
  color: var(--muted);
}

.estimate-result strong {
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  line-height: 1;
  color: var(--white);
  text-align: right;
}

.quote-form .button {
  grid-column: 1 / -1;
}

.quote-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quote-form [data-whatsapp] {
  display: none;
  opacity: 0;
  transform: translateY(10px);
}

.submit-status {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: -2px 0 0;
  color: rgba(110, 231, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 750;
}

.quote-form[data-current-step="5"] [data-whatsapp] {
  display: inline-flex;
  animation: revealAction 260ms ease forwards;
}

.quote-form[data-current-step="5"] [data-next-step] {
  display: none;
}

.quote-form[data-current-step="5"] .quote-nav {
  grid-template-columns: 1fr;
}

.quote-form[data-current-step="1"] [data-prev-step] {
  opacity: 0.42;
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
}

.contact-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(110, 231, 255, 0.08), transparent 28rem),
    #050b0f;
}

.contact-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  opacity: 0.26;
  background:
    linear-gradient(rgba(110, 231, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 231, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, black);
}

.contact-grid {
  position: relative;
  z-index: 1;
}

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: #020507;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-copy {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(232, 246, 250, 0.72);
  transition:
    transform 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(110, 231, 255, 0.34);
  background: rgba(110, 231, 255, 0.075);
  color: rgba(255, 255, 255, 0.96);
  box-shadow:
    inset 0 0 22px rgba(110, 231, 255, 0.04),
    0 0 28px rgba(110, 231, 255, 0.1);
}

.social-links svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reveal {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(34px) scale(0.985);
  transition:
    opacity 820ms var(--ease-premium),
    filter 820ms var(--ease-premium),
    transform 820ms var(--ease-premium),
    box-shadow 820ms var(--ease-premium);
  will-change: opacity, filter, transform;
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.service-card.reveal,
.showcase-item.reveal,
.steps li.reveal,
.trust-card.reveal,
.faq-panel.reveal,
.quote-form.reveal,
.product-preview.reveal {
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.16);
}

.service-card.reveal.is-visible,
.showcase-item.reveal.is-visible,
.steps li.reveal.is-visible,
.trust-card.reveal.is-visible,
.faq-panel.reveal.is-visible,
.quote-form.reveal.is-visible,
.product-preview.reveal.is-visible {
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.24),
    0 0 28px rgba(110, 231, 255, 0.045);
}

.service-card.reveal.is-visible:hover,
.steps li.reveal.is-visible:hover,
.trust-card.reveal.is-visible:hover {
  box-shadow:
    inset 0 0 44px rgba(110, 231, 255, 0.04),
    0 24px 70px rgba(0, 0, 0, 0.34),
    0 0 34px rgba(110, 231, 255, 0.09);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scan {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.08;
  }

  45% {
    transform: translateY(48svh);
    opacity: 0.42;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(0, -12px, 0) rotate(8deg);
  }
}

@keyframes quoteDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(4%, -3%, 0) rotate(4deg);
  }
}

@keyframes revealAction {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes buttonShimmer {
  0%,
  58%,
  100% {
    translate: -130% 0;
  }

  72% {
    translate: 130% 0;
  }
}

@keyframes quoteStepGlide {
  from {
    transform: translateY(8px) scale(0.98);
  }

  to {
    transform: translateY(0) scale(1);
  }
}

@keyframes objectRotate {
  0% {
    transform: rotateX(58deg) rotateY(0deg) rotateZ(-32deg);
  }

  50% {
    transform: rotateX(64deg) rotateY(182deg) rotateZ(-18deg);
  }

  100% {
    transform: rotateX(58deg) rotateY(360deg) rotateZ(-32deg);
  }
}

@keyframes previewScan {
  0%,
  100% {
    transform: translateY(-130px);
    opacity: 0;
  }

  42%,
  56% {
    opacity: 0.8;
  }

  72% {
    transform: translateY(130px);
    opacity: 0;
  }
}

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

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

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .menu-toggle,
  .mobile-menu {
    display: grid;
  }

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

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

  .trust-card-wide {
    grid-column: span 2;
  }

  .faq-panel {
    grid-template-columns: 1fr;
  }

  .process-grid,
  .estimate-layout,
  .statement-grid,
  .contact-grid,
  .preview-grid {
    grid-template-columns: 1fr;
  }

  .product-preview {
    min-height: 420px;
  }

  .sticky-heading {
    position: static;
  }

  .hud-panel {
    display: none;
  }

  .ring-one {
    right: -36px;
    top: 24%;
  }

  .ring-two {
    display: none;
  }
}

@media (max-width: 680px) {
  body::before {
    opacity: 0.16;
    background-size: 64px 64px;
  }

  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(3, 7, 10, 0.64);
    backdrop-filter: blur(22px);
  }

  .mobile-menu {
    grid-template-columns: 1fr 1fr;
  }

  .brand {
    gap: 10px;
    font-size: 0.98rem;
  }

  .brand-lockup small {
    display: none;
  }

  .brand-mark {
    width: 48px;
    height: 30px;
  }

  .brand-mark img {
    width: 40px;
  }

  .header-action {
    display: none;
  }

  .hero {
    min-height: 100svh;
    align-items: end;
  }

  .hero-image {
    object-position: 61% center;
  }

  .hero-shade {
    background:
      radial-gradient(circle at 74% 22%, rgba(110, 231, 255, 0.1), transparent 18rem),
      linear-gradient(90deg, rgba(3, 7, 10, 0.84) 0%, rgba(3, 7, 10, 0.5) 100%),
      linear-gradient(0deg, rgba(3, 7, 10, 0.82) 0%, rgba(3, 7, 10, 0.08) 60%);
  }

  .hero-grid {
    background-size: 54px 54px;
    opacity: 0.16;
  }

  .scan-line {
    opacity: 0.26;
  }

  .ring-one {
    width: 180px;
    height: 180px;
    right: -72px;
    top: 24%;
    opacity: 0.54;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
    padding: 112px 0 34px;
  }

  h1 {
    max-width: 10.8ch;
    font-size: clamp(2.85rem, 13vw, 4.25rem);
    line-height: 0.98;
  }

  h2 {
    max-width: 11ch;
    font-size: clamp(2.15rem, 10vw, 3.4rem);
    line-height: 1;
  }

  h3 {
    font-size: 1.18rem;
  }

  .hero-copy {
    max-width: 34ch;
    margin-top: 18px;
    font-size: 1rem;
  }

  .section,
  .statement {
    padding: 64px 0;
  }

  .section-inner {
    width: min(100% - 28px, 1180px);
  }

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

  .section-heading p:not(.eyebrow),
  .estimate-copy p:not(.eyebrow),
  .statement p {
    font-size: 1rem;
  }

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

  .trust-card,
  .trust-card-wide {
    grid-column: auto;
    min-height: auto;
  }

  .faq-panel {
    padding: 16px;
  }

  .faq-list summary {
    min-height: 56px;
    padding: 0 12px;
  }

  .faq-list p {
    padding: 0 12px 14px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding-inline: 18px;
  }

  .hero-stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 28px;
    overflow: visible;
  }

  .hero-stats div {
    min-width: 0;
    padding: 12px 10px;
  }

  .hero-stats dt {
    font-size: 0.94rem;
  }

  .hero-stats dd {
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .service-grid,
  .showcase,
  .quote-form,
  .form-group {
    grid-template-columns: 1fr;
  }

  .service-grid {
    gap: 12px;
  }

  .service-card {
    min-height: auto;
    gap: 20px;
    padding: 22px;
  }

  .service-card .icon {
    width: 44px;
    height: 44px;
  }

  .showcase {
    border-block: 1px solid var(--line);
  }

  .showcase-item {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .showcase-item:last-child {
    border-bottom: 0;
  }

  .statement-grid,
  .process-grid,
  .estimate-layout,
  .preview-grid,
  .contact-grid {
    gap: 28px;
  }

  .product-preview {
    min-height: 330px;
  }

  .preview-object {
    width: min(58vw, 210px);
  }

  .preview-orbit {
    width: min(76vw, 330px);
  }

  .preview-readout {
    right: 18px;
    bottom: 18px;
    min-width: 144px;
  }

  .steps {
    gap: 12px;
  }

  .steps::before,
  .steps li::after {
    display: none;
  }

  .steps li {
    min-height: auto;
    padding: 24px 18px;
  }

  .quote-form {
    gap: 14px;
    padding: 16px;
  }

  .quote-progress {
    grid-template-columns: repeat(5, minmax(88px, 1fr));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 6px;
    padding: 5px;
    -webkit-overflow-scrolling: touch;
  }

  .quote-progress::-webkit-scrollbar {
    display: none;
  }

  .quote-step {
    scroll-snap-align: start;
    min-height: 48px;
    font-size: 0.72rem;
  }

  .quote-stage {
    min-height: 0;
  }

  .form-group {
    gap: 12px;
    padding: 14px;
  }

  .quote-nav {
    grid-template-columns: 1fr;
  }

  .ai-helper {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }

  .ai-helper .button {
    width: 100%;
  }

  .ai-output-field textarea {
    min-height: 170px;
  }

  select,
  input,
  textarea {
    min-height: 52px;
    font-size: 16px;
  }

  textarea {
    min-height: 132px;
  }

  .estimate-result {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px;
  }

  .estimate-result strong {
    text-align: left;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 18px;
  }

  .footer-copy {
    flex-direction: column;
    gap: 6px;
  }

  .social-links {
    width: 100%;
    justify-content: flex-start;
    gap: 12px;
    max-width: none;
  }

  .social-links a {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 420px) {
  .hero-content {
    width: calc(100% - 28px);
  }

  h1 {
    font-size: clamp(2.55rem, 13.5vw, 3.7rem);
  }

  .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .hero-stats div {
    padding: 11px 8px;
  }

  .hero-stats dt {
    font-size: 0.86rem;
  }

  .hero-stats dd {
    font-size: 0.72rem;
  }

  .quote-step {
    min-width: 92px;
  }
}
