@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

/* Alta Signal Co — style.css · updated 2026-05-28 (D35 color audit) · updated 2026-05-29 (eyebrow accent bar: fixed 72px gold rule + signal-shimmer) · updated 2026-05-30 (FIX: eyebrow/section-label gold bar now follows the label's text-alignment — centered under centered labels instead of pinned far-left; was caused by left:0 absolute bar inside full-width centered label boxes. ALSO locked .rotate-text to a fixed height (6.5rem desktop / 9rem mobile) so the "Why businesses choose" banner no longer grows/shrinks as statements rotate) · updated 2026-05-30 (D2 FINAL: stats strip reworked to benefit-framed copy [Done-for-you / 4 ways / A plan for you / From $33/day]; .stat-num set to 1.6rem with flex-center + min-height:2.4em so mixed 1- and 2-line phrases align and labels sit on one row; mobile 1.35rem). Authoritative source of truth — safe to replace server copy. */

/* ── Signal shimmer (hero accent bar) — added 2026-05-29 ── */
@keyframes signal-shimmer {
  0%   { background-position: 200% 0; opacity: 0; }
  15%  { opacity: 1; }
  50%  { background-position: -50% 0; opacity: 1; }
  60%  { background-position: -50% 0; opacity: 0; }
  100% { background-position: -50% 0; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow::before { animation: none; display: none; }
}


/* ── VARIABLES ──────────────────────────────────────── */
:root {
  --navy: #1B2A4A;
  --navy-mid: #243659;
  --gold: #C9A84C;
  --gold-light: #D9BC78;
  --white: #F5F5F0;
  --off-white: #EDEDE8;
  --light-bg: #F8F8F5;
  --border: #E2E0DA;
  --slate: #4A5568;
  --muted: #6B7280;
  --text: #2C2C2A;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 2px 16px rgba(27,42,74,0.08);
  --transition: 0.2s ease;
  --max-w: 1160px;
}

/* ── RESET / BASE ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--text); background: var(--white); font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
.serif { font-family: var(--serif); }
.eyebrow { font-family: var(--sans); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); margin-bottom: 1.1rem; display: block; position: relative; padding-bottom: 0.6rem; }
.eyebrow::after { content: ''; position: absolute; bottom: 0; left: 0; width: 72px; height: 2px; background: var(--gold); border-radius: 2px; }
/* In centered contexts the label's text is centered but the box is full-width;
   center the underline bar under the text instead of pinning it to the far left. */
.text-center .eyebrow::after,
.rotate-section .eyebrow::after,
.cta-section .eyebrow::after,
.intro-box .eyebrow::after,
.eyebrow[style*="center"]::after { left: 50%; transform: translateX(-50%); }

/* ── LAYOUT ─────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.text-center { text-align: center; }
.text-gold { color: #857024; } /* D35: darkened gold, 4.84:1 on white (AA normal). For gold text ON navy, use .text-gold-on-dark */
.text-gold-on-dark { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--muted); }
.divider { width: 40px; height: 2px; background: var(--gold); margin: 1rem 0 1.5rem; }
.divider-center { margin: 1rem auto 1.5rem; }

