/* ==========================================================================
   DenverPlumbing.com — premium domain sale
   ========================================================================== */

:root {
  --navy: #071d3b;
  --navy-2: #0b2748;
  --navy-3: #12365f;
  --blue: #1769aa;
  --blue-soft: rgba(23, 105, 170, 0.14);
  --orange: #f04a17;
  --orange-deep: #cf3b0e;
  --gold: #ffc629;
  --white: #f7f9fb;
  --steel: #aeb7c2;
  --steel-light: #e4e9ef;
  --ink: #16222f;
  --ink-soft: #45566a;

  --font-display: "Anton", "Arial Narrow Bold", "Impact", sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --band-pad: clamp(76px, 10vw, 132px);
  --radius-btn: 4px;
  --radius-surface: 6px;

  --shadow-lift: 0 18px 48px rgba(7, 29, 59, 0.16);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 76px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--navy);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
ul[class], ol[class] { padding: 0; list-style: none; }

.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;
}

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

[hidden] { display: none !important; }

.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 200;
  background: var(--orange); color: #fff; font-weight: 700;
  padding: 12px 20px; border-radius: var(--radius-btn);
  text-decoration: none; transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 14px 30px;
  font-weight: 800; font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border-radius: var(--radius-btn);
  transition: transform 0.25s var(--ease-out), background-color 0.2s, color 0.2s, box-shadow 0.25s;
  will-change: transform;
}
.btn-lg { min-height: 58px; padding: 16px 38px; font-size: 15px; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--orange); color: #fff;
  box-shadow: 0 8px 24px rgba(240, 74, 23, 0.35);
}
.btn-primary:hover { background: var(--orange-deep); box-shadow: 0 10px 30px rgba(240, 74, 23, 0.45); }

.btn-ghost {
  color: var(--white);
  box-shadow: inset 0 0 0 2px rgba(247, 249, 251, 0.55);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 2px var(--gold); color: var(--gold); }

.btn-navy { background: var(--navy); color: #fff; box-shadow: 0 8px 24px rgba(7, 29, 59, 0.35); }
.btn-navy:hover { background: var(--navy-3); }

/* ==========================================================================
   Header / nav
   ========================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  transition: background-color 0.35s, box-shadow 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(7, 29, 59, 0.93);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom-color: rgba(23, 105, 170, 0.35);
  box-shadow: 0 8px 30px rgba(4, 15, 32, 0.35);
}
.header-inner {
  max-width: var(--container); height: 100%; margin-inline: auto; padding-inline: var(--gutter);
  display: flex; align-items: center; gap: 28px;
}
.brand-lockup { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-roundel { width: 42px; height: 42px; border-radius: 50%; }
.brand-name {
  font-family: var(--font-display); font-size: 21px; letter-spacing: 0.02em;
  color: var(--white); text-transform: uppercase; white-space: nowrap;
}
.brand-name em { font-style: normal; color: var(--orange); }
.brand-dot { color: var(--gold); }

.site-nav { margin-left: auto; }
.site-nav ul { display: flex; gap: 30px; }
.site-nav a {
  position: relative; color: var(--white); text-decoration: none;
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 0;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--orange); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); }

.btn-header { min-height: 44px; padding: 10px 22px; font-size: 13px; }

.menu-toggle { display: none; position: relative; z-index: 130; width: 48px; height: 48px; padding: 12px; margin-right: -8px; }
.menu-bar {
  display: block; height: 2px; width: 24px; margin: 5px auto;
  background: var(--white); transition: transform 0.3s var(--ease-out), opacity 0.2s;
}
.menu-toggle[aria-expanded="true"] .menu-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-bar:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 120;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 70%, var(--navy-3) 100%);
  display: flex; flex-direction: column; justify-content: center;
  padding: 100px var(--gutter) 48px;
  opacity: 0; visibility: hidden; transition: opacity 0.35s, visibility 0.35s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 6px; margin-bottom: 36px; }
.mobile-menu li a {
  font-family: var(--font-display); font-size: clamp(34px, 9vw, 52px); text-transform: uppercase;
  color: var(--white); text-decoration: none; line-height: 1.25; display: inline-block;
  transition: color 0.2s;
}
.mobile-menu li a:hover { color: var(--gold); }
.mobile-menu li { transform: translateY(28px); opacity: 0; transition: transform 0.5s var(--ease-out), opacity 0.5s; }
.mobile-menu.is-open li { transform: none; opacity: 1; }
.mobile-menu.is-open li:nth-child(1) { transition-delay: 0.06s; }
.mobile-menu.is-open li:nth-child(2) { transition-delay: 0.12s; }
.mobile-menu.is-open li:nth-child(3) { transition-delay: 0.18s; }
.mobile-menu.is-open li:nth-child(4) { transition-delay: 0.24s; }
.mobile-menu.is-open li:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu .btn { align-self: flex-start; }
.mobile-menu-foot { margin-top: auto; color: var(--steel); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; }

body.menu-locked, body.modal-locked { overflow: hidden; }

/* ==========================================================================
   Pipeline scroll indicator (desktop)
   ========================================================================== */
.pipeline { display: none; }
@media (min-width: 1200px) {
  .pipeline {
    display: block; position: fixed; left: 30px; top: 110px; bottom: 48px; width: 3px;
    z-index: 60; opacity: 0; transition: opacity 0.5s;
  }
  .pipeline.is-visible { opacity: 1; }
  .pipeline-track { position: absolute; inset: 0; background: rgba(23, 105, 170, 0.22); border-radius: 2px; }
  .pipeline-fill {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(var(--blue), var(--orange));
    transform-origin: top; transform: scaleY(0); border-radius: 2px;
  }
  .pipeline-drop {
    position: absolute; left: 50%; top: 0; width: 11px; height: 11px;
    background: var(--orange); border-radius: 50% 50% 50% 0;
    transform: translate(-50%, -4px) rotate(-45deg);
    box-shadow: 0 0 12px rgba(240, 74, 23, 0.8);
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: calc(var(--header-h) + 40px) var(--gutter) 110px;
}
.hero-scene { position: absolute; inset: 0; pointer-events: none; }
.sky {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 50% 108%, rgba(23, 105, 170, 0.5) 0%, rgba(23, 105, 170, 0) 55%),
    linear-gradient(180deg, #050f22 0%, #0a2246 46%, #123c6e 78%, #1a4c85 100%);
}
.co-sun { position: absolute; top: 9%; right: 14%; width: 300px; height: 300px; }
.co-sun span:nth-child(1) {
  position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 26, 46, 0.5) 0%, rgba(200, 26, 46, 0.28) 52%, rgba(200, 26, 46, 0) 72%);
  animation: sunPulse 12s ease-in-out infinite;
}
.co-sun span:nth-child(2) {
  position: absolute; inset: 27%; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 198, 41, 0.75) 0%, rgba(255, 198, 41, 0.25) 60%, rgba(255, 198, 41, 0) 78%);
}
@keyframes sunPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }

