@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&family=Newsreader:opsz,wght@6..72,400;6..72,500&family=Schibsted+Grotesk:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #090d11;
  --bg-soft: #0f141a;
  --bg-panel: rgba(18, 24, 31, 0.86);
  --bg-panel-strong: rgba(16, 21, 27, 0.94);
  --bg-card: rgba(244, 241, 235, 0.045);
  --bg-card-strong: rgba(244, 241, 235, 0.075);
  --ink: #f5f1ea;
  --ink-soft: #bdc6d2;
  --ink-muted: #8b95a3;
  --line: rgba(245, 241, 234, 0.08);
  --line-strong: rgba(245, 241, 234, 0.16);
  --accent: #f0d6c8;
  --accent-strong: #dd8b62;
  --accent-blue: #496f9f;
  --accent-blue-deep: #1a2d43;
  --accent-green: #6cc6a6;
  --success: #7be0bc;
  --warning: #ffd28d;
  --shadow-lg: 0 36px 90px rgba(0, 0, 0, 0.34);
  --shadow-md: 0 22px 54px rgba(0, 0, 0, 0.26);
  --shadow-sm: 0 14px 34px rgba(0, 0, 0, 0.18);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1120px;
  --section-y: clamp(3.4rem, 6vh, 5rem);
  --section-y-compact: clamp(2.2rem, 4vh, 3.1rem);
  --hero-top: clamp(4.2rem, 7vh, 5.8rem);
  --hero-bottom: clamp(2.8rem, 5vh, 4rem);
  --hero-title: clamp(2.35rem, 4.9vw, 4.2rem);
  --page-title: clamp(1.95rem, 4vw, 3.35rem);
  --section-title: clamp(1.8rem, 3.3vw, 2.95rem);
  --copy-md: clamp(0.94rem, 1vw, 1rem);
  --font-sans: "Schibsted Grotesk", "Segoe UI", sans-serif;
  --font-serif: "Newsreader", Georgia, serif;
  --font-mono: "IBM Plex Mono", monospace;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glow-x: 50%;
  --glow-y: 50%;
  --page-shift: 0px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--ink);
  line-height: 1.62;
  background: radial-gradient(
      circle at top,
      rgba(73, 111, 159, 0.16),
      transparent 22%
    ),
    radial-gradient(circle at 82% 8%, rgba(221, 139, 98, 0.16), transparent 18%),
    linear-gradient(180deg, #090d11 0%, #0d1319 42%, #090d11 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.022) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 46%);
}

body::after {
  content: "";
  position: fixed;
  inset: auto -10% -26% auto;
  width: 460px;
  height: 460px;
  pointer-events: none;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(221, 139, 98, 0.18),
    transparent 70%
  );
  filter: blur(12px);
}

body.nav-open {
  overflow: hidden;
}

main {
  display: block;
  position: relative;
  z-index: 1;
}

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

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

a:hover {
  text-decoration: none;
}

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

button,
select,
a {
  -webkit-tap-highlight-color: rgba(240, 214, 200, 0.14);
  touch-action: manipulation;
}

:focus-visible {
  outline: 2px solid rgba(240, 214, 200, 0.82);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4,
.logo {
  margin: 0;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

p,
ul,
ol {
  margin: 0;
}

.serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
}

.container {
  width: min(calc(100% - 2.5rem), var(--container));
  margin: 0 auto;
}

section {
  position: relative;
  padding: var(--section-y) 0;
}

.section-compact {
  padding: var(--section-y-compact) 0;
}

.page-hero-compact {
  padding-top: clamp(3rem, 5vh, 4rem);
  padding-bottom: clamp(2.3rem, 4vh, 3rem);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 120;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #f1ede8, #ddd4ca);
  color: #0b0f13;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.skip-link:focus {
  top: 1rem;
}

.u-mt-xs {
  margin-top: 0.55rem;
}

.u-mt-tight {
  margin-top: 0.7rem;
}

.u-mt-md {
  margin-top: 1.2rem;
}

.u-mt-xl {
  margin-top: 2.4rem;
}

.u-my-xl {
  margin-top: 2.4rem;
  margin-bottom: 2.4rem;
}

.u-center-text {
  text-align: center;
}

.u-center-justify {
  display: inline-flex;
  justify-content: center;
  margin-inline: auto;
}

.eyebrow,
.hero-kicker,
.hero-panel-label,
.estimator-kicker,
.article-tag,
.badge,
.price-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240, 214, 200, 0.84);
}

.hero-badge,
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.15rem;
  padding: 0 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(244, 241, 235, 0.05);
  color: rgba(245, 241, 234, 0.86);
  box-shadow: var(--shadow-sm);
}

.meta-note {
  margin-top: 1rem;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pill,
.estimator-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.4rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 241, 234, 0.12);
  background: rgba(244, 241, 235, 0.05);
  color: rgba(245, 241, 234, 0.88);
  font-size: 0.88rem;
  line-height: 1.35;
}