/* ── REVEAL ANIMATIONS ──────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── NAVIGATION ─────────────────────────────────────── */
.nav { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-logo { font-family: var(--serif); font-size: 1.25rem; color: var(--navy); display: flex; align-items: center; gap: 0.5rem; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.875rem; font-weight: 400; color: var(--slate); transition: color var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-cta { font-size: 0.875rem; font-weight: 500; padding: 0.5rem 1.25rem; background: var(--navy); color: var(--white); border-radius: var(--radius-sm); transition: background var(--transition); }
.nav-cta:hover { background: var(--navy-mid); color: var(--white); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu { display: none; flex-direction: column; background: var(--white); border-top: 1px solid var(--border); padding: 1.25rem 1.5rem; gap: 1rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 0.95rem; color: var(--slate); font-weight: 400; padding: 0.4rem 0; border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border: none; }
.mobile-menu .nav-cta { display: inline-block; text-align: center; margin-top: 0.25rem; }

/* ── BUTTONS ────────────────────────────────────────── */
.btn { display: inline-block; padding: 0.75rem 1.75rem; border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 500; cursor: pointer; border: none; transition: all var(--transition); font-family: var(--sans); text-align: center; }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); color: var(--navy); }
.btn-secondary { background: transparent; color: var(--white); border: 1.5px solid rgba(245,245,240,0.4); }
.btn-secondary:hover { background: rgba(245,245,240,0.1); color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); color: var(--white); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* ── HERO ───────────────────────────────────────────── */
.hero { background: var(--navy); padding: 5rem 0; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; right: 0; width: 40%; height: 100%; background: radial-gradient(ellipse at top right, rgba(201,168,76,0.06) 0%, transparent 70%); pointer-events: none; }
.hero-inner { display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; }
.hero-eyebrow { color: var(--white); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.5rem; display: block; position: relative; padding-bottom: 0.7rem; }
.hero-eyebrow::after { content: ''; position: absolute; left: 0; bottom: 0; width: 72px; height: 2px; background: linear-gradient(90deg, var(--gold) 0%, var(--gold) 100%); border-radius: 2px; overflow: hidden; }
/* shimmer: a soft light sweep travels across the hero accent bar */
.hero-eyebrow::before { content: ''; position: absolute; left: 0; bottom: 0; width: 72px; height: 2px; border-radius: 2px; background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.85) 50%, transparent 100%); background-size: 200% 100%; z-index: 2; animation: signal-shimmer 4.5s ease-in-out infinite; }
.hero-headline { font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.4rem); color: var(--white); line-height: 1.15; margin-bottom: 0.25rem; }
.hero-static { display: block; color: rgba(245,245,240,0.7); font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-family: var(--sans); font-weight: 300; margin-bottom: 0.35rem; }
.hero-dynamic { color: var(--gold); display: inline; }
#tw-cursor { display: inline-block; width: 2px; height: 0.9em; background: var(--gold); margin-left: 1px; vertical-align: middle; position: relative; top: 1px; }
#tw-cursor.blink { animation: blink-cursor 0.75s step-end infinite; }
@keyframes blink-cursor { 50% { opacity: 0; } }
.hero-sub { color: rgba(245,245,240,0.7); font-size: 1rem; margin: 1.25rem 0 1.75rem; max-width: 520px; line-height: 1.75; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-logo img { width: 280px; height: 280px; border-radius: var(--radius-lg); flex-shrink: 0; }
.hero-tagline { color: rgba(245,245,240,0.45); font-size: 0.8rem; letter-spacing: 0.08em; margin-top: 2rem; font-style: italic; font-family: var(--serif); }

/* ── TICKER ─────────────────────────────────────────── */
.ticker-strip { background: var(--navy); border-top: 1px solid rgba(201,168,76,0.2); border-bottom: 1px solid rgba(201,168,76,0.2); padding: 14px 0; overflow: hidden; }
.ticker-track { display: flex; width: max-content; white-space: nowrap; animation: ticker-scroll 75s linear infinite; will-change: transform; backface-visibility: hidden; -webkit-backface-visibility: hidden; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-item { display: inline-block; font-size: 0.82rem; color: var(--white); padding: 0 2.5rem; flex-shrink: 0; font-weight: 300; letter-spacing: 0.02em; }
.ticker-sep { display: inline-block; color: var(--gold); font-size: 1.1rem; line-height: 1; vertical-align: middle; flex-shrink: 0; }
@keyframes ticker-scroll { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-50%, 0, 0); } }

/* ── STATS STRIP ────────────────────────────────────── */
.stats-strip { background: var(--off-white); border-bottom: 1px solid var(--border); }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 1.75rem 1.5rem; text-align: center; border-right: 1px solid var(--border); display: flex; flex-direction: column; justify-content: flex-start; }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--serif); font-size: 1.6rem; color: var(--navy); display: flex; align-items: center; justify-content: center; line-height: 1.15; min-height: 2.4em; margin-bottom: 0.4rem; }
.stat-label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* ── SERVICE CARDS ──────────────────────────────────── */
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; transition: border-color var(--transition), box-shadow var(--transition); }
.service-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.service-icon { width: 44px; height: 44px; background: rgba(27,42,74,0.06); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.service-icon svg { width: 22px; height: 22px; stroke: var(--navy); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--navy); }
.service-card p { font-size: 0.95rem; color: var(--muted); line-height: 1.65; margin: 0; }
.service-card .learn-more { display: inline-block; font-size: 0.8rem; color: var(--navy); font-weight: 600; margin-top: 1rem; letter-spacing: 0.04em; }
.service-card .learn-more::after { content: ' →'; color: var(--gold); }