.clouds {
  position: absolute; left: -30%; width: 160%; height: 34%; top: 6%;
  background:
    radial-gradient(38% 58% at 18% 62%, rgba(247, 249, 251, 0.1) 0%, transparent 70%),
    radial-gradient(30% 48% at 52% 38%, rgba(247, 249, 251, 0.09) 0%, transparent 70%),
    radial-gradient(34% 52% at 84% 58%, rgba(247, 249, 251, 0.08) 0%, transparent 70%);
  animation: drift 90s linear infinite alternate;
}
.cloud-b { top: 16%; animation-duration: 130s; animation-direction: alternate-reverse; opacity: 0.7; }
@keyframes drift { from { transform: translateX(-4%); } to { transform: translateX(4%); } }

.scene-layer { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; }
.layer-far { height: 52%; opacity: 0.9; }
.layer-mid { height: 42%; }
.layer-city { height: 30%; }
.layer-ridge { height: 12%; }

.city-lights rect { animation: twinkle 4.5s ease-in-out infinite; }
.city-lights rect:nth-child(odd) { animation-delay: 1.4s; }
.city-lights rect:nth-child(3n) { animation-delay: 2.6s; }
.city-lights rect:nth-child(4n) { animation-delay: 0.7s; }
@keyframes twinkle { 0%, 100% { opacity: 0.9; } 50% { opacity: 0.25; } }

.waterline { position: absolute; left: 0; right: 0; bottom: 4%; height: 80px; width: 100%; }
.waterline path { stroke-dasharray: 14 11; animation: flow 1.6s linear infinite; }
@keyframes flow { to { stroke-dashoffset: -25; } }

.hero-content { position: relative; z-index: 2; text-align: center; max-width: 1020px; }