.pill strong,
.estimator-pill strong {
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.btn-primary,
.btn-secondary,
.btn-outline,
.btn-white,
.btn-nav,
.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.25rem;
  padding: 0.92rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.btn-primary,
.btn-white,
.btn-nav {
  background: linear-gradient(180deg, #f1ede8, #d9d2cb);
  color: #0b0f13;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.btn-primary:hover,
.btn-white:hover,
.btn-nav:hover,
.btn-secondary:hover,
.btn-outline:hover,
.btn-wa:hover {
  transform: translateY(-1px);
}

.btn-secondary,
.btn-outline,
.btn-wa {
  background: rgba(244, 241, 235, 0.05);
  border-color: rgba(245, 241, 234, 0.12);
  color: var(--ink);
  box-shadow: none;
}

.btn-outline {
  border-color: rgba(240, 214, 200, 0.34);
  color: rgba(240, 214, 200, 0.92);
}

.nav-cta.btn-primary,
nav a.btn-primary.nav-cta,
nav a.btn-white.nav-cta {
  color: #0b0f13 !important;
}

.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-outline:focus-visible,
.btn-white:focus-visible {
  box-shadow: 0 0 0 4px rgba(240, 214, 200, 0.16);
}

header,
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  padding: 1rem 1.25rem 0;
}

.header-inner {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
  padding: 0.95rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    backdrop-filter 220ms ease,
    box-shadow 220ms ease;
}

header.is-scrolled .header-inner,
.site-header.is-scrolled .header-inner {
  background: rgba(9, 13, 17, 0.72);
  border-color: var(--line);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-sm);
}

.home-page header,
.home-page .site-header {
  position: absolute;
  left: 0;
  right: 0;
}

.home-page header.is-scrolled,
.home-page .site-header.is-scrolled {
  position: fixed;
}

.home-page header:not(.is-scrolled) .header-inner,
.home-page .site-header:not(.is-scrolled) .header-inner {
  width: min(calc(100% - 2.5rem), var(--container));
  padding: 1.05rem 0 0;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.home-page header:not(.is-scrolled) nav a::after,
.home-page .site-header:not(.is-scrolled) nav a::after {
  display: none;
}

.home-page header:not(.is-scrolled) nav a.nav-cta,
.home-page .site-header:not(.is-scrolled) nav a.nav-cta,
.home-page header:not(.is-scrolled) nav a.btn-primary.nav-cta,
.home-page .site-header:not(.is-scrolled) nav a.btn-primary.nav-cta {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--ink) !important;
}

.home-page header:not(.is-scrolled) .nav-toggle,
.home-page .site-header:not(.is-scrolled) .nav-toggle {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink);
}

.logo::before {
  content: "";
  width: 1.28rem;
  height: 1.28rem;
  border-radius: 0.42rem;
  background: linear-gradient(
    150deg,
    rgba(222, 224, 228, 0.95),
    rgba(92, 101, 114, 0.94)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 10px 18px rgba(0, 0, 0, 0.22);
}

.logo span {
  color: var(--accent);
}

nav {
  display: inline-flex;
  align-items: center;
  gap: 1.45rem;
}

nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.38rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

nav a:hover::after,
nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

nav a[aria-current="page"] {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(244, 241, 235, 0.05);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1rem;
  height: 1.5px;
  margin: 0.19rem auto;
  background: currentColor;
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 9, 0.62);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  z-index: 70;
}

body.nav-open .nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

.breadcrumb {
  display: none;
}

.hero,
.page-hero,
.blog-hero {
  position: relative;
  padding-top: var(--hero-top);
  padding-bottom: var(--hero-bottom);
}

.hero::before,
.page-hero::before,
.blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
      circle at 18% 18%,
      rgba(221, 139, 98, 0.08),
      transparent 24%
    ),
    radial-gradient(
      circle at 82% 12%,
      rgba(73, 111, 159, 0.13),
      transparent 24%
    );
}

.hero-layout,
.page-hero-grid,
.layout-split,
.hero-split {
  width: min(calc(100% - 2.5rem), var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.84fr);
  gap: 1.5rem 2.25rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.page-hero {
  text-align: center;
}

.page-hero > * {
  width: min(calc(100% - 2.5rem), 860px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.page-hero h1,
.blog-hero h1 {
  font-size: var(--page-title);
  max-width: 15ch;
  margin-inline: auto;
}

.hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(1.9rem, 3.7vw, 3.25rem);
}

.hero h1 span,
.page-hero h1 span,
.blog-hero h1 span {
  color: var(--accent);
}

.hero-lead,
.hero-text,
.page-hero p,
.blog-hero p,
.section-header p,
.section-header-left p,
.section-intro p,
.section-head p,
.contact-card p,
.notice-card p,
.page-panel p,
.story-card p,
.signal-card p,
.route-card span,
.article-card p,
.featured-article p,
.cta-banner p,
.prose p,
.estimator-intro p,
.estimator-copy {
  color: var(--ink-soft);
  font-size: var(--copy-md);
}

.hero-lead,
.hero-text {
  margin-top: 1.35rem;
  max-width: 36rem;
}

.page-hero p,
.blog-hero p {
  max-width: 42rem;
  margin: 1.1rem auto 0;
}

.hero-ctas,
.hero-actions,
.hero-action-row,
.estimator-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.hero-metrics,
.service-grid,
.story-grid,
.article-grid,
.route-grid,
.locations-grid,
.comparison-grid,
.grid-2,
.grid-3,
.process-grid,
.signal-grid,
.signal-strip,
.proof-strip,
.proof-grid {
  display: grid;
  gap: 1rem;
}

.hero-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.45rem;
}

.hero-stat,
.story-card,
.signal-card,
.contact-card,
.notice-card,
.page-panel,
.featured-article,
.article-card,
.proof-card,
.cta-banner,
.service-callout,
.dispatch-board,
.service-card,
.route-card,
.loc-card,
.card,
.stat-block,
.step-block,
.faq-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(244, 241, 235, 0.05),
    rgba(244, 241, 235, 0.025)
  );
  box-shadow: var(--shadow-md);
}