/* ── HOW IT WORKS ───────────────────────────────────── */
.steps-row { display: flex; align-items: flex-start; gap: 0; }
.step-item { flex: 1; padding: 2rem; position: relative; }
.step-item::after { content: '→'; position: absolute; right: -0.5rem; top: 2.5rem; color: var(--gold); font-size: 1.25rem; z-index: 1; }
.step-item:last-child::after { display: none; }
.step-num { width: 36px; height: 36px; border-radius: 50%; background: var(--navy); color: var(--gold); font-size: 0.85rem; font-weight: 500; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-family: var(--sans); }
.step-item h4 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--navy); font-family: var(--sans); font-weight: 500; }
.step-item p { font-size: 0.875rem; color: var(--muted); margin: 0; line-height: 1.6; }

/* ── TAG CLOUD ──────────────────────────────────────── */
.tag-cloud-wrap { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; padding: 0.5rem 0; }
.niche-tag { font-size: 0.8rem; font-weight: 500; padding: 6px 14px; border-radius: 20px; border: 1px solid var(--border); color: var(--muted); cursor: default; transition: all 0.3s ease; background: var(--white); }
.niche-tag.lit, .niche-tag:hover { background: var(--navy); color: var(--gold); border-color: var(--navy); }

/* ── ROTATING STATEMENTS ────────────────────────────── */
.rotate-section { background: var(--navy); padding: 5rem 0; text-align: center; }
.rotate-text { font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2rem); color: var(--white); font-style: italic; line-height: 1.5; max-width: 780px; margin: 0 auto 2rem; height: 6.5rem; display: flex; align-items: center; justify-content: center; transition: opacity 0.4s ease; }
.rotate-dots { display: flex; justify-content: center; gap: 6px; }
.rotate-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(201,168,76,0.3); transition: background 0.3s; }
.rotate-dot.active { background: var(--gold); }
.rotate-label { color: rgba(245,245,240,0.4); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 2rem; display: block; }

/* ── SIGNAL STRENGTH BARS ───────────────────────────── */
.signal-tiers { display: flex; gap: 0; align-items: stretch; }
.signal-tier { flex: 1; padding: 2rem 1.25rem; border-right: 1px solid var(--border); text-align: center; transition: background var(--transition); }
.signal-tier:last-child { border-right: none; }
.signal-tier:hover { background: rgba(27,42,74,0.03); }
.signal-bars { display: flex; align-items: flex-end; justify-content: center; gap: 4px; height: 40px; margin-bottom: 0.75rem; }
.s-bar { border-radius: 2px 2px 0 0; background: #D5D0C8; transition: background 0.4s; }
.s-bar.active { background: var(--navy); }
.s-bar.gold { background: var(--gold); animation: bar-pulse 1.8s ease-in-out infinite alternate; }
@keyframes bar-pulse { 0% { opacity: 0.75; } 100% { opacity: 1; } }
.tier-name { font-size: 0.75rem; font-weight: 500; color: var(--navy); letter-spacing: 0.04em; }
.tier-price { font-family: var(--serif); font-size: 1.1rem; color: var(--navy); margin-top: 0.25rem; }

/* ── PRICING CARDS ──────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.pkg-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; display: flex; flex-direction: column; }
.pkg-card.featured { border: 2px solid var(--navy); }
.pkg-badge { font-size: 0.65rem; font-weight: 500; padding: 3px 10px; border-radius: 20px; display: inline-block; margin-bottom: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; }
.badge-pop { background: var(--navy); color: var(--gold); }
.badge-found { background: rgba(27,42,74,0.08); color: var(--navy); }
.badge-prem { background: var(--gold); color: var(--navy); }
.pkg-name { font-family: var(--serif); font-size: 1.3rem; color: var(--navy); margin-bottom: 0.25rem; }
.pkg-price { font-size: 1.8rem; font-weight: 500; color: var(--navy); font-family: var(--sans); }
.pkg-price span { font-size: 0.85rem; font-weight: 400; color: var(--muted); }
.pkg-future { font-size: 0.75rem; color: var(--muted); margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.pkg-features { flex: 1; }
.pkg-features li { font-size: 0.9rem; color: var(--slate); padding: 4px 0; display: flex; gap: 8px; align-items: flex-start; line-height: 1.5; border-bottom: 1px solid rgba(226,224,218,0.5); }
.pkg-features li:last-child { border: none; }
.pkg-features li::before { content: '·'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pkg-cta { margin-top: 1.25rem; }
.pkg-cta .btn { width: 100%; }

/* ── ADD-ONS TABLE ──────────────────────────────────── */
.addon-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.addon-table th { background: var(--navy); color: var(--white); padding: 10px 14px; text-align: left; font-weight: 500; font-size: 0.75rem; letter-spacing: 0.04em; }
.addon-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); color: var(--slate); }
.addon-table tr:last-child td { border-bottom: none; }
.addon-table tr:nth-child(even) td { background: var(--light-bg); }
.addon-table td:last-child { font-weight: 500; color: var(--navy); white-space: nowrap; }