.hero-badge {
  width: clamp(120px, 15vw, 176px); height: auto; margin: 0 auto 22px;
  filter: drop-shadow(0 14px 34px rgba(3, 12, 26, 0.65));
}
.js .hero-badge { opacity: 0; transform: translateY(-14px) scale(0.92); }
.js .hero.is-in .hero-badge {
  opacity: 1; transform: none;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
@media (prefers-reduced-motion: reduce) {
  .js .hero-badge { opacity: 1; transform: none; }
}

.hero-kicker {
  display: inline-block; margin-bottom: 26px;
  color: var(--gold); font-size: 13px; font-weight: 800;
  letter-spacing: 0.28em; text-transform: uppercase;
  padding: 9px 18px; border: 1px solid rgba(255, 198, 41, 0.4); border-radius: 3px;
  background: rgba(7, 29, 59, 0.45);
}

.hero-title { display: block; }
.hero-headline {
  display: block; font-family: var(--font-display); font-weight: 400;
  font-size: clamp(52px, 9.5vw, 128px); line-height: 0.98; text-transform: uppercase;
  color: var(--white); text-shadow: 0 6px 40px rgba(4, 15, 32, 0.55);
}
.hl-line { display: block; }
.hl-line i { font-style: normal; display: inline-block; }
.hl-accent { color: var(--orange); }

.js .hl-line i { opacity: 0; transform: translateY(0.35em); }
.js .hero.is-in .hl-line i { opacity: 1; transform: none; transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.js .hero.is-in .hl-line:nth-child(1) i:nth-child(1) { transition-delay: 0.1s; }
.js .hero.is-in .hl-line:nth-child(1) i:nth-child(2) { transition-delay: 0.2s; }
.js .hero.is-in .hl-line:nth-child(2) i:nth-child(1) { transition-delay: 0.32s; }
.js .hero.is-in .hl-line:nth-child(2) i:nth-child(2) { transition-delay: 0.44s; }

.hero-domain {
  display: inline-block; margin-top: 26px; position: relative;
  font-family: var(--font-display); font-size: clamp(26px, 4.2vw, 52px);
  letter-spacing: 0.04em; color: var(--white);
  transform-style: preserve-3d; will-change: transform;
}
.hero-domain .hd-letter { display: inline-block; }
.hero-domain .hd-dot { color: var(--orange); }
.js .hero-domain .hd-letter { opacity: 0; transform: translateY(0.5em) rotate(4deg); }
.js .hero.is-in .hero-domain .hd-letter {
  opacity: 1; transform: none;
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
  transition-delay: calc(0.55s + var(--i) * 0.035s);
}
.hero-domain::after {
  content: ""; position: absolute; left: 2%; right: 2%; bottom: -12px; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--gold) 55%, var(--orange));
  border-radius: 2px; transform: scaleX(0); transform-origin: left;
  box-shadow: 0 0 18px rgba(255, 198, 41, 0.55);
}
.js .hero.is-in .hero-domain::after { transform: scaleX(1); transition: transform 0.9s var(--ease-out) 1.35s; }
.no-js .hero-domain::after { transform: scaleX(1); }

.hero-domain.is-sweeping .hd-letter,
.hero-domain:hover .hd-letter {
  background: linear-gradient(100deg, var(--white) 30%, var(--gold) 50%, var(--white) 70%);
  background-size: 240% 100%; -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: sweep 1.4s var(--ease-out);
}
@keyframes sweep { from { background-position: 130% 0; } to { background-position: -110% 0; } }

.hero-copy {
  max-width: 620px; margin: 34px auto 0; color: rgba(247, 249, 251, 0.88);
  font-size: clamp(17px, 2vw, 20px); line-height: 1.7;
}
.hero-ctas { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }

.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--steel); text-decoration: none; font-size: 11px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
}
.scroll-cue-line { width: 2px; height: 44px; background: rgba(174, 183, 194, 0.35); position: relative; overflow: hidden; }
.scroll-cue-line::after {
  content: ""; position: absolute; left: 0; top: -50%; width: 100%; height: 50%;
  background: var(--orange); animation: cueDrop 2s var(--ease-out) infinite;
}
@keyframes cueDrop { 0% { top: -50%; } 70%, 100% { top: 110%; } }

/* ==========================================================================
   Bands & shared section elements
   ========================================================================== */
.band { position: relative; padding-block: var(--band-pad); }
.band-light { background: var(--white); color: var(--ink); }
.band-navy { background: linear-gradient(175deg, var(--navy) 0%, var(--navy-2) 100%); color: var(--white); }
.band-steel { background: var(--steel-light); color: var(--ink); }
.band-orange { background: linear-gradient(160deg, var(--orange) 0%, var(--orange-deep) 100%); color: #fff; }

/* mountain ridge dividers between bands */
.band-navy::before, .band-orange::before {
  content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 46px;
  clip-path: polygon(0 0, 100% 0, 100% 18%, 86% 72%, 74% 30%, 60% 88%, 47% 42%, 33% 92%, 20% 38%, 9% 78%, 0 30%);
  z-index: 1;
}
.band-navy::before { background: var(--white); }
.s-vision::before { background: var(--white); }
.band-orange::before { background: var(--navy); }
.band > .container { position: relative; z-index: 2; }

/* subtle blueprint grid */
.s-name::after, .band-blueprint::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(23, 105, 170, 0.05) 0 1px, transparent 1px 52px),
    repeating-linear-gradient(90deg, rgba(23, 105, 170, 0.05) 0 1px, transparent 1px 52px);
}
.band-blueprint::after {
  background:
    repeating-linear-gradient(0deg, rgba(247, 249, 251, 0.035) 0 1px, transparent 1px 52px),
    repeating-linear-gradient(90deg, rgba(247, 249, 251, 0.035) 0 1px, transparent 1px 52px);
}