.hero-stat::before,
.story-card::before,
.signal-card::before,
.contact-card::before,
.notice-card::before,
.page-panel::before,
.featured-article::before,
.article-card::before,
.proof-card::before,
.cta-banner::before,
.service-callout::before,
.dispatch-board::before,
.service-card::before,
.route-card::before,
.loc-card::before,
.card::before,
.stat-block::before,
.step-block::before,
.faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    140deg,
    rgba(255, 255, 255, 0.08),
    transparent 30%,
    transparent 70%,
    rgba(73, 111, 159, 0.06)
  );
}

.hero-stat,
.story-card,
.signal-card,
.contact-card,
.notice-card,
.page-panel,
.featured-article,
.article-card,
.service-card,
.route-card,
.loc-card,
.card,
.stat-block,
.step-block {
  padding: 1.18rem;
}

.page-panel,
.dispatch-board,
.service-callout {
  padding: 1.3rem;
}

.hero-stat strong,
.story-card h3,
.signal-card strong,
.contact-card h3,
.page-panel h2,
.featured-article h2,
.article-card h3,
.service-card h3,
.loc-card,
.cta-banner h2,
.prose h2,
.prose h3,
.section-header h2,
.section-header-left h2,
.section-intro h2,
.section-head h2,
.faq-q,
.card h3,
.stat-block strong,
.step-block h3 {
  position: relative;
  z-index: 1;
}

.hero-stat strong {
  display: block;
  font-size: 1.45rem;
  line-height: 0.96;
}

.hero-stat span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 0.35rem;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.hero-panel-label {
  margin-bottom: 0.8rem;
}

.hero-fact-row,
.article-meta,
.footer-bottom,
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.1rem;
}

.hero-fact-row {
  margin-top: 1.35rem;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.hero-fact-row span {
  position: relative;
  padding-left: 0.95rem;
}

.hero-fact-row span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.trust-bar {
  padding: 0 1.25rem;
}

.trust-bar-inner {
  width: min(100%, var(--container));
  margin: 0 auto;
  justify-content: flex-start;
}

.trust-item {
  min-height: 2.8rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(244, 241, 235, 0.05);
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}

.trust-item strong {
  color: var(--ink);
}

.proof-strip {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: start;
  padding: 1.8rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(244, 241, 235, 0.05),
    rgba(244, 241, 235, 0.025)
  );
  box-shadow: var(--shadow-md);
}

.proof-head p {
  max-width: 34rem;
  color: var(--ink-soft);
}

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

.proof-grid strong {
  display: block;
  font-size: 1.3rem;
}

.proof-grid span {
  display: block;
  margin-top: 0.35rem;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.section-header,
.section-header-left,
.section-head,
.section-intro {
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 2.3rem;
}

.section-header-left {
  text-align: left;
  margin-bottom: 2.1rem;
}

.section-header h2,
.section-header-left h2,
.section-intro h2,
.section-head h2,
.cta-banner h2 {
  font-size: var(--section-title);
  max-width: 12ch;
}

.section-header h2,
.cta-banner h2 {
  margin-inline: auto;
}

.section-header-left h2,
.section-intro h2,
.section-head h2 {
  margin-inline: 0;
}

.section-header p,
.section-header-left p,
.section-intro p,
.section-head p {
  max-width: 41rem;
  margin-top: 0.95rem;
}

.section-header p {
  margin-inline: auto;
}

.layout-split {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
}

.panel-stack,
.contact-stack,
.article-list,
.story-list {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.story-card h3,
.contact-card h3,
.article-card h3,
.service-card h3,
.step-block h3,
.card h3 {
  font-size: 1.42rem;
}

.story-card p,
.contact-card p,
.article-card p,
.service-card p,
.notice-card p,
.signal-card p,
.page-panel p,
.featured-article p,
.card p {
  position: relative;
  z-index: 1;
  margin-top: 0.8rem;
}

.story-index,
.service-index {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  color: rgba(240, 214, 200, 0.74);
}

.card-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 241, 234, 0.12);
  background: rgba(244, 241, 235, 0.06);
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 700;
}

.price,
.price-tag {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 1rem;
}

.price {
  color: var(--accent);
  font-weight: 700;
}

.card-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 1rem;
  color: var(--ink);
  font-weight: 600;
}

