/* 1. Variables */
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins-400.woff2") format("woff2");
  font-display: swap;
  font-weight: 400;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins-500.woff2") format("woff2");
  font-display: swap;
  font-weight: 500;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins-600.woff2") format("woff2");
  font-display: swap;
  font-weight: 600;
}
@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/poppins-700.woff2") format("woff2");
  font-display: swap;
  font-weight: 700;
}

:root {
  --color-bg: #f4f7f8;
  --color-surface: #ffffff;
  --color-surface-alt: #eaf0f3;
  --color-surface-warm: #f7f3ea;
  --color-text: #142333;
  --color-text-muted: #42566a;
  --color-accent: #006f9f;
  --color-accent-dark: #005f8c;
  --color-navy: #082d59;
  --color-navy-deep: #041f3d;
  --color-border: #c8d3da;
  --color-border-strong: #8093a1;
  --color-success: #237a43;
  --color-warning: #9a6500;
  --color-error: #b42318;
  --color-focus: #ffb600;
  --color-on-dark: #f5f9fc;
  --color-on-dark-muted: #c6d6e2;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  --font-xs: 12px;
  --font-sm: 14px;
  --font-base: 17px;
  --font-md: 20px;
  --font-lg: 24px;
  --font-xl: clamp(32px, 4vw, 48px);
  --font-2xl: clamp(42px, 5.4vw, 64px);

  --border-1: 1px;
  --border-2: 2px;
  --radius-sm: 2px;
  --radius-md: 4px;
  --shadow-low: 0 8px 20px rgba(4, 31, 61, 0.08);
  --transition-fast: 160ms ease;
  --transition-base: 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --content-max: 1240px;
  --header-height: 72px;
}

/* 2. Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--color-bg);
  color: var(--color-text-muted);
  font: 400 var(--font-base)/1.65 "Poppins", system-ui, sans-serif;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip {
  position: fixed;
  z-index: 1000;
  top: -80px;
  left: var(--space-4);
  padding: var(--space-3) var(--space-4);
  border: var(--border-2) solid var(--color-navy);
  background: var(--color-surface);
  color: var(--color-navy);
}

.skip:focus {
  top: var(--space-4);
}

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

/* 3. Typography */
h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--color-text);
  font-weight: 700;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 16ch;
  margin-bottom: var(--space-5);
  color: var(--color-on-dark);
  font-size: var(--font-2xl);
  line-height: 1.02;
}

h2 {
  max-width: 17ch;
  margin-bottom: var(--space-5);
  font-size: var(--font-xl);
  line-height: 1.08;
}

h3 {
  margin-bottom: var(--space-2);
  font-size: var(--font-lg);
  line-height: 1.2;
}

p {
  margin-bottom: var(--space-4);
}

.lead {
  max-width: 62ch;
  font-size: var(--font-md);
  line-height: 1.6;
}

.eyebrow,
.price-label {
  margin-bottom: var(--space-3);
  color: var(--color-accent-dark);
  font-size: var(--font-xs);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.inverse h2,
.contact h2,
.pricing-banner h2,
.social-band h2 {
  color: var(--color-on-dark);
}

.inverse p,
.contact-copy > p:not(.eyebrow),
.pricing-hero p {
  color: var(--color-on-dark-muted);
}

/* 4. Layout */
.section {
  padding-block: var(--space-9);
  border-top: var(--border-1) solid var(--color-border);
}

.section-heading {
  max-width: 850px;
  margin-bottom: var(--space-7);
}

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

/* 5. Components */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: var(--border-1) solid var(--color-border);
  background: rgba(250, 252, 253, 0.98);
  transition: height var(--transition-base), box-shadow var(--transition-base);
}

.site-header.scrolled {
  height: 64px;
  box-shadow: var(--shadow-low);
}

.nav {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  transition: width var(--transition-base), height var(--transition-base);
}

.site-header.scrolled .brand img {
  width: 42px;
  height: 42px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  color: var(--color-text);
  font-size: var(--font-sm);
  font-weight: 500;
}

.nav-links > a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-bottom: var(--border-2) solid transparent;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.nav-links > a:hover,
.nav-links > a.active,
.nav-links > a[aria-current="location"] {
  border-color: var(--color-accent);
  color: var(--color-accent-dark);
}

.phone-link {
  font-weight: 700;
}