/* topographic contours */
.band-topo::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    repeating-radial-gradient(ellipse 620px 420px at 8% 110%, transparent 0 44px, rgba(23, 105, 170, 0.06) 44px 45px),
    repeating-radial-gradient(ellipse 700px 480px at 104% -6%, transparent 0 52px, rgba(23, 105, 170, 0.05) 52px 53px);
}

.kicker {
  display: flex; align-items: center; gap: 14px; margin-bottom: 26px;
  color: var(--blue); font-size: 13px; font-weight: 800;
  letter-spacing: 0.26em; text-transform: uppercase;
}
.kicker::after { content: ""; height: 1px; width: 72px; background: currentColor; opacity: 0.5; }
.kicker-no {
  font-family: var(--font-display); font-size: 15px; color: var(--orange);
  border: 1px solid currentColor; border-radius: 3px; padding: 2px 8px; letter-spacing: 0.08em;
}
.kicker-light { color: var(--gold); }
.kicker-light .kicker-no { color: var(--gold); }

.section-title {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(34px, 5.4vw, 62px); line-height: 1.04;
}
.band-navy .section-title { color: var(--white); }
.section-lede { margin-top: 24px; font-size: 19px; color: rgba(247, 249, 251, 0.82); }
.section-lede-dark { color: var(--ink-soft); }

/* ---------- reveal-on-scroll states (JS + motion allowed only) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .js [data-reveal] { transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out), clip-path 0.8s var(--ease-out); }
  .js [data-reveal="fade"] { opacity: 0; transform: translateY(26px); }
  .js [data-reveal="slide"] { opacity: 0; transform: translateX(-36px); }
  .js [data-reveal="line"] { opacity: 0; clip-path: inset(0 100% 0 0); }
  .js [data-reveal="words"] .rw { display: inline-block; opacity: 0; transform: translateY(0.55em); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); transition-delay: calc(var(--w) * 0.045s); }
  .js [data-reveal="stagger"] > * { opacity: 0; transform: translateY(24px); transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out); transition-delay: calc(var(--w, 0) * 0.1s); }
  .js [data-reveal].is-in, .js [data-reveal].is-in > * , .js [data-reveal].is-in .rw { opacity: 1; transform: none; clip-path: inset(0 0 0 0); }
}

/* ==========================================================================
   01 · Why the name matters
   ========================================================================== */
.statement {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(36px, 6vw, 74px); line-height: 1.06; color: var(--navy);
}
.statement-domain { color: var(--orange); white-space: nowrap; }

.fact-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(48px, 6vw, 84px); border-top: 2px solid var(--navy);
}
.fact { padding: 30px 12px 0; border-left: 1px solid rgba(7, 29, 59, 0.14); text-align: center; }
.fact:first-child { border-left: 0; }
.fact-big { display: block; font-family: var(--font-display); font-size: clamp(40px, 6vw, 78px); color: var(--blue); text-transform: uppercase; line-height: 1; }
.fact-label { display: block; margin-top: 8px; font-size: 13px; font-weight: 800; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-soft); }

.editorial-cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 56px);
  margin-top: clamp(48px, 6vw, 80px);
}
.editorial-cols h3 {
  font-family: var(--font-display); font-weight: 400; font-size: 23px; text-transform: uppercase;
  color: var(--navy); margin-bottom: 14px; padding-top: 16px; position: relative;
}
.editorial-cols h3::before { content: ""; position: absolute; top: 0; left: 0; width: 44px; height: 4px; background: var(--orange); }
.editorial-cols p { color: var(--ink-soft); font-size: 16px; }

/* ==========================================================================
   02 · Brand in action
   ========================================================================== */
.showcase {
  display: grid; grid-template-columns: 300px 1fr; gap: clamp(28px, 4vw, 56px);
  margin-top: clamp(44px, 5vw, 64px); align-items: stretch;
}
.showcase-tabs { display: flex; flex-direction: column; border-left: 2px solid rgba(23, 105, 170, 0.35); }
.showcase-tab {
  display: flex; align-items: center; gap: 14px; text-align: left;
  padding: 17px 18px; margin-left: -2px; border-left: 2px solid transparent;
  color: var(--steel); font-weight: 700; font-size: 15px; letter-spacing: 0.04em; text-transform: uppercase;
  transition: color 0.25s, border-color 0.25s, background-color 0.25s;
}
.showcase-tab:hover { color: var(--white); }
.showcase-tab.is-active { color: var(--white); border-left-color: var(--orange); background: rgba(23, 105, 170, 0.12); }
.tab-index {
  font-family: var(--font-display); font-size: 13px; color: var(--gold);
  width: 26px; height: 26px; flex: 0 0 26px; display: grid; place-items: center;
  border: 1px solid rgba(255, 198, 41, 0.45); border-radius: 3px;
}