/* ── PULL QUOTES ────────────────────────────────────── */
.pull-quote-navy { background: var(--navy); border-radius: var(--radius); padding: 2rem; }
.pull-quote-navy p { font-family: var(--serif); font-size: clamp(1rem, 2vw, 1.3rem); color: var(--white); font-style: italic; line-height: 1.6; margin: 0; }
.pull-quote-navy p::before { content: '\201C'; color: var(--gold); font-size: 2rem; line-height: 0; vertical-align: -0.4rem; margin-right: 0.25rem; }
.pull-quote-gold { border-left: 3px solid var(--gold); padding: 1rem 1.5rem; background: var(--light-bg); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.pull-quote-gold p { font-family: var(--serif); font-size: 1.05rem; color: var(--navy); font-style: italic; line-height: 1.6; margin: 0; }

/* ── COLORADO MAP ───────────────────────────────────── */
.map-container { background: rgba(27,42,74,0.04); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; text-align: center; }
.map-svg { max-width: 500px; margin: 0 auto; }
.map-state { fill: rgba(27,42,74,0.08); stroke: var(--border); stroke-width: 1; }
.city-dot-group circle.ring { fill: none; stroke: var(--gold); stroke-width: 1.5; opacity: 0; transform-origin: center; }
.city-dot-group circle.dot { fill: var(--navy); }
.city-dot-group { animation: dot-pulse 3s ease-in-out infinite; }
.city-dot-group:nth-child(1) { animation-delay: 0s; }
.city-dot-group:nth-child(2) { animation-delay: 0.35s; }
.city-dot-group:nth-child(3) { animation-delay: 0.7s; }
.city-dot-group:nth-child(4) { animation-delay: 1.05s; }
.city-dot-group:nth-child(5) { animation-delay: 1.4s; }
.city-dot-group:nth-child(6) { animation-delay: 1.75s; }
.city-dot-group:nth-child(7) { animation-delay: 2.1s; }
.city-dot-group:nth-child(8) { animation-delay: 2.45s; }
@keyframes dot-pulse {
  0%, 80%, 100% { transform: scale(1); opacity: 1; }
  40% { transform: scale(1.3); opacity: 0.8; }
}

/* ── FORMS ──────────────────────────────────────────── */
.form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.8rem; font-weight: 500; color: var(--navy); text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input, .form-group select, .form-group textarea { border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 0.7rem 1rem; font-size: 0.9rem; font-family: var(--sans); color: var(--text); background: var(--white); transition: border-color var(--transition), box-shadow var(--transition); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,42,74,0.08); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-mb { margin-bottom: 1.25rem; }
.form-submit { margin-top: 0.5rem; }
.form-success { display: none; background: rgba(27,42,74,0.06); border: 1px solid rgba(27,42,74,0.15); border-radius: var(--radius-sm); padding: 1.25rem; text-align: center; }
.form-success p { color: var(--navy); font-weight: 500; margin: 0; }

/* ── FAQ ────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border); padding: 1.25rem 0; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { font-weight: 500; color: var(--navy); font-size: 0.95rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-q::after { content: '+'; font-size: 1.25rem; color: var(--gold); flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { font-size: 0.875rem; color: var(--muted); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; }
.faq-item.open .faq-a { max-height: 300px; padding-top: 0.75rem; }

/* ── CTA SECTION ────────────────────────────────────── */
.cta-section { background: var(--navy); padding: 5rem 0; text-align: center; }
.cta-section h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-section p { color: rgba(245,245,240,0.7); max-width: 540px; margin: 0 auto 2rem; }

/* ── FOUNDING RATE BANNER ───────────────────────────── */
.founding-banner { background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3); border-radius: var(--radius-sm); padding: 0.875rem 1.25rem; text-align: center; font-size: 0.875rem; color: var(--navy); }
.founding-banner strong { color: var(--navy); }