.socials {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.socials a {
  display: grid;
  width: 36px;
  height: 36px;
  border: var(--border-1) solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  place-items: center;
  font-size: var(--font-xs);
  font-weight: 600;
  transition: border-color var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.socials a:hover {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: var(--color-on-dark);
}

.socials.compact a {
  width: 30px;
  height: 30px;
  border-color: var(--color-border);
  background: var(--color-surface-alt);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 11px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-navy);
  transition: transform var(--transition-base), opacity var(--transition-fast);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding-inline: var(--space-5);
  border: var(--border-2) solid var(--color-accent);
  border-radius: var(--radius-sm);
  background: var(--color-accent);
  color: var(--color-on-dark);
  font-size: var(--font-sm);
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.button:hover {
  border-color: var(--color-navy);
  background: var(--color-navy);
}

.button:active {
  transform: translateY(1px);
}

.button:disabled,
.button[aria-disabled="true"] {
  border-color: var(--color-border-strong);
  background: var(--color-border-strong);
  cursor: not-allowed;
  opacity: 0.7;
}

.white-button {
  border-color: var(--color-surface);
  background: var(--color-surface);
  color: var(--color-accent-dark);
}

.white-button:hover {
  border-color: var(--color-surface-alt);
  background: var(--color-surface-alt);
  color: var(--color-navy);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(700px, calc(100svh - var(--header-height)));
  display: grid;
  overflow: hidden;
  align-items: center;
  border-bottom: var(--border-2) solid var(--color-navy-deep);
  background: var(--color-navy-deep);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background: url("/assets/hero-original.webp") center 46% / cover no-repeat;
}

.hero-overlay {
  background: rgba(4, 31, 61, 0.68);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: var(--space-8);
}

.hero-kicker {
  margin-bottom: var(--space-4);
  color: var(--color-on-dark-muted);
  font-size: var(--font-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-logo {
  width: min(520px, 74vw);
  height: auto;
  margin-bottom: var(--space-6);
}

.hero-actions {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: var(--space-6);
}

.hero-actions .button {
  min-width: 200px;
}

.hero-price {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: var(--space-3);
  min-height: 52px;
  padding-inline: var(--space-5);
  border: var(--border-2) solid rgba(255, 255, 255, 0.55);
  border-left: 0;
  color: var(--color-on-dark);
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.hero-price:hover {
  border-color: var(--color-surface);
  background: rgba(255, 255, 255, 0.1);
}

.hero-price strong {
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.hero-price span {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Why */
.why {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: var(--space-9);
  border-top: 0;
}

.why-art {
  border: var(--border-1) solid var(--color-border-strong);
  background: var(--color-surface-alt);
}

.why-art img {
  width: 100%;
}

.why-copy > .button {
  margin-top: var(--space-4);
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-block: var(--space-6);
  border-top: var(--border-1) solid var(--color-border);
  border-left: var(--border-1) solid var(--color-border);
}

.benefit-grid article {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: var(--space-3);
  padding: var(--space-5);
  border-right: var(--border-1) solid var(--color-border);
  border-bottom: var(--border-1) solid var(--color-border);
  background: var(--color-surface);
}

.benefit-grid h3 {
  font-size: var(--font-md);
}

.benefit-grid p {
  margin: 0;
  font-size: var(--font-sm);
  line-height: 1.5;
}

.dot {
  display: grid;
  width: 28px;
  height: 28px;
  border-radius: 0;
  background: var(--color-accent);
  color: var(--color-on-dark);
  font-style: normal;
  font-weight: 700;
  place-items: center;
}

/* Pricing banner */
.pricing-banner {
  padding-block: var(--space-7);
  border-block: var(--border-2) solid #0f436f;
  background: var(--color-navy-deep);
  color: var(--color-on-dark);
}

.pricing-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-7);
}

.pricing-hero h2 {
  margin-bottom: var(--space-2);
  font-size: var(--font-xl);
}

.pricing-hero p {
  max-width: 720px;
  margin-bottom: 0;
}

/* Services */
.services {
  background: var(--color-surface-warm);
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: var(--space-8);
}

.services-intro > .button {
  margin-top: var(--space-4);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: var(--border-1) solid var(--color-border-strong);
  border-left: var(--border-1) solid var(--color-border-strong);
  counter-reset: service;
}

.service-card {
  position: relative;
  min-height: 136px;
  display: flex;
  align-items: flex-end;
  padding: var(--space-5);
  border-right: var(--border-1) solid var(--color-border-strong);
  border-bottom: var(--border-1) solid var(--color-border-strong);
  background: transparent;
  counter-increment: service;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.service-card::before {
  content: "0" counter(service);
  position: absolute;
  top: var(--space-4);
  left: var(--space-5);
  color: var(--color-accent-dark);
  font-size: var(--font-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.service-card:hover {
  background: var(--color-navy);
}

.service-card:hover::before,
.service-card:hover h3 {
  color: var(--color-on-dark);
}

.service-card h3 {
  margin: 0;
  font-size: var(--font-lg);
}

.service-icon {
  display: none;
}

/* Set pricing */
.set-pricing {
  background: var(--color-surface);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: var(--border-1) solid var(--color-border);
  border-left: var(--border-1) solid var(--color-border);
}

.price-card {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: var(--space-5);
  padding: var(--space-6);
  border-right: var(--border-1) solid var(--color-border);
  border-bottom: var(--border-1) solid var(--color-border);
  background: var(--color-surface);
}

.price-card .price-label,
.price-card h3,
.price-card p,
.price-card ul {
  grid-column: 1;
}

.price-card h3 {
  margin-bottom: var(--space-2);
  font-size: var(--font-md);
}

.price-card p,
.price-card li {
  font-size: var(--font-sm);
}

.price-card p {
  margin-bottom: var(--space-3);
}

.price-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1) var(--space-4);
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card li::before {
  content: "+ ";
  color: var(--color-accent-dark);
  font-weight: 700;
}

.price-card strong {
  grid-column: 2;
  grid-row: 1 / 6;
  align-self: center;
  color: var(--color-navy);
  font-size: 42px;
  letter-spacing: -0.05em;
}

.fine-print {
  margin: var(--space-5) 0 0;
  color: var(--color-text-muted);
  font-size: var(--font-xs);
}

/* About */
.about-detail {
  background: var(--color-surface-alt);
}

.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: var(--space-9);
}

.about-photo {
  height: 500px;
  border: var(--border-1) solid var(--color-border-strong);
  background: var(--color-surface);
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.about-copy > .button {
  margin-top: var(--space-4);
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: var(--space-7);
  border-top: var(--border-1) solid rgba(255, 255, 255, 0.18);
  border-left: var(--border-1) solid rgba(255, 255, 255, 0.18);
  background: var(--color-navy-deep);
  color: var(--color-on-dark-muted);
}

.value-strip article {
  padding: var(--space-5);
  border-right: var(--border-1) solid rgba(255, 255, 255, 0.18);
  border-bottom: var(--border-1) solid rgba(255, 255, 255, 0.18);
}

.value-strip h3 {
  color: var(--color-on-dark);
  font-size: var(--font-md);
}

.value-strip p {
  margin: 0;
  font-size: var(--font-sm);
}

/* Process */
.process {
  background: var(--color-navy-deep);
  color: var(--color-on-dark);
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: var(--space-7) auto 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: var(--space-5);
  bottom: var(--space-5);
  width: 2px;
  background: linear-gradient(to bottom, var(--color-accent) var(--progress, 0%), #315371 var(--progress, 0%));
  transform: translateX(-50%);
}

.timeline li {
  position: relative;
  width: 50%;
  padding: 0 var(--space-7) var(--space-5) 0;
}

.timeline li:nth-child(even) {
  margin-left: 50%;
  padding: 0 0 var(--space-5) var(--space-7);
}

.timeline li > span {
  position: absolute;
  z-index: 1;
  top: var(--space-6);
  right: -20px;
  display: grid;
  width: 40px;
  height: 40px;
  border: var(--border-2) solid var(--color-accent);
  border-radius: 50%;
  background: var(--color-navy-deep);
  color: var(--color-on-dark);
  font-weight: 700;
  place-items: center;
}

.timeline li:nth-child(even) > span {
  right: auto;
  left: -20px;
}

.timeline article {
  padding: var(--space-5);
  border: var(--border-1) solid #46627b;
  border-radius: 0;
  background: var(--color-surface);
  color: var(--color-text-muted);
}

.timeline article h3 {
  font-size: var(--font-md);
}

.timeline article p {
  margin: 0;
}

/* FAQ */
.faq {
  padding-bottom: 0;
  background: var(--color-surface);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: var(--space-8);
}

.faq-copy {
  align-self: center;
  padding-bottom: var(--space-9);
}

.accordion {
  border-top: var(--border-2) solid var(--color-navy);
}

.accordion-item {
  border-bottom: var(--border-1) solid var(--color-border);
}

.accordion-item button {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border: 0;
  background: transparent;
  color: var(--color-text);
  text-align: left;
  font-weight: 600;
  cursor: pointer;
}

.accordion-item button:hover {
  color: var(--color-accent-dark);
}

.accordion-item button i {
  font-style: normal;
  font-size: var(--font-lg);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  background: var(--color-navy-deep);
  color: var(--color-on-dark);
  transition: grid-template-rows var(--transition-base);
}

.accordion-panel p {
  min-height: 0;
  margin: 0;
  padding-inline: var(--space-5);
  overflow: hidden;
  opacity: 0;
  transition: padding var(--transition-base), opacity var(--transition-fast);
}

.accordion-item.open .accordion-panel {
  grid-template-rows: 1fr;
}

.accordion-item.open .accordion-panel p {
  padding-block: var(--space-5);
  opacity: 1;
}

.faq-art img {
  max-height: 680px;
  margin-inline: auto;
}

/* Contact */
.contact {
  border-top: var(--border-2) solid var(--color-navy);
  background: var(--color-accent-dark);
  color: var(--color-on-dark);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: var(--space-8);
}

.direct-contact {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.direct-contact a {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  border-bottom: var(--border-1) solid rgba(255, 255, 255, 0.28);
  color: var(--color-on-dark);
  font-size: clamp(18px, 2.2vw, 28px);
}

.direct-contact span {
  padding-block: var(--space-3);
  color: var(--color-on-dark-muted);
  font-size: var(--font-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-form {
  padding: var(--space-6);
  border: var(--border-1) solid #46627b;
  border-radius: 0;
  background: var(--color-navy-deep);
  color: var(--color-on-dark);
}

.contact-form label {
  display: grid;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  font-size: var(--font-sm);
  font-weight: 600;
}

.required-mark {
  color: #ffd166;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: var(--border-1) solid #667e92;
  border-radius: var(--radius-sm);
  outline: 0;
  background: #102e4b;
  color: var(--color-on-dark);
  font-size: 16px;
  transition: border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-form input {
  min-height: 48px;
}

.contact-form textarea {
  min-height: 136px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-focus);
  background: #153957;
  box-shadow: 0 0 0 2px var(--color-focus);
}

.contact-form input:user-invalid,
.contact-form textarea:user-invalid {
  border-color: #ff8b82;
}

.form-note,
.form-status {
  margin-bottom: var(--space-5);
  color: var(--color-on-dark-muted);
  font-size: var(--font-sm);
}

.form-success {
  padding: var(--space-4);
  border: var(--border-1) solid #68d391;
  background: #123f2b;
  color: #dbf5e4;
}

.form-error {
  padding: var(--space-4);
  border: var(--border-1) solid #ff8b82;
  background: #4b1d22;
  color: #ffe4e1;
}

.honey {
  position: absolute !important;
  left: -9999px !important;
}

/* Articles */
.articles {
  background: var(--color-surface);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: var(--space-3);
}

.article-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: var(--border-1) solid var(--color-border-strong);
  border-radius: 0;
  background: var(--color-navy);
  color: var(--color-on-dark);
}

.article-card:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.article-card:nth-child(2) {
  grid-column: span 2;
}

.article-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(4, 31, 61, 0.68);
  transition: background var(--transition-base);
}

.article-card:hover::after {
  background: rgba(4, 31, 61, 0.82);
}

.article-card img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.article-card:hover img {
  transform: scale(1.025);
}

.article-card > div {
  position: absolute;
  z-index: 1;
  right: var(--space-5);
  bottom: var(--space-5);
  left: var(--space-5);
}

.article-card h3 {
  margin: var(--space-2) 0;
  color: var(--color-on-dark);
  font-size: clamp(19px, 2vw, 28px);
}

.article-card:first-child h3 {
  font-size: clamp(28px, 3vw, 40px);
}

.article-card time,
.article-card span {
  color: var(--color-on-dark-muted);
  font-size: var(--font-xs);
}

.article-card.no-image::after {
  background: transparent;
}

@media (min-width: 1001px) {
  .article-card:nth-child(5),
  .article-card:nth-child(6) {
    grid-column: span 2;
  }
}

.article-button {
  margin-top: var(--space-6);
}

/* Social band */
.social-band {
  padding-block: var(--space-7);
  border-block: var(--border-2) solid #b67c00;
  background: #e4a400;
  color: var(--color-navy-deep);
}

.social-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-7);
}

.social-layout h2 {
  margin: 0;
  color: var(--color-navy-deep);
  font-size: clamp(28px, 3.5vw, 42px);
}

.social-band .eyebrow {
  color: var(--color-navy-deep);
}

.social-band .white-button {
  border-color: var(--color-navy-deep);
  background: var(--color-navy-deep);
  color: var(--color-on-dark);
}

/* Footer */
footer {
  padding: var(--space-8) 0 var(--space-5);
  border-top: var(--border-2) solid #0f436f;
  background: var(--color-navy);
  color: var(--color-on-dark-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: var(--space-8);
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-2);
}

.footer-logo {
  width: 220px;
  height: auto;
}

.footer-grid h3 {
  color: var(--color-on-dark);
  font-size: var(--font-md);
}

.footer-grid a:hover {
  color: var(--color-on-dark);
  text-decoration: underline;
}

.footer-phone {
  margin-top: var(--space-2);
  color: var(--color-on-dark);
  font-size: var(--font-md);
  font-weight: 700;
}

.partner-logos {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.partner-logos img {
  width: 64px;
  height: 64px;
  padding: var(--space-2);
  border: var(--border-1) solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  object-fit: contain;
}

.footer-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  margin-top: var(--space-7);
  padding-top: var(--space-5);
  border-top: var(--border-1) solid rgba(255, 255, 255, 0.18);
  font-size: var(--font-xs);
}

.footer-base a {
  text-decoration: underline;
}

/* 6. States and motion */
.reveal {
  opacity: 1;
  transform: none;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.motion-ready .reveal.enter {
  opacity: 1;
  transform: none;
}

:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
}

/* 7. Responsive */
@media (max-width: 1000px) {
  .nav-links {
    gap: var(--space-5);
  }

  .socials.compact {
    display: none;
  }

  .why,
  .services-layout,
  .about-layout {
    gap: var(--space-7);
  }

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

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

  .article-card:first-child {
    grid-column: span 2;
  }

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

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 780px) {
  :root {
    --header-height: 64px;
    --space-9: 72px;
  }

  .shell {
    width: min(var(--content-max), calc(100% - 32px));
  }

  .site-header {
    height: var(--header-height);
    background: #fafcfd;
  }

  .brand img,
  .site-header.scrolled .brand img {
    width: 42px;
    height: 42px;
  }

  .menu-button {
    display: block;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: var(--space-4) var(--space-5) var(--space-5);
    border-bottom: var(--border-2) solid var(--color-navy);
    background: var(--color-surface);
    box-shadow: var(--shadow-low);
    opacity: 0;
    transform: translateY(-110%);
    visibility: hidden;
    transition: opacity var(--transition-fast), transform var(--transition-base), visibility var(--transition-fast);
  }

  .nav-links.open {
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .nav-links > a {
    min-height: 48px;
    border-bottom: var(--border-1) solid var(--color-border);
  }

  .phone-link {
    justify-content: center;
    margin-top: var(--space-3);
    border: var(--border-2) solid var(--color-navy) !important;
  }

  .socials a {
    width: 44px;
    height: 44px;
  }

  .hero {
    min-height: 610px;
  }

  .hero-bg {
    background-position: 62% center;
  }

  .hero-content {
    padding-block: var(--space-7);
  }

  .hero-logo {
    width: min(470px, 90vw);
  }

  .why,
  .services-layout,
  .about-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .why-art {
    order: 2;
    max-width: 520px;
  }

  .pricing-hero,
  .social-layout {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .about-photo {
    height: 440px;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline li,
  .timeline li:nth-child(even) {
    width: 100%;
    margin: 0;
    padding: 0 0 var(--space-5) 64px;
  }

  .timeline li > span,
  .timeline li:nth-child(even) > span {
    top: var(--space-5);
    right: auto;
    left: 0;
  }

  .faq-copy {
    padding-bottom: 0;
  }

  .faq-art {
    max-height: 460px;
    overflow: hidden;
  }

  .faq-art img {
    height: 520px;
    object-fit: contain;
  }

  .article-grid {
    grid-auto-rows: 250px;
  }
}

@media (max-width: 560px) {
  :root {
    --font-base: 16px;
    --font-md: 18px;
    --font-lg: 22px;
    --font-xl: 36px;
    --font-2xl: 42px;
    --space-8: 48px;
    --space-9: 64px;
  }

  .hero {
    min-height: 570px;
  }

  .hero-kicker {
    margin-bottom: var(--space-3);
  }

  .hero-logo {
    width: 100%;
    margin-bottom: var(--space-5);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-price {
    justify-content: center;
    border-left: var(--border-2) solid rgba(255, 255, 255, 0.55);
  }

  .benefit-grid,
  .service-grid,
  .value-strip,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 112px;
  }

  .price-card {
    display: block;
    padding: var(--space-5);
  }

  .price-card strong {
    display: block;
    margin-top: var(--space-4);
  }

  .about-photo {
    height: 350px;
  }

  .article-grid {
    grid-auto-rows: 240px;
  }

  .article-card:first-child,
  .article-card:nth-child(2) {
    grid-column: auto;
    grid-row: auto;
  }

  .article-card:first-child h3 {
    font-size: 28px;
  }

  .contact-form {
    padding: var(--space-5);
  }

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

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-grid > div:nth-child(2) > a {
    display: flex;
    min-height: 44px;
    align-items: center;
  }

  .footer-base a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }

  .footer-base {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 340px) {
  .shell {
    width: min(var(--content-max), calc(100% - 24px));
  }

  .direct-contact a {
    grid-template-columns: 1fr;
    padding-block: var(--space-3);
  }

  .direct-contact span {
    padding: 0;
  }
}

/* 8. Accessibility */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (forced-colors: active) {
  .button,
  .dot,
  .timeline li > span {
    border: var(--border-2) solid ButtonText;
  }
}

/* 9. Visual middle ground: v3 energy on the v4 structure */
:root {
  --color-surface-alt: #e8f1f5;
  --color-surface-warm: #fff7e9;
  --color-gold: #ffb600;
  --font-xl: clamp(40px, 5.1vw, 64px);
  --font-2xl: clamp(50px, 6vw, 72px);
}

.section {
  padding-block: clamp(82px, 8vw, 112px);
}

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.button::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--color-navy);
  transform: translateX(-102%);
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.button:hover::before {
  transform: none;
}

.white-button::before {
  background: var(--color-surface-alt);
}

.hero {
  min-height: min(790px, calc(100svh - var(--header-height)));
}

.hero-overlay {
  background: radial-gradient(circle at 50% 48%, rgba(0, 111, 159, 0.14), transparent 42%), rgba(4, 31, 61, 0.64);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-logo {
  width: min(760px, 80vw);
}

.hero h1 {
  max-width: 15ch;
  margin-inline: auto;
}

.hero-motion {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-motion i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(300px, 42vw, 640px);
  aspect-ratio: 1;
  border: var(--border-1) solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: hero-ring 8s ease-in-out infinite;
}

.hero-motion i:nth-child(2) {
  width: clamp(470px, 62vw, 940px);
  animation-delay: -2.5s;
}

.hero-motion i:nth-child(3) {
  width: clamp(640px, 82vw, 1240px);
  animation-delay: -5s;
}

@keyframes hero-ring {
  0%, 100% { opacity: 0.26; transform: translate(-50%, -50%) scale(0.985); }
  50% { opacity: 0.52; transform: translate(-50%, -50%) scale(1.015); }
}

.why {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
}

.why-art {
  position: relative;
  border: 0;
  background: var(--color-gold);
  transform: rotate(-1.5deg);
}

.why-art img {
  clip-path: polygon(0 6%, 94% 0, 100% 93%, 7% 100%);
  transform: rotate(1.5deg);
}

.benefit-grid {
  gap: 0 var(--space-6);
  border: 0;
}

.benefit-grid article {
  border-top: var(--border-2) solid var(--color-border);
  border-right: 0;
  background: transparent;
}

.pricing-banner {
  position: relative;
  overflow: hidden;
}

.pricing-banner::after {
  content: "$80";
  position: absolute;
  top: -58px;
  right: 2vw;
  color: rgba(255, 255, 255, 0.06);
  font-size: 210px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.08em;
}

.pricing-hero {
  position: relative;
  z-index: 1;
}

.service-card {
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: var(--color-navy);
  transform: translateY(102%);
  transition: transform 460ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-card::before,
.service-card h3 {
  z-index: 1;
}

.service-card:hover::after {
  transform: none;
}

.about-photo {
  transform: rotate(-1deg);
  box-shadow: 16px 16px 0 var(--color-navy);
}

.contact {
  background: var(--color-accent);
}

.contact .eyebrow {
  color: var(--color-on-dark);
}

.pricing-banner .eyebrow {
  color: #9edfff;
}

.contact-copy > p:not(.eyebrow),
.direct-contact span {
  color: var(--color-on-dark);
}

.contact-form {
  box-shadow: 18px 18px 0 rgba(4, 31, 61, 0.24);
}

.social-band {
  background: var(--color-gold);
}

.motion-ready .reveal {
  transform: translateY(24px);
  transition-duration: 650ms;
}

.motion-ready .reveal.enter {
  transform: none;
}

@media (max-width: 780px) {
  :root {
    --font-xl: clamp(40px, 8vw, 54px);
    --font-2xl: clamp(44px, 9vw, 58px);
  }

  .hero {
    min-height: 700px;
  }

  .hero-logo {
    width: min(620px, 90vw);
  }

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

  .why-art {
    transform: rotate(-1deg);
  }

  .why-art img {
    transform: rotate(1deg);
  }
}

@media (max-width: 560px) {
  :root {
    --font-xl: 42px;
    --font-2xl: 44px;
  }

  .section {
    padding-block: 72px;
  }

  .hero {
    min-height: 650px;
  }

  .hero-logo {
    width: 100%;
  }

  .hero-motion i {
    left: 60%;
  }

  .benefit-grid {
    gap: 0;
  }

  .about-photo {
    transform: none;
    box-shadow: 10px 10px 0 var(--color-navy);
  }

  .contact-form {
    box-shadow: 10px 10px 0 rgba(4, 31, 61, 0.24);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-motion {
    display: none;
  }
}

/* Progressive enhancement and residual audit fixes */
:root {
  --font-xs: 13px;
  --font-sm: 16px;
}

@media (max-width: 780px) {
  .no-js .site-header {
    position: relative;
    height: auto;
  }

  .no-js .nav {
    flex-wrap: wrap;
  }

  .no-js .menu-button {
    display: none;
  }

  .no-js .nav-links {
    position: static;
    width: 100%;
    display: grid;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
  }
}

.no-js .accordion-panel {
  grid-template-rows: 1fr;
}

.no-js .accordion-panel p {
  padding-block: var(--space-5);
  opacity: 1;
}

.no-js .accordion-item button i {
  display: none;
}

@media (min-width: 360px) and (max-width: 560px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    min-height: 132px;
    padding: var(--space-4);
  }

  .service-card::before {
    left: var(--space-4);
  }

  .service-card h3 {
    font-size: 19px;
  }
}

/* 10. Cinematic pickup journey */
.process {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding-bottom: 0;
  background:
    radial-gradient(circle at 12% 14%, rgba(0, 166, 222, 0.18), transparent 24%),
    radial-gradient(circle at 88% 72%, rgba(255, 182, 0, 0.12), transparent 25%),
    #031a32;
}

.process-shell {
  position: relative;
  z-index: 2;
}

.cinema-grid {
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(129, 199, 228, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(129, 199, 228, 0.2) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  transform: perspective(700px) rotateX(54deg) scale(1.7) translateY(-15%);
  transform-origin: top center;
}

.cinema-beam {
  position: absolute;
  z-index: 1;
  top: var(--process-progress, 8%);
  left: 50%;
  width: min(900px, 80vw);
  height: 420px;
  background: radial-gradient(ellipse, rgba(0, 156, 215, 0.13), transparent 68%);
  filter: blur(8px);
  transform: translate(-50%, -50%);
  transition: top 160ms linear;
  pointer-events: none;
}

.process .section-heading {
  max-width: 900px;
  margin-inline: auto;
}

.process .section-heading > p:last-child {
  color: #b9ccda;
  font-size: var(--font-md);
}

.process-hud {
  position: sticky;
  z-index: 12;
  top: calc(var(--header-height) + 12px);
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: var(--space-4);
  align-items: center;
  max-width: 980px;
  margin: var(--space-7) auto 0;
  padding: 13px var(--space-4);
  border: 1px solid rgba(122, 193, 224, 0.42);
  background: rgba(3, 26, 50, 0.88);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.hud-label,
.process-hud strong {
  color: #9edfff;
  font-size: var(--font-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.process-hud strong {
  min-width: 64px;
  color: var(--color-on-dark-muted);
  text-align: right;
}

.process-hud strong b {
  color: var(--color-on-dark);
  font-size: 18px;
}

.hud-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

.hud-track i {
  position: relative;
  height: 4px;
  overflow: hidden;
  background: #294b68;
}

.hud-track i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #00a6de, #9edfff);
  transform: translateX(-102%);
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hud-track i.played::after {
  transform: none;
}

.timeline {
  --progress: 0%;
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: var(--space-7) 0 var(--space-9);
}

.timeline::before {
  left: 50%;
  top: var(--space-8);
  bottom: var(--space-9);
  width: 2px;
  background: linear-gradient(to bottom, #00a6de var(--progress), #294b68 var(--progress));
  box-shadow: 0 0 18px rgba(0, 166, 222, 0.5);
}

.timeline::after {
  content: "";
  position: absolute;
  z-index: 4;
  top: var(--progress);
  left: 50%;
  width: 14px;
  height: 14px;
  border: 3px solid #9edfff;
  border-radius: 50%;
  background: #00a6de;
  box-shadow: 0 0 0 8px rgba(0, 166, 222, 0.12), 0 0 30px #00a6de;
  transform: translate(-50%, -50%);
  transition: top 120ms linear;
}

.timeline .cinema-scene {
  --scene-color: #00a6de;
  position: relative;
  width: 100%;
  min-height: 72vh;
  margin: 0;
  padding: 9vh var(--space-8);
  display: grid;
  align-items: center;
  perspective: 1400px;
  opacity: 0.34;
  filter: saturate(0.42);
  transform: scale(0.92);
  transition: opacity 700ms ease, filter 700ms ease, transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline .cinema-scene:nth-child(even) {
  margin-left: 0;
  padding: 9vh var(--space-8);
}

.timeline .cinema-scene:nth-child(2) { --scene-color: #ffb600; }
.timeline .cinema-scene:nth-child(3) { --scene-color: #9a7cff; }
.timeline .cinema-scene:nth-child(4) { --scene-color: #37d49b; }
.timeline .cinema-scene:nth-child(5) { --scene-color: #ff7b63; }

.timeline .cinema-scene.active {
  opacity: 1;
  filter: none;
  transform: scale(1);
}

.timeline .cinema-scene.past {
  opacity: 0.62;
  filter: saturate(0.75);
}

.timeline .cinema-scene > .scene-node {
  position: absolute;
  z-index: 8;
  top: 50%;
  left: 50%;
  right: auto;
  width: 50px;
  height: 50px;
  display: grid;
  border: 2px solid #4e6d86;
  border-radius: 50%;
  background: #031a32;
  color: #8aa1b4;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  place-items: center;
  transform: translate(-50%, -50%);
  transition: border-color 500ms ease, color 500ms ease, box-shadow 500ms ease, transform 600ms ease;
}

.cinema-scene.active .scene-node {
  border-color: var(--scene-color);
  color: var(--color-on-dark);
  box-shadow: 0 0 0 10px color-mix(in srgb, var(--scene-color) 15%, transparent), 0 0 34px var(--scene-color);
  transform: translate(-50%, -50%) scale(1.12);
}

.timeline .cinema-scene article {
  position: relative;
  z-index: 3;
  min-height: 370px;
  padding: 0;
  display: grid;
  grid-template-columns: 38% 62%;
  overflow: hidden;
  border: 1px solid rgba(119, 155, 183, 0.55);
  background: rgba(247, 251, 253, 0.98);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.38);
  transform: rotateY(5deg) translateX(-3%);
  transform-origin: right center;
  transition: border-color 600ms ease, box-shadow 700ms ease, transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline .cinema-scene:nth-child(even) article {
  transform: rotateY(-5deg) translateX(3%);
  transform-origin: left center;
}

.timeline .cinema-scene.active article {
  border-color: color-mix(in srgb, var(--scene-color) 70%, white);
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.5), 0 0 55px color-mix(in srgb, var(--scene-color) 18%, transparent);
  transform: none;
}

.scene-visual {
  position: relative;
  display: grid;
  overflow: hidden;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--scene-color) 82%, #062341), #062341 72%);
  place-items: center;
}

.cinema-scene:nth-child(even) .scene-visual {
  grid-column: 2;
}

.cinema-scene:nth-child(even) .scene-copy {
  grid-column: 1;
  grid-row: 1;
}

.scene-visual::before,
.scene-visual::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transform: rotate(45deg);
}

.scene-visual::after {
  inset: 27%;
  transform: rotate(-12deg);
}

.scene-visual svg {
  position: relative;
  z-index: 3;
  width: clamp(110px, 12vw, 160px);
  fill: none;
  stroke: white;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 16px 20px rgba(0, 0, 0, 0.35));
  transform: translateY(12px) scale(0.86);
  opacity: 0.7;
  transition: opacity 700ms ease, transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.cinema-scene.active .scene-visual svg {
  opacity: 1;
  transform: none;
}

.scene-orbit {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: 50%;
  animation: scene-orbit 9s linear infinite;
}

.scene-orbit::before {
  content: "";
  position: absolute;
  top: 8%;
  left: 13%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 18px white;
}

@keyframes scene-orbit {
  to { transform: rotate(1turn); }
}

.scene-copy {
  align-self: center;
  padding: clamp(32px, 5vw, 64px);
}

.scene-kicker {
  margin-bottom: var(--space-3) !important;
  color: color-mix(in srgb, var(--scene-color) 72%, #04274a);
  font-size: var(--font-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline article .scene-copy h3 {
  max-width: 14ch;
  margin-bottom: var(--space-4);
  color: var(--color-text);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.scene-copy > p:not(.scene-kicker) {
  max-width: 48ch;
  color: var(--color-text-muted);
  font-size: var(--font-base);
  line-height: 1.72;
}

.scene-status {
  display: inline-flex;
  min-height: 38px;
  margin-top: var(--space-4);
  padding: 8px 13px;
  align-items: center;
  border-left: 4px solid var(--scene-color);
  background: var(--color-surface-alt);
  color: var(--color-text);
  font-size: var(--font-sm);
  font-weight: 700;
}

.no-js .process-hud {
  display: none;
}

.no-js .timeline .cinema-scene {
  min-height: auto;
  opacity: 1;
  filter: none;
  transform: none;
}

.no-js .timeline .cinema-scene article {
  margin-block: var(--space-6);
  transform: none;
}

@media (max-width: 780px) {
  .cinema-grid {
    background-size: 48px 48px;
  }

  .process-hud {
    top: calc(var(--header-height) + 8px);
    grid-template-columns: auto auto;
    margin-top: var(--space-6);
  }

  .hud-track {
    grid-column: 1 / -1;
  }

  .timeline {
    padding-top: var(--space-5);
  }

  .timeline::before {
    left: 20px;
  }

  .timeline::after {
    left: 20px;
  }

  .timeline .cinema-scene,
  .timeline .cinema-scene:nth-child(even) {
    min-height: 660px;
    padding: var(--space-7) 0 var(--space-7) 44px;
  }

  .timeline .cinema-scene > .scene-node {
    left: 20px;
    width: 40px;
    height: 40px;
    font-size: 11px;
  }

  .timeline .cinema-scene article,
  .timeline .cinema-scene:nth-child(even) article {
    min-height: 520px;
    grid-template-columns: 1fr;
    grid-template-rows: 210px 1fr;
    transform: translateX(24px) scale(0.94);
    transform-origin: center;
  }

  .cinema-scene:nth-child(even) .scene-visual,
  .cinema-scene:nth-child(even) .scene-copy {
    grid-column: 1;
  }

  .cinema-scene:nth-child(even) .scene-visual {
    grid-row: 1;
  }

  .cinema-scene:nth-child(even) .scene-copy {
    grid-row: 2;
  }

  .timeline .cinema-scene.active article {
    transform: none;
  }

  .scene-visual svg {
    width: 116px;
  }

  .scene-copy {
    padding: var(--space-5);
  }

  .timeline article .scene-copy h3 {
    font-size: clamp(30px, 9vw, 42px);
  }
}

@media (max-width: 420px) {
  .process-hud {
    margin-inline: -4px;
    padding: 11px var(--space-3);
  }

  .timeline .cinema-scene,
  .timeline .cinema-scene:nth-child(even) {
    min-height: 630px;
    padding-left: 35px;
  }

  .timeline .cinema-scene > .scene-node,
  .timeline::before,
  .timeline::after {
    left: 22px;
  }

  .scene-copy {
    padding: var(--space-4);
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-hud {
    display: none;
  }

  .timeline .cinema-scene,
  .timeline .cinema-scene:nth-child(even) {
    min-height: auto;
    opacity: 1;
    filter: none;
    transform: none;
  }

  .timeline .cinema-scene article,
  .timeline .cinema-scene:nth-child(even) article,
  .scene-visual svg {
    margin-block: var(--space-6);
    opacity: 1;
    transform: none;
  }

  .scene-orbit {
    animation: none;
  }
}

/* 11. V8 digital interaction, exact imagery, coverage, and sitemap */
.tech-particles {
  pointer-events: none;
}

.hero > .tech-particles,
.subpage-hero > .tech-particles {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-overlay {
  z-index: 1;
}

.hero-motion {
  z-index: 2;
}

.hero-content,
.subpage-hero-content {
  z-index: 3;
}

.process > .tech-particles {
  position: sticky;
  z-index: 1;
  top: 0;
  width: 100%;
  height: 100vh;
  display: block;
  margin-bottom: -100vh;
}

/* Exact square image geometry with offset brand-color shadows. */
.why-art {
  border: var(--border-1) solid var(--color-border-strong);
  background: transparent;
  box-shadow: 18px 18px 0 var(--color-gold);
  transform: none;
}

.why-art img {
  clip-path: none;
  transform: none;
}

.about-photo {
  box-shadow: 18px 18px 0 var(--color-navy);
  transform: none;
}

/* Service symbols replace numeric counters and remain luminous on hover. */
.service-grid {
  counter-reset: none;
}

.service-card {
  min-height: 176px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  counter-increment: none;
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 360ms ease, color 240ms ease;
}

.service-card::before {
  content: none;
}

.service-symbol {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: block;
  fill: none;
  stroke: var(--color-accent-dark);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 260ms ease, filter 260ms ease, transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card h3 {
  position: relative;
  z-index: 2;
}

.service-card:hover,
.service-card:focus-within {
  color: var(--color-on-dark);
  box-shadow: inset 0 0 0 1px #00a6de, 0 18px 42px rgba(0, 68, 105, 0.2);
  transform: translateY(-5px);
}

.service-card:hover .service-symbol,
.service-card:focus-within .service-symbol {
  stroke: #fff;
  filter: drop-shadow(0 0 8px #00a6de) drop-shadow(0 0 18px rgba(0, 166, 222, 0.75));
  transform: scale(1.12) translateY(-2px);
}

.service-card:hover h3,
.service-card:focus-within h3 {
  color: #fff;
}

/* Safe, high-contrast digital hover language. */
.price-card,
.benefit-grid article,
.value-strip article,
.partner-logos a,
.article-card,
.accordion-item button,
.direct-contact a {
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 360ms ease, border-color 240ms ease, background 240ms ease, color 240ms ease;
}

.price-card:hover {
  z-index: 2;
  border-color: var(--color-accent);
  box-shadow: 0 18px 48px rgba(4, 31, 61, 0.14), inset 0 3px 0 var(--color-accent);
  transform: translateY(-6px);
}

.benefit-grid article:hover {
  border-top-color: var(--color-accent);
  background: var(--color-surface);
  box-shadow: 0 14px 34px rgba(4, 31, 61, 0.1);
  transform: translateY(-4px);
}

.value-strip article:hover {
  border-color: rgba(158, 223, 255, 0.65);
  background: #0b426f;
  box-shadow: inset 0 0 28px rgba(0, 166, 222, 0.15);
  transform: translateY(-4px);
}

.value-strip article:hover p,
.value-strip article:hover h3 {
  color: #fff;
}

.accordion-item button:hover,
.accordion-item button:focus-visible {
  padding-inline: var(--space-3);
  background: var(--color-surface-alt);
  color: var(--color-navy);
  box-shadow: inset 4px 0 0 var(--color-accent);
}

.direct-contact a:hover {
  padding-inline: var(--space-3);
  background: rgba(4, 31, 61, 0.24);
  box-shadow: inset 4px 0 0 #9edfff;
}

.partner-logos a:hover {
  box-shadow: 0 0 0 2px var(--color-accent), 0 0 26px rgba(0, 166, 222, 0.4);
  transform: translateY(-4px);
}

.socials a:hover,
.socials a:focus-visible {
  border-color: #9edfff;
  background: var(--color-navy-deep);
  color: #fff;
  box-shadow: 0 0 18px rgba(0, 166, 222, 0.55);
  transform: translateY(-2px);
}

.article-card:hover {
  box-shadow: 0 0 0 2px #9edfff, 0 0 34px rgba(0, 166, 222, 0.38);
  transform: translateY(-5px);
}

/* Timeline: scroll-directed chapters plus a perpetual five-node signal loop. */
.timeline::after {
  animation: route-beacon 1.8s ease-in-out infinite;
}

.cinema-scene.active .scene-visual svg path,
.cinema-scene.active .scene-visual svg rect,
.cinema-scene.active .scene-visual svg circle,
.cinema-scene.active .scene-visual svg ellipse {
  stroke-dasharray: 190;
  stroke-dashoffset: 190;
  animation: icon-trace 3.2s ease-in-out infinite;
}

.cinema-scene.active .scene-visual::after {
  animation: digital-geometry 4.8s ease-in-out infinite;
}

.cinema-scene.loop-pulse .scene-node {
  animation: signal-node 850ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hud-track i.loop-pulse {
  box-shadow: 0 0 8px #9edfff, 0 0 20px #00a6de;
}

.hud-track i.loop-pulse::after {
  background: #fff;
  transform: none;
}

@keyframes route-beacon {
  0%, 100% { box-shadow: 0 0 0 6px rgba(0, 166, 222, 0.1), 0 0 20px #00a6de; }
  50% { box-shadow: 0 0 0 14px rgba(0, 166, 222, 0), 0 0 42px #9edfff; }
}

@keyframes icon-trace {
  0% { stroke-dashoffset: 190; opacity: 0.45; }
  38%, 78% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: -190; opacity: 0.45; }
}

@keyframes digital-geometry {
  0%, 100% { opacity: 0.28; transform: rotate(-12deg) scale(0.92); }
  50% { opacity: 0.72; transform: rotate(18deg) scale(1.08); }
}

@keyframes signal-node {
  0% { filter: brightness(1); }
  40% { filter: brightness(1.8); box-shadow: 0 0 0 15px rgba(158, 223, 255, 0.16), 0 0 46px var(--scene-color); }
  100% { filter: brightness(1); }
}

/* Areas served */
.areas {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(158, 223, 255, 0.28);
  background:
    linear-gradient(90deg, rgba(0, 166, 222, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(0, 166, 222, 0.06) 1px, transparent 1px),
    var(--color-navy-deep);
  background-size: 52px 52px;
  color: var(--color-on-dark);
}

.areas-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: var(--space-8);
  align-items: center;
}

.areas-copy h2,
.areas-copy .lead {
  color: var(--color-on-dark);
}

.areas-copy > p:not(.eyebrow):not(.lead) {
  color: var(--color-on-dark-muted);
}

.areas-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
  margin-top: var(--space-6);
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  gap: var(--space-2);
  align-items: center;
  color: #9edfff;
  font-weight: 700;
}

.text-link:hover {
  color: #fff;
  text-shadow: 0 0 14px #00a6de;
}

.coverage-visual {
  min-height: 540px;
  display: grid;
  place-items: center;
}

.coverage-radar {
  position: relative;
  width: min(500px, 42vw);
  aspect-ratio: 1;
  border: 1px solid rgba(158, 223, 255, 0.3);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 166, 222, 0.16), transparent 64%);
  box-shadow: inset 0 0 70px rgba(0, 166, 222, 0.1), 0 0 50px rgba(0, 166, 222, 0.1);
}

.coverage-radar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0 78%, rgba(0, 166, 222, 0.22) 96%, transparent 100%);
  animation: radar-sweep 7s linear infinite;
}

.coverage-radar > i {
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(158, 223, 255, 0.22);
  border-radius: 50%;
}

.coverage-radar > i:nth-child(2) { inset: 32%; }
.coverage-radar > i:nth-child(3) { inset: 48%; }

.coverage-core {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 126px;
  min-height: 126px;
  display: grid;
  padding: var(--space-3);
  border: 1px solid #9edfff;
  background: #fff;
  box-shadow: 0 0 0 10px rgba(0, 166, 222, 0.12), 0 0 34px rgba(0, 166, 222, 0.7);
  color: var(--color-navy);
  place-items: center;
  transform: translate(-50%, -50%);
}

.coverage-core img {
  width: 54px;
  height: 54px;
}

.coverage-core b {
  font-size: var(--font-xs);
}

.coverage-point {
  position: absolute;
  z-index: 2;
  min-height: 34px;
  display: inline-flex;
  padding: 7px 11px;
  border: 1px solid #5f8aa9;
  background: #072b4e;
  color: #fff;
  font-size: var(--font-xs);
  font-weight: 700;
  align-items: center;
  box-shadow: 0 0 18px rgba(0, 166, 222, 0.3);
  animation: coverage-point 3s ease-in-out infinite;
}

.point-a { top: 13%; left: 20%; }
.point-b { top: 43%; right: -4%; animation-delay: -1s; }
.point-c { bottom: 11%; left: 15%; animation-delay: -2s; }

.area-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(158, 223, 255, 0.3);
  border-left: 1px solid rgba(158, 223, 255, 0.3);
}

.area-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-4);
  padding: var(--space-5);
  border-right: 1px solid rgba(158, 223, 255, 0.3);
  border-bottom: 1px solid rgba(158, 223, 255, 0.3);
  transition: background 260ms ease, box-shadow 260ms ease, transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.area-list article:hover {
  background: #0b426f;
  box-shadow: inset 0 0 28px rgba(0, 166, 222, 0.18);
  transform: translateY(-4px);
}

.area-list article > span {
  color: #9edfff;
  font-size: var(--font-xs);
  font-weight: 700;
}

.area-list h3 {
  color: #fff;
  font-size: var(--font-md);
}

.area-list p {
  margin: 0;
  color: var(--color-on-dark-muted);
}

@keyframes radar-sweep { to { transform: rotate(1turn); } }
@keyframes coverage-point { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* FAQ figure physically meets the next section boundary. */
.faq {
  padding-bottom: 0;
}

.faq-layout {
  align-items: stretch;
}

.faq-art {
  align-self: end;
  display: flex;
  align-items: flex-end;
  margin-bottom: 0;
}

.faq-art img {
  display: block;
  margin-bottom: 0;
}

/* Dedicated sitemap page */
.subpage-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 40%, rgba(0, 166, 222, 0.22), transparent 28%),
    var(--color-navy-deep);
  color: #fff;
  place-items: center;
}

.subpage-hero-content {
  position: relative;
  width: min(var(--content-max), calc(100% - 48px));
}

.subpage-hero h1 {
  color: #fff;
  font-size: clamp(64px, 9vw, 124px);
}

.subpage-hero-content > p:last-child {
  max-width: 560px;
  color: var(--color-on-dark-muted);
  font-size: var(--font-md);
}

.sitemap-section {
  background: var(--color-surface-alt);
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--color-border-strong);
  border-left: 1px solid var(--color-border-strong);
}

.sitemap-group {
  position: relative;
  min-height: 430px;
  padding: var(--space-7);
  border-right: 1px solid var(--color-border-strong);
  border-bottom: 1px solid var(--color-border-strong);
  background: var(--color-surface);
  transition: background 320ms ease, color 320ms ease, box-shadow 320ms ease, transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.sitemap-group > span {
  color: var(--color-accent-dark);
  font-size: var(--font-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.sitemap-group h2 {
  margin-block: var(--space-4);
  font-size: clamp(32px, 4vw, 48px);
}

.sitemap-group nav {
  display: grid;
}

.sitemap-group a {
  min-height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-weight: 600;
}

.sitemap-group a::after {
  content: "→";
  margin-left: auto;
  color: var(--color-accent-dark);
  transition: transform 220ms ease;
}

.sitemap-group a:hover::after {
  transform: translateX(5px);
}

.sitemap-group:hover {
  z-index: 2;
  background: var(--color-navy-deep);
  box-shadow: 0 22px 60px rgba(4, 31, 61, 0.24), inset 0 0 0 2px #00a6de;
  color: #fff;
  transform: translateY(-6px);
}

.sitemap-group:hover h2,
.sitemap-group:hover a,
.sitemap-group:hover > span {
  color: #fff;
}

.sitemap-group:hover a {
  border-color: rgba(255, 255, 255, 0.18);
}

.sitemap-group:hover a::after {
  color: #9edfff;
}

.sitemap-cta {
  display: flex;
  justify-content: space-between;
  gap: var(--space-6);
  align-items: center;
  margin-top: var(--space-8);
  padding: var(--space-7);
  background: var(--color-accent-dark);
  color: #fff;
  box-shadow: 16px 16px 0 var(--color-navy);
}

.sitemap-cta h2 {
  color: #fff;
}

@media (max-width: 900px) {
  .areas-layout {
    grid-template-columns: 1fr;
  }

  .coverage-radar {
    width: min(500px, 80vw);
  }

  .coverage-visual {
    min-height: 500px;
  }
}

@media (max-width: 780px) {
  .area-list,
  .sitemap-grid {
    grid-template-columns: 1fr;
  }

  .sitemap-group {
    min-height: 0;
    padding: var(--space-5);
  }

  .sitemap-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: var(--space-5);
    box-shadow: 10px 10px 0 var(--color-navy);
  }

  .subpage-hero {
    min-height: 430px;
  }

  .subpage-hero-content {
    width: calc(100% - 24px);
  }

  .subpage-hero h1 {
    font-size: clamp(58px, 20vw, 88px);
  }
}

@media (max-width: 560px) {
  .service-card {
    min-height: 152px;
  }

  .service-symbol {
    width: 40px;
    height: 40px;
  }

  .coverage-visual {
    min-height: 390px;
  }

  .coverage-radar {
    width: min(350px, 85vw);
  }

  .coverage-core {
    width: 102px;
    min-height: 102px;
  }

  .coverage-core img {
    width: 42px;
    height: 42px;
  }

  .coverage-point {
    font-size: 11px;
  }

  .faq-copy {
    padding-bottom: var(--space-7);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tech-particles {
    display: none !important;
  }

  .timeline::after,
  .cinema-scene.active .scene-visual svg *,
  .cinema-scene.active .scene-visual::after,
  .coverage-radar::before,
  .coverage-point {
    animation: none !important;
  }
}

/* 12. V9 condensed repair journey and corrected stacking */
.process.section {
  padding-block: clamp(76px, 8vw, 96px);
}

.process .section-heading {
  max-width: 760px;
}

.process-hud {
  isolation: isolate;
  z-index: 20;
  max-width: 820px;
  margin-top: var(--space-5);
  padding: 10px var(--space-4);
  gap: var(--space-3);
  background: rgba(3, 26, 50, 0.96);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.process-hud::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -20px -60px;
  background: linear-gradient(to bottom, #031a32 0 76%, rgba(3, 26, 50, 0.9) 88%, transparent 100%);
  pointer-events: none;
}

.process-hud strong {
  min-width: 100px;
  font-size: 11px;
  white-space: nowrap;
}

.process-hud strong b {
  font-size: 16px;
}

.timeline {
  isolation: isolate;
  max-width: 980px;
  padding: var(--space-5) 0 var(--space-7);
}

.timeline::before {
  z-index: 0;
  top: var(--space-6);
  bottom: var(--space-7);
}

.timeline::after {
  z-index: 0;
  width: 12px;
  height: 12px;
}

.timeline .cinema-scene,
.timeline .cinema-scene:nth-child(even) {
  z-index: 1;
  min-height: 58vh;
  padding: 5vh var(--space-6);
  transform: scale(0.95);
}

.timeline .cinema-scene.active {
  z-index: 2;
  transform: none;
}

.timeline .cinema-scene > .scene-node {
  z-index: 5;
  left: var(--space-6);
  width: 44px;
  height: 44px;
  font-size: 12px;
}

.timeline .cinema-scene:nth-child(even) > .scene-node {
  left: calc(100% - var(--space-6));
}

.timeline .cinema-scene article,
.timeline .cinema-scene:nth-child(even) article {
  z-index: 4;
  min-height: 320px;
  grid-template-columns: 35% 65%;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
  transform: translateY(10px) scale(0.97);
  transform-origin: center;
}

.timeline .cinema-scene.active article,
.timeline .cinema-scene:nth-child(even).active article {
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.44), 0 0 40px color-mix(in srgb, var(--scene-color) 16%, transparent);
  transform: none;
}

.scene-visual::before,
.scene-visual::after {
  z-index: 1;
}

.scene-visual svg {
  z-index: 3;
  width: clamp(92px, 9vw, 128px);
}

.scene-orbit {
  z-index: 2;
  width: 70%;
}

.scene-copy {
  position: relative;
  z-index: 2;
  padding: clamp(26px, 3.5vw, 44px);
}

.scene-kicker {
  margin-bottom: 9px !important;
}

.timeline article .scene-copy h3 {
  margin-bottom: var(--space-3);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1;
}

.scene-copy > p:not(.scene-kicker) {
  font-size: 15px;
  line-height: 1.56;
}

.scene-status {
  min-height: 34px;
  margin-top: var(--space-3);
  padding: 6px 11px;
  font-size: 13px;
}

@media (max-width: 780px) {
  .process.section {
    padding-block: 64px;
  }

  .process-hud {
    top: calc(var(--header-height) + 6px);
    margin-top: var(--space-4);
    padding: 9px var(--space-3);
    gap: 8px var(--space-3);
  }

  .process-hud::before {
    inset: -8px -16px -20px;
  }

  .process-hud strong {
    min-width: 96px;
  }

  .timeline {
    padding-top: var(--space-4);
  }

  .timeline .cinema-scene,
  .timeline .cinema-scene:nth-child(even) {
    min-height: 550px;
    padding: var(--space-5) 0 var(--space-5) 38px;
  }

  .timeline::before,
  .timeline::after {
    left: 12px;
  }

  .timeline .cinema-scene > .scene-node,
  .timeline .cinema-scene:nth-child(even) > .scene-node {
    left: 12px;
    width: 36px;
    height: 36px;
    font-size: 10px;
  }

  .timeline .cinema-scene article,
  .timeline .cinema-scene:nth-child(even) article {
    min-height: 470px;
    grid-template-columns: 1fr;
    grid-template-rows: 150px 1fr;
    transform: translateX(12px) scale(0.97);
  }

  .timeline .cinema-scene.active article,
  .timeline .cinema-scene:nth-child(even).active article {
    transform: none;
  }

  .scene-visual svg {
    width: 88px;
  }

  .scene-copy {
    padding: 18px;
  }

  .timeline article .scene-copy h3 {
    margin-bottom: 11px;
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.02;
  }

  .scene-copy > p:not(.scene-kicker) {
    line-height: 1.5;
  }
}

@media (max-width: 420px) {
  .process-hud {
    margin-inline: 0;
  }

  .timeline .cinema-scene,
  .timeline .cinema-scene:nth-child(even) {
    min-height: 530px;
    padding-left: 34px;
  }

  .timeline .cinema-scene article,
  .timeline .cinema-scene:nth-child(even) article {
    grid-template-rows: 140px 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .timeline .cinema-scene,
  .timeline .cinema-scene:nth-child(even),
  .timeline .cinema-scene article,
  .timeline .cinema-scene:nth-child(even) article {
    min-height: auto;
    transform: none;
  }
}

/* 13. V10 first-paint stabilization loader */
body.is-loading {
  overflow: hidden;
}

.site-loader {
  position: fixed;
  z-index: 20000;
  inset: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(0, 166, 222, 0.17), transparent 28%),
    linear-gradient(145deg, #031a32, #082d59 68%, #031a32);
  color: #fff;
  place-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 460ms ease, visibility 460ms step-end;
  pointer-events: all;
}

.site-loader::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(158, 223, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(158, 223, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, #000 8%, transparent 72%);
}

.site-loader::after {
  content: "";
  position: absolute;
  top: -35%;
  left: 50%;
  width: 1px;
  height: 170%;
  background: linear-gradient(to bottom, transparent, rgba(158, 223, 255, 0.78), transparent);
  box-shadow: 0 0 35px rgba(0, 166, 222, 0.8);
  animation: loader-scan 2.8s ease-in-out infinite;
}

.site-loader.is-leaving {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-lockup {
  position: relative;
  z-index: 2;
  width: min(320px, calc(100vw - 48px));
  display: grid;
  gap: 22px;
  justify-items: center;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  transition: opacity 360ms ease, transform 460ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-loader.is-leaving .loader-lockup {
  opacity: 0;
  transform: scale(0.96);
}

.loader-mark {
  position: relative;
  width: 92px;
  aspect-ratio: 1;
  display: grid;
  background: #fff;
  box-shadow: 0 0 0 10px rgba(158, 223, 255, 0.07), 0 0 55px rgba(0, 166, 222, 0.58);
  place-items: center;
}

.loader-mark img {
  position: relative;
  z-index: 3;
  width: 58px;
  height: 58px;
}

.loader-mark span,
.loader-mark::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.loader-mark span {
  z-index: 1;
  inset: -19px;
  background: conic-gradient(from 20deg, transparent 0 35%, #9edfff 48%, #00a6de 58%, transparent 71% 100%);
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 0);
  animation: loader-orbit 1.6s linear infinite;
}

.loader-mark::after {
  z-index: 0;
  inset: -34px;
  border: 1px solid rgba(158, 223, 255, 0.24);
  border-top-color: rgba(158, 223, 255, 0.82);
  animation: loader-orbit 3.2s linear infinite reverse;
}

.loader-name {
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
}

.loader-name small {
  display: block;
  margin-top: 10px;
  color: #9edfff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.loader-signal {
  width: 220px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

.loader-signal i {
  position: relative;
  height: 3px;
  overflow: hidden;
  background: #294b68;
}

.loader-signal i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #00a6de, #fff);
  box-shadow: 0 0 12px #00a6de;
  transform: translateX(-105%);
  animation: loader-segment 1.8s ease-in-out infinite;
}

.loader-signal i:nth-child(2)::after { animation-delay: 120ms; }
.loader-signal i:nth-child(3)::after { animation-delay: 240ms; }
.loader-signal i:nth-child(4)::after { animation-delay: 360ms; }
.loader-signal i:nth-child(5)::after { animation-delay: 480ms; }

@keyframes loader-orbit {
  to { transform: rotate(1turn); }
}

@keyframes loader-segment {
  0%, 12% { transform: translateX(-105%); }
  45%, 72% { transform: none; }
  100% { transform: translateX(105%); }
}

@keyframes loader-scan {
  0%, 100% { opacity: 0.18; transform: translateX(-180px) rotate(18deg); }
  50% { opacity: 0.72; transform: translateX(180px) rotate(18deg); }
}

@media (max-width: 560px) {
  .loader-mark {
    width: 82px;
  }

  .loader-mark img {
    width: 52px;
    height: 52px;
  }

  .loader-name {
    font-size: 21px;
  }

  .loader-signal {
    width: 190px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-loader,
  .loader-lockup {
    transition-duration: 1ms;
  }

  .site-loader::after,
  .loader-mark span,
  .loader-mark::after,
  .loader-signal i::after {
    animation: none;
  }

  .loader-signal i::after {
    transform: none;
  }
}