.showcase-panel {
  position: relative; min-height: 460px;
  background:
    repeating-linear-gradient(0deg, rgba(247, 249, 251, 0.03) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(90deg, rgba(247, 249, 251, 0.03) 0 1px, transparent 1px 44px),
    linear-gradient(160deg, var(--navy-3) 0%, var(--navy-2) 100%);
  border: 1px solid rgba(23, 105, 170, 0.4); border-radius: var(--radius-surface);
  overflow: hidden;
}
.showcase-item { position: absolute; inset: 0; display: none; flex-direction: column; }
.showcase-item.is-active { display: flex; }
@media (prefers-reduced-motion: no-preference) {
  .showcase-item.is-active { animation: wipeIn 0.55s var(--ease-out); }
}
@keyframes wipeIn {
  from { clip-path: inset(0 100% 0 0); opacity: 0.4; }
  to { clip-path: inset(0 0 0 0); opacity: 1; }
}
.showcase-media { flex: 1; display: grid; place-items: center; padding: 34px; min-height: 0; }
.showcase-media img { max-height: 330px; width: auto; max-width: 100%; height: auto; filter: drop-shadow(0 20px 40px rgba(3, 12, 26, 0.5)); }
.showcase-media-badge img { max-height: 330px; }
.showcase-item figcaption {
  padding: 18px 26px 22px; font-size: 15px; color: var(--steel);
  border-top: 1px solid rgba(23, 105, 170, 0.3); background: rgba(7, 29, 59, 0.55);
}

.phone-mock {
  width: 190px; height: 372px; border-radius: 30px; position: relative;
  background: linear-gradient(170deg, #0e2f57, var(--navy));
  border: 3px solid rgba(174, 183, 194, 0.5);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  box-shadow: 0 24px 48px rgba(3, 12, 26, 0.55);
}
.phone-notch { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 64px; height: 7px; border-radius: 4px; background: rgba(174, 183, 194, 0.4); }
.phone-mock img { width: 84px; height: 84px; border-radius: 20px; }
.phone-app-name { font-family: var(--font-display); font-size: 17px; letter-spacing: 0.05em; color: var(--white); text-transform: uppercase; }
.phone-domain { font-size: 11px; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; }

.showcase-note { margin-top: 26px; font-size: 13.5px; color: var(--steel); }
.showcase-hint { display: none; }

/* ==========================================================================
   03 · Denver opportunity
   ========================================================================== */
.denver-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(36px, 5vw, 72px);
  margin-top: clamp(40px, 5vw, 60px); align-items: start;
}
.denver-prose p { color: var(--ink-soft); margin-bottom: 20px; font-size: 17px; }
.denver-prose p:first-child { color: var(--ink); font-size: 19px; font-weight: 600; }

.denver-list li {
  position: relative; padding: 22px 0 22px 34px; border-top: 1px solid rgba(7, 29, 59, 0.14);
  color: var(--ink-soft); font-size: 16px;
}
.denver-list li:last-child { border-bottom: 1px solid rgba(7, 29, 59, 0.14); }
.denver-list li::before {
  content: ""; position: absolute; left: 2px; top: 30px; width: 12px; height: 12px;
  background: var(--orange); border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
}
.denver-list strong { color: var(--navy); display: block; margin-bottom: 2px; }

/* ==========================================================================
   04 · Domain advantage ledger
   ========================================================================== */
.ledger { margin-top: clamp(40px, 5vw, 64px); border-top: 2px solid var(--navy); }
.ledger-row {
  display: grid; grid-template-columns: 320px 1fr; gap: 24px; align-items: baseline;
  padding: 34px 0; border-bottom: 1px solid rgba(7, 29, 59, 0.16);
}
.ledger-term {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(26px, 3.4vw, 40px); color: var(--navy); line-height: 1.05;
  position: relative; padding-left: 20px;
}
.ledger-term::before { content: ""; position: absolute; left: 0; top: 0.18em; bottom: 0.12em; width: 5px; background: var(--orange); }
.ledger-def { color: var(--ink-soft); font-size: 17px; }
.ledger-note { margin-top: 26px; font-size: 14px; color: var(--ink-soft); font-style: italic; }

/* ==========================================================================
   05 · SEO topics
   ========================================================================== */
.seo-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  margin-top: clamp(40px, 5vw, 64px); border-top: 1px solid rgba(7, 29, 59, 0.16);
}
.seo-topic { padding: 34px 40px 34px 0; border-bottom: 1px solid rgba(7, 29, 59, 0.16); }
.seo-topic:nth-child(even) { border-left: 1px solid rgba(7, 29, 59, 0.16); padding-left: 40px; padding-right: 0; }
.seo-topic h3 {
  font-family: var(--font-display); font-weight: 400; font-size: 22px; text-transform: uppercase;
  color: var(--navy); margin-bottom: 12px;
}
.seo-topic h3::first-line { line-height: 1.2; }
.seo-topic p { color: var(--ink-soft); font-size: 15.5px; }