/* ── SECTION DIVIDER ────────────────────────────────── */
.section-divider { height: 1px; background: var(--border); margin: 0; }
.section-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); margin-bottom: 1.1rem; display: block; position: relative; padding-bottom: 0.6rem; }
.section-label::after { content: ''; position: absolute; left: 0; bottom: 0; width: 72px; height: 2px; background: var(--gold); border-radius: 2px; }

/* ── DELIVERY MODEL TABLE ───────────────────────────── */
.delivery-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.delivery-table th { background: var(--navy); color: var(--white); padding: 10px 14px; text-align: left; font-weight: 500; font-size: 0.75rem; letter-spacing: 0.04em; }
.delivery-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); color: var(--slate); vertical-align: top; line-height: 1.5; }
.delivery-table tr:last-child td { border-bottom: none; }
.delivery-table tr:nth-child(even) td { background: var(--light-bg); }
.model-badge { font-size: 0.7rem; font-weight: 500; padding: 2px 8px; border-radius: 12px; white-space: nowrap; }
.model-file { background: #E1F5EE; color: #085041; }
.model-platform { background: #E6F1FB; color: #0C447C; }
.model-build { background: #FAEEDA; color: #633806; }

/* ── BRAND PILLARS ──────────────────────────────────── */
.pillar-card { border-left: 3px solid var(--gold); padding: 1.5rem 1.75rem; background: var(--light-bg); border-radius: 0 var(--radius) var(--radius) 0; }
.pillar-card h4 { font-family: var(--serif); font-size: 1.1rem; color: var(--navy); margin-bottom: 0.5rem; }
.pillar-card p { font-size: 0.875rem; color: var(--muted); margin: 0; line-height: 1.65; }

/* ── FOOTER ─────────────────────────────────────────── */
.footer { background: var(--navy); padding: 4rem 0 0; }
.footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 260px; gap: 2.5rem; margin-bottom: 3rem; align-items: start; }
.footer-brand .footer-name { font-family: var(--serif); font-size: 1.3rem; color: var(--white); margin-bottom: 0.5rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(245,245,240,0.55); line-height: 1.7; max-width: 280px; margin-bottom: 0.75rem; }
.footer-tagline { font-family: var(--serif); font-size: 0.9rem; font-style: italic; color: var(--gold); }
.footer-col h5 { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(245,245,240,0.45); margin-bottom: 1rem; font-family: var(--sans); }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(245,245,240,0.7); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-logo img { width: 220px; height: 220px; border-radius: var(--radius); }
.footer-bottom { border-top: 1px solid rgba(245,245,240,0.1); padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.footer-bottom p { font-size: 0.8rem; color: rgba(245,245,240,0.4); margin: 0; }
.footer-tagline-bottom { font-family: var(--serif); font-style: italic; color: rgba(201,168,76,0.6); font-size: 0.8rem; }

/* ── PAGE HEADER (non-home) ─────────────────────────── */
.page-header { background: var(--navy); padding: 4rem 0 3rem; }
.page-header-inner { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; }
.page-header h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); }
.page-header p { color: rgba(245,245,240,0.65); max-width: 500px; font-size: 1rem; margin-top: 0.75rem; }
.page-header .hero-logo img { width: 200px; height: 200px; }

/* ── INTRO BOXES ────────────────────────────────────── */
.intro-box { max-width: 680px; margin: 0 auto; text-align: center; padding: 3.5rem 0 2.5rem; }
.intro-box h2 { margin-bottom: 1rem; }
.intro-box p { color: var(--muted); font-size: 1rem; }

/* ── INLINE HIGHLIGHT ───────────────────────────────── */
.highlight { color: #857024; font-style: italic; } /* D35: AA-safe gold for inline emphasis on light bg */

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-logo { display: none; }
  .signal-tiers { flex-wrap: wrap; }
  .signal-tier { flex: 0 0 33.333%; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
}
@media (max-width: 700px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-inner, .page-header-inner { grid-template-columns: 1fr; }
  .hero-logo, .page-header .hero-logo { display: none; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .steps-row { flex-direction: column; }
  .step-item::after { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .signal-tiers { flex-direction: column; }
  .signal-tier { border-right: none; border-bottom: 1px solid var(--border); }
  .rotate-text { height: 9rem; }
}
@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .section { padding: 3.5rem 0; }
  .stat-num { font-size: 1.35rem; min-height: 2.6em; }
}

/* ── ABOUT PAGE — BRAND PILLAR SHIMMER (D29) ─────────────
   Reuses shimmer-sweep concept from Pricing badges.
   Pillars cycle faster (1.8s) than discount badges (2.8s).
   Staggered so all 4 don't pulse in sync. */
.pillar-circle {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,168,76,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  overflow: hidden;
  background: rgba(201,168,76,0.05);
}
.pillar-circle::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 168, 76, 0.55),
    transparent
  );
  animation: pillar-shimmer 1.8s ease-in-out infinite;
  pointer-events: none;
}
.pillar-circle.delay-1::after { animation-delay: 0.45s; }
.pillar-circle.delay-2::after { animation-delay: 0.9s; }
.pillar-circle.delay-3::after { animation-delay: 1.35s; }
.pillar-circle span {
  position: relative;
  z-index: 1;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.35rem;
}
@keyframes pillar-shimmer {
  0%        { left: -100%; }
  60%, 100% { left: 160%;  }
}
@media (prefers-reduced-motion: reduce) {
  .pillar-circle::after { animation: none; }
}