.card-link::after {
  content: "↗";
  margin-left: 0.45rem;
  color: var(--accent);
}

.route-grid,
.locations-grid,
.article-grid,
.story-grid,
.signal-grid,
.grid-2,
.grid-3,
.process-grid,
.comparison-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.route-card,
.loc-card {
  display: block;
}

.route-card span,
.loc-card span {
  display: block;
  position: relative;
  z-index: 1;
}

.route-card strong,
.loc-card strong,
.featured-article h2 {
  display: block;
  position: relative;
  z-index: 1;
  margin-top: 0.45rem;
  color: var(--ink);
}

.pin {
  color: var(--accent);
  margin-right: 0.55rem;
}

.featured-article {
  padding: 1.55rem;
}

.featured-article h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.article-meta {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  color: var(--ink-muted);
  font-size: 0.86rem;
}

.article-meta span {
  padding: 0.25rem 0;
}

.comparison-grid .card,
.proof-card,
.stat-block,
.step-block {
  padding: 1.45rem;
}

.process-step {
  padding: 1.45rem;
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  background: rgba(244, 241, 235, 0.07);
  border: 1px solid rgba(245, 241, 234, 0.14);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.76rem;
}

.page-panel h2,
.featured-article h2 {
  max-width: 12ch;
  font-size: clamp(1.55rem, 2.6vw, 2.3rem);
}

.detail-table,
.hours-table,
.price-table,
.comparison-table {
  width: 100%;
  overflow-x: auto;
}

.detail-table,
.hours-table,
.price-table table,
.comparison-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 0.65rem;
}

.detail-table td,
.hours-table td,
.price-table th,
.price-table td,
.comparison-table th,
.comparison-table td {
  padding: 0.9rem 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(244, 241, 235, 0.04);
  color: var(--ink-soft);
}

.detail-table td:first-child,
.hours-table td:first-child,
.price-table th:first-child,
.price-table td:first-child,
.comparison-table th:first-child,
.comparison-table td:first-child {
  border-left: 1px solid var(--line);
  border-radius: 16px 0 0 16px;
}

.detail-table td:last-child,
.hours-table td:last-child,
.price-table th:last-child,
.price-table td:last-child,
.comparison-table th:last-child,
.comparison-table td:last-child {
  border-right: 1px solid var(--line);
  border-radius: 0 16px 16px 0;
  color: var(--ink);
}

.price-table th,
.comparison-table th {
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.repair-estimator {
  position: relative;
}

.estimator-shell {
  padding: 1.3rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(244, 241, 235, 0.06),
    rgba(244, 241, 235, 0.03)
  );
  box-shadow: var(--shadow-md);
}

.estimator-intro h2 {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  max-width: 11ch;
}

.estimator-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.35rem;
}

.estimator-field span {
  display: block;
  margin-bottom: 0.55rem;
  color: rgba(240, 214, 200, 0.84);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.estimator-field select {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(245, 241, 234, 0.12);
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(244, 241, 235, 0.07),
    rgba(244, 241, 235, 0.04)
  );
  color: var(--ink);
  appearance: none;
}

.estimator-result {
  margin-top: 1.35rem;
  display: grid;
  gap: 1rem;
}

.estimator-summary {
  padding: 1.3rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245, 241, 234, 0.12);
  background: rgba(244, 241, 235, 0.05);
}

.estimator-summary h3 {
  margin-top: 0.45rem;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--ink);
}

.estimator-copy {
  margin-top: 0.7rem;
}

.estimator-pills {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
}

.estimator-pill {
  display: grid;
  gap: 0.4rem;
  min-height: 100%;
  padding: 0.95rem 1rem;
  border-radius: 18px;
}

.estimator-pill strong {
  color: rgba(240, 214, 200, 0.88);
}

.faq-section {
  padding-top: 3.6rem;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  padding: 0;
}

.faq-q {
  width: 100%;
  padding: 1.2rem 1.35rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-size: 1.08rem;
  cursor: pointer;
}

.faq-q::after {
  content: "+";
  float: right;
  color: var(--accent);
}

.faq-item.open .faq-q::after {
  content: "−";
}

.faq-a {
  padding: 0 1.35rem 1.25rem;
  color: var(--ink-soft);
}

.prose {
  max-width: 48rem;
}

.prose > * + * {
  margin-top: 1rem;
}

.prose h2 {
  margin-top: 1.9rem;
  font-size: clamp(1.8rem, 3vw, 2.75rem);
}

.prose h3 {
  margin-top: 1.6rem;
  font-size: 1.45rem;
}

.prose ul,
.prose ol {
  padding-left: 1.2rem;
  color: var(--ink-soft);
}

.blog-article {
  width: min(calc(100% - 2.5rem), 860px);
  margin: 0 auto;
}

.blog-article > * + * {
  margin-top: 1rem;
}

.author-block {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  padding: 1rem 1.15rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(244, 241, 235, 0.04);
  color: var(--ink-soft);
}

.cta-banner {
  padding: 1.4rem;
  text-align: center;
}

.cta-banner p {
  max-width: 36rem;
  margin: 0.8rem auto 0;
}