.seo-note {
  margin-top: clamp(36px, 4vw, 52px); padding: 24px 28px;
  background: var(--blue-soft); border-left: 4px solid var(--blue); border-radius: 0 var(--radius-surface) var(--radius-surface) 0;
}
.seo-note p { color: var(--ink); font-size: 15.5px; }

/* ==========================================================================
   06 · Vision
   ========================================================================== */
.vision-lockup {
  margin-top: clamp(44px, 6vw, 72px); text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.vision-brand {
  font-family: var(--font-display); font-size: clamp(44px, 8vw, 108px);
  text-transform: uppercase; color: var(--white); line-height: 1;
  text-shadow: 0 6px 36px rgba(3, 12, 26, 0.6);
}
.vision-suffix {
  display: inline-block; overflow: hidden; margin-top: 10px;
  border: 2px solid rgba(255, 198, 41, 0.5); border-radius: 4px; padding: 8px 26px;
  background: rgba(7, 29, 59, 0.5); min-width: 320px;
}
.vision-suffix-text {
  display: block; font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(24px, 4vw, 44px); color: var(--gold); line-height: 1.15; white-space: nowrap;
}
@media (prefers-reduced-motion: no-preference) {
  .vision-suffix-text.is-swap { animation: suffixIn 0.45s var(--ease-out); }
}
@keyframes suffixIn { from { transform: translateY(105%); } to { transform: none; } }

.vision-chips {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  margin-top: clamp(32px, 4vw, 48px);
}
.vision-chip {
  min-height: 46px; padding: 10px 22px; border-radius: 4px;
  border: 1px solid rgba(174, 183, 194, 0.45); color: var(--steel);
  font-weight: 700; font-size: 13.5px; letter-spacing: 0.08em; text-transform: uppercase;
  transition: color 0.2s, border-color 0.2s, background-color 0.2s, transform 0.25s var(--ease-out);
}
.vision-chip:hover { color: var(--white); border-color: var(--blue); transform: translateY(-2px); }
.vision-chip.is-active { color: var(--navy); background: var(--gold); border-color: var(--gold); }

/* ==========================================================================
   07 · Ownership CTA
   ========================================================================== */
.s-own { text-align: center; }
.own-title {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(40px, 7.5vw, 104px); line-height: 1.02; color: #fff;
  max-width: 1080px; margin-inline: auto;
  text-shadow: 0 4px 30px rgba(120, 30, 5, 0.35);
}
.own-sub { margin: 26px auto 40px; font-size: clamp(18px, 2.4vw, 24px); color: rgba(255, 255, 255, 0.92); font-weight: 600; }

/* ==========================================================================
   08 · Offer / contact
   ========================================================================== */
.offer-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(40px, 5vw, 80px); align-items: start; }
.offer-intro > p { color: var(--ink-soft); margin-top: 20px; max-width: 480px; }

.offer-steps { margin-top: 34px; counter-reset: step; }
.offer-steps li {
  position: relative; padding: 18px 0 18px 58px; border-top: 1px solid rgba(7, 29, 59, 0.14);
  color: var(--ink-soft); font-size: 15.5px; counter-increment: step;
}
.offer-steps li::before {
  content: "0" counter(step); position: absolute; left: 0; top: 16px;
  font-family: var(--font-display); font-size: 21px; color: var(--blue);
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid rgba(23, 105, 170, 0.45); border-radius: 3px;
}
.offer-steps strong { color: var(--navy); }

.reveal-box {
  margin-top: 38px; padding: 26px 28px;
  background: #fff; border: 1px solid rgba(7, 29, 59, 0.14); border-radius: var(--radius-surface);
  border-top: 4px solid var(--blue);
}
.reveal-box h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 19px; color: var(--navy); margin-bottom: 10px; }
.email-reveal {
  display: inline-flex; align-items: center; gap: 10px; min-height: 44px;
  color: var(--blue); font-weight: 700; font-size: 16px;
  border-bottom: 2px dashed rgba(23, 105, 170, 0.5); padding: 4px 2px;
  transition: color 0.2s, border-color 0.2s;
}
.email-reveal:hover { color: var(--orange); border-color: var(--orange); }
.email-reveal::before { content: "✉"; font-size: 18px; }
.reveal-line a { color: var(--orange); font-weight: 800; font-size: 18px; text-decoration: none; border-bottom: 2px solid var(--orange); }
.reveal-line a:hover { color: var(--orange-deep); }
.reveal-hint { margin-top: 8px; font-size: 13px; color: var(--ink-soft); }