/* ── COLORADO SIGNAL MAP ─────────────────────────────────
   25 ringed cities + Alta Signal Co gold star origin +
   10 animated dotted signal lines.
   Terrain and landmark glyphs removed per v5 turn 20.
   Map image strategy: external (Option B) — Christopher
   provides PNG/SVG of Colorado in future turn; coordinates
   and overlay structure here remain compatible. */
.co-map-wrap { background: linear-gradient(180deg, #FBFAF6 0%, #F5F1E8 100%); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.875rem 1.125rem; overflow: hidden; }
.co-map-svg { width: 100%; height: auto; display: block; max-height: 580px; }

/* State outline */
.co-state-shape { fill: rgba(255,255,255,0.7); stroke: rgba(27,42,74,0.35); stroke-width: 1.5; }

/* Alta Signal Co origin — gold star at Centennial coordinates */
.co-origin-star { fill: var(--gold); stroke: var(--navy); stroke-width: 1; }
.co-origin-pulse { fill: none; stroke: rgba(201,168,76,0.55); stroke-width: 1.2; animation: origin-pulse 2.4s ease-out infinite; transform-origin: 240px 188px; transform-box: fill-box; }
@keyframes origin-pulse {
  0%   { r: 6;  opacity: 0.7; }
  100% { r: 28; opacity: 0; }
}

/* Animated dotted signal lines from origin */
.co-signal-line {
  fill: none;
  stroke: rgba(201,168,76,0.65);
  stroke-width: 1.2;
  stroke-dasharray: 3 5;
  animation: signal-flow 2.8s linear infinite;
}
.co-signal-line.sl-1 { animation-delay: 0s; }
.co-signal-line.sl-2 { animation-delay: 0.28s; }
.co-signal-line.sl-3 { animation-delay: 0.56s; }
.co-signal-line.sl-4 { animation-delay: 0.84s; }
.co-signal-line.sl-5 { animation-delay: 1.12s; }
.co-signal-line.sl-6 { animation-delay: 1.40s; }
.co-signal-line.sl-7 { animation-delay: 1.68s; }
.co-signal-line.sl-8 { animation-delay: 1.96s; }
.co-signal-line.sl-9 { animation-delay: 2.24s; }
.co-signal-line.sl-10 { animation-delay: 2.52s; }
.co-signal-line.sl-11 { animation-delay: 2.80s; }
.co-signal-line.sl-12 { animation-delay: 3.08s; }
.co-signal-line.sl-13 { animation-delay: 3.36s; }
@keyframes signal-flow {
  from { stroke-dashoffset: 16; }
  to   { stroke-dashoffset: 0;  }
}

/* City rings — 4 sizes, all 3 concentric rings */
.co-city-group { transform-box: fill-box; }
.co-city-dot { fill: var(--navy); }
.co-city-ring { fill: none; stroke: rgba(27,42,74,0.45); stroke-width: 1; }

/* Size 1 + Size 4 share LARGEST ring radii (mountain towns reach further than population implies) */
.co-city-group.size-1 .co-city-ring-1,
.co-city-group.size-4 .co-city-ring-1 { animation: ring-pulse-1 3s ease-out infinite; }
.co-city-group.size-1 .co-city-ring-2,
.co-city-group.size-4 .co-city-ring-2 { animation: ring-pulse-2 3s ease-out infinite; animation-delay: 0.4s; }
.co-city-group.size-1 .co-city-ring-3,
.co-city-group.size-4 .co-city-ring-3 { animation: ring-pulse-3 3s ease-out infinite; animation-delay: 0.8s; }

.co-city-group.size-2 .co-city-ring-1 { animation: ring-pulse-1-mid 3s ease-out infinite; }
.co-city-group.size-2 .co-city-ring-2 { animation: ring-pulse-2-mid 3s ease-out infinite; animation-delay: 0.4s; }
.co-city-group.size-2 .co-city-ring-3 { animation: ring-pulse-3-mid 3s ease-out infinite; animation-delay: 0.8s; }

.co-city-group.size-3 .co-city-ring-1 { animation: ring-pulse-1-sm 3s ease-out infinite; }
.co-city-group.size-3 .co-city-ring-2 { animation: ring-pulse-2-sm 3s ease-out infinite; animation-delay: 0.4s; }
.co-city-group.size-3 .co-city-ring-3 { animation: ring-pulse-3-sm 3s ease-out infinite; animation-delay: 0.8s; }

/* Mountain towns (size 4) — gold-tinted rings instead of navy */
.co-city-group.size-4 .co-city-dot { fill: var(--gold); }
.co-city-group.size-4 .co-city-ring { stroke: rgba(201,168,76,0.65); }

@keyframes ring-pulse-1     { 0% { r: 3; opacity: 0.9; } 100% { r: 34; opacity: 0; } }
@keyframes ring-pulse-2     { 0% { r: 3; opacity: 0.7; } 100% { r: 28; opacity: 0; } }
@keyframes ring-pulse-3     { 0% { r: 3; opacity: 0.5; } 100% { r: 22; opacity: 0; } }
@keyframes ring-pulse-1-mid { 0% { r: 3; opacity: 0.9; } 100% { r: 27; opacity: 0; } }
@keyframes ring-pulse-2-mid { 0% { r: 3; opacity: 0.7; } 100% { r: 22; opacity: 0; } }
@keyframes ring-pulse-3-mid { 0% { r: 3; opacity: 0.5; } 100% { r: 18; opacity: 0; } }
@keyframes ring-pulse-1-sm  { 0% { r: 3; opacity: 0.85; } 100% { r: 21; opacity: 0; } }
@keyframes ring-pulse-2-sm  { 0% { r: 3; opacity: 0.65; } 100% { r: 17; opacity: 0; } }
@keyframes ring-pulse-3-sm  { 0% { r: 3; opacity: 0.45; } 100% { r: 14; opacity: 0; } }

/* City labels */
.co-city-label { font-family: var(--sans); font-size: 8px; fill: rgba(27,42,74,0.78); font-weight: 500; }
.co-city-label-mt { font-family: var(--sans); font-size: 8px; fill: rgba(120,90,30,0.85); font-weight: 500; }
.co-origin-label { font-family: var(--serif); font-size: 9.5px; fill: var(--navy); font-weight: 600; }
.co-state-title { font-family: var(--sans); font-size: 11px; fill: rgba(27,42,74,0.30); letter-spacing: 4px; font-weight: 500; }
.co-state-caption { font-family: var(--sans); font-size: 8.5px; fill: rgba(27,42,74,0.45); font-style: italic; }

@media (prefers-reduced-motion: reduce) {
  .co-signal-line,
  .co-city-ring,
  .co-origin-pulse { animation: none; }
}

/* ── CONTACT FORM HONEYPOT (D29) ─────────────────────────
   Real-name honeypot field. Invisible to humans + assistive
   tech. Bots that fill all visible inputs will fill this.
   If non-empty on submit, form is silently rejected. */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