.cta-banner .btn-white,
.cta-banner .btn-outline {
  margin: 1.2rem 0.35rem 0;
}

.footer-inner {
  width: min(calc(100% - 2.5rem), var(--container));
  margin: 0 auto;
  padding: 1rem 0 2.6rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.9fr));
  gap: 1.25rem;
  padding: 1.3rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(244, 241, 235, 0.04),
    rgba(244, 241, 235, 0.025)
  );
  box-shadow: var(--shadow-md);
}

.footer-brand p,
.footer-col a,
.footer-col p {
  color: var(--ink-soft);
}

.footer-col {
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

.footer-col a:hover {
  color: var(--ink);
}

.footer-bottom {
  margin-top: 1.1rem;
  justify-content: space-between;
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.wa-float,
.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.2rem;
  min-height: 3.2rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 241, 234, 0.14);
  background: rgba(16, 21, 27, 0.88);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.tilt-stage {
  position: relative;
  perspective: 1800px;
}

.hero-stage {
  width: min(100%, 32rem);
  aspect-ratio: 0.92;
}

.stage-aura,
.stage-floor,
.device-stack,
.mockup-pair {
  position: absolute;
  inset: 0;
}

.stage-aura {
  inset: 14% 12% 18%;
  background: radial-gradient(
    circle at var(--glow-x) var(--glow-y),
    rgba(221, 139, 98, 0.26),
    rgba(73, 111, 159, 0.12) 28%,
    transparent 54%
  );
  filter: blur(24px);
}

.stage-floor {
  inset: auto 8% 4% 10%;
  height: 38%;
  border-radius: 2.4rem;
  background: linear-gradient(rgba(245, 241, 234, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 241, 234, 0.06) 1px, transparent 1px);
  background-size: 2.8rem 2.8rem;
  border: 1px solid rgba(245, 241, 234, 0.08);
  transform: rotateX(80deg) translateZ(-50px);
}

.hero-stage-mockups {
  width: min(100%, 36rem);
  aspect-ratio: 1.04;
}

.mockup-pair {
  transform-style: preserve-3d;
  transform: translateY(calc(var(--page-shift) * -0.18))
    rotateX(calc(6deg + var(--tilt-x))) rotateY(calc(-8deg + var(--tilt-y)));
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  animation: float-mockups 10s ease-in-out infinite alternate;
}

.hero-mockup {
  position: absolute;
  top: 7%;
  width: 43%;
  height: 84%;
  overflow: hidden;
  border-radius: 2.7rem;
  border: 1px solid rgba(245, 241, 234, 0.14);
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.01) 22%
    ),
    linear-gradient(180deg, rgba(15, 19, 24, 0.92), rgba(6, 8, 12, 0.98));
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.hero-mockup::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at top,
      rgba(255, 255, 255, 0.1),
      transparent 32%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 26%);
  z-index: 0;
}

.hero-mockup-broken {
  left: 7%;
  transform: translate3d(0, 0, 3rem) rotate(-8deg);
}

.hero-mockup-clean {
  right: 7%;
  transform: translate3d(0, 0, 6rem) rotate(8deg);
}

.hero-mockup-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  z-index: 1;
  transform: scale(1.16);
}

.hero-mockup-broken .hero-mockup-image {
  filter: saturate(0.84) brightness(0.92) contrast(1.04)
    drop-shadow(0 24px 44px rgba(0, 0, 0, 0.32));
  object-position: center 39%;
}

.hero-mockup-clean .hero-mockup-image {
  filter: saturate(1.08) brightness(1.06)
    drop-shadow(0 26px 52px rgba(0, 0, 0, 0.28));
  object-position: center 39%;
}

.mockup-chip {
  position: absolute;
  top: 1rem;
  left: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 241, 234, 0.16);
  background: rgba(11, 14, 18, 0.72);
  color: rgba(245, 241, 234, 0.86);
  font-size: 0.76rem;
  white-space: nowrap;
  transform: translateX(-50%);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.hero-mockup-screen {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  border-radius: 1.9rem;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 24px 28px rgba(255, 255, 255, 0.04),
    0 12px 28px rgba(0, 0, 0, 0.28);
}

.hero-mockup-screen::before {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 50%;
  width: 35%;
  height: 0.95rem;
  border-radius: 999px;
  background: #050608;
  transform: translateX(-50%);
  z-index: 3;
}