/* form */
.offer-form-wrap { position: relative; }
.offer-form {
  background: #fff; border: 1px solid rgba(7, 29, 59, 0.14); border-radius: var(--radius-surface);
  border-top: 5px solid var(--orange); padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-lift);
}
.form-title { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 25px; color: var(--navy); margin-bottom: 28px; }
.form-title span { color: var(--orange); }

.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 24px; }
.field-full { grid-column: 1 / -1; }
.field label {
  display: block; margin-bottom: 7px;
  font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft);
}
.req { color: var(--orange); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; padding: 12px 14px;
  background: var(--white); border: 1px solid rgba(7, 29, 59, 0.2); border-radius: 4px;
  transition: border-color 0.25s, box-shadow 0.25s, background-color 0.25s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: rgba(7, 29, 59, 0.4); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); background: #fff;
  box-shadow: 0 0 0 3px rgba(23, 105, 170, 0.18), inset 0 -2px 0 var(--blue);
}
.field.is-invalid input { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(240, 74, 23, 0.14); }
.field-error { display: block; margin-top: 6px; font-size: 13px; font-weight: 600; color: var(--orange-deep); }
#f-offer { font-weight: 700; color: var(--navy); }

.hp-field { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.offer-form .btn { margin-top: 30px; }
.form-note { margin-top: 16px; text-align: center; font-size: 13.5px; color: var(--ink-soft); }

.form-success {
  background: #fff; border: 1px solid rgba(7, 29, 59, 0.14); border-radius: var(--radius-surface);
  border-top: 5px solid var(--blue); padding: clamp(32px, 4vw, 48px);
  box-shadow: var(--shadow-lift); text-align: center;
}
.form-success svg { margin: 0 auto 18px; }
.form-success h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 24px; color: var(--navy); margin-bottom: 12px; }
.form-success p { color: var(--ink-soft); max-width: 420px; margin: 0 auto 10px; }
.form-success-alt { font-size: 14.5px; }

