/* ─── Optima Homepage — recreation from Figma ───────────────────── */

:root {
  /* Font stacks. Inter was previously loaded from Google Fonts but the
     entire site switched to Helvetica Neue (with Helvetica + Arial
     fallbacks for non-Mac viewers). JetBrains Mono is still loaded
     from Google for the mono eyebrows/labels. */
  --sans: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --rule: rgba(0,0,0,0.08);
  --ink-2: #3A3530;
  --blue: #0069FF;
  --blue-deep: #0055CC;
  --blue-soft: #E6F0FF;
  --blue-light: #A8C0E8;
  --blue-mid: #5A8FCC;
  --ink: #1A1A1A;
  --ink-deep: #0E1012;
  --ink-mid: #131414;
  --paper: #F4F4F1;
  --paper-warm: #EFEDE5;
  --line: #D9D6CD;
  --line-soft: #D1CEC7;
  --line-darker: #C6C4BD;
  --gray: #7A7A7A;
  --gray-mid: #626262;
  --gray-deep: #3A3530;
  --gray-faint: #B6B4AE;
  --paper-fg: #F2F1ED;
}

* { box-sizing: border-box; }
em, i { font-style: normal; }
html, body { margin: 0; padding: 0; }
html, body { background: var(--paper); }
body { overflow-x: hidden; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.005em;
}
/* Page wrapper. Capped at 1440px (the design width) but shrinks
   gracefully on smaller desktops + laptops (MacBook 14" = ~1512px,
   13" = ~1280px). Body/html background is paper so wide-screen
   gutters past 1440 stay paper-colored without needing tricks. */
.page {
  width: 100%; max-width: 1440px; margin: 0 auto;
  background: var(--paper); position: relative;
}

/* ─── FULL-BLEED SECTION BACKGROUNDS ─── */
/* Keep inner layout pinned at 1440px (design grid), but extend each section's
   background color to the viewport edges so we never see a "page edge" gutter
   on wide screens. Box-shadow paints the color outward, clip-path widens the
   render region horizontally without affecting vertical bounds. */