.hero-mockup-broken .hero-mockup-screen {
  left: 23.8%;
  top: 14.8%;
  width: 50.4%;
  height: 72.4%;
  background: radial-gradient(
      circle at 50% 18%,
      rgba(48, 55, 64, 0.18),
      rgba(7, 8, 10, 0) 22%
    ),
    linear-gradient(180deg, #12151a 0%, #050608 42%, #010203 100%);
}

.hero-mockup-clean .hero-mockup-screen {
  left: 23.6%;
  top: 14.4%;
  width: 51%;
  height: 73%;
  background: radial-gradient(
      circle at 32% 16%,
      rgba(255, 255, 255, 0.26),
      rgba(255, 255, 255, 0) 18%
    ),
    radial-gradient(
      circle at 68% 24%,
      rgba(114, 233, 255, 0.88),
      rgba(114, 233, 255, 0) 38%
    ),
    radial-gradient(
      circle at 35% 72%,
      rgba(221, 92, 255, 0.92),
      rgba(221, 92, 255, 0) 38%
    ),
    linear-gradient(180deg, #10306b 0%, #1a2260 34%, #34117b 100%);
}

.mockup-overlay {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.mockup-overlay-damage {
  left: 23.8%;
  top: 14.8%;
  width: 50.4%;
  height: 72.4%;
  border-radius: 1.9rem;
  background:
    radial-gradient(
      circle at 47% 30%,
      rgba(255, 255, 255, 0.92) 0 0.12rem,
      rgba(255, 255, 255, 0.24) 0.16rem 0.48rem,
      transparent 0.52rem
    ),
    linear-gradient(180deg, rgba(255, 110, 110, 0.12), transparent 40%),
    url("/assets/img/hero-screen-cracks.svg") center/96% 96% no-repeat;
  mix-blend-mode: screen;
  opacity: 0.92;
}

.mockup-overlay-gloss {
  left: 23.6%;
  top: 14.4%;
  width: 51%;
  height: 73%;
  border-radius: 1.9rem;
  background: linear-gradient(
      118deg,
      transparent 18%,
      rgba(255, 255, 255, 0.6) 36%,
      rgba(255, 255, 255, 0.14) 47%,
      transparent 58%
    ),
    radial-gradient(
      circle at 66% 16%,
      rgba(255, 255, 255, 0.24),
      transparent 24%
    );
  mix-blend-mode: screen;
  opacity: 0.82;
}

.device-stack {
  transform-style: preserve-3d;
  transform: translateY(calc(var(--page-shift) * -0.35))
    rotateX(calc(13deg + var(--tilt-x))) rotateY(calc(-20deg + var(--tilt-y)));
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  animation: float-stack 11s ease-in-out infinite alternate;
}

.phone {
  position: absolute;
  width: 14rem;
  aspect-ratio: 0.485;
  border-radius: 2.8rem;
  transform-style: preserve-3d;
}

.phone::before,
.phone::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.phone::before {
  inset: 0 auto 0 -0.52rem;
  width: 0.52rem;
  border-radius: 1rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.14),
    rgba(0, 0, 0, 0.42)
  );
  transform: rotateY(90deg);
  transform-origin: right;
}

.phone::after {
  inset: 1px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-shell {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
  box-shadow: var(--shadow-lg);
}

.rear-shell {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.2), transparent 26%),
    linear-gradient(180deg, rgba(10, 12, 15, 0.12), transparent 32%),
    linear-gradient(145deg, var(--finish-a), var(--finish-b));
}

.front-shell {
  padding: 0.3rem;
  background: linear-gradient(145deg, #1f2731, #040607);
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 2.45rem;
  background: radial-gradient(
      circle at top,
      rgba(144, 187, 236, 0.14),
      transparent 24%
    ),
    linear-gradient(180deg, #111824 0%, #0b0f14 100%);
}

.phone-back {
  left: 16%;
  top: 15%;
  transform: translate3d(0, 0, 1rem) rotateY(28deg) rotateX(-4deg);
}

.phone-mid {
  left: 36%;
  top: 12%;
  transform: translate3d(0, 0, 4rem) rotateY(-7deg);
}

.phone-front {
  left: 52%;
  top: 7%;
  transform: translate3d(0, 0, 8rem) rotateY(-32deg) rotateX(3deg);
}

.phone-silver {
  --finish-a: #d8dce1;
  --finish-b: #8d949d;
}

.phone-orange {
  --finish-a: #dd8b62;
  --finish-b: #8c4f34;
}

.phone-blue {
  --finish-a: #3f5d83;
  --finish-b: #15273d;
}

.camera-block {
  position: absolute;
  top: 1.1rem;
  left: 1rem;
  width: 5.9rem;
  height: 5.9rem;
  border-radius: 1.55rem;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.24),
    rgba(12, 14, 18, 0.22)
  );
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 20px 36px rgba(0, 0, 0, 0.22);
}

.lens,
.sensor,
.flash {
  position: absolute;
  border-radius: 50%;
}

.lens {
  width: 1.55rem;
  height: 1.55rem;
  background: radial-gradient(
    circle at 35% 35%,
    rgba(112, 146, 188, 0.55),
    rgba(11, 14, 18, 0.92) 58%
  );
  box-shadow:
    inset 0 0 0 0.12rem rgba(255, 255, 255, 0.1),
    0 8px 10px rgba(0, 0, 0, 0.28);
}

.lens-a {
  top: 0.82rem;
  left: 0.82rem;
}

.lens-b {
  top: 0.82rem;
  right: 0.82rem;
}

.lens-c {
  bottom: 0.82rem;
  left: 1.9rem;
}

.sensor {
  right: 1.25rem;
  bottom: 1.1rem;
  width: 0.62rem;
  height: 0.62rem;
  background: rgba(30, 39, 48, 0.92);
}