.success-email { margin: 6px 0 4px; }
.success-email a {
  display: inline-block; font-size: clamp(20px, 3vw, 26px); font-weight: 800;
  color: var(--orange); text-decoration: none;
  border-bottom: 3px solid var(--orange); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.success-email a:hover { color: var(--orange-deep); border-color: var(--orange-deep); }
.success-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin: 18px 0 14px; }
.btn-mini {
  min-height: 44px; padding: 10px 20px; border-radius: var(--radius-btn);
  border: 1.5px solid var(--navy); color: var(--navy);
  font-size: 12.5px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  transition: background-color 0.2s, color 0.2s;
}
.btn-mini:hover { background: var(--navy); color: #fff; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: #04101f; color: var(--steel); padding: clamp(56px, 7vw, 88px) 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1.2fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.footer-brand img { width: 120px; height: 120px; }
.footer-domain { margin-top: 18px; font-family: var(--font-display); font-size: 26px; color: var(--white); text-transform: uppercase; letter-spacing: 0.03em; }
.footer-tag { margin-top: 4px; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.site-footer h3 { font-family: var(--font-display); font-weight: 400; font-size: 16px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.footer-nav li { margin-bottom: 10px; }
.footer-nav a { color: var(--steel); text-decoration: none; font-size: 15px; transition: color 0.2s; }
.footer-nav a:hover { color: var(--gold); }
.footer-contact .email-reveal { color: #7fb3d8; border-color: rgba(127, 179, 216, 0.5); }
.footer-contact .email-reveal:hover { color: var(--gold); border-color: var(--gold); }
.footer-contact .reveal-line a { color: var(--gold); border-color: var(--gold); }
.footer-note { margin-top: 10px; font-size: 13.5px; }
.footer-legal { margin-top: clamp(40px, 5vw, 60px); padding-top: 28px; border-top: 1px solid rgba(174, 183, 194, 0.18); }
.footer-legal p { font-size: 13px; color: rgba(174, 183, 194, 0.75); max-width: 860px; margin-bottom: 10px; }

/* ==========================================================================
   Sticky mobile CTA
   ========================================================================== */
.sticky-cta {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(7, 29, 59, 0.95); border-top: 1px solid rgba(23, 105, 170, 0.4);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  transform: translateY(110%); transition: transform 0.4s var(--ease-out);
}
.sticky-cta.is-visible { transform: none; }

/* ==========================================================================
   Offer modal
   ========================================================================== */
.offer-modal { position: fixed; inset: 0; z-index: 150; display: flex; align-items: center; justify-content: center; padding: 24px; }
.offer-modal[hidden] { display: none; }
.offer-modal-backdrop { position: absolute; inset: 0; background: rgba(4, 15, 32, 0.78); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); }
.offer-modal-panel {
  position: relative; width: min(720px, 100%); max-height: min(88vh, 880px);
  display: flex; flex-direction: column;
  background: var(--white); border-radius: var(--radius-surface); overflow: hidden;
  box-shadow: 0 40px 90px rgba(2, 8, 18, 0.6);
}
@media (prefers-reduced-motion: no-preference) {
  .offer-modal.is-open .offer-modal-panel { animation: modalIn 0.45s var(--ease-out); }
  .offer-modal.is-open .offer-modal-backdrop { animation: fadeIn 0.35s ease; }
}
@keyframes modalIn { from { transform: translateY(48px) scale(0.97); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.offer-modal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px 16px 26px; background: var(--navy);
}
.offer-modal-title { font-family: var(--font-display); font-size: 19px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--white); }
.offer-modal-close { position: relative; width: 44px; height: 44px; }
.offer-modal-close span { position: absolute; left: 10px; right: 10px; top: 50%; height: 2px; background: var(--white); transition: background-color 0.2s; }
.offer-modal-close span:first-child { transform: rotate(45deg); }
.offer-modal-close span:last-child { transform: rotate(-45deg); }
.offer-modal-close:hover span { background: var(--gold); }
.offer-modal-body { overflow-y: auto; padding: 22px; }
.offer-modal-body .offer-form, .offer-modal-body .form-success { box-shadow: none; border-left: 0; border-right: 0; border-bottom: 0; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1023px) {
  .site-nav { display: none; }
  .btn-header { margin-left: auto; }
}

@media (max-width: 860px) {
  .showcase { display: block; }
  .showcase-tabs { display: none; }
  .showcase-panel {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    min-height: 0; background: none; border: 0; border-radius: 0;
    gap: 16px; padding-bottom: 8px; -webkit-overflow-scrolling: touch;
  }
  .showcase-item {
    position: static; display: flex !important; flex: 0 0 86%; scroll-snap-align: center;
    background:
      repeating-linear-gradient(0deg, rgba(247, 249, 251, 0.03) 0 1px, transparent 1px 44px),
      linear-gradient(160deg, var(--navy-3) 0%, var(--navy-2) 100%);
    border: 1px solid rgba(23, 105, 170, 0.4); border-radius: var(--radius-surface);
    overflow: hidden; animation: none;
  }
  .showcase-media { min-height: 320px; padding: 24px; }
  .showcase-media img { max-height: 240px; }
  .phone-mock { width: 160px; height: 314px; }
  .showcase-hint { display: block; margin-top: 14px; color: var(--gold); font-size: 12.5px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; }
}

@media (max-width: 800px) {
  .editorial-cols { grid-template-columns: 1fr; }
  .denver-grid { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .ledger-row { grid-template-columns: 1fr; gap: 10px; padding: 26px 0; }
  .seo-grid { grid-template-columns: 1fr; }
  .seo-topic, .seo-topic:nth-child(even) { border-left: 0; padding-left: 0; padding-right: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 767px) {
  body { font-size: 16px; }
  .menu-toggle { display: block; }
  .btn-header { display: none; }
  .sticky-cta { display: block; }
  .hero { padding-bottom: 130px; }
  .hero-ctas .btn { width: 100%; }
  .co-sun { width: 200px; height: 200px; right: 6%; top: 7%; }
  .fact-row { grid-template-columns: 1fr; border-top: 0; }
  .fact { border-left: 0; border-top: 2px solid var(--navy); text-align: left; padding: 22px 0 26px; }
  .vision-suffix { min-width: 0; width: 100%; }
  .vision-suffix-text { white-space: normal; }
  .band { --band-pad: 64px; }
  .offer-modal { padding: 0; align-items: flex-end; }
  .offer-modal-panel { width: 100%; max-height: none; height: 94dvh; border-radius: 14px 14px 0 0; }
  @media (prefers-reduced-motion: no-preference) {
    .offer-modal.is-open .offer-modal-panel { animation: sheetUp 0.45s var(--ease-out); }
  }
  .field-grid { grid-template-columns: 1fr; }
}
@keyframes sheetUp { from { transform: translateY(100%); } to { transform: none; } }

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@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;
  }
  .js .hl-line i, .js .hero-domain .hd-letter { opacity: 1; transform: none; }
  .hero-domain::after { transform: scaleX(1); }
}