.pencil,
.comparison,
.financing,
.process,
.faq,
.dsg,
.footer {
  clip-path: inset(0 -100vmax);
}
.pencil    { box-shadow: 0 0 0 100vmax #151515; }
.comparison{ box-shadow: 0 0 0 100vmax #fff; }
.financing { box-shadow: 0 0 0 100vmax #fff; }
.process   { box-shadow: 0 0 0 100vmax var(--ink-mid); }
.faq       { box-shadow: 0 0 0 100vmax #fff; }
.dsg       { box-shadow: 0 0 0 100vmax var(--paper-warm); }
/* .final removed — the .final-bleed wrapper handles its full-bleed bg natively */
.footer    { box-shadow: 0 0 0 100vmax var(--ink-deep); }
.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─── Inline headline accent (italic light blue, repeated in every section) ─── */
.h-accent {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-style: normal;
  color: var(--blue);
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: flex-start;
  gap: 12px; padding: 14px 20px;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 500; font-size: 11px;
  letter-spacing: 0.20em; text-transform: uppercase;
  white-space: nowrap;
  height: 40px;
  cursor: pointer;
}
.btn-lg { padding: 16px 28px; font-size: 12px; height: 48px; }
.btn-sm { padding: 13px 20px; font-size: 11px; height: 40px; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary .arrow { width: 18px; height: 1px; background: #fff; display: inline-block; margin-left: 6px; }
.btn-ghost { background: transparent; color: var(--ink); border: 0.5px solid var(--ink); }
.btn-light { background: var(--paper-fg); color: var(--ink-deep); }
.btn-outline { background: rgba(14,16,18,0.35); color: var(--paper-fg); border: 0.5px solid var(--paper-fg); backdrop-filter: blur(4px); }

/* ─── Pencil banner ─── */
.pencil {
  height: 42px;
  background: #151515; color: #fff;
  display: flex; align-items: center; justify-content: center; gap: 16px;
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.pencil .bolt { color: var(--blue); font-size: 14px; line-height: 1; }
.pencil .pencil-text { color: #fff; }

/* ─── Wordmark ─── */
/* ─── BRAND / WORDMARK ──────────────────────────────────────────────
   New visual wordmark: SVG logo (203×62) + tight subtitle "by Desert
   Springs Pools and Spas". Replaces the previous glyph + OPTIMA text.
   Sub uses nowrap so it doesn't wrap into 3 lines on narrow rails
   like the old all-caps "BY DESERT SPRINGS POOLS AND SPAS" did. */
.wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  text-decoration: none;
  padding-bottom: 8px;
}
.brand-logo {
  /* Wordmark-only "OPTIMA" (Helvetica Neue) — 108×21 viewBox.
     16px tall renders at the SVG's near-native size with the
     slight bump for screen legibility. ~82px wide. */
  height: 16px;
  width: auto;
  display: block;
}
/* SVG ships with fill="white" so it's correct on dark backgrounds out of
   the box (hero top-rail, mobile sticky-rail, footer). On light contexts
   (paper sticky-rail on subpages) we invert to black via brightness(0). */
.sticky-rail .brand-logo { filter: brightness(0); }
@media (max-width: 1024px) {
  .sticky-rail .brand-logo { filter: none; }  /* mobile rail is dark */
}

/* Legacy .glyph rules — preserved for any reference still using the old
   wordmark shape. New pages should use <img class="brand-logo">. */
.wordmark .glyph {
  position: relative; width: 28px; height: 28px; flex-shrink: 0;
  display: block;
}
.wordmark .glyph .g-sq { position: absolute; inset: 0; border: 1px solid var(--paper-fg); }
.wordmark .glyph .g-ring { position: absolute; left: 7px; top: 7px; width: 14px; height: 14px; border-radius: 50%; border: 1px solid var(--paper-fg); }
.wordmark .glyph .g-dot { position: absolute; left: 12px; top: 12px; width: 4px; height: 4px; border-radius: 50%; background: var(--paper-fg); }
.wordmark .wm-text { display: flex; flex-direction: column; gap: 4px; }
.wordmark .wm-name {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 500; font-size: 16px;
  letter-spacing: 0.22em; color: var(--paper-fg); line-height: 1;
}
.wordmark .wm-sub {
  font-family: 'JetBrains Mono', monospace; font-size: 8px;
  letter-spacing: 0.16em; color: rgba(242,241,237,0.55); line-height: 1.2;
  white-space: nowrap;
  text-transform: uppercase;
}

/* ─── HERO ─── */
.hero {
  position: relative; height: 880px;
  background: var(--ink-deep); color: var(--paper-fg);
}
/* Bleed layer — bg image + vignette span the entire viewport.
   Sits below the content layer so corner ticks / copy / nav stay pinned at 1440px. */
.hero-bleed {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%; transform: translateX(-50%);
  width: 100vw;
  background: var(--ink-deep);
  overflow: hidden;
  z-index: 0;
}
/* Content layer — same width as .hero, clips the architectural grid for ticks/etc. */
.hero-clip {
  position: absolute; inset: 0;
  overflow: hidden;
  z-index: 1;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; z-index: 0;
}
.hero-vignette {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(14,16,18,0.6) 0%, rgba(14,16,18,0.05) 24%, rgba(14,16,18,0) 50%, rgba(14,16,18,0.5) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.30) 100%);
}
.hero-ticks {
  position: absolute; inset: 28px; pointer-events: none; z-index: 2;
}
.hero-ticks .t {
  position: absolute; width: 16px; height: 16px;
  border: 0 solid rgba(242,241,237,0.85);
}
.hero-ticks .tl { top: 0; left: 0; border-top-width: 1px; border-left-width: 1px; }
.hero-ticks .tr { top: 0; right: 0; border-top-width: 1px; border-right-width: 1px; }
.hero-ticks .bl { bottom: 0; left: 0; border-bottom-width: 1px; border-left-width: 1px; }
.hero-ticks .br { bottom: 0; right: 0; border-bottom-width: 1px; border-right-width: 1px; }

.top-rail {
  position: absolute; left: 0; right: 0; top: 0;
  padding: 40px 56px 28px;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 5; gap: 32px;
}
.hero-nav {
  display: flex; gap: 44px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.16em; color: var(--paper-fg);
}

.hero-sheet {
  position: absolute; right: 56px; top: 124px;
  z-index: 4; text-align: right;
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.16em; font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.hero-sheet .sheet-sub { color: var(--blue-light); margin-top: 4px; }

.hero-copy {
  position: absolute; left: 56px; top: 348px;
  z-index: 4; max-width: 880px;
}
.eyebrow-chain {
  display: flex; align-items: center; gap: 22px;
  font-family: 'JetBrains Mono', monospace; font-weight: 700;
  font-size: 15px; letter-spacing: 0.16em;
  color: var(--blue-light);
  text-transform: uppercase;
  opacity: 0; /* matches figma: hero eyebrow row has opacity 0 */
  height: 20px; margin-bottom: 28px;
}
.eyebrow-chain .chain-bar { width: 16px; height: 1.4px; background: rgba(168,192,232,0.35); }
.hero-title {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 300;
  font-size: 76px; line-height: 1.02;
  letter-spacing: -0.045em;
  color: var(--paper-fg);
  margin: 0;
  text-wrap: pretty;
}
.hero-sub {
  margin-top: 20px;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 500;
  font-size: 52px; line-height: 1;
  letter-spacing: -0.015em;
  color: var(--paper-fg);
}
.hero-sub .hsub-num {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 700; font-style: normal;
  color: var(--paper-fg);
}

.hero-bottom {
  position: absolute; left: 56px; right: 56px; bottom: 56px;
  display: flex; align-items: flex-end; justify-content: space-between;
  z-index: 4; gap: 32px;
}
.hero-ctas { display: flex; gap: 12px; }
.hero-tags { display: flex; gap: 44px; align-items: flex-end; }
.hero-tags .tag { display: flex; flex-direction: column; gap: 8px; }
.hero-tags .tag-val {
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  font-size: 14px; letter-spacing: 0.04em; color: #fff;
}
.hero-tags .tag-lbl {
  display: flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  font-size: 10px; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
}
.hero-tags .tag-dot {
  width: 6px; height: 6px; background: var(--blue); flex-shrink: 0;
}

/* Hero bottom eyebrow chain (visible — sits above the bottom rail, right side) */
.hero-bottom-chain {
  position: absolute; left: 840px; top: 732px;
  z-index: 4;
  display: flex; align-items: center; gap: 22px;
  font-family: 'JetBrains Mono', monospace; font-weight: 700;
  font-size: 15px; letter-spacing: 0.16em;
  color: #fff;
  text-transform: uppercase;
}
.hero-bottom-chain .chain-bar {
  width: 16px; height: 1.4px;
  background: rgba(255,255,255,0.55);
}

/* ─── Section header (shared) ─── */
.section-header {
  display: grid; grid-template-columns: 864px 1fr;
  border-top: 1px solid rgba(26,26,26,0.8);
  border-bottom: 0.5px solid var(--line);
}
.section-header .sh-title {
  padding: 32px 32px 32px 0;
  border-right: 0.5px solid var(--line);
  display: flex; flex-direction: column; gap: 16px;
}
.section-header .sh-aside {
  padding: 32px 32px 32px 32px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.sh-eyebrow {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  letter-spacing: 0.16em; color: var(--blue);
}
.sh-h {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 400;
  font-size: 40px; line-height: 1.18; letter-spacing: -0.024em;
  color: var(--ink); margin: 0;
  text-wrap: pretty;
}
.section-header .sh-aside p {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 14px; line-height: 1.5;
  color: var(--gray-deep); margin: 0; max-width: 400px;
}

/* Borderless variant — drops the framing top/bottom rules + inner divider */
.section-header-borderless { border-top: 0; border-bottom: 0; }
.section-header-borderless .sh-title { border-right: 0; padding-left: 0; }
.section-header-borderless .sh-aside { padding-left: 0; }

/* Dark variant */
.section-header-dark { border-top-color: rgba(255,255,255,0.4); border-bottom-color: rgba(255,255,255,0.15); }
.section-header-dark .sh-title { border-right-color: rgba(255,255,255,0.15); }
.sh-eyebrow-dark { color: var(--blue-mid); }
.sh-h-dark { color: var(--paper-fg); }
.sh-aside-dark { color: #D5D5D5 !important; }

/* Service-area "Optima builds across the whole valley" intro.
   Replaces the .section-header 2-column grid that pinned the lede
   to the right column — here the headline + paragraph stack
   naturally on the left, full width up to a cap. Used on
   /service-area where the lede is fact-dense and deserves the
   main reading width. */
.sa-section-intro {
  max-width: 880px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}
.sa-section-intro .sh-h { max-width: 100%; }
.sa-section-lede {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 15px; line-height: 1.55;
  color: var(--gray-deep);
  margin: 0;
  max-width: 720px;
}

/* ─── Rail (bottom button strip on sections) ─── */
.rail {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.rail-right { justify-content: flex-end; }
.rail .rail-note {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.12em; color: var(--gray); text-transform: uppercase;
}
.rail .rail-ctas { display: flex; gap: 12px; }
.rail-dark { border-top-color: rgba(255,255,255,0.15); }

/* ─── PACKAGES ─── */
.packages {
  padding: 80px 56px;
  background: var(--paper);
  display: flex; flex-direction: column; gap: 56px;
}
.pkg-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.pkg {
  background: #fff;
  border: 0.5px solid rgba(26,26,26,0.5);
  display: flex; flex-direction: column;
  min-height: 520px;
}
/* (Removed the static dark-card treatment. Select is now visually
   identical to the others by default; hover applies the inverted look
   to ANY card. The featured "★ MOST CHOSEN" tag stays on Select.) */

.pkg-head {
  height: 48px; padding: 0 16px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--line-darker);
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  font-size: 12px; letter-spacing: 0.16em;
  color: var(--gray);
  transition: border-bottom-color 0.32s ease, color 0.32s ease;
}
.pkg-head .pkg-most {
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.18em;
  transition: color 0.32s ease;
}

.pkg-name-row {
  padding: 16px 16px 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.pkg-name {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 400;
  font-size: 32px; line-height: 1; letter-spacing: -0.022em;
  color: var(--ink);
  transition: color 0.32s ease;
}
.pkg-dim {
  display: flex; align-items: center; gap: 16px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.16em; color: var(--gray);
  transition: color 0.32s ease;
}
.dim-sep {
  width: 12px; height: 1px; background: #E0E0DC; display: inline-block;
  transition: background-color 0.32s ease;
}

.pkg-plan {
  padding: 0 16px;
  height: 160px;
}
.pkg-plan .plan-svg { width: 100%; height: 100%; display: block; }

.pkg-feat {
  list-style: none; padding: 16px; margin: 0;
  display: flex; flex-direction: column; gap: 0;
}
.pkg-feat li {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 0; font-size: 12px; color: var(--ink);
  transition: color 0.32s ease;
}
.feat-dot {
  width: 6px; height: 6px; background: var(--ink); display: inline-block; flex-shrink: 0;
  transition: background-color 0.32s ease;
}

.pkg-footer {
  margin-top: auto;
  padding: 16px;
  border-top: 1px solid var(--line-darker);
  display: flex; align-items: flex-end; justify-content: space-between;
  min-height: 108px;
  transition: border-top-color 0.32s ease;
}
.pf-price { display: flex; flex-direction: column; gap: 4px; }
.pf-lbl {
  font-family: 'JetBrains Mono', monospace; font-size: 9px;
  letter-spacing: 0.16em; color: var(--gray);
  transition: color 0.32s ease;
}
.pf-num {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 500;
  font-size: 32px; line-height: 1; letter-spacing: -0.02em;
  color: var(--ink); font-variant-numeric: tabular-nums;
  margin-top: 4px;
  transition: color 0.32s ease;
}
.pf-mo {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.10em; color: var(--blue); margin-top: 4px;
}
.pf-arrow {
  width: 42px; height: 42px;
  border: 0.5px solid var(--ink); background: transparent;
  color: var(--ink); font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.3s ease;
}

/* ─── PACKAGE HOVER: blue outline + subtle lift ─── */
.pkg {
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}
.pkg:hover {
  border-color: var(--blue);
  box-shadow: inset 0 0 0 1px var(--blue), 0 8px 24px -12px rgba(0, 105, 255, 0.18);
}
.pkg:hover .pkg-cta {
  background: var(--blue-deep);
}
.pkg:hover .plan-svg rect[fill="#0069FF"] { fill-opacity: 0.22; }

/* ─── COMPARISON ─── */
.comparison {
  padding: 80px 56px;
  background: #fff;
  display: flex; flex-direction: column; gap: 56px;
}
.compare {
  width: 100%; border-collapse: collapse;
  table-layout: fixed;
}
.compare th, .compare td {
  padding: 0; border: 1px solid var(--line);
}
.compare thead th {
  height: 50px;
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  font-size: 12px; letter-spacing: 0.16em;
  text-align: left;
  padding: 0 22px;
  background: #F4F4F1;
}
.compare .ct-blank {
  background: #fff; width: 208px;
  border-top-color: #fff; border-left-color: #fff; border-right-color: #fff;
  border-bottom-color: var(--line);
}
.compare .ct-optima { background: var(--blue-deep); color: #fff; }
.compare .ct-custom { color: var(--gray); width: 544px; }
.compare .ct-row-lbl {
  width: 208px; padding: 18px 22px;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 700;
  font-size: 12px; color: var(--gray-mid);
  vertical-align: middle;
}
.compare .ct-cell {
  padding: 16px 22px;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 13px;
  line-height: 1.55; vertical-align: middle;
}
.compare .ct-cell-blue { background: var(--blue-soft); font-weight: 500; color: var(--ink); }
.compare .ct-cell-custom { color: var(--gray); }
.ct-dot {
  display: inline-block; width: 6px; height: 6px;
  background: var(--line); margin-right: 10px;
  vertical-align: middle;
}
.ct-dot-blue { background: var(--blue-deep); }

/* ─── INCLUDED SYSTEMS ─── */
.included {
  padding: 80px 56px;
  background: var(--paper);
  display: flex; flex-direction: column; gap: 48px;
}

.systems-illust {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: 786px;     /* tall enough for the 8-callout column (positions reach top:680) */
  margin: 0 auto 80px;
}
.systems-img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 530px;
  object-fit: contain;
}
.callout {
  position: absolute; width: 208px;
  display: flex; gap: 12px;
}
.callout .co-num {
  width: 24px; height: 24px; flex-shrink: 0;
  border-radius: 50%; border: 0.5px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace; font-weight: 300;
  font-size: 10px; letter-spacing: 0.04em;
  color: var(--blue);
  background: var(--paper);
}
.callout .co-text { flex: 1; display: flex; flex-direction: column; }
.callout .co-lbl {
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  font-size: 12px; line-height: 1.35; letter-spacing: 0.12em;
  color: var(--ink);
  transition: color 0.2s ease;
}
.callout:hover .co-lbl { color: var(--blue); }
.callout .co-desc {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 12px;
  line-height: 1.5; color: #6A6A66;
  max-height: 0; opacity: 0; margin-top: 0;
  overflow: hidden;
  transition: max-height 0.32s ease, opacity 0.25s ease 0.05s, margin-top 0.32s ease;
}
.callout:hover .co-desc,
.callout:focus-within .co-desc {
  max-height: 100px;
  opacity: 1;
  margin-top: 6px;
}
.co-right { text-align: right; flex-direction: row-reverse; }
.co-right .co-text { align-items: flex-end; }

/* ─── ADD-ONS ─── */
.addons {
  display: flex; flex-direction: column;
}
.addons-head {
  background: var(--paper-warm);
  border: 1px solid var(--line);
  padding: 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.addons-head h3 {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 400;
  font-size: 28px; letter-spacing: -0.025em; color: var(--ink);
  margin: 0;
}
.addons-head p {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 12px;
  line-height: 1.5; color: var(--gray-deep);
  margin: 0; max-width: 340px;
}
.addon-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.addon {
  background: #fff;
  border: 0.5px solid var(--line);
  padding: 18px;
  display: flex; flex-direction: column;
  height: 202px;
}
.addon-illus {
  height: 90px; padding-bottom: 10px;
  display: flex; align-items: center; justify-content: center;
}
.addon-illus svg,
.addon-illus img { max-width: 100%; max-height: 100%; object-fit: contain; }
.addon-name {
  margin-top: 14px;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 500;
  font-size: 14px; line-height: 1.3;
  color: var(--ink);
}
.addon-note {
  display: block;
  margin-top: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--blue);
  text-transform: uppercase;
}
.addon-price {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 10px;
  display: flex; align-items: center;
}
.ap-num {
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  font-size: 18px; letter-spacing: 0.06em; color: var(--blue);
}
.ap-lbl {
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  font-size: 18px; letter-spacing: 0.06em; color: var(--blue);
}
.ap-unit {
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  font-size: 10px; letter-spacing: 0.12em; color: var(--gray);
  margin-left: 8px;
}

/* ─── EXCLUSIONS ─── */
.excl {
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.excl-head {
  background: var(--paper-warm);
  border-bottom: 1px solid var(--line);
  padding: 28px;
}
.excl-head h4 {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 400;
  font-size: 28px; letter-spacing: -0.025em; color: var(--ink);
  margin: 0;
}
.excl-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.excl-cell {
  background: #fff; border-right: 0.5px solid var(--line);
  padding: 18px;
  display: flex; flex-direction: column; gap: 16px;
}
.excl-cell:last-child { border-right: none; }
.excl-cell:first-child { /* spacer column behavior */ }
.excl-icon { width: 18px; height: 18px; }
.excl-cell p {
  margin: 0;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 14px;
  line-height: 1.4; color: var(--ink);
}

/* Make first cell empty for visual balance */
.excl-row .excl-cell:first-child p { color: var(--gray-deep); }

/* ─── FINANCING ─── */
.financing {
  padding: 80px 56px;
  background: #fff;
  display: flex; flex-direction: column; gap: 36px;
}
.fin-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.fin-left {
  display: flex; flex-direction: column;
  background: var(--ink-mid);
}
.fin-left-content {
  background: var(--ink-mid); color: #fff;
  padding: 32px 40px 40px;
  display: flex; flex-direction: column; gap: 28px;
}
.fin-left-top {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 24px;
}
.fin-eyebrow {
  font-family: 'JetBrains Mono', monospace; font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em; color: rgba(255,255,255,0.7);
}
.fin-brand {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700; font-size: 11px;
  letter-spacing: 0.18em; color: #fff;
}
.fin-big {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 112px; line-height: 1; letter-spacing: -0.04em;
  color: #1A78FF;
  font-variant-numeric: tabular-nums;
  display: flex; align-items: baseline; gap: 2px;
}
.fin-big .fin-unit {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 24px; letter-spacing: 0; color: rgba(255,255,255,0.55);
}
/* Strip with 3 cells (EST. MONTHLY | 7.00% APR | 240-MO TERM) */
.fin-left .fin-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--ink-mid);
  border-top: 0.5px solid rgba(255,255,255,0.15);
}
.fs-cell {
  padding: 18px 20px;
  border-right: 0.5px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
}
.fs-cell:last-child { border-right: none; }
.fs-lbl {
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em; color: rgba(255,255,255,0.85);
}
/* Accent class reserved for the financing section headline span.
   Currently no italic — keeps the inherited .h-accent blue color. */
.fin-amount {}
.fin-card-content {
  background: var(--paper);
  border: 0.5px solid var(--line);
  padding: 32px 36px;
  display: flex; flex-direction: column; gap: 12px;
}
.fin-callout {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 500;
  font-size: 20px; line-height: 1.5; color: var(--ink);
  margin: 0;
}
.fin-sub {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 15px;
  line-height: 1.5; color: var(--gray-deep);
  margin: 0 0 20px;
}
.fin-cta { align-self: flex-start; }
.fin-right {
  position: relative; overflow: hidden;
}
.fin-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.fin-disclaimer {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 12px;
  line-height: 1.5; color: rgba(0,0,0,0.5);
  margin: 0; max-width: 1141px;
}

/* ─── PROCESS — DARK ─── */
.process {
  padding: 80px 56px;
  background: var(--ink-mid);
  color: var(--paper-fg);
  display: flex; flex-direction: column; gap: 48px;
}
.plates {
  display: grid; grid-template-columns: repeat(6, 1fr);
  border: 1px solid rgba(255,255,255,0.4);
}
.plate {
  padding: 30px 18px 32px;
  border-right: 1px solid rgba(255,255,255,0.4);
  display: flex; flex-direction: column; gap: 8px;
}
.plate:last-child { border-right: none; }
.plate-week {
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  font-size: 11px; letter-spacing: 0.12em; color: #3689FF;
}
.plate-name {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 500;
  font-size: 20px; line-height: 1; letter-spacing: -0.015em;
  color: var(--paper-fg);
  margin-top: 6px; margin-bottom: 8px;
}
.plate-diagram {
  height: 132px;
  background: rgba(255,255,255,0.025);
  border: 0.5px solid rgba(242,241,237,0.12);
  padding: 24px;
  display: flex; align-items: center; justify-content: center;
}
.plate-diagram svg,
.plate-diagram img { max-width: 100%; max-height: 100%; object-fit: contain; }
.plate-body {
  margin-top: 14px;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 12px;
  line-height: 1.55; color: var(--gray-faint);
}

/* ─── SERVICE AREA ─── */
.service {
  padding: 80px 56px;
  background: var(--paper);
  display: flex; flex-direction: column; gap: 56px;
}
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.service-left { display: flex; flex-direction: column; gap: 32px; justify-content: center; }
.city-list {
  display: flex; flex-direction: column;
  border: 1px solid var(--line-soft);
}
.city {
  padding: 20px;
  border: 1px solid var(--line-soft);
  display: flex; align-items: center; gap: 20px;
}
.city-n {
  width: 40px;
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.22em; color: var(--gray);
}
.city-name {
  flex: 1;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 500;
  font-size: 18px; letter-spacing: -0.015em; color: var(--ink);
}
.city-zip {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.18em; color: var(--gray);
}
.service-ctas { display: flex; gap: 12px; }
.service-right { position: relative; overflow: hidden; border: 1px solid var(--line-soft); }
.service-right img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  min-height: 558px;
}
.service-right .service-map {
  width: 100%; height: 100%; min-height: 558px;
  border: 0; display: block;
  filter: grayscale(0.15) contrast(1.02);
}

/* ─── BACKED BY DESERT SPRINGS ─── */
/* Full-bleed two-column band: dark trustcard on the left, paper-warm
   content on the right. Both halves visually extend to their nearest
   viewport edge via ::before pseudo-elements positioned with
   negative left/right. No paper gutter between the two halves.
   Uses no clip-path (avoids stacking-context regressions on the
   service-area variant). */
.dsg {
  position: relative;
  background: var(--paper-warm);
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 560px;
  padding: 0;
}
.dsg-image { position: relative; overflow: hidden; }
.dsg-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dsg-image-vignette {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.45) 90%);
}
.dsg-badges {
  position: absolute; left: 42px; right: 42px; bottom: 32px;
  display: flex; justify-content: space-between; gap: 24px;
}
.dsg-badge {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  letter-spacing: 0.10em; color: #fff;
  display: flex; align-items: center; gap: 8px;
}
.dsg-badge .b-dot { width: 6px; height: 6px; background: var(--blue); display: inline-block; flex-shrink: 0; }
.dsg-badge-faint { opacity: 0.8; }

/* ─── Trust card variant — replaces the left-half photo on homepage.
   Dark on-brand panel with centered DSG logo + eyebrow + social proofs.
   A ::before pseudo extends the dark bg 100vw to the left so on any
   viewport width the dark color reaches the left edge — no paper
   gutter between the panel and the page boundary. */
.dsg-trustcard {
  position: relative;
  background: var(--ink-deep);
  color: var(--paper-fg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 56px 48px;
  overflow: visible;
}
.dsg-trustcard::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  right: 100%;
  width: 100vw;
  background: var(--ink-deep);
  pointer-events: none;
}
.dsg-trustcard-ticks {
  position: absolute;
  inset: 28px;
  pointer-events: none;
}
.dsg-trustcard-ticks .t {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 0.5px solid rgba(255, 255, 255, 0.4);
}
.dsg-trustcard-ticks .tl { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.dsg-trustcard-ticks .tr { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.dsg-trustcard-ticks .bl { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.dsg-trustcard-ticks .br { bottom: 0; right: 0; border-left: 0; border-top: 0; }
.dsg-trustcard-logo {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.dsg-trustcard-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--blue-light);
  text-align: center;
}
.dsg-trustcard-rule {
  width: 72px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.dsg-trustcard-proofs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 360px;
}
.dsg-trustcard-proofs li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 12px 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.14);
}
.dsg-trustcard-proofs li:first-child { border-top: 0; padding-top: 6px; }
.dsg-trustcard-proofs li:last-child { padding-bottom: 0; }
.dtcp-lbl {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.20em;
  color: var(--blue-light);
}
.dtcp-val {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0;
  color: var(--paper-fg);
}

.dsg-content {
  /* Right-half text panel on the homepage variant — sits on the
     paper-warm .dsg bg which already extends to the viewport edge
     past the .page wrapper via .dsg's own background. */
  position: relative;
  padding: 64px 56px 64px 64px;
  display: flex; flex-direction: column; gap: 16px;
}
.dsg-logo {
  width: 72px; height: 72px; border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}

/* Solo variant — used on /service-area + /gallery where there's no
   companion trustcard. Single-column centered. */
.dsg.dsg-solo {
  display: block;
  min-height: 0;
  padding: 96px 56px;
  text-align: center;
  background: var(--paper-warm);
}
.dsg.dsg-solo .dsg-content {
  max-width: 880px;
  margin: 0 auto;
  padding: 0;
  align-items: center;
  text-align: center;
}
.dsg.dsg-solo .dsg-logo { margin: 0 auto 18px; align-self: center; }
.dsg.dsg-solo .dsg-p { margin-left: auto; margin-right: auto; }
.dsg.dsg-solo .dsg-stats {
  width: 100%;
  margin: 24px 0;
}
.dsg.dsg-solo .dsg-stat { text-align: left; }
.dsg.dsg-solo .dsg-ctas { justify-content: center; }
.dsg-eyebrow {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  letter-spacing: 0.16em; color: #276F2D;
}
.dsg-h {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 400;
  font-size: 28px; line-height: 1.2; letter-spacing: -0.02em;
  color: var(--ink); margin: 8px 0 8px;
}
.dsg-p {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 14px;
  line-height: 1.6; color: var(--gray-deep);
  margin: 0 0 24px; max-width: 540px;
}
.dsg-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-bottom: 28px;
}
.dsg-stat {
  border: 1px solid var(--line);
  padding: 18px;
  display: flex; flex-direction: column; gap: 10px;
}
.dsg-stat-top {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 600; font-style: normal;
  font-size: 14px; line-height: 1.3; letter-spacing: -0.01em;
  color: var(--ink);
}
.dsg-stat-lbl {
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  font-size: 12px; letter-spacing: 0.16em; color: var(--blue);
  display: flex; align-items: center; gap: 8px;
}
.dsg-stat-lbl .b-dot { width: 6px; height: 6px; background: var(--blue); display: inline-block; }
.dsg-stat-bar { height: 0.5px; background: var(--line); }
.dsg-stat-body {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 12px;
  line-height: 1.4; color: var(--ink); opacity: 0.8;
}
.dsg-ctas { display: flex; gap: 12px; }

/* ─── FAQ ─── */
.faq {
  padding: 80px 56px;
  background: #fff;
  display: flex; flex-direction: column; gap: 36px;
  align-items: center;
}
.faq-head { display: flex; flex-direction: column; align-items: center; gap: 16px; padding-top: 0; }
.faq-eyebrow { text-align: center; }
.faq-h {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 400;
  font-size: 56px; line-height: 1.1; letter-spacing: -0.028em;
  color: var(--ink); margin: 0;
  text-align: center;
}
.faq-list {
  width: 912px;
  border: 1px solid var(--line-soft);
  display: flex; flex-direction: column;
}
.faq-item {
  padding: 20px;
  border: 1px solid var(--line-soft);
  display: grid; grid-template-columns: 1fr 36px;
  gap: 24px; align-items: start;
}
.faq-n {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.22em; color: var(--gray);
  padding-top: 4px;
}
.faq-q {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 700;
  font-size: 20px; line-height: 1; letter-spacing: -0.015em;
  color: var(--ink);
}
.faq-a {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 14px;
  line-height: 1.4; color: #656565;
  margin-top: 14px; max-width: 610px;
}
.faq-toggle {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 22px;
  color: var(--gray); opacity: 0.7;
  text-align: right;
  justify-self: end;
}
.faq-rail {
  width: 912px;
  border: 1px solid var(--line);
  padding: 18px 0;
  display: flex; justify-content: center;
}

/* ─── FINAL CTA ─── */
.final {
  position: relative; height: 760px;
  background: var(--ink);
}
/* Bleed wrapper — same pattern as .hero-bleed. The bg image + overlay
   span the full viewport, while .final-ticks + .final-inner stay pinned
   to the 1440px content grid. Eliminates the "seam" gutter on wide screens. */
.final-bleed {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%; transform: translateX(-50%);
  width: 100vw;
  overflow: hidden;
  z-index: 0;
}
.final-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.final-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.7);
}
.final-ticks {
  position: absolute; inset: 36px; pointer-events: none; z-index: 2;
}
.final-ticks .t {
  position: absolute; width: 16px; height: 16px;
  border: 0 solid rgba(255,255,255,0.5);
}
.final-ticks .tl { top: 0; left: 0; border-top-width: 1px; border-left-width: 1px; }
.final-ticks .tr { top: 0; right: 0; border-top-width: 1px; border-right-width: 1px; }
.final-ticks .bl { bottom: 0; left: 0; border-bottom-width: 1px; border-left-width: 1px; }
.final-ticks .br { bottom: 0; right: 0; border-bottom-width: 1px; border-right-width: 1px; }
.final-inner {
  position: relative; z-index: 3;
  height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 105px 170px;
  text-align: center;
}
.final-eyebrow {
  font-family: 'JetBrains Mono', monospace; font-weight: 700;
  font-size: 12px; letter-spacing: 0.16em; color: var(--blue-light);
}
.final-h {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 300;
  font-size: 56px; line-height: 1.04; letter-spacing: -0.03em;
  color: #fff;
  margin: 20px 0 24px; max-width: 880px;
  text-wrap: pretty;
}
.final-p {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px;
  line-height: 1.4; color: rgba(255,255,255,0.75);
  margin: 0 0 40px; max-width: 562px;
}
.final-ctas { display: flex; gap: 12px; }
.final-badges {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 0.5px solid rgba(255,255,255,0.2);
  display: flex; gap: 48px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.final-badges .fb {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace; letter-spacing: 0.12em;
  text-align: center;
}
.final-badges .fb-top {
  font-size: 10px; color: rgba(255,255,255,0.8); font-weight: 500;
}
.final-badges .fb-bot {
  font-size: 14px; color: #fff; font-weight: 700;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--ink-deep); color: #fff;
  padding: 80px 56px 32px;
}
.ft-grid {
  display: grid; grid-template-columns: 544px 1fr 1fr 1fr;
  gap: 16px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.ft-grid .wordmark .wm-name { color: #fff; }
.ft-grid .wordmark .wm-sub { color: rgba(255,255,255,0.5); letter-spacing: 0.16em; }
.ft-tagline {
  margin: 16px 0 0;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 13px;
  line-height: 1.55; color: rgba(255,255,255,0.55);
  max-width: 320px;
}
.ft-em {
  font-style: normal; font-weight: 500;
  color: rgba(255,255,255,0.78);
}
.ft-col h5 {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  letter-spacing: 0.16em; color: rgba(255,255,255,0.5);
  text-transform: uppercase; margin: 0 0 12px; font-weight: 400;
}
.ft-col ul { list-style: none; padding: 0; margin: 0; }
.ft-col ul li {
  padding: 6px 0;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.ft-contact li {
  display: flex; align-items: center; gap: 10px;
}
.ft-i { width: 16px; height: 16px; flex-shrink: 0; }
.ft-bottom {
  padding: 28px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  letter-spacing: 0.16em; color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}
.ft-legal { display: flex; gap: 32px; }
.ft-col ul li, .ft-contact li, .ft-legal span {
  transition: color 0.2s ease;
  cursor: pointer;
}
.ft-col ul li:hover, .ft-contact li:hover, .ft-legal span:hover { color: #fff; }

/* ─── STICKY HEADER (appears on scroll past hero) ─── */
.sticky-rail {
  position: fixed; top: 0; left: 0; right: 0;
  width: 100%;
  padding: 14px max(56px, calc(50vw - 664px));
  background: rgba(244, 244, 241, 0.92);  /* paper, semitransparent */
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 0.5px solid var(--line);
  color: var(--ink);
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; z-index: 100;
  transform: translateY(-100%);
  opacity: 0;
  transition:
    transform 0.55s cubic-bezier(0.32, 0.72, 0, 1),
    opacity 0.35s ease-out;
  will-change: transform, opacity;
}
.sticky-rail.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.sticky-rail .sticky-nav {
  display: flex; gap: 36px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.16em; color: var(--ink);
}
/* Wordmark default-colors are cream (for use on dark hero / dark backgrounds);
   sticky-rail has a cream background on desktop, so invert the marks to dark
   so they're actually visible. Mobile sticky-rail is dark and overrides
   these back to cream inside optima-mobile.css. */
.sticky-rail .wordmark .g-sq,
.sticky-rail .wordmark .g-ring { border-color: var(--ink); }
.sticky-rail .wordmark .g-dot { background: var(--ink); }
.sticky-rail .wordmark .wm-name { color: var(--ink); }
.sticky-rail .wordmark .wm-sub { color: rgba(26, 26, 26, 0.55); }
.sticky-rail .sticky-nav a { position: relative; transition: color 0.2s ease; }
.sticky-rail .sticky-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--blue);
  transition: width 0.25s ease;
}
.sticky-rail .sticky-nav a:hover { color: var(--blue); }
.sticky-rail .sticky-nav a:hover::after { width: 100%; }

/* ─── INTERACTIONS ─── */
.btn { transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.18s ease; }
.btn .arrow { transition: width 0.28s ease, background-color 0.28s ease; }
.btn:active { transform: translateY(1px); }
.btn-primary:hover { background: var(--blue-deep); }
.btn-primary:hover .arrow { width: 28px; }
.btn-ghost:hover { background: var(--ink); color: var(--paper-fg); }
.btn-light:hover { background: #fff; }
.btn-outline:hover { background: rgba(242,241,237,0.14); border-color: #fff; }

/* Top-rail nav links */
.hero-nav a { transition: color 0.2s ease; position: relative; }
.hero-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -7px;
  width: 0; height: 1px; background: var(--paper-fg);
  transition: width 0.28s ease;
}
.hero-nav a:hover { color: #fff; }
.hero-nav a:hover::after { width: 100%; }

/* Wordmark hover */
.wordmark { transition: opacity 0.2s ease; }
.wordmark:hover { opacity: 0.85; }

/* Package card lift on hover. (Color-flip rules live in the PACKAGE HOVER block above.) */
.pkg { position: relative; }
.pkg:hover { transform: translateY(-6px); box-shadow: 0 14px 36px -8px rgba(0,0,0,0.55); border-color: #0E0E0E; cursor: pointer; }
.pkg:hover .pf-arrow:hover { background: var(--paper-fg); color: var(--ink); transform: translateX(3px); }

/* Stretched-link pattern: extend the .pf-arrow anchor's hit area to fill the
   entire .pkg card. Text inside the card remains selectable; .pf-arrow stays
   the only anchor so we avoid nested-<a> invalid HTML. */
.pf-arrow::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: auto;
}
/* The arrow icon itself sits above the stretched layer so it still receives
   its own :hover transform/color. */
.pf-arrow > * { position: relative; z-index: 2; }

/* Stretched link — makes the entire card clickable on /packages */
.pkg-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  /* invisible — entire card area routes to the detail page */
}

/* Add-ons */
.addon { transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease; }
.addon:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: 0 6px 20px -8px rgba(0,105,255,0.18); }
.addon-illus img { transition: transform 0.45s ease; }
.addon:hover .addon-illus img { transform: scale(1.06); }

/* Comparison rows */
.compare tbody tr { transition: background-color 0.2s ease; }
.compare tbody tr:hover .ct-cell-custom { background: #FAFAF7; }

/* Cities */
.city { transition: background-color 0.2s ease, padding-left 0.25s ease; cursor: pointer; }
.city:hover { background: #fff; padding-left: 28px; }
.city:hover .city-name { color: var(--blue); }
.city .city-name { transition: color 0.2s ease; }

/* FAQ */
.faq-item { cursor: pointer; transition: background-color 0.2s ease; }
.faq-item:hover { background: #FAFAF7; }
.faq-toggle { transition: color 0.2s ease, transform 0.25s ease; user-select: none; }
.faq-item.faq-open .faq-toggle { color: var(--blue); }
.faq-content .faq-a {
  max-height: 0; overflow: hidden; opacity: 0;
  margin: 0;
  transition: max-height 0.4s ease, margin-top 0.4s ease, opacity 0.3s ease 0.05s;
}
.faq-item.faq-open .faq-a { max-height: 900px; margin-top: 14px; opacity: 1; }

/* FAQ answer bulleted lists (used for spec / add-on enumerations) */
.faq-a .faq-list-bullets {
  list-style: none;
  margin: 12px 0;
  padding: 0;
  columns: 2;
  column-gap: 32px;
}
.faq-a .faq-list-bullets li {
  position: relative;
  padding: 4px 0 4px 18px;
  font-size: 14px;
  line-height: 1.5;
  break-inside: avoid;
}
.faq-a .faq-list-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  background: var(--blue);
}
.faq-a > p:first-child { margin-top: 0; }
.faq-a > p:last-child { margin-bottom: 0; }
@media (max-width: 640px) {
  .faq-a .faq-list-bullets { columns: 1; }
}

/* Process plates */
.plate { transition: background-color 0.32s ease; }
.plate:hover { background: rgba(255,255,255,0.025); }
.plate-diagram { transition: border-color 0.32s ease, background-color 0.32s ease; }
.plate:hover .plate-diagram { border-color: rgba(54,137,255,0.5); background: rgba(54,137,255,0.04); }
.plate-diagram img { transition: transform 0.5s ease; }
.plate:hover .plate-diagram img { transform: scale(1.05); }

/* DSG stats */
.dsg-stat { transition: border-color 0.3s ease, transform 0.3s ease; }
.dsg-stat:hover { border-color: var(--blue); transform: translateY(-2px); }

/* Callouts subtle hover */
.callout { transition: transform 0.25s ease; }
.callout:hover { transform: translateX(2px); }
.co-right:hover { transform: translateX(-2px); }
.callout .co-num { transition: background-color 0.25s ease, color 0.25s ease; }
.callout:hover .co-num { background: var(--blue); color: #fff; }

/* ─── SCROLL REVEAL ─── */
.reveal-init {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal-init.is-visible { opacity: 1; transform: translateY(0); }

/* ─── HERO ENTRANCE ─── */
@media (prefers-reduced-motion: no-preference) {
  .hero-bg { animation: hero-zoom 18s ease-out forwards; transform-origin: center; }
  @keyframes hero-zoom {
    from { transform: scale(1.06); }
    to { transform: scale(1); }
  }
  .top-rail { animation: hero-rise 0.7s 0.1s both ease-out; }
  .hero-sheet { animation: hero-rise 0.7s 0.2s both ease-out; }
  .hero-copy { animation: hero-rise 0.9s 0.25s both cubic-bezier(0.22, 1, 0.36, 1); }
  .hero-bottom { animation: hero-rise 0.9s 0.45s both cubic-bezier(0.22, 1, 0.36, 1); }
  @keyframes hero-rise {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

/* ─── FOCUS STATES ─── */
.btn:focus-visible,
.pf-arrow:focus-visible,
.faq-item:focus-visible,
.city:focus-visible,
.hero-nav a:focus-visible,
.sticky-rail .sticky-nav a:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

/* ═══════════════════════════════════════════════════════════════════════
   SUBPAGE BASELINE — applied to body.subpage
   Sticky rail visible from load (no hero to trigger the slide-in).
   .page gets top padding equal to the fixed header so content isn't hidden.
   ═══════════════════════════════════════════════════════════════════════ */
.subpage .sticky-rail { transform: translateY(0); opacity: 1; }
.subpage .page { padding-top: 64px; }
.subpage .sticky-nav a[aria-current="page"] { color: var(--blue); }
.subpage .sticky-nav a[aria-current="page"]::after {
  width: 100%; background: var(--blue);
}

/* ═══════════════════════════════════════════════════════════════════════
   PACKAGES PAGE — /packages
   Reuses .pkg + .pkg-grid from the homepage; adds the .pkg-2col modifier
   for the larger 2×2 card layout, a paper-warm hero, and a compact
   horizontal financing strip that speaks the same dark-card vocabulary.
   ═══════════════════════════════════════════════════════════════════════ */

/* ── HERO (text-only, paper-warm) ── */
.pkg-hero {
  position: relative;
  background: var(--paper-warm);
  padding: 112px 56px 88px;
  border-top: 1px solid rgba(26,26,26,0.6);
  border-bottom: 0.5px solid var(--line);
  text-align: center;
  overflow: hidden;
  /* full-bleed background to viewport edges */
  clip-path: inset(0 -100vmax);
  box-shadow: 0 0 0 100vmax var(--paper-warm);
}
.pkg-hero .hero-ticks { inset: 36px; }
.pkg-hero .hero-ticks .t { border-color: rgba(26,26,26,0.55); }
.pkg-hero-sheet {
  position: absolute; right: 56px; top: 56px;
  text-align: right;
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.16em; font-weight: 500;
  color: var(--gray);
}
.pkg-hero-sheet .sheet-sub { color: var(--blue); margin-top: 4px; }
.pkg-hero-inner {
  position: relative;
  max-width: 880px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
}
.pkg-hero-h {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 300;
  font-size: 56px; line-height: 1.04; letter-spacing: -0.03em;
  color: var(--ink); margin: 0;
}
.pkg-hero-p {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 18px;
  line-height: 1.55; color: var(--gray-deep);
  margin: 0; max-width: 720px;
}
.pkg-hero-chain {
  display: flex; align-items: center; gap: 22px;
  font-family: 'JetBrains Mono', monospace; font-weight: 700;
  font-size: 14px; letter-spacing: 0.16em;
  color: var(--blue);
  margin-top: 4px;
}
.pkg-hero-chain .chain-bar {
  width: 16px; height: 1.4px;
  background: rgba(0,105,255,0.4);
}

/* ── 2×2 CARD GRID ── */
.packages-2col { padding: 80px 56px; }
.pkg-grid-2col {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ── 2col CARD VARIANT ── */
.pkg-2col {
  min-height: 0; /* override homepage min-height */
}
.pkg-2col .pkg-name { font-size: 40px; }
.pkg-2col .pkg-plan { height: 180px; padding: 0 24px; }

/* ICP line — italic ICP statement above the inclusion list */
.pkg-icp {
  margin: 0;
  padding: 0 24px 20px;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 500; font-style: normal;
  font-size: 16px; line-height: 1.4; letter-spacing: -0.01em;
  color: var(--gray-deep);
  transition: color 0.32s ease;
}
.pkg:hover .pkg-icp { color: var(--blue-light); }

/* "Everything included" inclusion block */
.pkg-includes {
  padding: 20px 24px 24px;
  border-top: 0.5px solid var(--line-darker);
  display: flex; flex-direction: column; gap: 14px;
  transition: border-top-color 0.32s ease;
}
.pkg:hover .pkg-includes { border-top-color: rgba(242,241,237,0.4); }
.pkg-includes-head {
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  font-size: 10px; letter-spacing: 0.18em;
  color: var(--gray);
  transition: color 0.32s ease;
}
.pkg:hover .pkg-includes-head { color: var(--blue-light); }
.pkg-includes .pkg-feat { padding: 0; }
.pkg-feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}
.pkg-feat-grid li { padding: 5px 0; font-size: 12.5px; }

/* Footer in 2col mode — full button instead of arrow */
.pkg-2col .pkg-footer {
  padding: 24px;
  align-items: center; justify-content: space-between;
  gap: 24px;
  min-height: 0;
}
.pkg-2col .pf-num { font-size: 36px; }
.pkg-2col .pf-mo { font-size: 9px; letter-spacing: 0.16em; }
.pkg-cta {
  white-space: nowrap;
  padding: 16px 24px;
  height: 48px; font-size: 12px;
}

/* Featured card — electric-blue band above the head */
.pkg-featured {
  border-color: var(--blue);
  position: relative;
}
.pkg-band {
  height: 36px;
  background: var(--blue);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace; font-weight: 700;
  font-size: 11px; letter-spacing: 0.22em;
  transition: background-color 0.32s ease, color 0.32s ease;
}
.pkg-featured:hover .pkg-band { background: var(--paper-fg); color: var(--ink); }

/* Disclaimer below the 4-card grid */
.pkg-detail-disclaimer {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 15px;
  line-height: 1.6; color: var(--ink);
  margin: 20px 0 0; max-width: 1141px;
}

/* ── COMPACT FINANCING STRIP ── */
.fin-strip {
  padding: 80px 56px;
  background: #fff;
  display: flex; flex-direction: column; gap: 24px;
  clip-path: inset(0 -100vmax);
  box-shadow: 0 0 0 100vmax #fff;
}
.fin-strip-card {
  background: var(--ink-mid);
  color: #fff;
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 220px 1fr 320px;
  gap: 48px;
  align-items: stretch;
  border: 0.5px solid rgba(255,255,255,0.1);
}
.fin-strip-left {
  display: flex; flex-direction: column; gap: 10px;
  justify-content: center;
  border-right: 0.5px solid rgba(255,255,255,0.18);
  padding-right: 32px;
}
.fs-eyebrow {
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  font-size: 10px; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
}
.fs-brand {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 900;
  font-size: 36px; letter-spacing: 0.01em; line-height: 1;
  color: #fff; text-transform: uppercase;
}
.fin-strip-mid {
  display: flex; flex-direction: column; gap: 14px;
  justify-content: center;
}
.fs-price {
  display: flex; align-items: baseline; gap: 14px;
}
.fs-from {
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  font-size: 11px; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}
.fs-big {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 500; font-style: normal;
  font-size: 44px; line-height: 1; letter-spacing: -0.028em;
  color: #1A78FF;
  font-variant-numeric: tabular-nums;
}
.fs-unit {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 400; font-style: normal;
  font-size: 22px; letter-spacing: 0; color: rgba(255,255,255,0.6);
  margin-left: 2px;
}
.fs-body {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 13px;
  line-height: 1.55; color: rgba(255,255,255,0.72);
  margin: 0; max-width: 540px;
}
.fin-strip-right {
  display: flex; flex-direction: column; gap: 12px;
  justify-content: center; align-items: stretch;
}
.fin-strip-right .btn { justify-content: center; }
.fin-strip .fin-disclaimer {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 12px;
  line-height: 1.5; color: rgba(0,0,0,0.5);
  margin: 0; max-width: 1141px;
}

/* ═══════════════════════════════════════════════════════════════════════
   PACKAGE DETAIL PAGES — /packages/{essential|select|premier|signature}
   Reuses the entire homepage system + adds detail-only blocks:
   .pkg-detail-hero (image right · copy left)
   .tier-spec (at-a-glance price + spec stats)
   .who-for (3-paragraph buyer profile)
   .pkg-detail-included (simpler 2-col inclusion list, no callout illustration)
   ═══════════════════════════════════════════════════════════════════════ */

/* ── HERO ── */
.pkg-detail-hero {
  position: relative;
  background: var(--paper);
  border-bottom: 0.5px solid var(--line);
  /* full bleed paper bg (matches body so no visible bleed needed) */
}
.pdh-grid {
  display: grid;
  grid-template-columns: 656px 1fr;
  gap: 0;
  min-height: 720px;
}
.pdh-copy {
  padding: 88px 56px 64px 56px;
  display: flex; flex-direction: column; gap: 24px;
  border-right: 0.5px solid var(--line);
}
.pdh-badges {
  display: flex; align-items: center; gap: 18px;
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  font-size: 10px; letter-spacing: 0.18em;
  color: var(--gray);
  margin-bottom: -4px;
}
.pdh-badges .b-dot {
  width: 6px; height: 6px; background: var(--blue);
  display: inline-block;
}
.pdh-badge { display: flex; align-items: center; gap: 8px; }
.pdh-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.18em;
  color: var(--blue);
}
.pdh-tag-band {
  display: inline-block;
  align-self: flex-start;
  padding: 6px 14px;
  background: var(--blue);
  color: #fff;
  font-family: 'JetBrains Mono', monospace; font-weight: 700;
  font-size: 10px; letter-spacing: 0.22em;
}
.pdh-h {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 300;
  font-size: 44px; line-height: 1.06; letter-spacing: -0.028em;
  color: var(--ink); margin: 4px 0 0;
}
.pdh-h .pdh-h-num {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 700; font-style: normal;
  color: var(--blue);
}
.pdh-p {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 18px;
  line-height: 1.55; color: var(--gray-deep);
  margin: 0; max-width: 540px;
}
.pdh-ctas {
  display: flex; gap: 12px;
  margin-top: 12px;
}
.pdh-vp {
  display: flex; align-items: center; gap: 28px;
  margin-top: auto;
  padding-top: 28px;
  border-top: 0.5px solid var(--line);
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  font-size: 10px; letter-spacing: 0.14em;
  color: var(--gray-deep);
}
.pdh-vp-item { display: flex; align-items: center; gap: 8px; }
.pdh-vp-item .b-dot { width: 6px; height: 6px; background: var(--blue); display: inline-block; flex-shrink: 0; }

.pdh-image {
  position: relative;
  overflow: hidden;
  background: var(--paper-warm);
}
.pdh-image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
/* Plan view — architectural footprint sits centered on paper-warm */
.pdh-plan {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 96px 80px;
}
.pdh-plan svg {
  width: 100%; height: auto;
  max-width: 100%; max-height: 100%;
  display: block;
}
.pdh-image .hero-ticks { inset: 32px; }
.pdh-image .hero-ticks .t { border-color: rgba(26,26,26,0.55); }
.pdh-image-sheet {
  position: absolute; right: 40px; top: 40px;
  text-align: right; z-index: 2;
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.16em; font-weight: 500;
  color: var(--gray);
}
.pdh-image-sheet .sheet-sub { color: var(--blue); margin-top: 4px; }

/* ── TIER SPEC BLOCK ── "Essential at a Glance" ── */
.tier-spec {
  padding: 80px 56px;
  background: var(--paper);
  display: flex; flex-direction: column; gap: 48px;
}
.tier-spec-grid {
  display: grid;
  grid-template-columns: 528px 1fr;
  gap: 24px;
  align-items: stretch;
}
.tier-spec-price {
  background: var(--ink-mid);
  color: #fff;
  padding: 48px;
  display: flex; flex-direction: column; gap: 16px;
  justify-content: space-between;
  position: relative;
}
.tsp-eyebrow {
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  font-size: 11px; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
}
.tsp-num {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 500;
  font-size: 48px; line-height: 1; letter-spacing: -0.028em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.tsp-mo {
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  font-size: 12px; letter-spacing: 0.14em;
  color: var(--blue-light);
}
.tsp-mo .tsp-mo-num {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-style: normal; font-weight: 700;
  font-size: 22px; letter-spacing: -0.01em;
  color: #1A78FF;
  margin-right: 8px;
}
.tsp-ctas { display: flex; gap: 12px; margin-top: 16px; }

.tier-spec-stats {
  background: #fff;
  border: 0.5px solid var(--line);
  display: flex; flex-direction: column;
}
.tss-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  padding: 20px 28px;
  border-bottom: 0.5px solid var(--line);
  align-items: center;
}
.tss-row:last-child { border-bottom: none; }
.tss-lbl {
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  font-size: 11px; letter-spacing: 0.16em;
  color: var(--gray);
  text-transform: uppercase;
}
.tss-val {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 500;
  font-size: 18px; letter-spacing: -0.015em;
  color: var(--ink);
}
.tss-val em {
  font-style: normal; font-weight: 600; color: var(--blue);
}

/* ── WHO IT'S FOR ── 3-column paragraph row ── */
.who-for {
  padding: 80px 56px;
  background: #fff;
  display: flex; flex-direction: column; gap: 48px;
  clip-path: inset(0 -100vmax);
  box-shadow: 0 0 0 100vmax #fff;
}
.who-for-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.wf-col {
  border: 0.5px solid var(--line);
  padding: 36px 28px;
  display: flex; flex-direction: column; gap: 12px;
  background: #fff;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.wf-col:hover { border-color: var(--blue); transform: translateY(-2px); }
.wf-eyebrow {
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  font-size: 11px; letter-spacing: 0.22em;
  color: var(--blue);
}
.wf-title {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 500; font-style: normal;
  font-size: 24px; line-height: 1.15; letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0;
}
.wf-body {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 14px;
  line-height: 1.55; color: var(--gray-deep);
  margin: 0;
}

/* ── PACKAGE-DETAIL "WHAT'S INCLUDED" ── 2-col list, no callout illustration ── */
.pkg-detail-included {
  padding: 80px 56px;
  background: var(--paper);
  display: flex; flex-direction: column; gap: 48px;
}
.pdi-list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 32px;
  border: 0.5px solid var(--line);
  background: #fff;
  padding: 28px 32px;
}
.pdi-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 14px;
  line-height: 1.4;
  color: var(--ink);
  border-bottom: 0.5px solid var(--line);
}
.pdi-list li:nth-last-child(-n+2) { border-bottom: none; }
.pdi-check {
  width: 16px; height: 16px; flex-shrink: 0;
  border: 0.5px solid var(--blue);
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
}
.pdi-check::after {
  content: '';
  width: 8px; height: 4px;
  border-left: 1.5px solid var(--blue);
  border-bottom: 1.5px solid var(--blue);
  transform: rotate(-45deg) translate(1px, -1px);
}
.pdi-disclaimer {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 12px;
  line-height: 1.5; color: var(--gray);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   SUBPAGE TYPOGRAPHY OVERRIDES
   Per direction: drop the italic-blue flourish, keep type clean + black
   on detail pages. Homepage retains the accent.
   ═══════════════════════════════════════════════════════════════════════ */
.subpage .h-accent {
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
  color: inherit;
}
.subpage .pdh-h .pdh-h-num {
  font-style: normal;
  font-weight: 500;
  color: inherit;
}

/* Dark price card — flatten the italic monthly + blue, keep all white */
.tier-spec-price .tsp-mo {
  font-style: normal;
  color: rgba(255,255,255,0.65);
}
.tier-spec-price .tsp-mo .tsp-mo-num {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  color: #fff;
  margin-right: 8px;
  letter-spacing: 0;
}

/* Stats table em — flatten to clean dark text */
.tier-spec-stats .tss-val em {
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
}

/* Vertical CTA stack inside the dark price card */
.tier-spec-price .tsp-ctas {
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
.tier-spec-price .tsp-ctas .btn {
  justify-content: center;
  width: 100%;
}

/* Who-for: italic title was too much — keep it medium-weight upright on subpages */
.subpage .wf-title {
  font-style: normal;
  font-weight: 600;
}

/* Final CTA "six weeks from now." stays electric blue on every page */
.final-h .h-accent,
.subpage .final-h .h-accent {
  color: var(--blue);
}

/* Financing hero "from $380/mo." stays electric blue */
.fin-hero .h-accent,
.subpage .fin-hero .h-accent {
  color: var(--blue);
}

/* ═══════════════════════════════════════════════════════════════════════
   FAQ PAGE — /faq
   ═══════════════════════════════════════════════════════════════════════ */
.faq-cat-nav {
  position: sticky;
  top: 64px; /* sits flush under the fixed sticky-rail */
  z-index: 50;
  padding: 20px 56px;
  background: rgba(244,244,241,0.94);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 0.5px solid var(--line);
  border-bottom: 0.5px solid var(--line);
}
.cat-pills {
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: center;
}
.cat-pill {
  display: inline-flex; align-items: center;
  padding: 12px 22px;
  border: 0.5px solid var(--line-soft);
  background: #fff;
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  font-size: 11px; letter-spacing: 0.18em;
  color: var(--ink);
  text-transform: uppercase;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.cat-pill:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

.faq-cat {
  padding: 80px 56px;
  background: #fff;
  display: flex; flex-direction: column; gap: 36px;
  clip-path: inset(0 -100vmax);
  box-shadow: 0 0 0 100vmax #fff;
}
.faq-cat:nth-child(even of .faq-cat) { background: var(--paper); box-shadow: 0 0 0 100vmax var(--paper); }
.cat-header {
  display: flex; flex-direction: column; gap: 12px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  border-left: 3px solid var(--blue);
  padding-left: 24px;
}
.cat-h {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 400;
  font-size: 44px; line-height: 1.05; letter-spacing: -0.025em;
  color: var(--ink); margin: 0;
}
.faq-cat .faq-list { width: 100%; border: 1px solid var(--line-soft); }

/* ═══════════════════════════════════════════════════════════════════════
   ABOUT PAGE — /about
   ═══════════════════════════════════════════════════════════════════════ */

/* The Story — 2-col copy + image */
.about-story {
  padding: 80px 56px;
  background: #fff;
  display: flex; flex-direction: column; gap: 56px;
  clip-path: inset(0 -100vmax);
  box-shadow: 0 0 0 100vmax #fff;
}
.story-grid {
  display: grid; grid-template-columns: 1fr 540px;
  gap: 56px; align-items: center;
}
.story-copy {
  display: flex; flex-direction: column; gap: 18px;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px;
  line-height: 1.7; color: var(--ink);
}
.story-copy p { margin: 0; }
.story-pull {
  font-size: 20px; font-weight: 500; color: var(--ink);
  border-left: 3px solid var(--blue);
  padding-left: 20px; margin-top: 12px !important;
}
/* Desert Springs badge sitting above the body copy in The Story */
.story-mark {
  display: flex; align-items: center; gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 8px;
  border-bottom: 0.5px solid var(--line);
}
.story-mark-logo {
  width: 56px; height: 56px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
}
.story-mark-text { display: flex; flex-direction: column; gap: 4px; }
.story-mark-eyebrow {
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  font-size: 10px; letter-spacing: 0.20em;
  color: var(--blue);
}
.story-mark-name {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 700;
  font-size: 16px; letter-spacing: 0.04em;
  color: var(--ink);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════════════
   CATALOG — /catalog
   Internal page-review tool. Reusable template across future client sites.
   Not linked from public nav. Search + filter + grouped card grid.
   ═══════════════════════════════════════════════════════════════════════ */
.catalog-page { background: var(--paper); }
.catalog-page .h-accent { color: var(--blue); font-style: normal; }

/* Internal top bar — replaces the public sticky-rail on /catalog */
.catalog-bar {
  position: sticky; top: 0;
  z-index: 100;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 32px;
  padding: 16px 40px;
  background: var(--ink-deep);
  color: var(--paper-fg);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.catalog-bar .wordmark .g-sq,
.catalog-bar .wordmark .g-ring { border-color: var(--paper-fg); }
.catalog-bar .wordmark .g-dot { background: var(--paper-fg); }
.catalog-bar .wordmark .wm-name { color: var(--paper-fg); }
.catalog-bar .wordmark .wm-sub { color: var(--blue-light); letter-spacing: 0.22em; }
.catalog-bar-meta {
  justify-self: center;
  display: flex; align-items: center; gap: 18px;
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  font-size: 11px; letter-spacing: 0.18em;
  color: rgba(242,241,237,0.7);
}
.cb-meta-divider {
  width: 6px; height: 6px; background: var(--blue);
}
.catalog-bar .btn { justify-self: end; }

.catalog { max-width: 1440px; margin: 0 auto; }

/* Hero */
.catalog-hero {
  position: relative;
  padding: 80px 56px 64px;
  background: var(--paper-warm);
  border-bottom: 0.5px solid var(--line);
}
.catalog-hero .hero-ticks { inset: 32px; }
.catalog-hero .hero-ticks .t { border-color: rgba(26,26,26,0.45); }
.catalog-hero-inner {
  position: relative;
  max-width: 1100px;
  display: flex; flex-direction: column; gap: 18px;
}
.catalog-h {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 300;
  font-size: 44px; line-height: 1.02; letter-spacing: -0.028em;
  color: var(--ink); margin: 4px 0 0;
}
.catalog-sub {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 17px;
  line-height: 1.55; color: var(--gray-deep);
  margin: 0; max-width: 720px;
}

.catalog-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 32px;
  border: 0.5px solid var(--line);
  background: #fff;
}
.cs-stat {
  padding: 24px 28px;
  border-right: 0.5px solid var(--line);
  display: flex; flex-direction: column; gap: 8px;
}
.cs-stat:last-child { border-right: none; }
.cs-num {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 400;
  font-size: 44px; line-height: 1; letter-spacing: -0.03em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.cs-lbl {
  font-family: 'JetBrains Mono', monospace; font-weight: 700;
  font-size: 10px; letter-spacing: 0.20em;
  color: var(--gray);
  display: flex; align-items: center; gap: 8px;
}
.cs-dot {
  width: 8px; height: 8px;
  display: inline-block; flex-shrink: 0;
}
.cs-dot-live    { background: var(--blue); }
.cs-dot-pending { background: #C7A55A; } /* warm amber for in-progress */

/* Sticky controls bar — search + filter + jump nav */
.catalog-controls {
  position: sticky; top: 64px;
  z-index: 90;
  background: rgba(244,244,241,0.94);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 0.5px solid var(--line);
  border-bottom: 0.5px solid var(--line);
  padding: 16px 56px;
}
.cc-controls-inner {
  display: grid; grid-template-columns: 1fr auto auto;
  gap: 24px; align-items: center;
}
.cc-search {
  position: relative;
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  border: 0.5px solid var(--line);
  background: #fff;
  max-width: 520px;
}
.cc-search-icon {
  width: 14px; height: 14px; color: var(--gray);
  flex-shrink: 0;
}
.cc-search input {
  flex: 1;
  border: 0; outline: 0; background: transparent;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 14px;
  color: var(--ink);
  padding: 2px 0;
}
.cc-search input::placeholder { color: var(--gray); }
.cc-kbd {
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  font-size: 10px; letter-spacing: 0.06em;
  color: var(--gray);
  background: var(--paper);
  border: 0.5px solid var(--line);
  padding: 3px 6px;
}

.cc-filters {
  display: flex; gap: 8px;
}
.cc-filter-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  background: #fff;
  border: 0.5px solid var(--line);
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  font-size: 11px; letter-spacing: 0.14em;
  color: var(--ink);
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.cc-filter-pill:hover { border-color: var(--ink); }
.cc-filter-pill.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.cc-filter-pill.is-active .cs-dot { box-shadow: 0 0 0 1.5px rgba(255,255,255,0.6); }

.cc-jump {
  display: flex; align-items: center; gap: 16px;
  border-left: 0.5px solid var(--line);
  padding-left: 24px;
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  font-size: 11px; letter-spacing: 0.16em;
  color: var(--gray);
}
.cc-jump a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s ease;
}
.cc-jump a:hover { color: var(--blue); }

/* Categories */
.catalog-cat {
  padding: 64px 56px;
  border-bottom: 0.5px solid var(--line);
}
.catalog-cat:nth-child(even) { background: var(--paper); }
.catalog-cat:nth-child(odd)  { background: #fff; }
.catalog-cat-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 0.5px solid var(--line);
}
.catalog-cat-head > div:first-child {
  display: flex; flex-direction: column; gap: 8px;
  max-width: 720px;
}
.catalog-cat-h {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 400;
  font-size: 40px; line-height: 1.05; letter-spacing: -0.025em;
  color: var(--ink); margin: 4px 0 0;
}
.catalog-cat-sub {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 14px;
  line-height: 1.55; color: var(--gray-deep);
  margin: 4px 0 0;
}
.catalog-cat-count {
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  font-size: 11px; letter-spacing: 0.16em;
  color: var(--gray);
  text-transform: uppercase;
  white-space: nowrap;
}

/* Card grid */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.catalog-card {
  position: relative;
  background: #fff;
  border: 0.5px solid var(--line);
  padding: 0;
  display: flex; flex-direction: column;
  min-height: 280px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.catalog-cat:nth-child(odd) .catalog-card { background: var(--paper); }
.catalog-cat:nth-child(even) .catalog-card { background: #fff; }
.catalog-card:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px -10px rgba(0,0,0,0.18);
}
.catalog-card[data-status="pending"] {
  border-style: dashed;
  background: transparent !important;
}
.catalog-card[data-status="pending"]:hover {
  cursor: default;
  transform: none;
  box-shadow: none;
}
.catalog-card-featured { border-color: var(--blue); }
.catalog-card-major { grid-column: span 2; min-height: 260px; }

.cc-card-head {
  padding: 14px 18px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 0.5px solid var(--line);
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  font-size: 11px; letter-spacing: 0.16em;
  color: var(--gray);
}
.cc-num { color: var(--gray); }
.cc-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'JetBrains Mono', monospace; font-weight: 700;
  font-size: 10px; letter-spacing: 0.18em;
  padding: 4px 8px;
}
.cc-status-live    { background: var(--blue); color: #fff; }
.cc-status-pending { background: rgba(199,165,90,0.18); color: #8B6E33; }

.cc-card-body {
  padding: 18px 18px 14px;
  flex: 1;
  display: flex; flex-direction: column; gap: 8px;
}
.cc-name {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 500;
  font-size: 24px; line-height: 1.1; letter-spacing: -0.018em;
  color: var(--ink);
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap;
}
.cc-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace; font-weight: 700;
  font-size: 9px; letter-spacing: 0.20em;
  color: var(--blue);
  background: rgba(0,105,255,0.08);
  padding: 3px 8px;
}
.cc-url {
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  font-size: 11px; letter-spacing: 0.06em;
  color: var(--blue);
  word-break: break-all;
}
.cc-desc {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 13px;
  line-height: 1.5; color: var(--gray-deep);
  margin: 6px 0 0;
}

.cc-card-meta {
  padding: 12px 18px;
  border-top: 0.5px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  font-size: 10px; letter-spacing: 0.14em;
  color: var(--gray);
}
.cc-open {
  color: var(--blue);
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700;
}
.cc-open .arrow { background: var(--blue); width: 14px; height: 1px; }
.catalog-card[data-status="pending"] .cc-open { color: var(--gray); }
.catalog-card[data-status="pending"] .cc-open .arrow { display: none; }

/* Empty state */
.catalog-empty {
  padding: 80px 56px;
  text-align: center;
  background: var(--paper);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.catalog-empty-eyebrow {
  font-family: 'JetBrains Mono', monospace; font-weight: 700;
  font-size: 11px; letter-spacing: 0.20em;
  color: var(--blue);
}
.catalog-empty p {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px;
  color: var(--gray-deep);
  margin: 0;
}

/* Bottom strip */
.catalog-foot {
  padding: 24px 40px;
  background: var(--ink-deep);
  color: rgba(242,241,237,0.55);
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ═══ PREVIEW MODAL ═══
   Click a card → preview opens with the actual page inside an iframe.
   Viewport toggle scales the iframe to simulate desktop/tablet/mobile. */
.preview-modal {
  position: fixed; inset: 0;
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
}
.preview-modal[hidden] { display: none; }
.pm-backdrop {
  position: absolute; inset: 0;
  background: rgba(14,16,18,0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.pm-shell {
  position: relative;
  width: calc(100vw - 64px);
  height: calc(100vh - 64px);
  display: flex; flex-direction: column;
  background: var(--paper-warm);
  border: 0.5px solid rgba(255,255,255,0.15);
  overflow: hidden;
}
.pm-header {
  display: grid; grid-template-columns: 1fr auto auto;
  align-items: center; gap: 28px;
  padding: 16px 22px;
  background: var(--ink-deep);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pm-meta {
  display: flex; align-items: center; gap: 14px;
  min-width: 0;
}
.pm-num {
  font-family: 'JetBrains Mono', monospace; font-weight: 700;
  font-size: 10px; letter-spacing: 0.20em;
  color: var(--blue-light);
}
.pm-divider {
  width: 4px; height: 4px; background: var(--blue);
}
.pm-title {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 600;
  font-size: 17px; letter-spacing: -0.015em;
  color: #fff;
  white-space: nowrap;
}
.pm-url {
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  font-size: 11px; letter-spacing: 0.04em;
  color: var(--blue);
  padding: 4px 10px;
  background: rgba(0,105,255,0.15);
  border: 0.5px solid rgba(0,105,255,0.3);
}
.pm-viewport-toggle {
  display: flex; gap: 0;
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(255,255,255,0.12);
}
.pm-vp-btn {
  padding: 9px 16px;
  background: transparent;
  border: 0;
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  font-size: 10px; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease;
}
.pm-vp-btn:hover { color: #fff; background: rgba(255,255,255,0.04); }
.pm-vp-btn.is-active {
  background: var(--blue);
  color: #fff;
}
.pm-actions { display: flex; align-items: center; gap: 12px; }
.pm-open {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  background: transparent;
  border: 0.5px solid rgba(255,255,255,0.35);
  font-family: 'JetBrains Mono', monospace; font-weight: 700;
  font-size: 10px; letter-spacing: 0.18em;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.pm-open:hover { background: rgba(255,255,255,0.08); border-color: #fff; }
.pm-open-arrow { font-size: 12px; }
.pm-close-btn {
  width: 36px; height: 36px;
  background: transparent;
  border: 0.5px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background-color 0.2s ease;
}
.pm-close-btn:hover { background: rgba(255,255,255,0.08); }

/* Stage — scrollable container that holds the framed iframe */
.pm-stage {
  flex: 1; overflow: auto;
  display: flex; align-items: flex-start; justify-content: center;
  padding: 32px;
  background:
    repeating-linear-gradient(45deg, rgba(0,0,0,0.02) 0 2px, transparent 2px 12px),
    var(--gray-deep);
}
.pm-frame-wrap {
  background: #fff;
  box-shadow: 0 24px 64px -16px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
  overflow: hidden;
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1), height 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.pm-frame {
  width: 1440px;
  height: 4000px;
  border: 0;
  display: block;
  transform-origin: top left;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Desktop: 1440 — natural size */
.pm-stage[data-vp="desktop"] .pm-frame-wrap { width: 1440px; height: 4000px; }
.pm-stage[data-vp="desktop"] .pm-frame      { transform: scale(1); }

/* Tablet: 1024 — scale 0.7111 */
.pm-stage[data-vp="tablet"] .pm-frame-wrap  { width: 1024px; height: 2844px; }
.pm-stage[data-vp="tablet"] .pm-frame       { transform: scale(0.7111); }

/* Mobile: 375 — scale 0.2604 */
.pm-stage[data-vp="mobile"] .pm-frame-wrap  { width: 375px; height: 1042px; }
.pm-stage[data-vp="mobile"] .pm-frame       { transform: scale(0.2604); }

/* ═══════════════════════════════════════════════════════════════════════
   GALLERY — /gallery
   ═══════════════════════════════════════════════════════════════════════ */
.gallery-hero {
  position: relative;
  height: 720px;
  background: var(--ink-deep);
  color: var(--paper-fg);
}
.gallery-hero-bleed {
  position: absolute;
  top: 0; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100vw; overflow: hidden;
  background: var(--ink-deep);
}
.gallery-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.gallery-hero-vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,16,18,0.65) 0%, rgba(14,16,18,0.15) 25%, rgba(14,16,18,0.40) 60%, rgba(14,16,18,0.94) 100%);
}
.gallery-hero .hero-ticks { inset: 32px; }
.gallery-hero .hero-ticks .t { border-color: rgba(255,255,255,0.7); }
.gallery-hero-inner {
  position: relative; z-index: 2;
  height: 100%;
  padding: 48px 56px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.gallery-hero-inner .pdh-badges { color: rgba(255,255,255,0.85); }
.gallery-hero-inner .pdh-badge .b-dot { background: var(--blue); }
.gallery-hero-block {
  max-width: 820px;
  display: flex; flex-direction: column; gap: 18px;
}
.gallery-hero-eyebrow { color: var(--blue-light); }
.gallery-hero-h {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 300;
  font-size: 56px; line-height: 1.04; letter-spacing: -0.03em;
  color: #fff; margin: 0;
}
.gallery-hero-h .h-accent,
.subpage .gallery-hero-h .h-accent { color: #fff !important; }
.gallery-hero-p {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 18px;
  line-height: 1.55; color: rgba(255,255,255,0.75);
  margin: 0; max-width: 640px;
}
.gallery-hero-ctas { display: flex; gap: 12px; margin-top: 10px; }

.gallery-section {
  padding: 80px 56px;
  background: var(--paper);
  display: flex; flex-direction: column; gap: 36px;
}
.gallery-filters {
  display: flex; gap: 10px; flex-wrap: wrap;
  padding-bottom: 8px;
}
.gf-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  background: #fff;
  border: 0.5px solid var(--line);
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  font-size: 11px; letter-spacing: 0.18em;
  color: var(--ink);
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.gf-pill:hover { border-color: var(--ink); }
.gf-pill.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.gf-count {
  font-size: 10px; opacity: 0.7;
  padding: 2px 6px;
  background: rgba(0,0,0,0.06);
}
.gf-pill.is-active .gf-count { background: rgba(255,255,255,0.18); opacity: 1; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
  gap: 16px;
}
.gallery-tile {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 0.5px solid var(--line);
  background: var(--ink-deep);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  padding: 0;
  font: inherit;
  text-align: left;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}
.gallery-tile-wide { grid-column: span 2; }
.gallery-tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-tile:hover img { transform: scale(1.06); }
.gallery-tile:hover { box-shadow: 0 14px 36px -10px rgba(0,0,0,0.4); }
.gt-meta {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  display: flex; align-items: flex-end; justify-content: space-between;
  z-index: 2;
}
.gt-badge {
  display: inline-block;
  padding: 8px 14px;
  background: rgba(14,16,18,0.85);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  font-family: 'JetBrains Mono', monospace; font-weight: 700;
  font-size: 10px; letter-spacing: 0.18em;
  color: #fff;
  border: 0.5px solid rgba(255,255,255,0.15);
}
.gt-badge-blue { background: var(--blue); border-color: var(--blue); }
.gt-num {
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  font-size: 10px; letter-spacing: 0.16em;
  color: rgba(255,255,255,0.7);
}
.gallery-tile::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 50%;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.55) 100%);
  z-index: 1; pointer-events: none;
}
.gallery-disclaimer {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 12px;
  line-height: 1.5; color: var(--gray);
  margin: 12px 0 0; max-width: 800px;
}

/* ═══ LIGHTBOX — fullscreen modal for project photos ═══ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(14, 16, 18, 0.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 80px;
}
.lightbox[hidden] { display: none !important; }
.lightbox-stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  background: var(--ink-deep);
}
.lightbox-meta {
  position: absolute;
  top: 24px; left: 32px;
  display: flex; align-items: center; gap: 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.8);
}
.lightbox-project {
  font-weight: 700;
  color: #fff;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 0.5px solid rgba(255, 255, 255, 0.18);
}
.lightbox-counter {
  font-weight: 500;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
}
.lightbox-close {
  top: 24px; right: 32px;
  width: 44px; height: 44px;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
}
.lightbox-nav {
  top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px;
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
@media (max-width: 640px) {
  .lightbox { padding: 56px 12px; }
  .lightbox-meta { top: 16px; left: 16px; font-size: 10px; gap: 12px; }
  .lightbox-close { top: 16px; right: 16px; width: 38px; height: 38px; font-size: 22px; }
  .lightbox-nav { width: 44px; height: 44px; font-size: 28px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

.gallery-captions {
  padding: 80px 56px;
  background: #fff;
  display: flex; flex-direction: column; gap: 48px;
  clip-path: inset(0 -100vmax);
  box-shadow: 0 0 0 100vmax #fff;
}
.captions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cap-card {
  position: relative;
  border: 0.5px solid var(--line);
  padding: 32px 24px;
  background: var(--paper);
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.cap-card:hover { border-color: var(--blue); transform: translateY(-2px); }
.cap-eyebrow {
  font-family: 'JetBrains Mono', monospace; font-weight: 700;
  font-size: 10px; letter-spacing: 0.20em;
  color: var(--blue);
}
.cap-name {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 400;
  font-size: 36px; line-height: 1; letter-spacing: -0.025em;
  color: var(--ink); margin: 0;
}
.cap-body {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 13px;
  line-height: 1.55; color: var(--gray-deep);
  margin: 0;
}
.cap-cta {
  font-family: 'JetBrains Mono', monospace; font-weight: 700;
  font-size: 10px; letter-spacing: 0.18em;
  color: var(--blue);
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: auto;
}
.cap-cta .arrow { background: var(--blue); }

/* ═══════════════════════════════════════════════════════════════════════
   CONTACT — /contact
   ═══════════════════════════════════════════════════════════════════════ */
.contact-grid-section {
  padding: 80px 56px;
  background: var(--paper);
}
.contact-grid {
  display: grid; grid-template-columns: 480px 1fr; gap: 32px;
  align-items: stretch;
}
.contact-phone-block {
  background: var(--ink-mid);
  color: #fff;
  padding: 48px;
  display: flex; flex-direction: column; gap: 16px;
  justify-content: center;
}
.contact-phone-block .sh-eyebrow { color: var(--blue-light); }
.contact-phone-h {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 300;
  font-size: 48px; line-height: 1; letter-spacing: -0.028em;
  color: #fff; margin: 0 0 4px;
}
.contact-phone-num {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 500;
  font-size: 56px; line-height: 1; letter-spacing: -0.025em;
  color: var(--blue);
  text-decoration: none;
  font-variant-numeric: tabular-nums;
  display: inline-block;
  margin: 4px 0 8px;
}
.contact-phone-num:hover { color: #fff; }
.contact-phone-meta {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 13px;
  line-height: 1.55; color: rgba(255,255,255,0.7);
  margin: 0;
}
.contact-phone-divider { height: 0.5px; background: rgba(255,255,255,0.18); margin: 16px 0; }
.contact-phone-detail { display: flex; flex-direction: column; gap: 12px; }
.cpd-row { display: flex; align-items: baseline; gap: 16px; }
.cpd-lbl {
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  font-size: 10px; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.55);
  min-width: 120px;
}
.cpd-val {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 500;
  font-size: 14px; color: rgba(255,255,255,0.95);
  text-decoration: none;
}
.cpd-val:hover { color: var(--blue-light); }

.contact-form-block {
  background: #fff;
  border: 0.5px solid var(--line);
  padding: 48px;
  display: flex; flex-direction: column; gap: 12px;
}
.contact-form-h {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 300;
  font-size: 48px; line-height: 1; letter-spacing: -0.028em;
  color: var(--ink); margin: 0 0 16px;
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.cf-field { display: flex; flex-direction: column; gap: 8px; }
.cf-lbl {
  font-family: 'JetBrains Mono', monospace; font-weight: 700;
  font-size: 10px; letter-spacing: 0.20em;
  color: var(--gray);
  text-transform: uppercase;
}
.cf-opt {
  font-weight: 400;
  color: var(--line-darker);
  text-transform: none;
  letter-spacing: 0.04em;
}
.cf-input, .cf-textarea {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 400;
  font-size: 15px; line-height: 1.4;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.cf-input:focus, .cf-textarea:focus {
  outline: none;
  border-bottom-color: var(--blue);
  background: #fff;
}
.cf-input::placeholder, .cf-textarea::placeholder { color: var(--gray); }
.cf-textarea { resize: vertical; min-height: 96px; }
.cf-submit { justify-content: center; margin-top: 8px; }
.cf-meta {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 12px;
  line-height: 1.5; color: var(--gray);
  margin: 4px 0 0;
}
.cf-success {
  border: 0.5px solid var(--blue);
  padding: 24px;
  display: flex; flex-direction: column; gap: 6px;
  background: rgba(0,105,255,0.04);
}
/* `display: flex` above overrides the browser's default
   `[hidden] { display: none }`. Restore it so the success
   message stays hidden until the form actually submits. */
.cf-success[hidden] { display: none !important; }
.cfs-eyebrow {
  font-family: 'JetBrains Mono', monospace; font-weight: 700;
  font-size: 11px; letter-spacing: 0.22em;
  color: var(--blue);
}

/* Configurator nudge band (electric blue) */
.cta-band {
  padding: 64px 56px;
  background: var(--blue);
  color: #fff;
  clip-path: inset(0 -100vmax);
  box-shadow: 0 0 0 100vmax var(--blue);
}
.cta-band-inner {
  display: grid; grid-template-columns: 1fr auto;
  gap: 48px; align-items: center;
}
.cta-band-eyebrow {
  font-family: 'JetBrains Mono', monospace; font-weight: 700;
  font-size: 11px; letter-spacing: 0.20em;
  color: rgba(255,255,255,0.8);
}
.cta-band-h {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 400;
  font-size: 48px; line-height: 1.05; letter-spacing: -0.028em;
  color: #fff; margin: 8px 0 12px;
}
.cta-band-p {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px;
  line-height: 1.55; color: rgba(255,255,255,0.85);
  margin: 0; max-width: 640px;
}
.cta-band-ctas { display: flex; gap: 12px; }
.cta-band .btn-light { color: var(--ink-deep); }
.cta-band .btn-outline { border-color: rgba(255,255,255,0.6); color: #fff; }

/* ═══════════════════════════════════════════════════════════════════════
   LEGAL — /privacy, /terms
   ═══════════════════════════════════════════════════════════════════════ */
.legal-page { background: var(--paper); }
.legal-content {
  max-width: 880px;
  margin: 0 auto;
  padding: 96px 56px 80px;
  display: flex; flex-direction: column; gap: 48px;
}
.legal-hero {
  display: flex; flex-direction: column; gap: 18px;
  padding-bottom: 36px;
  border-bottom: 0.5px solid var(--line);
}
.legal-h {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 300;
  font-size: 44px; line-height: 1.02; letter-spacing: -0.028em;
  color: var(--ink); margin: 8px 0 0;
}
.legal-updated {
  display: flex; align-items: baseline; gap: 14px;
  margin: 8px 0 0;
  font-family: 'JetBrains Mono', monospace;
}
.lu-lbl {
  font-weight: 700; font-size: 11px; letter-spacing: 0.20em;
  color: var(--blue);
}
.lu-val {
  font-weight: 500; font-size: 13px; letter-spacing: 0.06em;
  color: var(--ink);
}
.legal-lede {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 17px;
  line-height: 1.6; color: var(--gray-deep);
  margin: 12px 0 0;
}

.legal-toc {
  border: 0.5px solid var(--line);
  background: #fff;
  padding: 28px 32px;
  display: flex; flex-direction: column; gap: 14px;
}
.legal-toc-eyebrow {
  font-family: 'JetBrains Mono', monospace; font-weight: 700;
  font-size: 11px; letter-spacing: 0.22em;
  color: var(--blue);
}
.legal-toc-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 24px;
  counter-reset: toc;
}
.legal-toc-list li {
  counter-increment: toc;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 14px;
  line-height: 1.5;
  display: flex; align-items: baseline; gap: 12px;
}
.legal-toc-list li::before {
  content: counter(toc, decimal-leading-zero);
  font-family: 'JetBrains Mono', monospace; font-weight: 700;
  font-size: 11px; color: var(--blue);
  flex-shrink: 0;
}
.legal-toc-list a { color: var(--ink); text-decoration: none; }
.legal-toc-list a:hover { color: var(--blue); }

.legal-section {
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-template-rows: auto auto;
  column-gap: 32px;
  padding-top: 32px;
  border-top: 0.5px solid var(--line);
  scroll-margin-top: 96px;
}
.ls-num {
  grid-column: 1;
  grid-row: 1 / span 2;
  font-family: 'JetBrains Mono', monospace; font-weight: 700;
  font-size: 13px; letter-spacing: 0.20em;
  color: var(--blue);
  padding-top: 14px;
}
.legal-section .ls-h   { grid-column: 2; grid-row: 1; }
.legal-section .ls-body { grid-column: 2; grid-row: 2; }
.ls-h {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 500;
  font-size: 28px; line-height: 1.15; letter-spacing: -0.018em;
  color: var(--ink); margin: 0 0 18px;
}
.ls-body {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 15px;
  line-height: 1.7; color: var(--ink);
  display: flex; flex-direction: column; gap: 14px;
}
.ls-body p { margin: 0; }
.ls-body strong { color: var(--ink); font-weight: 700; }
.ls-list {
  list-style: none; padding: 0; margin: 4px 0 0;
  display: flex; flex-direction: column; gap: 8px;
}
.ls-list li {
  position: relative; padding-left: 22px;
  font-size: 15px; line-height: 1.65; color: var(--ink);
}
.ls-list li::before {
  content: '';
  position: absolute; left: 0; top: 12px;
  width: 8px; height: 1px; background: var(--blue);
}
.ls-callout {
  padding: 14px 18px;
  background: rgba(0,105,255,0.06);
  border-left: 3px solid var(--blue);
  font-weight: 500;
}
.ls-contact-card {
  margin-top: 8px;
  padding: 24px;
  background: #fff;
  border: 0.5px solid var(--line);
  display: flex; flex-direction: column; gap: 10px;
}
.lcc-name {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 700;
  font-size: 16px; color: var(--ink);
  margin-bottom: 4px;
}
.lcc-row {
  display: flex; align-items: baseline; gap: 14px;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 14px;
}
.lcc-lbl {
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  font-size: 10px; letter-spacing: 0.18em;
  color: var(--gray);
  min-width: 80px;
}
.lcc-val { color: var(--ink); text-decoration: none; }
.lcc-val:hover { color: var(--blue); }
.story-image {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--ink-deep);
  overflow: hidden;
}
.story-image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.story-image .hero-ticks .t { border-color: rgba(255,255,255,0.7); }

/* Install team — 4-metric stats strip */
.about-team {
  padding: 80px 56px;
  background: var(--paper-warm);
  display: flex; flex-direction: column; gap: 56px;
  clip-path: inset(0 -100vmax);
  box-shadow: 0 0 0 100vmax var(--paper-warm);
}
.metrics-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.metric {
  background: #fff;
  border: 0.5px solid var(--line);
  padding: 36px 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.metric:hover { border-color: var(--blue); transform: translateY(-2px); }
.metric-num {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 300;
  font-size: 40px; line-height: 1; letter-spacing: -0.028em;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
}
.metric-lbl {
  font-family: 'JetBrains Mono', monospace; font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em;
  color: var(--ink);
}
.metric-body {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 13px;
  line-height: 1.55; color: var(--gray-deep);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   SERVICE AREA PAGE — /service-area
   ═══════════════════════════════════════════════════════════════════════ */
.service-map-section {
  padding: 80px 56px;
  background: var(--paper);
  display: flex; flex-direction: column; gap: 48px;
}
.service-map-wrap {
  position: relative;
  height: 520px;
  border: 0.5px solid var(--line);
  overflow: hidden;
}
.service-map-wrap .service-map {
  width: 100%; height: 100%; border: 0; display: block;
  filter: grayscale(0.15) contrast(1.02);
}

.service-cities {
  padding: 80px 56px;
  background: #fff;
  display: flex; flex-direction: column; gap: 48px;
  clip-path: inset(0 -100vmax);
  box-shadow: 0 0 0 100vmax #fff;
}
.region-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.region {
  border: 0.5px solid var(--line);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 18px;
  background: var(--paper);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.region:hover { border-color: var(--blue); transform: translateY(-2px); }
.region-eyebrow {
  font-family: 'JetBrains Mono', monospace; font-weight: 700;
  font-size: 11px; letter-spacing: 0.22em;
  color: var(--blue);
}
.region-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.region-list li {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 500;
  font-size: 16px; color: var(--ink);
  display: flex; align-items: center; gap: 12px;
}
.region-link {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--ink);
  padding: 6px 0;
  border-bottom: 1px dashed transparent;
  transition: border-color 120ms ease, color 120ms ease;
}
.region-link:hover { color: var(--blue); border-bottom-color: var(--blue); }
.region-link .region-arrow {
  margin-left: auto;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700; font-size: 14px;
  color: var(--blue);
  opacity: 0; transform: translateX(-4px);
  transition: opacity 120ms ease, transform 120ms ease;
}
.region-link:hover .region-arrow { opacity: 1; transform: translateX(0); }
.region-dot {
  width: 6px; height: 6px;
  background: var(--blue); display: inline-block; flex-shrink: 0;
}

/* Zip result */
.zip-result {
  margin-top: 20px;
  padding: 20px 24px;
  display: flex; align-items: flex-start; gap: 16px;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 15px;
  border-left: 3px solid var(--blue);
  background: rgba(0, 0, 0, 0.04);
  color: var(--ink);
}
.zip-result strong { color: var(--ink); font-weight: 600; }
.zip-result a.zr-cta {
  color: var(--blue); font-weight: 600; text-decoration: none;
  border-bottom: 1px dashed var(--blue); padding-bottom: 1px;
  white-space: nowrap; margin-left: 6px;
}
.zip-result a.zr-cta:hover { background: var(--blue); color: #fff; border-bottom-color: transparent; padding: 2px 6px; }
.zip-result .zr-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace; font-weight: 700;
  font-size: 16px;
}
.zip-result .zr-body { line-height: 1.55; }
.zip-result.is-served {
  border-left-color: #4EBE6E;
  background: rgba(78, 190, 110, 0.10);
}
.zip-result.is-served .zr-icon { background: #4EBE6E; color: #fff; }
.zip-result.is-unserved {
  border-left-color: #F0AD22;
  background: rgba(240, 173, 34, 0.10);
}
.zip-result.is-unserved .zr-icon { background: #F0AD22; color: #fff; }
.zip-result.is-warn {
  border-left-color: #C0392B;
  background: rgba(192, 57, 43, 0.10);
}

/* Zip check */
.zip-check {
  padding: 80px 56px;
  background: var(--ink-mid);
  color: #fff;
  clip-path: inset(0 -100vmax);
  box-shadow: 0 0 0 100vmax var(--ink-mid);
}
.zip-check-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.zip-check .sh-eyebrow { color: var(--blue-light); }
.zip-h {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 300;
  font-size: 56px; line-height: 1.05; letter-spacing: -0.028em;
  color: #fff; margin: 12px 0 16px;
}
.zip-check .h-accent { color: var(--blue); }
.zip-p {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 15px;
  line-height: 1.6; color: rgba(255,255,255,0.75);
  margin: 0; max-width: 520px;
}
.zip-form {
  background: #fff;
  border: 0.5px solid rgba(255,255,255,0.2);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.zip-lbl {
  font-family: 'JetBrains Mono', monospace; font-weight: 700;
  font-size: 11px; letter-spacing: 0.20em;
  color: var(--blue);
}
.zip-input {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 500;
  font-size: 48px; line-height: 1; letter-spacing: -0.02em;
  color: var(--ink);
  background: transparent;
  border: 0; border-bottom: 1px solid var(--line);
  padding: 8px 0; margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.zip-input:focus { outline: none; border-bottom-color: var(--blue); }
.zip-input::placeholder { color: var(--line); }
.zip-cta { justify-content: center; }

/* Why service area matters */
.why-area {
  padding: 80px 56px;
  background: var(--paper);
  display: flex; flex-direction: column; gap: 48px;
}
.why-area-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: start;
}
.why-area-p {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 18px;
  line-height: 1.6; color: var(--ink);
  margin: 0;
}
.why-area-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
  border-left: 0.5px solid var(--line);
  padding-left: 32px;
}
.why-area-list li {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 15px;
  line-height: 1.6; color: var(--gray-deep);
  display: flex; align-items: flex-start; gap: 12px;
}
.why-area-list .region-dot { margin-top: 9px; }

/* ═══════════════════════════════════════════════════════════════════════
   HOW IT WORKS — /how-it-works
   Vertical 6-week timeline (alternating left/right) + supporting blocks.
   ═══════════════════════════════════════════════════════════════════════ */

/* Hero CTAs row (paper-warm bg, centered) */
.how-hero-ctas { display: flex; gap: 12px; }

/* Six-week timeline container */
.weeks {
  padding: 80px 56px;
  background: var(--paper);
  display: flex; flex-direction: column; gap: 56px;
}
.weeks-list {
  display: flex; flex-direction: column;
  gap: 0;
}
.week {
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 64px 0;
  border-top: 0.5px solid var(--line);
}
/* Drop the duplicate dividers — section-header bottom border + rail top border
   already bracket the timeline, so the first and last .week don't need extras. */
.weeks-list .week:first-child { border-top: none; }

/* Text block wrapping meta + body — sits opposite the image */
.week-text {
  flex: 1;
  display: flex; gap: 48px;
  align-items: flex-start;
}

/* Reversed weeks: image on the left, text block (meta on the right side
   of the row, body still in the middle) mirrors the normal layout. */
.week-reverse           { flex-direction: row-reverse; }
.week-reverse .week-text { flex-direction: row-reverse; }
.week-reverse .week-meta { text-align: right; align-items: flex-end; }
.week-reverse .week-meta .week-line { align-self: flex-end; }

.week-meta {
  width: 280px; flex-shrink: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.week-num {
  font-family: 'JetBrains Mono', monospace; font-weight: 700;
  font-size: 13px; letter-spacing: 0.20em;
  color: var(--blue);
}
.week-name {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 400;
  font-size: 56px; line-height: 1; letter-spacing: -0.028em;
  color: var(--ink);
}
.week-line {
  width: 56px; height: 1px;
  background: var(--ink);
  margin: 8px 0;
}
.week-tag {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 500;
  font-size: 14px; line-height: 1.5;
  color: var(--gray-deep);
  margin: 0;
  max-width: 240px;
}

.week-body {
  display: flex; flex-direction: column; gap: 24px;
}
.week-p {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px;
  line-height: 1.65; color: var(--ink);
  margin: 0;
}
.week-see {
  border-left: 2px solid var(--blue);
  padding: 4px 0 4px 20px;
}
.week-see-lbl {
  font-family: 'JetBrains Mono', monospace; font-weight: 700;
  font-size: 10px; letter-spacing: 0.18em;
  color: var(--blue);
  margin-bottom: 8px;
}
.week-see p {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 14px;
  line-height: 1.55; color: var(--gray-deep);
  margin: 0;
}

.week-image {
  width: 391px; flex-shrink: 0;
  background: var(--paper-warm);
  border: 0.5px solid var(--line);
  height: 293px;
  display: flex; align-items: center; justify-content: center;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.week-image::before,
.week-image::after {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  border: 0.5px solid var(--ink);
}
.week-image::before { top: 12px; left: 12px;   border-right: none; border-bottom: none; }
.week-image::after  { bottom: 12px; right: 12px; border-left: none;  border-top: none; }
.week-image img {
  width: 100%;
  height: 100%;
  max-width: 306px;
  max-height: 204px;
  object-fit: contain;
  display: block;
}

/* Why six weeks is possible — reuses .who-for-grid pattern */
.why-six {
  padding: 80px 56px;
  background: #fff;
  display: flex; flex-direction: column; gap: 48px;
  clip-path: inset(0 -100vmax);
  box-shadow: 0 0 0 100vmax #fff;
}

/* ═══════════════════════════════════════════════════════════════════════
   FINANCING — /financing
   4-card monthly grid + 3-step process strip.
   FAQ + final CTA reuse the homepage components.
   ═══════════════════════════════════════════════════════════════════════ */

.fin-cards {
  padding: 80px 56px;
  background: var(--paper);
  display: flex; flex-direction: column; gap: 48px;
}
.fin-card-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.fin-card {
  background: #fff;
  border: 0.5px solid rgba(26,26,26,0.5);
  position: relative;
  display: flex; flex-direction: column;
  transition: background-color 0.32s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.32s ease, border-color 0.32s ease;
}
.fin-card:hover { transform: translateY(-6px); box-shadow: 0 14px 36px -8px rgba(0,0,0,0.55); border-color: #0E0E0E; background: #0E0E0E; }
.fin-card-featured { border-color: var(--blue); }
.fin-card .pkg-band { /* same blue band as packages page Select card */ }

.fc-head {
  height: 48px; padding: 0 16px;
  display: flex; align-items: center;
  border-bottom: 1px solid var(--line-darker);
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  font-size: 12px; letter-spacing: 0.16em;
  color: var(--gray);
  transition: border-bottom-color 0.32s ease, color 0.32s ease;
}
.fin-card:hover .fc-head { border-bottom-color: rgba(242,241,237,0.4); color: var(--blue-light); }
.fc-body { padding: 18px 16px 14px; display: flex; flex-direction: column; gap: 6px; }
.fc-name {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 400;
  font-size: 32px; line-height: 1; letter-spacing: -0.022em;
  color: var(--ink);
  transition: color 0.32s ease;
}
.fin-card:hover .fc-name { color: var(--paper-fg); }
.fc-dim {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.16em; color: var(--gray);
  transition: color 0.32s ease;
}
.fin-card:hover .fc-dim { color: var(--blue-light); }

.fc-price-block {
  padding: 16px;
  border-top: 0.5px solid var(--line-darker);
  display: flex; flex-direction: column; gap: 6px;
  transition: border-top-color 0.32s ease;
}
.fin-card:hover .fc-price-block { border-top-color: rgba(242,241,237,0.4); }
.fc-lbl {
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  font-size: 9px; letter-spacing: 0.18em; color: var(--gray);
  transition: color 0.32s ease;
}
.fin-card:hover .fc-lbl { color: var(--blue-light); }
.fc-monthly {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 500;
  font-size: 44px; line-height: 1; letter-spacing: -0.025em;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
}
.fc-mo-unit {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 400;
  font-size: 18px; color: var(--gray);
  margin-left: 2px;
}
.fin-card:hover .fc-mo-unit { color: rgba(168,192,232,0.7); }
.fc-total {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.10em; color: var(--gray-deep);
  margin-top: 4px;
  transition: color 0.32s ease;
}
.fin-card:hover .fc-total { color: var(--blue-light); }

.fc-footer {
  margin-top: auto;
  padding: 16px;
  border-top: 0.5px solid var(--line-darker);
  transition: border-top-color 0.32s ease;
}
.fin-card:hover .fc-footer { border-top-color: rgba(242,241,237,0.4); }
.fc-cta { width: 100%; justify-content: center; }

.fin-cards > .fin-disclaimer {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 12px;
  line-height: 1.55; color: rgba(0,0,0,0.5);
  margin: 0; max-width: 1141px;
}

/* 3-step "How financing works" */
.fin-steps {
  padding: 80px 56px;
  background: #fff;
  display: flex; flex-direction: column; gap: 48px;
  clip-path: inset(0 -100vmax);
  box-shadow: 0 0 0 100vmax #fff;
}
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.step {
  border: 0.5px solid var(--line);
  padding: 40px 32px;
  display: flex; flex-direction: column; gap: 18px;
  background: var(--paper);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.step:hover { border-color: var(--blue); transform: translateY(-2px); }
.step-num {
  font-family: 'JetBrains Mono', monospace; font-weight: 700;
  font-size: 13px; letter-spacing: 0.22em;
  color: var(--blue);
}
.step-title {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 600;
  font-size: 26px; line-height: 1.15; letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0;
}
.step-body {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 14px;
  line-height: 1.6; color: var(--gray-deep);
  margin: 0;
}

/* Hero trust-badge row positioned below the CTAs — center it under the buttons */
.pdh-badges.pdh-badges-hero {
  margin-top: 16px;
  padding-top: 24px;
  border-top: 0.5px solid var(--line);
  justify-content: center;
  gap: 28px;
  font-size: 11px;
}

/* "From" prefix inline with the big monthly figure on Financing cards */
.fc-from-prefix {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 400;
  font-size: 18px; letter-spacing: 0;
  color: var(--gray);
  margin-right: 4px;
}
.fin-card:hover .fc-from-prefix { color: var(--blue-light); }

/* Lyon financial mark above the disclaimer on the Financing page */
.fin-lyon-mark {
  display: flex; align-items: baseline; gap: 14px;
  padding: 24px 0 18px;
  border-top: 0.5px solid var(--line);
}
.fin-lyon-lbl {
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
  font-size: 11px; letter-spacing: 0.18em;
  color: var(--blue);
  text-transform: uppercase;
}
.fin-lyon-name {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 900;
  font-size: 24px; letter-spacing: 0.04em;
  color: var(--ink);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════════
   INLINE BODY LINKS — visible link styling for prose contexts
   Global `a { color: inherit; text-decoration: none; }` strips defaults;
   these targeted rules restore link affordance inside body copy.
   ═══════════════════════════════════════════════════════════════════ */
.faq-a a,
.faq-sub a,
.pkg-hero-p a,
.pdh-p a,
.tss-val a,
.gallery-p a,
.gallery-intro-p a,
.contact-p a,
.contact-hero-p a,
.contact-band-p a,
.about-body a,
.about-body p a,
.about-p a,
.story-p a,
.story-copy p a,
.dsg-p a,
.sh-aside p a,
.fin-hero-p a,
.how-hero-p a,
.how-week-p a,
.included-p a,
.pkg-intro a,
.why-area-list a,
.why-area-list li a,
section p a:not(.btn):not(.pf-arrow):not(.region-link):not(.wordmark):not(.cfg-cta):not(.cfg-pay-btn):not(.cat-pill):not(.ft-em):not(.zr-cta) {
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid var(--blue);
  padding-bottom: 1px;
  font-weight: 500;
  transition: background 120ms ease, color 120ms ease, border-color 120ms ease;
}
.faq-a a:hover,
.faq-sub a:hover,
.pkg-hero-p a:hover,
.pdh-p a:hover,
.tss-val a:hover,
.gallery-p a:hover,
.gallery-intro-p a:hover,
.contact-p a:hover,
.contact-hero-p a:hover,
.contact-band-p a:hover,
.about-body a:hover,
.about-body p a:hover,
.about-p a:hover,
.story-p a:hover,
.story-copy p a:hover,
.dsg-p a:hover,
.why-area-list a:hover,
.why-area-list li a:hover,
.sh-aside p a:hover,
.fin-hero-p a:hover,
.how-hero-p a:hover,
.how-week-p a:hover,
.included-p a:hover,
.pkg-intro a:hover,
section p a:not(.btn):not(.pf-arrow):not(.region-link):not(.wordmark):not(.cfg-cta):not(.cfg-pay-btn):not(.cat-pill):not(.ft-em):not(.zr-cta):hover {
  background: var(--blue);
  color: #fff;
  border-bottom-color: transparent;
  padding: 1px 4px;
}

/* ═══════════════════════════════════════════════════════════════════
   UTILITY — Screen-reader-only (visually hidden, available to crawlers)
   ═══════════════════════════════════════════════════════════════════ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Inline link inside .faq-head (e.g. financing page) */
.faq-sub {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: var(--ink-2);
  margin: 8px 0 0;
  line-height: 1.5;
}
.faq-sub a {
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px dashed var(--blue);
  padding-bottom: 1px;
}
.faq-sub a:hover { background: var(--blue); color: #fff; border-bottom-color: transparent; padding: 2px 4px; }

/* ═══════════════════════════════════════════════════════════════════
   BREADCRUMB — sits below sticky-rail on interior pages
   ═══════════════════════════════════════════════════════════════════ */
.breadcrumb {
  padding: 18px 96px 16px;
  background: var(--paper);
  border-bottom: 1px dashed var(--rule);
  box-shadow: 0 0 0 100vmax var(--paper);
  clip-path: inset(0 -100vmax);
}
.breadcrumb-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.breadcrumb-item:not(:first-child)::before {
  content: '/';
  color: var(--blue);
  font-weight: 700;
  font-size: 12px;
}
.breadcrumb-item a {
  color: var(--ink-2);
  text-decoration: none;
  border-bottom: 1px dashed transparent;
  padding-bottom: 1px;
  transition: color 120ms ease, border-color 120ms ease;
}
.breadcrumb-item a:hover {
  color: var(--blue);
  border-bottom-color: var(--blue);
}
.breadcrumb-current span {
  color: var(--ink);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════════
   RELATED PACKAGES RAIL — on package detail pages, before final CTA
   ═══════════════════════════════════════════════════════════════════ */
.related-packages {
  padding: 88px 96px 80px;
  background: #FAFAF7;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  box-shadow: 0 0 0 100vmax #FAFAF7;
  clip-path: inset(0 -100vmax);
}
.rp-head {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: end;
  margin-bottom: 40px;
}
.rp-h {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 8px 0 0;
}
.rp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.rp-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--rule);
  text-decoration: none;
  color: var(--ink);
  transition: border-color 120ms ease, transform 120ms ease, box-shadow 120ms ease;
}
.rp-card:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 105, 255, 0.08);
}
.rp-card-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ink-2);
}
.rp-card-name {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 4px;
}
.rp-card-dim {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-2);
}
.rp-card-price {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-top: auto;
  padding-top: 20px;
  font-variant-numeric: tabular-nums;
}
.rp-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--rule);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--blue);
}
.rp-card-cta .arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid currentColor;
}