.flash {
  right: 1.05rem;
  top: 2.45rem;
  width: 0.78rem;
  height: 0.78rem;
  background: radial-gradient(
    circle at center,
    rgba(255, 249, 229, 0.95),
    rgba(255, 235, 176, 0.35)
  );
}

.finish-tag,
.model-mark,
.floating-tag,
.screen-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  white-space: nowrap;
}

.finish-tag,
.floating-tag {
  position: absolute;
  border: 1px solid rgba(245, 241, 234, 0.14);
  background: rgba(16, 20, 26, 0.75);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

.finish-tag {
  right: 1rem;
  top: 1.1rem;
  color: rgba(245, 241, 234, 0.84);
}

.model-mark {
  position: absolute;
  left: 1.15rem;
  bottom: 1.15rem;
  background: rgba(11, 14, 18, 0.28);
  border: 1px solid rgba(245, 241, 234, 0.16);
  color: rgba(245, 241, 234, 0.7);
}

.floating-tag.tag-top {
  top: 2%;
  right: 25%;
  transform: translate3d(0, 0, 9rem);
}

.floating-tag.tag-left {
  left: 7%;
  bottom: 24%;
  transform: translate3d(0, 0, 6rem);
}

.floating-tag.tag-right {
  right: 6%;
  bottom: 16%;
  transform: translate3d(0, 0, 7rem);
}

.hero-stage-mockups .floating-tag.tag-top {
  top: 3%;
  right: 12%;
}

.hero-stage-mockups .floating-tag.tag-left {
  left: 2%;
  bottom: 20%;
}

.hero-stage-mockups .floating-tag.tag-right {
  right: 1%;
  bottom: 15%;
}

.dynamic-island {
  position: absolute;
  top: 0.7rem;
  left: 50%;
  width: 32%;
  height: 1.5rem;
  border-radius: 999px;
  background: #020304;
  transform: translateX(-50%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.screen-ui {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2.75rem 1.1rem 1.2rem;
}

.screen-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.screen-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.68);
}

.screen-pill {
  border: 1px solid rgba(245, 241, 234, 0.12);
  background: rgba(245, 241, 234, 0.08);
  color: rgba(245, 241, 234, 0.92);
}

.screen-score {
  font-size: 4rem;
  line-height: 0.9;
  letter-spacing: -0.08em;
  font-weight: 800;
}

.screen-score-suffix {
  font-size: 0.35em;
  color: rgba(245, 241, 234, 0.54);
}

.screen-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  min-height: 4.6rem;
}

.screen-bars span {
  flex: 1;
  height: var(--bar);
  border-radius: 999px 999px 0.65rem 0.65rem;
  background: linear-gradient(
    180deg,
    rgba(226, 233, 241, 0.92),
    rgba(87, 127, 174, 0.18)
  );
}

.screen-list {
  display: grid;
  gap: 0.7rem;
  list-style: none;
  padding: 0;
}

.screen-list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
  color: var(--ink-soft);
}

.screen-list strong {
  color: var(--ink);
  font-size: 0.85rem;
  white-space: nowrap;
}

.home-page .hero {
  padding-top: clamp(5rem, 9vh, 6.8rem);
  padding-bottom: clamp(2.6rem, 4vh, 3.6rem);
}

.home-page .hero-layout {
  align-items: center;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.78fr);
}

.home-page .hero-copy h1 {
  max-width: 13ch;
  font-size: var(--hero-title);
}

.home-page .dispatch-board {
  background: linear-gradient(
    180deg,
    rgba(244, 241, 235, 0.05),
    rgba(244, 241, 235, 0.025)
  );
}

.home-page .hero-metrics {
  margin-top: 1.7rem;
}

.home-page .page-panel h2,
.home-page .dispatch-board h2 {
  max-width: 10ch;
}

.hero-mockup {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(244, 241, 235, 0.04);
  padding: 0.9rem;
}

.home-panel-copy {
  max-width: 24rem;
}

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

.home-urgency-card {
  margin-top: 1rem;
}

.home-page .route-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.8rem;
}

.home-page .route-card,
.home-page .loc-card {
  padding: 1rem 0.9rem;
}

.home-page .route-card span,
.home-page .loc-card span {
  font-size: 0.9rem;
}

.home-page .route-card strong,
.home-page .loc-card strong,
.home-page .loc-card {
  font-size: 0.92rem;
}

.home-page .locations-grid.u-mt-md {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.8rem;
}

.home-page .section-header-coverage h2 {
  max-width: 14ch;
}

.home-page .section-header-fixes h2 {
  max-width: 16ch;
}

