:root {
  --navy: #071a2c;
  --navy-2: #0b2741;
  --blue: #00c9f2;
  --blue-bright: #38ddff;
  --ink: #0b1d2d;
  --muted: #5d6d79;
  --cloud: #f4f8fa;
  --line: #dce7ec;
  --white: #fff;
  --amber: #ffbe5c;
  --max: 1240px;
  --font-body: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Barlow Semi Condensed", Impact, sans-serif;
  --service-bg: #05243b;
  --header-bg: #ffffff;
  --cta-bg: #087795;
  --footer-bg: #041421;
}

:root[data-theme="2"] {
  --navy: #12372a; --navy-2: #1d4d3b; --blue: #e5a93f; --blue-bright: #ffd889;
  --ink: #183027; --muted: #5d7067; --cloud: #f3f4ea; --line: #d8dfd8; --white: #fffdf7;
  --font-body: "Source Sans 3", ui-sans-serif, system-ui, sans-serif; --font-display: "Bitter", Georgia, serif;
  --service-bg: #0d2c22; --header-bg: #fffdf7; --cta-bg: #8a532d; --footer-bg: #0b241b;
}

:root[data-theme="3"] {
  --navy: #123a63; --navy-2: #1d4c79; --blue: #ff6b4a; --blue-bright: #ffb19e;
  --ink: #17344e; --muted: #5b7083; --cloud: #eef6fb; --line: #d5e3ec; --white: #ffffff;
  --font-body: "DM Sans", ui-sans-serif, system-ui, sans-serif; --font-display: "Archivo Black", ui-sans-serif, system-ui, sans-serif;
  --service-bg: #0d2d4d; --header-bg: #ffffff; --cta-bg: #e65735; --footer-bg: #0a2844;
}

:root[data-theme="4"] {
  --navy: #29251f; --navy-2: #41382f; --blue: #c65a3a; --blue-bright: #f3b28d;
  --ink: #29251f; --muted: #70675e; --cloud: #f5efe5; --line: #ded3c5; --white: #fffaf2;
  --font-body: "Source Sans 3", ui-sans-serif, system-ui, sans-serif; --font-display: "Lora", Georgia, serif;
  --service-bg: #211d18; --header-bg: #fffaf2; --cta-bg: #8a3f2e; --footer-bg: #1d1915;
}

:root[data-theme="5"] {
  --navy: #101234; --navy-2: #1c2052; --blue: #6ef0ff; --blue-bright: #d8ff57;
  --ink: #171936; --muted: #646984; --cloud: #f3f2ff; --line: #deddf0; --white: #ffffff;
  --font-body: "Inter Tight", ui-sans-serif, system-ui, sans-serif; --font-display: "Sora", ui-sans-serif, system-ui, sans-serif;
  --service-bg: #090b27; --header-bg: #ffffff; --cta-bg: #5846d8; --footer-bg: #090a22;
}