.home-page .faq-section .section-header h2 {
  max-width: 18ch;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 420ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float-stack {
  0% {
    transform: translateY(calc(var(--page-shift) * -0.35))
      rotateX(calc(13deg + var(--tilt-x))) rotateY(calc(-20deg + var(--tilt-y)));
  }

  100% {
    transform: translateY(calc(var(--page-shift) * -0.35 - 12px))
      rotateX(calc(12deg + var(--tilt-x))) rotateY(calc(-17deg + var(--tilt-y)));
  }
}

@keyframes float-mockups {
  0% {
    transform: translateY(calc(var(--page-shift) * -0.18))
      rotateX(calc(6deg + var(--tilt-x))) rotateY(calc(-8deg + var(--tilt-y)));
  }

  100% {
    transform: translateY(calc(var(--page-shift) * -0.18 - 10px))
      rotateX(calc(5deg + var(--tilt-x))) rotateY(calc(-6deg + var(--tilt-y)));
  }
}

@media (max-width: 1100px) {
  .hero-layout,
  .page-hero-grid,
  .layout-split,
  .hero-split,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-content: center;
  }

  .hero-copy h1,
  .page-hero h1,
  .blog-hero h1 {
    max-width: 13ch;
  }

  .home-page .route-grid,
  .home-page .locations-grid.u-mt-md {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  header,
  .site-header {
    padding-top: 0.8rem;
  }

  nav {
    display: none;
  }

  nav.nav-ready {
    position: fixed;
    top: 5.4rem;
    left: 1rem;
    right: 1rem;
    z-index: 80;
    display: grid;
    gap: 0.8rem;
    padding: 1rem;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(9, 13, 17, 0.94);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  body.nav-open nav.nav-ready {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  nav.nav-ready a {
    padding: 0.75rem 0.15rem;
  }

  nav.nav-ready a::after {
    display: none;
  }

  nav.nav-ready a.nav-cta,
  nav.nav-ready a.btn-primary,
  nav.nav-ready a.btn-white {
    justify-content: center;
    min-height: 3rem;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero,
  .page-hero,
  .blog-hero {
    padding-top: clamp(3.5rem, 5vh, 4.4rem);
    padding-bottom: clamp(2.4rem, 4vh, 3.1rem);
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 6.4vw, 3.3rem);
  }

  .page-hero h1,
  .blog-hero h1 {
    font-size: clamp(1.8rem, 5.8vw, 2.85rem);
  }

  .hero-metrics,
  .home-route-grid,
  .estimator-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .home-page .route-grid,
  .home-page .locations-grid.u-mt-md {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 700px) {
  section {
    padding: clamp(3.2rem, 5vh, 4rem) 0;
  }

  .container,
  .hero-layout,
  .page-hero-grid,
  .layout-split,
  .hero-split,
  .page-hero > * {
    width: min(calc(100% - 1.5rem), var(--container));
  }

  .header-inner {
    padding: 0.8rem 0.9rem;
  }

  .btn-primary,
  .btn-secondary,
  .btn-outline,
  .btn-white {
    width: 100%;
  }

  .hero-ctas,
  .hero-actions,
  .estimator-actions {
    flex-direction: column;
  }

  .story-grid,
  .route-grid,
  .locations-grid,
  .article-grid,
  .comparison-grid,
  .grid-2,
  .grid-3,
  .process-grid,
  .signal-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    width: 100%;
    aspect-ratio: 0.82;
  }

  .hero-stage-mockups {
    aspect-ratio: 1.02;
  }

  .hero-mockup {
    width: 44%;
    height: 82%;
    border-radius: 2.2rem;
  }

  .hero-mockup-broken {
    left: 4%;
  }

  .hero-mockup-clean {
    right: 4%;
  }

  .phone {
    width: 11rem;
  }

  .phone-back {
    left: 5%;
    top: 18%;
  }

  .phone-mid {
    left: 27%;
    top: 14%;
  }

  .phone-front {
    left: 47%;
    top: 10%;
  }

  .floating-tag.tag-top {
    right: 18%;
  }
}

@media (max-width: 560px) {
  .hero-copy h1 {
    font-size: clamp(1.68rem, 8vw, 2.45rem);
  }

  .page-hero h1,
  .blog-hero h1 {
    font-size: clamp(1.45rem, 6.6vw, 2.1rem);
  }

  .hero-lead,
  .hero-text,
  .page-hero p,
  .blog-hero p,
  .section-header p,
  .section-header-left p,
  .section-intro p,
  .section-head p,
  .contact-card p,
  .notice-card p,
  .page-panel p,
  .story-card p,
  .signal-card p,
  .article-card p,
  .featured-article p,
  .cta-banner p,
  .prose p,
  .estimator-intro p,
  .estimator-copy {
    font-size: 0.98rem;
  }

  .proof-strip,
  .estimator-shell,
  .page-panel,
  .dispatch-board,
  .cta-banner,
  .footer-grid {
    padding: 1rem;
  }

  .hero-stage-mockups {
    aspect-ratio: 0.98;
  }

  .home-page .hero-copy h1 {
    max-width: none;
  }

  .hero-mockup {
    width: 45%;
    height: 80%;
    border-radius: 1.9rem;
  }

  .hero-mockup-image {
    transform: scale(1.12);
  }

  .phone {
    width: 9.3rem;
  }

  .phone-back {
    left: 0;
  }

  .phone-mid {
    left: 21%;
  }

  .phone-front {
    left: 42%;
  }

  .finish-tag,
  .mockup-chip,
  .floating-tag,
  .model-mark,
  .screen-pill {
    min-height: 1.8rem;
    font-size: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

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