:root[data-theme="6"] {
  --navy: #23312d; --navy-2: #344941; --blue: #f06d3c; --blue-bright: #ffd166;
  --ink: #25332f; --muted: #66736d; --cloud: #fff6e9; --line: #e7dac8; --white: #fffdf8;
  --font-body: "Nunito Sans", ui-sans-serif, system-ui, sans-serif; --font-display: "League Spartan", ui-sans-serif, system-ui, sans-serif;
  --service-bg: #192520; --header-bg: #fffdf8; --cta-bg: #d45a32; --footer-bg: #17221e;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: var(--font-body); font-size: 16px; -webkit-font-smoothing: antialiased; transition: color .25s ease, background .25s ease; }
a { color: inherit; text-decoration: none; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 99; background: white; color: var(--ink); padding: 12px 16px; border-radius: 8px; }
.skip-link:focus { top: 12px; }

.prototype-bar { min-height: 70px; display: flex; align-items: center; gap: 24px; padding: 10px max(24px, calc((100vw - var(--max)) / 2)); background: var(--cloud); border-bottom: 1px solid var(--line); position: relative; z-index: 30; }
.prototype-intro { min-width: 250px; display: flex; flex-direction: column; gap: 3px; }
.prototype-intro strong { color: var(--ink); font-family: var(--font-display); font-size: 14px; letter-spacing: -.01em; }
.prototype-intro span { color: var(--muted); font-size: 11px; font-weight: 700; }
.prototype-pills { display: flex; gap: 8px; margin-left: auto; }
.prototype-pill { min-height: 38px; padding: 0 15px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: var(--muted); font: 800 11px/1 var(--font-body); cursor: pointer; white-space: nowrap; transition: color .2s, background .2s, border-color .2s, transform .2s; }
.prototype-pill:hover { transform: translateY(-1px); color: var(--ink); border-color: var(--blue); }
.prototype-pill.active { background: var(--navy); border-color: var(--navy); color: var(--blue-bright); box-shadow: 0 6px 20px rgba(7,26,44,.14); }
.prototype-pill:focus-visible { outline: 3px solid color-mix(in srgb, var(--blue) 38%, transparent); outline-offset: 2px; }

.service-note { min-height: 40px; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 8px 24px; background: var(--service-bg); color: #cde6ef; font-size: 13px; font-weight: 600; letter-spacing: .035em; }
.service-note a { margin-left: 12px; color: #fff; border-bottom: 1px solid rgba(255,255,255,.45); }
.pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-bright); box-shadow: 0 0 0 4px rgba(56,221,255,.12); }

.site-header { height: 84px; display: flex; align-items: center; gap: 34px; padding: 0 max(32px, calc((100vw - var(--max)) / 2)); background: color-mix(in srgb, var(--header-bg) 97%, transparent); border-bottom: 1px solid var(--line); position: relative; z-index: 20; }
.brand { display: inline-flex; align-items: center; gap: 9px; flex: 0 0 auto; color: var(--navy); }
.brand-symbol { width: 51px; height: 43px; flex: 0 0 auto; overflow: visible; }
.brand-h { fill: currentColor; }
.brand-crossarms { fill: none; stroke: currentColor; stroke-width: 4; stroke-linecap: round; }
.brand-wires { stroke: var(--blue); stroke-width: 2.5; }
.brand-insulators { fill: var(--blue); }
.brand-name { min-width: 132px; line-height: .78; transform: skewX(-4deg); }
.brand-name strong { display: block; font-family: var(--font-display); font-size: 24px; font-weight: 800; letter-spacing: -.025em; }
.brand-name small { display: block; margin-top: 10px; color: var(--blue); font-family: var(--font-display); font-size: 13px; font-weight: 800; letter-spacing: .19em; }
.brand-name small b { color: var(--blue); font-weight: 800; }
.main-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.main-nav a { font-size: 14px; font-weight: 700; color: var(--muted); transition: color .2s; }
.main-nav a:hover { color: #008bae; }
.header-actions { display: flex; align-items: center; gap: 20px; padding-left: 8px; }
.phone-link { display: flex; flex-direction: column; text-align: right; }
.phone-link span { color: #74828b; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.phone-link strong { margin-top: 3px; font-size: 13px; }
.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 20px; padding: 0 24px; border-radius: 6px; background: var(--blue); color: #03243a; font-size: 13px; font-weight: 800; box-shadow: 0 8px 26px rgba(0,201,242,.17); transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); background: var(--blue-bright); box-shadow: 0 12px 32px rgba(0,201,242,.26); }
.button-small { min-height: 44px; padding: 0 18px; font-size: 12px; }
.menu-toggle { display: none; }

.hero { position: relative; height: min(735px, calc(100vh - 122px)); min-height: 620px; overflow: hidden; background: var(--navy); color: white; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-wash { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,18,32,.98) 0%, rgba(4,20,36,.92) 32%, rgba(4,20,36,.35) 57%, rgba(4,20,36,.06) 78%), linear-gradient(0deg, rgba(3,18,32,.35), transparent 42%); }
.hero-grid { position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(90deg, #000, transparent 60%); }
.hero-content { position: relative; z-index: 2; max-width: var(--max); height: 100%; margin: 0 auto; padding: 92px 0 40px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; color: #b7d9e6; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.eyebrow span:first-child { color: var(--blue-bright); }
.eyebrow span + span:before { content: ""; display: inline-block; width: 1px; height: 12px; margin-right: 14px; background: rgba(255,255,255,.28); vertical-align: -2px; }
h1, h2, h3, p { margin-top: 0; }
.hero h1 { max-width: 820px; margin-bottom: 25px; font-family: var(--font-display); font-size: clamp(56px, 5.6vw, 84px); line-height: .99; letter-spacing: -.045em; font-weight: 700; }
.hero h1 em { color: var(--blue-bright); font-style: normal; }
.hero-content > p { max-width: 620px; margin-bottom: 31px; color: #d2e0e7; font-size: 19px; line-height: 1.68; }
.mobile-landmark { display: none; }
.hero-actions { display: flex; align-items: center; gap: 12px; }
.button-ghost { background: rgba(255,255,255,.06); color: white; border: 1px solid rgba(255,255,255,.3); box-shadow: none; backdrop-filter: blur(8px); }
.button-ghost:hover { background: rgba(255,255,255,.13); box-shadow: none; }
.hero-proof { display: flex; gap: 0; margin-top: 52px; border-top: 1px solid rgba(255,255,255,.16); padding-top: 21px; }
.hero-proof div { min-width: 170px; padding-right: 34px; margin-right: 34px; border-right: 1px solid rgba(255,255,255,.15); }
.hero-proof div:last-child { border: 0; }
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof strong { color: #fff; font-size: 17px; }
.hero-proof span { margin-top: 5px; color: #9fb5c2; font-size: 11px; }
.hero-location { position: absolute; z-index: 2; right: max(34px, calc((100vw - var(--max)) / 2)); bottom: 38px; display: flex; align-items: center; gap: 13px; padding: 14px 18px; background: rgba(4,25,42,.7); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(12px); border-radius: 6px; color: white; font-size: 12px; font-weight: 700; }
.hero-location small { display: block; margin-bottom: 3px; color: #a3bbc7; font-size: 8px; text-transform: uppercase; letter-spacing: .14em; }
.location-dot { width: 11px; height: 11px; background: var(--blue-bright); border: 3px solid rgba(0,215,255,.24); box-sizing: content-box; border-radius: 50%; box-shadow: 0 0 18px var(--blue); }

.continuity-band { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 210px 1fr auto; gap: 50px; align-items: center; padding: 34px 0; border-bottom: 1px solid var(--line); }
.continuity-label { color: #1185a3; font-size: 10px; font-weight: 800; line-height: 1.55; letter-spacing: .13em; text-transform: uppercase; }
.continuity-band p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }
.continuity-band p strong { color: var(--ink); }
.continuity-band > a { white-space: nowrap; color: #067c9b; font-size: 11px; font-weight: 800; }
.continuity-band > a span { margin-left: 13px; }

.section { padding: 118px max(32px, calc((100vw - var(--max)) / 2)); }
.section-heading { display: grid; grid-template-columns: 1fr 430px; gap: 60px; align-items: end; margin-bottom: 58px; }
.kicker { display: block; margin-bottom: 17px; color: #008fb2; font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.kicker.light { color: var(--blue-bright); }
.section-heading h2, .coverage h2, .why h2, .cta-band h2 { margin-bottom: 0; font-family: var(--font-display); font-size: clamp(44px, 4.2vw, 66px); line-height: 1.06; letter-spacing: -.035em; }
.section-heading > p { margin-bottom: 4px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.plan-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.plan-card { position: relative; min-height: 444px; display: flex; flex-direction: column; padding: 30px 28px 25px; border: 1px solid var(--line); background: #fff; transition: transform .25s, box-shadow .25s, border-color .25s; }
.plan-card:hover { transform: translateY(-5px); border-color: #b8d5e0; box-shadow: 0 22px 55px rgba(23,54,72,.11); }
.plan-card.featured { background: var(--navy); color: #fff; border-color: var(--navy); box-shadow: 0 20px 48px rgba(7,26,44,.18); }
.popular { position: absolute; left: -1px; top: -31px; height: 31px; display: flex; align-items: center; padding: 0 14px; background: var(--blue); color: var(--navy); font-size: 9px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.plan-top { display: flex; align-items: center; justify-content: space-between; color: #536774; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.featured .plan-top { color: #9bb7c5; }
.plan-icon { width: 29px; height: 29px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: #8aa0ac; font-size: 8px; }
.featured .plan-icon { border-color: #2a465a; color: #7edcf0; }
.speed { display: flex; align-items: baseline; gap: 8px; margin: 28px 0 16px; }
.speed strong { font-size: 54px; line-height: 1; letter-spacing: -.055em; }
.speed span { color: #768995; font-size: 13px; font-weight: 800; }
.featured .speed span { color: var(--blue-bright); }
.plan-card p { color: var(--muted); font-size: 15px; line-height: 1.65; }
.featured p { color: #aec1ca; }
.price { display: flex; align-items: flex-start; margin-top: auto; margin-bottom: 21px; }
.price sup { margin-top: 9px; font-weight: 800; }
.price > strong { font-size: 43px; line-height: 1; letter-spacing: -.045em; }
.price > span { margin: 4px 0 0 2px; font-size: 15px; font-weight: 800; line-height: .9; }
.price small { color: #8b99a2; font-size: 9px; font-weight: 600; }
.plan-card > a { display: flex; justify-content: space-between; align-items: center; padding-top: 19px; border-top: 1px solid var(--line); font-size: 13px; font-weight: 800; }
.plan-card > a:hover { color: #008eb0; }
.featured > a { border-color: #294354; color: var(--blue-bright); }
.pricing-note { margin: 22px 0 0; color: #87959e; font-size: 11px; }

.coverage { min-height: 720px; display: grid; grid-template-columns: .82fr 1.18fr; gap: 80px; align-items: center; background: var(--navy); color: white; overflow: hidden; }
.coverage-copy > p { max-width: 500px; margin: 29px 0 30px; color: #afc4cf; font-size: 16px; line-height: 1.8; }
.text-link { display: inline-flex; gap: 22px; align-items: center; padding-bottom: 7px; border-bottom: 1px solid #4d6b7d; color: white; font-size: 13px; font-weight: 800; }
.text-link span { color: var(--blue-bright); }
.coverage-map { position: relative; min-height: 540px; background: radial-gradient(circle at 55% 48%, rgba(0,201,242,.12), transparent 31%), linear-gradient(135deg, rgba(255,255,255,.025), transparent 55%); border: 1px solid rgba(255,255,255,.11); overflow: hidden; }
.coverage-map:after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px); background-size: 40px 40px; }
.coverage-map svg { position: absolute; z-index: 2; inset: 0; width: 100%; height: 100%; }
.county { fill: rgba(0,201,242,.06); stroke: rgba(170,223,238,.36); stroke-width: 2; stroke-dasharray: 5 6; }
.route { fill: none; stroke: var(--blue-bright); stroke-width: 5; stroke-linecap: round; filter: drop-shadow(0 0 8px rgba(0,201,242,.7)); }
.route-secondary { stroke-width: 2; stroke: rgba(105,190,219,.42); stroke-dasharray: 7 8; filter: none; }
.map-ring { position: absolute; z-index: 1; left: 54%; top: 50%; border: 1px solid rgba(0,201,242,.18); border-radius: 50%; transform: translate(-50%,-50%); }
.ring-one { width: 220px; height: 220px; }
.ring-two { width: 350px; height: 350px; }
.map-place { position: absolute; z-index: 4; display: flex; align-items: center; gap: 10px; color: white; font-size: 11px; }
.map-place i { width: 12px; height: 12px; border: 3px solid var(--navy); outline: 1px solid var(--blue); background: var(--blue-bright); border-radius: 50%; box-shadow: 0 0 17px rgba(0,201,242,.7); }
.map-place strong, .map-place small { display: block; }
.map-place small { margin-top: 3px; color: #8ba9b8; font-size: 8px; text-transform: uppercase; letter-spacing: .1em; }
.harrison { left: 25%; top: 68%; }.highway { left: 52%; top: 45%; }.ooltewah { right: 12%; top: 24%; }
.map-label { position: absolute; z-index: 4; right: 22px; bottom: 20px; color: #6c8998; font-size: 9px; font-weight: 800; letter-spacing: .15em; }

.installation { display: grid; grid-template-columns: 1.08fr .92fr; gap: 92px; align-items: center; background: #fff; }
.installation-image { position: relative; min-height: 650px; overflow: hidden; background: var(--cloud); }
.installation-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.image-caption { position: absolute; left: 24px; bottom: 24px; display: flex; align-items: center; gap: 24px; padding: 17px 20px; background: rgba(5,25,40,.89); border: 1px solid rgba(255,255,255,.12); color: #fff; backdrop-filter: blur(8px); }
.image-caption strong, .image-caption span { display: block; }
.image-caption strong { font-size: 11px; }
.image-caption span { padding-left: 24px; border-left: 1px solid #496171; color: #9bb2bd; font-size: 9px; text-transform: uppercase; letter-spacing: .11em; }
.installation-copy h2 { margin-bottom: 24px; font-family: var(--font-display); font-size: clamp(46px, 4.2vw, 65px); line-height: 1.05; letter-spacing: -.035em; }
.install-lead { max-width: 530px; margin-bottom: 30px; color: #566b78; font-size: 16px; line-height: 1.75; }
.install-steps { border-top: 1px solid var(--line); }
.install-steps article { display: grid; grid-template-columns: 38px 1fr; gap: 17px; padding: 21px 0; border-bottom: 1px solid var(--line); }
.install-steps article > span { color: #00a4c9; font-size: 9px; font-weight: 800; letter-spacing: .1em; }
.install-steps h3 { margin-bottom: 5px; font-size: 15px; letter-spacing: -.01em; }
.install-steps p { margin-bottom: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.install-note { margin: 18px 0 0; color: #8b9aa2; font-size: 9px; line-height: 1.55; }

.why { display: grid; grid-template-columns: .82fr 1.18fr; gap: 110px; background: var(--cloud); }
.why-intro { position: sticky; top: 36px; align-self: start; }
.benefits article { display: grid; grid-template-columns: 60px 1fr; gap: 22px; padding: 35px 0; border-top: 1px solid #cedde3; }
.benefits article:last-child { border-bottom: 1px solid #cedde3; }
.benefit-number { color: #008fb2; font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.benefits h3 { margin-bottom: 10px; font-family: var(--font-display); font-size: 25px; letter-spacing: -.02em; }
.benefits p { max-width: 580px; margin-bottom: 0; color: var(--muted); font-size: 15px; line-height: 1.75; }

.partners { background: var(--navy); color: #fff; }
.partner-heading { display: grid; grid-template-columns: 1fr 480px; gap: 70px; align-items: end; }
.partner-heading h2 { margin-bottom: 0; font-family: var(--font-display); font-size: clamp(47px, 4.6vw, 72px); line-height: 1.02; letter-spacing: -.035em; }
.partner-heading > p { margin-bottom: 4px; color: #aec3ce; font-size: 16px; line-height: 1.75; }
.partner-offers { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 54px 0 18px; }
.partner-offers article { position: relative; min-height: 285px; display: flex; flex-direction: column; align-items: flex-start; padding: 34px; overflow: hidden; background: #0e2b43; border: 1px solid #24465b; }
.partner-offers article:after { content: ""; position: absolute; right: -80px; top: -110px; width: 260px; height: 260px; border: 1px solid rgba(56,221,255,.17); border-radius: 50%; box-shadow: 0 0 0 45px rgba(56,221,255,.025), 0 0 0 90px rgba(56,221,255,.018); }
.offer-type { color: var(--blue-bright); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.partner-offers h3 { margin: 20px 0 12px; font-family: var(--font-display); font-size: 33px; letter-spacing: -.025em; }
.partner-offers p { max-width: 490px; margin-bottom: 25px; color: #aac0ca; font-size: 14px; line-height: 1.7; }
.partner-offers a { z-index: 1; display: flex; gap: 20px; margin-top: auto; padding-bottom: 6px; border-bottom: 1px solid #496678; color: #fff; font-size: 11px; font-weight: 800; }
.partner-offers a span { color: var(--blue-bright); }
.community-showcase { display: grid; grid-template-columns: 1.25fr .82fr .82fr; grid-template-rows: 245px 190px; gap: 14px; }
.community-card { position: relative; min-width: 0; min-height: 0; overflow: hidden; background: #123149; border: 1px solid #29495e; }
.community-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; }
.community-card:hover img { transform: scale(1.025); }
.pool-card { grid-row: 1 / 3; }
.pool-card:after, .photo-card:after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,18,31,.92), rgba(3,18,31,0) 58%); }
.pool-card figcaption, .card-label { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 20px; }
.pool-card figcaption span, .card-label small { display: block; margin-bottom: 5px; color: var(--blue-bright); font-size: 8px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.pool-card figcaption strong, .card-label strong { color: #fff; font-size: 15px; }
.name-card { display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; background: linear-gradient(145deg, #0a7997, #0d4c69); }
.name-card:before { content: "58"; position: absolute; right: -8px; top: -28px; color: rgba(255,255,255,.07); font-family: var(--font-display); font-size: 132px; font-weight: 800; line-height: 1; }
.name-card-alt { background: linear-gradient(145deg, #153c55, #0b2539); }
.name-card-alt:before { content: "HB"; }
.name-card > span { z-index: 1; color: #9fe8f5; font-size: 8px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.name-card strong { z-index: 1; margin: 8px 0 6px; color: white; font-size: 20px; line-height: 1.1; }
.name-card small { z-index: 1; color: #a6bdc8; font-size: 9px; }
.partner-note { max-width: 930px; margin: 20px 0 0; color: #6f8c9a; font-size: 9px; line-height: 1.6; }

.cta-band { display: grid; grid-template-columns: 1fr 440px; gap: 100px; align-items: center; background: var(--cta-bg); color: white; }
.cta-panel { padding: 35px; background: rgba(2,35,52,.27); border: 1px solid rgba(255,255,255,.16); }
.cta-panel > p { margin-bottom: 23px; color: #d1e9ef; font-size: 15px; line-height: 1.7; }
.button-light { width: 100%; background: white; color: var(--navy); box-shadow: none; }
.button-light:hover { background: var(--blue-bright); }
.support-row { display: flex; gap: 13px; flex-wrap: wrap; margin-top: 22px; color: #c0e1e9; font-size: 10px; }
.support-row a { color: white; font-weight: 800; }

footer { padding: 70px max(32px, calc((100vw - var(--max)) / 2)) 28px; background: var(--footer-bg); color: white; }
.footer-brand { color: #fff; }
.footer-brand .brand-name small, .footer-brand .brand-name small b { color: var(--blue-bright); }
footer > p { margin: 23px 0 28px; color: #819dab; font-size: 13px; }
.footer-links { display: flex; gap: 26px; padding: 22px 0; border-top: 1px solid #173044; border-bottom: 1px solid #173044; color: #abc1cb; font-size: 11px; font-weight: 700; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 25px; color: #587482; font-size: 9px; letter-spacing: .06em; text-transform: uppercase; }

@media (max-width: 1120px) {
  .site-header { padding-inline: 24px; gap: 20px; }
  .main-nav { display: none; }
  .hero-content { padding-inline: 32px; }
  .plan-grid { grid-template-columns: repeat(2, 1fr); gap: 38px 12px; }
  .coverage, .why { gap: 50px; }
  .continuity-band { max-width: calc(100% - 48px); }
  .installation { gap: 50px; }
  .partner-heading { grid-template-columns: 1fr 400px; gap: 45px; }
}

@media (max-width: 760px) {
  .prototype-bar { min-height: 112px; display: block; padding: 9px 16px 11px; }
  .prototype-intro { min-width: 0; padding: 0 16px 8px; flex-direction: row; align-items: baseline; gap: 8px; }
  .prototype-intro strong { font-size: 13px; }
  .prototype-intro span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 10px; }
  .prototype-pills { width: 100%; margin: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; }
  .prototype-pill { min-height: 33px; padding-inline: 5px; font-size: 10px; }
  .service-note { justify-content: flex-start; padding-inline: 18px; font-size: 10px; }
  .service-note a { margin-left: auto; }
  .site-header { height: 72px; padding-inline: 18px; }
  .brand { gap: 7px; }
  .brand-symbol { width: 43px; height: 36px; }
  .brand-name { min-width: 112px; }
  .brand-name strong { font-size: 21px; }
  .brand-name small { margin-top: 9px; font-size: 11px; }
  .header-actions { margin-left: auto; padding: 0; }
  .phone-link { display: none; }
  .header-actions .button { display: none; }
  .menu-toggle { display: grid; gap: 5px; width: 40px; height: 40px; place-content: center; margin-left: auto; border: 1px solid var(--line); border-radius: 7px; background: white; }
  .menu-toggle span { width: 17px; height: 2px; background: var(--navy); transition: transform .2s; }
  .main-nav.open { display: flex; position: absolute; left: 0; top: 72px; width: 100%; padding: 18px; flex-direction: column; align-items: flex-start; gap: 0; background: white; border-bottom: 1px solid var(--line); box-shadow: 0 14px 25px rgba(4,20,33,.1); }
  .main-nav.open a { width: 100%; padding: 13px 0; }
  .hero { min-height: 900px; height: auto; padding-top: 310px; background: var(--navy); }
  .hero-image { height: 330px; object-position: 49% 50%; }
  .hero-wash { height: 330px; bottom: auto; background: linear-gradient(0deg, var(--navy) 0%, rgba(3,18,32,.15) 42%, rgba(3,18,32,.08) 100%); }
  .hero-grid { height: 330px; bottom: auto; mask-image: linear-gradient(0deg, #000, transparent 88%); }
  .mobile-landmark { position: absolute; z-index: 3; top: 20px; left: 18px; display: inline-flex; align-items: center; gap: 8px; padding: 9px 12px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; background: rgba(3,18,32,.68); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; backdrop-filter: blur(8px); }
  .mobile-landmark span { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-bright); box-shadow: 0 0 0 4px color-mix(in srgb, var(--blue) 25%, transparent); }
  .hero-content { min-height: 590px; height: auto; justify-content: flex-start; padding: 34px 20px 45px; }
  .eyebrow { flex-wrap: wrap; margin-bottom: 18px; font-size: 9px; }
  .hero h1 { font-size: clamp(48px, 14vw, 63px); }
  .hero-content > p { font-size: 17px; line-height: 1.62; }
  .hero-actions { width: 100%; align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-proof { width: 100%; margin-top: 32px; }
  .hero-proof div { min-width: 0; flex: 1; margin-right: 10px; padding-right: 10px; }
  .hero-proof strong { font-size: 14px; }
  .hero-proof span { font-size: 9px; }
  .hero-location { display: none; }
  .continuity-band { max-width: none; margin: 0 20px; grid-template-columns: 1fr; gap: 13px; padding: 27px 0; }
  .continuity-band > a { margin-top: 2px; }
  .section { padding: 78px 20px; }
  .section-heading { grid-template-columns: 1fr; gap: 25px; margin-bottom: 42px; }
  .section-heading h2, .coverage h2, .why h2, .cta-band h2 { font-size: 44px; }
  .section-heading > p { font-size: 17px; }
  .plan-grid { grid-template-columns: 1fr; gap: 38px; }
  .plan-card { min-height: 415px; }
  .coverage { grid-template-columns: 1fr; gap: 50px; }
  .coverage-map { min-height: 390px; margin-inline: -7px; }
  .map-place { transform: scale(.86); transform-origin: left center; }
  .harrison { left: 16%; }.highway { left: 46%; }.ooltewah { right: 4%; }
  .installation { grid-template-columns: 1fr; gap: 48px; }
  .installation-image { min-height: 470px; order: 2; }
  .installation-copy { order: 1; }
  .image-caption { left: 15px; right: 15px; bottom: 15px; justify-content: space-between; }
  .why { grid-template-columns: 1fr; gap: 48px; }
  .why-intro { position: static; }
  .cta-band { grid-template-columns: 1fr; gap: 42px; }
  .partner-heading, .partner-offers { grid-template-columns: 1fr; }
  .partner-heading { gap: 25px; }
  .community-showcase { grid-template-columns: 1fr 1fr; grid-template-rows: 330px 210px 170px; }
  .pool-card { grid-column: 1 / 3; grid-row: auto; }
  .name-card { min-height: 170px; }
  .cta-panel { padding: 25px; }
  .footer-links { flex-wrap: wrap; }
  .footer-bottom { gap: 15px; align-items: flex-start; flex-direction: column; }
}

@media (max-width: 390px) {
  .hero { padding-top: 285px; }
  .hero-image, .hero-wash, .hero-grid { height: 305px; }
  .hero-content { padding-top: 32px; }
  .hero h1 { font-size: 47px; }
}

:root[data-theme="2"] .popular, :root[data-theme="2"] .button,
:root[data-theme="4"] .popular, :root[data-theme="4"] .button,
:root[data-theme="6"] .popular, :root[data-theme="6"] .button { color: var(--navy); }
:root[data-theme="4"] .hero h1, :root[data-theme="4"] .section-heading h2,
:root[data-theme="4"] .coverage h2, :root[data-theme="4"] .why h2,
:root[data-theme="4"] .cta-band h2, :root[data-theme="4"] .installation-copy h2,
:root[data-theme="4"] .partner-heading h2 { letter-spacing: -.025em; }
:root[data-theme="5"] .hero-grid { opacity: .2; }
:root[data-theme="5"] .plan-card.featured { box-shadow: 0 22px 55px rgba(16,18,52,.3); }
:root[data-theme="6"] .plan-card, :root[data-theme="6"] .partner-offers article,
:root[data-theme="6"] .community-card { border-radius: 14px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *:before, *:after { transition-duration: .01ms !important; }
}
