﻿/* ==== tokens.css ==== */
/* ============================================================
   Design tokens â€” Spectrum Retailer V2 ("daylight editorial")
   Palette: off-white page #F6F8FB, navy ink #0B1B30,
   Spectrum blue #0061FF / deep #003A99, warm marker #FFB01F.
   Gradient: 135deg #0061FF â†’ #00B5FF (no green).
   Type: Space Grotesk (display) + Manrope (body).
   ============================================================ */

/* ---- Self-hosted fonts. fonts.gstatic.com drops connections on some
   networks (ERR_CONNECTION_CLOSED), which collapsed the typography to
   system fallbacks. No third-party font requests anymore. ---- */
@font-face { font-family: "Space Grotesk"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/space-grotesk-400.woff2") format("woff2"); }
@font-face { font-family: "Space Grotesk"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/space-grotesk-500.woff2") format("woff2"); }
@font-face { font-family: "Space Grotesk"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/space-grotesk-600.woff2") format("woff2"); }
@font-face { font-family: "Space Grotesk"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/space-grotesk-700.woff2") format("woff2"); }
@font-face { font-family: "Manrope"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/manrope-400.woff2") format("woff2"); }
@font-face { font-family: "Manrope"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/manrope-500.woff2") format("woff2"); }
@font-face { font-family: "Manrope"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/manrope-600.woff2") format("woff2"); }
@font-face { font-family: "Manrope"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/manrope-700.woff2") format("woff2"); }
@font-face { font-family: "Manrope"; font-style: normal; font-weight: 800; font-display: swap; src: url("../fonts/manrope-800.woff2") format("woff2"); }
:root {
    /* Brand */
    --blue:       #0061ff;
    --blue-dark:  #003A99;
    --blue-bright:#2e8cff;
    --cyan:       #00b5ff;
    --green:      #0ac34f; /* kept for success/tick use only */
    --navy:       #0B1B30;
    --navy-800:   #112540;
    --navy-900:   #091729;
    --navy-950:   #060f1d;
    --marker:     #FFB01F; /* warm highlight â€” decorative only, never on prices */
    --grad:       linear-gradient(135deg, #0061ff 0%, #00b5ff 100%);
    --grad-soft:  linear-gradient(135deg, rgba(0,97,255,.10) 0%, rgba(0,181,255,.07) 100%);

    /* Light surface system */
    --bg:         #F6F8FB;
    --fg:         #0B1B30;
    --card:       #ffffff;
    --muted:      #edf1f7;
    --muted-2:    #e2e9f2;
    --muted-fg:   #4a5e78;
    --border:     #E2E9F2;
    --sky:        #ddeeff;

    /* Dark surface system â€” footer + one accent band only */
    --dk-bg:      #060f1d;
    --dk-card:    rgba(255,255,255,.06);
    --dk-border:  rgba(255,255,255,.13);
    --dk-fg:      #e8f0fa;
    --dk-muted:   #8fa5be;

    /* Effects */
    --radius-sm:   10px;
    --radius:      22px;   /* cards */
    --radius-lg:   22px;   /* cards (synonym kept for compat) */
    --radius-pill: 999px;
    --shadow-sm:   0 2px 12px rgba(11,27,48,.06);
    --shadow:      0 16px 40px rgba(11,27,48,.10);
    --shadow-blue: 0 14px 36px rgba(0,97,255,.26);
    --shadow-blue-strong: 0 18px 46px rgba(0,97,255,.42);
    --ring:        0 0 0 4px rgba(0,181,255,.30);

    /* Layout */
    --container: 1200px;
    --gutter:    clamp(16px, 4vw, 32px);
    --nav-h:     76px;
    --offer-h:   36px;

    /* Type */
    --font-display: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, sans-serif;
    --font:         "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

    /* Motion */
    --ease-out: cubic-bezier(.22, 1, .36, 1);
    --t-fast:   .18s;
    --t:        .3s;
}

/* ==== base.css ==== */
/* ============================================================
   Base â€” reset, typography, buttons, shared atoms (V2 light)
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font);
    font-size: 17px;
    line-height: 1.6;
    color: var(--fg);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 2px; border-radius: 4px; }

h1, h2, h3, h4 {
    margin: 0 0 .5em; line-height: 1.1; font-weight: 800; letter-spacing: -0.025em;
    color: inherit; font-family: var(--font-display);
}
p { margin: 0 0 1em; }

.net-container { max-width: var(--container); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

.net-h1 { font-size: clamp(2.4rem, 5.6vw, 4.2rem); font-family: var(--font-display); }
.net-h2 { font-size: clamp(1.85rem, 3.6vw, 2.7rem); color: var(--navy); font-family: var(--font-display); }
.net-h3 { font-size: 1.25rem; font-family: var(--font-display); }
.net-lede { font-size: clamp(1.02rem, 1.5vw, 1.18rem); color: var(--muted-fg); max-width: 640px; margin-left: auto; margin-right: auto; }

/* Numbered editorial eyebrow â€” e.g. <p class="net-eyebrow"><span class="net-eyebrow__num">01</span> Plans</p> */
.net-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-variant: small-caps;
    color: var(--muted-fg); margin: 0 0 14px;
}
.net-eyebrow__num {
    font-family: var(--font-display); font-size: 1.05rem; font-weight: 800;
    color: var(--blue); letter-spacing: -.02em; text-transform: none; font-variant: normal;
    padding-right: .35em;
    /* slash divider */
    border-right: 1.5px solid var(--border);
    margin-right: 2px;
}
/* Legacy eyebrow without num (keeps the gradient bar) */
.net-eyebrow:not(:has(.net-eyebrow__num))::before {
    content: ""; width: 22px; height: 3px; border-radius: 2px;
    background: var(--grad); flex-shrink: 0;
}
.net-eyebrow--light { color: var(--cyan); }

.net-grad-text {
    background: var(--grad);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}

/* ---- Buttons ---- */
.net-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 26px; border: 0; border-radius: 14px; /* V2: squared radius 14 */
    font-family: var(--font); font-size: 1rem; font-weight: 700; line-height: 1; white-space: nowrap;
    transition: transform var(--t-fast) var(--ease-out), box-shadow var(--t) var(--ease-out),
                background-color var(--t-fast), color var(--t-fast);
    position: relative; overflow: hidden;
}
.net-btn:active { transform: scale(.97); }

/* Primary: solid blue â€” darken + lift on hover.
   NOTE: button labels are bare text nodes, so a sliding ::before overlay
   (the old approach) painted ABOVE the text and hid it. We change the
   button's OWN background instead â€” the label always stays on top. */
.net-btn--blue {
    background-color: var(--blue); color: #fff; box-shadow: var(--shadow-blue);
}
.net-btn--blue:hover {
    background-color: var(--blue-dark); color: #fff;
    transform: translateY(-2px); box-shadow: var(--shadow-blue-strong);
}

/* Gradient button â€” DEEPEN the gradient on hover by sliding an oversized
   gradient's position (no covering overlay â†’ stays a gradient AND the white
   label is never hidden). Default window = blueâ†’cyan (brand); hover window =
   deep-blueâ†’blue. */
.net-btn--gradient {
    background-image: linear-gradient(120deg, var(--blue-dark) 0%, var(--blue) 50%, var(--cyan) 100%);
    background-size: 200% 100%;
    background-position: 100% 50%;
    color: #fff; box-shadow: var(--shadow-blue);
    /* own transition (no `transform` so GSAP-magnetic buttons stay snappy) */
    transition: background-position .5s var(--ease-out),
                box-shadow var(--t) var(--ease-out), color var(--t-fast);
}
.net-btn--gradient:hover {
    background-position: 0% 50%; color: #fff;
    transform: translateY(-2px); box-shadow: var(--shadow-blue-strong);
}

/* Secondary: 2px outline navy */
.net-btn--dark {
    background: transparent; color: var(--navy);
    box-shadow: inset 0 0 0 2px var(--navy);
}
.net-btn--dark:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }

.net-btn--ghost { background: transparent; color: var(--navy); box-shadow: inset 0 0 0 2px var(--border); }
.net-btn--ghost:hover { box-shadow: inset 0 0 0 2px var(--blue); color: var(--blue); }
.net-btn--ghostlight { background: rgba(255,255,255,.08); color: #fff; box-shadow: inset 0 0 0 1.5px var(--dk-border); }
.net-btn--ghostlight:hover { background: rgba(255,255,255,.16); color: #fff; }
.net-btn--block { width: 100%; }
.net-btn--lg { padding: 16px 32px; font-size: 1.05rem; }
.net-btn--xl { padding: 20px 44px; font-size: 1.18rem; border-radius: 14px; }

/* Pulsing ring for the final CTA â€” retained from V1 */
.net-btn__pulse {
    position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
    box-shadow: 0 0 0 0 rgba(0, 181, 255, .55);
    animation: netPulse 2.6s cubic-bezier(.4, 0, .2, 1) infinite;
}
@keyframes netPulse {
    0%   { box-shadow: 0 0 0 0   rgba(0, 181, 255, .55); }
    70%  { box-shadow: 0 0 0 22px rgba(0, 181, 255, 0); }
    100% { box-shadow: 0 0 0 0   rgba(0, 181, 255, 0); }
}

/* ---- Section scaffolding ---- */
.net-section { padding: clamp(64px, 9vw, 110px) 0; position: relative; }
.net-section--muted { background: var(--muted); }
.net-section--dark { background: var(--dk-bg); color: var(--dk-fg); }
.net-section--dark .net-h2 { color: #fff; }
.net-section--dark .net-lede { color: var(--dk-muted); }
.net-section__head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.net-section__head.is-center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---- Scroll progress ---- */
.net-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 1200; pointer-events: none; }
.net-progress span { display: block; height: 100%; background: var(--grad); transform: scaleX(0); transform-origin: 0 50%; }

/* ---- Fine print + mandatory disclaimers ---- */
.net-fine { font-size: .8rem; color: var(--muted-fg); line-height: 1.55; }
.net-required-note { font-size: 1.02rem; font-weight: 700; color: var(--navy); }
/* Required note stays legible on any dark surface */
.net-section--dark .net-required-note,
.net-phero .net-required-note,
.net-hero .net-required-note,
.net-band .net-required-note { color: #dce9ff; }

.net-disclaimers { border-top: 1px solid var(--border); margin-top: 38px; padding-top: 26px; }
.net-disclaimers__title { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-fg); margin-bottom: 14px; }
.net-disclaimers__item { font-size: .76rem; line-height: 1.6; color: var(--muted-fg); margin-bottom: 10px; }

/* On dark footer the disclaimers stay legible */
.net-footer .net-disclaimers { border-top-color: rgba(255,255,255,.10); }
.net-footer .net-disclaimers__title { color: #b9c9dc; }
.net-footer .net-disclaimers__item  { color: #93a7bd; }

/* ---- Cookie consent â€” light identity ---- */
.net-consent {
    position: fixed; right: 18px; bottom: 18px; z-index: 1300; max-width: 420px;
    opacity: 0; transform: translateY(16px);
    transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
}
.net-consent.is-in { opacity: 1; transform: none; }
.net-consent__card {
    background: var(--card); border: 1.5px solid var(--border);
    border-radius: var(--radius); box-shadow: var(--shadow); padding: 22px;
}
.net-consent__card::before {
    content: ""; display: block; height: 4px; border-radius: 3px;
    background: var(--grad); margin-bottom: 14px;
}
.net-consent__title { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 6px; color: var(--navy); font-weight: 800; }
.net-consent__txt { font-size: .86rem; color: var(--muted-fg); margin-bottom: 14px; line-height: 1.55; }
.net-consent__row { display: flex; gap: 10px; flex-wrap: wrap; }
.net-consent__row .net-btn { padding: 11px 20px; font-size: .9rem; border-radius: 10px; }
/* Override ghostlight for light consent card */
.net-consent__row .net-btn--ghostlight {
    color: var(--navy); background: var(--muted);
    box-shadow: inset 0 0 0 1.5px var(--border);
}
.net-consent__row .net-btn--ghostlight:hover {
    color: var(--blue); background: var(--bg);
    box-shadow: inset 0 0 0 1.5px var(--blue);
}

/* ---- Mobile sticky phone bar â€” solid blue ---- */
.net-phonebar {
    position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 1100;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--blue); color: #fff; font-weight: 700; font-size: 1rem;
    padding: 15px 18px calc(15px + env(safe-area-inset-bottom, 0px)); border-radius: 14px;
    box-shadow: var(--shadow-blue);
    transform: translateY(130%); transition: transform .4s var(--ease-out);
}
.net-phonebar.is-on { transform: none; animation: netBarPulse 8s ease-in-out infinite 2s; }
.net-phonebar svg { width: 19px; height: 19px; }
.net-phonebar:hover { color: #fff; }
@keyframes netBarPulse { 0%, 94%, 100% { transform: scale(1); } 97% { transform: scale(1.02); } }
@media (min-width: 1024px) { .net-phonebar { display: none; } }

/* ==== animations.css ==== */
/* ============================================================
   Animations â€” shared motion utilities (V2)
   (.net-reveal initial state lives in the critical inline CSS,
   gated on html.net-js so no-JS visitors always see content.)
   ============================================================ */

/* Revealed state â€” permanent resting state after any entrance */
.net-reveal.is-in { opacity: 1; transform: none; }
.net-split.is-done .net-split__w { transform: none; }

/* No-JS safety: ensure resting .is-in covers data-rv elements too */
html.net-js .net-reveal[data-rv]:not(.is-in) { opacity: 0; }

/* Split-text heading masks */
.net-split .net-split__m { display: inline-block; overflow: hidden; vertical-align: bottom; }
.net-split .net-split__w { display: inline-block; will-change: transform; }

/* V2 marker highlight: warm sweep underline instead of gradient text */
.net-split .net-split__w.is-hl {
    position: relative;
    /* ensure text itself stays ink-colored (override any inherited grad-text) */
    -webkit-text-fill-color: inherit;
    color: inherit;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}
.net-split .net-split__w.is-hl::after {
    content: "";
    position: absolute;
    left: 0; right: 0;
    bottom: 0.08em;
    height: 0.42em;
    background: var(--marker);
    opacity: .45;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left center;
    transition: none; /* no transition until heading is done */
    border-radius: 2px;
}
/* Sweep in once heading is complete */
.net-split.is-done .net-split__w.is-hl::after {
    transform: scaleX(1);
    transition: transform .5s .15s var(--ease-out);
}

.net-split.is-done .net-split__w { will-change: auto; }

/* Hover lift for cards */
.net-lift { transition: transform var(--t) var(--ease-out), box-shadow var(--t) var(--ease-out); }
.net-lift:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

/* Cursor-glow cards: radial highlight follows --mx/--my (set in JS) */
[data-glow] { position: relative; }
[data-glow]::before {
    content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
    background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%), rgba(0,97,255,.09), transparent 70%);
    opacity: 0; transition: opacity .35s ease; z-index: 0;
}
[data-glow]:hover::before { opacity: 1; }
[data-glow] > * { position: relative; z-index: 1; }

/* Gradient-border card */
.net-gborder { position: relative; background: var(--card); border-radius: var(--radius-lg); }
.net-gborder::after {
    content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px;
    background: var(--grad);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    opacity: .45; transition: opacity var(--t);
    pointer-events: none;
}
.net-gborder:hover::after { opacity: 1; }

/* Marquee (track duplicated in markup) */
.net-marquee { overflow: hidden; position: relative; }
.net-marquee::before, .net-marquee::after {
    content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.net-marquee::before { left: 0;  background: linear-gradient(90deg,  var(--mq-fade, var(--bg)), transparent); }
.net-marquee::after  { right: 0; background: linear-gradient(-90deg, var(--mq-fade, var(--bg)), transparent); }
.net-marquee__track {
    display: flex; align-items: center; gap: 48px; width: max-content;
    animation: netMarquee var(--mq-dur, 36s) linear infinite;
    padding-right: 48px;
}
.net-marquee.is-paused .net-marquee__track { animation-play-state: paused; }
.net-marquee:hover .net-marquee__track { animation-play-state: paused; }
@keyframes netMarquee { to { transform: translateX(-50%); } }

/* Floating chips */
.net-float { animation: netFloat 7s ease-in-out infinite; }
.net-float.f2 { animation-duration: 8.5s; animation-delay: .8s; }
.net-float.f3 { animation-duration: 9.5s; animation-delay: 1.6s; }
@keyframes netFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* Slow aurora drift (retained for legacy use in dark sections) */
@keyframes netAurora {
    0%, 100% { transform: translate3d(-4%, -2%, 0) scale(1); }
    50%       { transform: translate3d(4%,  3%, 0) scale(1.08); }
}

/* Scanning beam sweep */
@keyframes netBeam { 0% { transform: translateX(-130%) skewX(-14deg); } 100% { transform: translateX(330%) skewX(-14deg); } }

/* Gentle dash draw for connector lines */
@keyframes netDash { to { stroke-dashoffset: 0; } }

/* Grid dots â€” used only on dark sections */
.net-griddots {
    position: absolute; inset: 0; pointer-events: none; opacity: .5;
    background-image: radial-gradient(rgba(120, 170, 255, .14) 1px, transparent 1.4px);
    background-size: 28px 28px;
    -webkit-mask-image: radial-gradient(75% 70% at 50% 35%, #000, transparent);
    mask-image: radial-gradient(75% 70% at 50% 35%, #000, transparent);
}

/* ==== nav.css ==== */
/* ============================================================
   Navbar â€” V2 light: white/96 frosted glass always; ink links;
   blue active underline; offer bar = slim navy strip.
   Logo is a white webp on a navy chip so it stays legible.
   ============================================================ */
.net-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--t) ease;
}
.net-nav.is-scrolled { box-shadow: 0 6px 24px rgba(11,27,48,.08); }

/* Offer bar â€” slim navy strip */
.net-nav__offer {
    height: var(--offer-h);
    display: flex; align-items: center; justify-content: center;
    background: var(--navy); color: var(--dk-fg);
    font-size: .8rem; padding: 0 12px;
    text-align: center; overflow: hidden;
}
.net-nav__offer p { margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.net-nav__offer a { color: var(--cyan); text-decoration: underline; font-weight: 700; }
.net-nav__offer-short { display: none; }
@media (max-width: 767px) {
    .net-nav__offer-long  { display: none; }
    .net-nav__offer-short { display: inline; }
}

.net-nav__inner {
    height: var(--nav-h);
    display: flex; align-items: center; gap: 28px;
    max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter);
}

/* Logo lockup: navy chip so the white webp stays legible on white nav */
.net-nav__brand {
    display: inline-flex; align-items: center; flex-shrink: 0;
    background: var(--navy); padding: 8px 12px; border-radius: 12px;
    transition: opacity var(--t-fast);
}
.net-nav__brand:hover { opacity: .88; }
.net-nav__brand img { width: 190px; height: auto; display: block; }

/* Nav links â€” ink colored */
.net-nav__links {
    display: flex; align-items: center; gap: 4px;
    list-style: none; margin: 0 0 0 auto; padding: 0;
}
.net-nav__link {
    display: inline-block; padding: 9px 14px; border-radius: var(--radius-pill);
    color: var(--fg); font-size: .95rem; font-weight: 600; position: relative;
    transition: color var(--t-fast), background var(--t-fast);
}
.net-nav__link::after {
    content: ""; position: absolute; left: 14px; right: 14px; bottom: 5px; height: 2px;
    background: var(--blue); border-radius: 2px;
    transform: scaleX(0); transform-origin: 0 50%;
    transition: transform .3s var(--ease-out);
}
.net-nav__link:hover { color: var(--blue); background: var(--sky); }
.net-nav__link:hover::after, .net-nav__link.is-active::after { transform: scaleX(1); }
.net-nav__link.is-active { color: var(--blue); }

/* Call button */
.net-nav__call {
    display: inline-flex; align-items: center; gap: 9px;
    background: var(--blue); color: #fff; font-weight: 700; font-size: .95rem;
    padding: 11px 20px; border-radius: 14px; box-shadow: var(--shadow-blue);
    transition: background var(--t-fast), transform var(--t-fast);
}
.net-nav__call:hover { background: var(--blue-dark); color: #fff; transform: translateY(-1px); }
.net-nav__call svg { width: 17px; height: 17px; }

/* Mobile icon call button */
.net-nav__mcall {
    display: none; width: 44px; height: 44px; border-radius: 50%;
    background: var(--blue); color: #fff;
    align-items: center; justify-content: center;
    box-shadow: var(--shadow-blue);
}
.net-nav__mcall svg { width: 19px; height: 19px; }
.net-nav__mcall:hover { color: #fff; background: var(--blue-dark); }

/* Hamburger toggle â€” ink bars on light nav */
.net-nav__toggle {
    display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 10px;
}
.net-nav__toggle span {
    width: 24px; height: 2.5px; border-radius: 2px;
    background: var(--fg);
    transition: transform var(--t), opacity var(--t);
}
.net-nav.is-open .net-nav__toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.net-nav.is-open .net-nav__toggle span:nth-child(2) { opacity: 0; }
.net-nav.is-open .net-nav__toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Drawer â€” light panel */
.net-nav__drawer {
    background: var(--card); border-top: 1px solid var(--border);
    padding: 14px var(--gutter) 22px;
    display: flex; flex-direction: column; gap: 2px;
}
/* [hidden] must always beat author display:flex */
.net-nav__drawer[hidden] { display: none !important; }
@media (min-width: 1024px) { .net-nav__drawer { display: none !important; } }

.net-nav__dlink { padding: 13px 10px; color: var(--fg); font-weight: 600; border-radius: 10px; }
.net-nav__dlink:hover, .net-nav__dlink.is-active {
    background: var(--muted); color: var(--blue);
}
.net-nav__dcall {
    margin-top: 12px; text-align: center;
    background: var(--blue); color: #fff; font-weight: 700;
    padding: 14px; border-radius: 14px; box-shadow: var(--shadow-blue);
}
.net-nav__dcall:hover { color: #fff; background: var(--blue-dark); }

@media (max-width: 1023px) {
    .net-nav__links, .net-nav__call { display: none; }
    .net-nav__mcall { display: inline-flex; margin-left: auto; }
    .net-nav__toggle { display: inline-flex; }
    .net-nav__brand img { width: 158px; }
}

/* ---- text brand badge (replaces image logo) ---- */
.net-nav__brand{display:flex;align-items:center;gap:10px;text-decoration:none}
.net-footer__brandline{display:flex;align-items:center;gap:10px;margin:0 0 14px}
.net-brandmark{display:grid;place-items:center;width:32px;height:32px;border-radius:9px;flex:none;
  background:var(--net-ink,#0B1B30);color:var(--net-marker,#FFB01F);
  font:700 18px/1 "Space Grotesk",sans-serif;letter-spacing:-.02em}
.net-footer .net-brandmark{background:var(--net-marker,#FFB01F);color:var(--net-ink,#0B1B30)}
.net-brandword{display:flex;flex-direction:column;line-height:1.08;color:var(--net-ink,#0B1B30);
  font:600 16px/1.1 "Space Grotesk",sans-serif;letter-spacing:-.01em;white-space:nowrap}
.net-brandword em{font:600 9px/1.4 "Manrope",sans-serif;font-style:normal;letter-spacing:.16em;
  text-transform:uppercase;color:var(--net-muted,#5B6B7E)}
.net-footer .net-brandword{color:#fff}
.net-footer .net-brandword em{color:rgba(255,255,255,.62)}

/* ==== hero.css ==== */
/* ============================================================
   Hero â€” V2 light editorial: off-white bg, drifting gradient
   blob canvas, giant Space Grotesk heading, kinetic rotator,
   SVG speed gauge, light ZIP panel, outline chips, light phero.
   ============================================================ */

/* ---- Main hero ---- */
.net-hero {
    position: relative;
    min-height: clamp(640px, 96vh, 880px);
    display: flex; align-items: center;
    background: var(--bg);
    color: var(--fg);
    overflow: hidden;
    padding-top: calc(var(--nav-h) + var(--offer-h));
}

/* Gradient blob canvas mount (gauge.js attaches <canvas> here) */
.net-hero2-canvas {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    opacity: .9;
    filter: blur(0); /* blur applied per-draw via ctx.filter */
}
.net-hero2-canvas canvas {
    position: absolute; inset: 0; width: 100%; height: 100%;
}

/* Legacy canvas mount name kept for any stray markup */
.net-hero__canvas { position: absolute; inset: 0; z-index: 0; }
.net-hero__canvas canvas { position: absolute; inset: 0; width: 100%; height: 100%; }

.net-hero__inner {
    position: relative; z-index: 3;
    max-width: var(--container); width: 100%;
    margin: 0 auto; padding: clamp(48px, 7vw, 84px) var(--gutter);
    display: grid; grid-template-columns: 1fr 420px; align-items: center; gap: clamp(32px, 5vw, 64px);
}

/* Left column */
.net-hero__copy { max-width: 680px; }

.net-hero__eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--sky); border: 1.5px solid rgba(0,97,255,.22);
    color: var(--blue); font-size: .8rem; font-weight: 700; letter-spacing: .06em;
    padding: 7px 15px; border-radius: var(--radius-pill); margin-bottom: 22px;
}
.net-hero__eyebrow .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--green); box-shadow: 0 0 10px var(--green);
}

/* H1 â€” huge editorial, display font */
.net-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.2vw, 5.2rem);
    font-weight: 800; letter-spacing: -.03em; line-height: 1.05;
    color: var(--navy); margin-bottom: 18px;
}

/* Kinetic rotator inside the title */
.net-rotator {
    display: inline-grid;
    color: var(--blue);
    vertical-align: bottom;
}
.net-rotator span {
    grid-area: 1 / 1;
    display: block;
    opacity: 0;
    transform: translateY(100%);
    transition: transform .45s var(--ease-out), opacity .35s var(--ease-out);
    pointer-events: none;
}
.net-rotator span.is-in {
    opacity: 1;
    transform: translateY(0);
}
.net-rotator span.is-out {
    opacity: 0;
    transform: translateY(-100%);
}

.net-hero__sub {
    font-size: clamp(1.05rem, 1.7vw, 1.25rem);
    color: var(--muted-fg); max-width: 580px; margin-bottom: 32px; line-height: 1.65;
}
.net-hero__sub strong { color: var(--navy); }

/* ZIP panel â€” white card */
.net-hero__panel {
    background: var(--card);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px; max-width: 560px; position: relative; overflow: hidden;
}
.net-hero__panel::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--grad);
}
.net-hero__panel-title {
    font-family: var(--font-display); font-size: 1rem; font-weight: 700;
    color: var(--navy); margin-bottom: 14px;
}
.net-hero__form { display: flex; gap: 10px; }
.net-hero__form input {
    flex: 1; min-width: 0; padding: 14px 18px; border-radius: 12px;
    border: 1.5px solid var(--border); background: var(--bg);
    color: var(--fg); font-family: var(--font); font-size: 1rem;
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.net-hero__form input::placeholder { color: var(--muted-fg); }
.net-hero__form input:focus { outline: none; border-color: var(--blue); box-shadow: var(--ring); }
.net-hero__form input.is-error { border-color: #e53e3e; box-shadow: 0 0 0 4px rgba(229,62,62,.18); }
.net-hero__note { font-size: .8rem; color: var(--muted-fg); margin: 10px 2px 0; }
.net-hero__note a { color: var(--blue); }

/* Offer chips â€” bottom row, light outline */
.net-hero__chips {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-top: 24px;
}
.net-chip {
    display: flex; align-items: center; gap: 10px;
    background: var(--card); border: 1.5px solid var(--border);
    border-radius: 14px; padding: 11px 16px;
    box-shadow: var(--shadow-sm);
}
.net-chip__icon {
    width: 36px; height: 36px; flex-shrink: 0; border-radius: 10px;
    display: flex; align-items: center; justify-content: center; color: #fff;
}
.net-chip__icon svg { width: 18px; height: 18px; }
.net-chip__icon.i-blue  { background: linear-gradient(135deg, #0061ff, #00b5ff); }
.net-chip__icon.i-green { background: linear-gradient(135deg, #00b5ff, #0ac34f); }
.net-chip__icon.i-navy  { background: var(--navy); }
.net-chip__t { font-size: .9rem; font-weight: 700; color: var(--navy); line-height: 1.3; }
.net-chip__s { display: block; font-size: .74rem; font-weight: 500; color: var(--muted-fg); margin-top: 2px; }

/* ---- Speed gauge (right column, desktop) ---- */
.net-gauge {
    background: var(--card); border: 1.5px solid var(--border);
    border-radius: var(--radius); box-shadow: var(--shadow);
    padding: 28px 24px 22px; text-align: center;
}
.net-gauge svg { width: 220px; height: 140px; overflow: visible; margin: 0 auto; display: block; }
.net-gauge__arc {
    fill: none;
    stroke: url(#netGaugeGrad);
    stroke-width: 10;
    stroke-linecap: round;
    /* pathLength set to 100 in markup; initial dashoffset = 100 (invisible) */
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: none; /* driven by JS rAF */
}
.net-gauge__track {
    fill: none;
    stroke: var(--border);
    stroke-width: 10;
    stroke-linecap: round;
}
/* Needle â€” rotates from -110deg to 110deg via JS */
.net-gauge__needle {
    transform-origin: 110px 110px; /* SVG cx/cy of arc center */
    transform: rotate(-110deg);
    transition: none;
}
.net-gauge__needle line {
    stroke: var(--navy); stroke-width: 3; stroke-linecap: round;
}
.net-gauge__needle circle { fill: var(--navy); }
.net-gauge__readout {
    margin-top: 10px;
    display: flex; align-items: baseline; justify-content: center; gap: 6px;
}
.net-gauge__num {
    font-family: var(--font-display); font-size: 2.8rem; font-weight: 800;
    color: var(--navy); letter-spacing: -.04em; line-height: 1;
}
.net-gauge__unit { font-size: 1rem; font-weight: 600; color: var(--muted-fg); }
.net-gauge__label {
    font-size: .78rem; font-weight: 600; letter-spacing: .08em;
    text-transform: uppercase; color: var(--muted-fg); margin-top: 4px;
}

/* ---- Marquee strip pinned under hero â€” thin top-bordered ticker ---- */
.net-hero__strip {
    position: absolute; z-index: 3; left: 0; right: 0; bottom: 0;
    border-top: 1px solid var(--border);
    background: var(--card);
    --mq-fade: var(--bg);
    padding: 11px 0;
}
.net-hero__strip .net-marquee__track { gap: 56px; }
.net-hero__strip span {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .84rem; font-weight: 600; color: var(--muted-fg); white-space: nowrap;
}
.net-hero__strip svg { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; }

/* Scroll cue */
.net-hero__cue {
    position: absolute; z-index: 3; left: 50%; bottom: 64px; transform: translateX(-50%);
    width: 26px; height: 42px; border: 2px solid var(--border); border-radius: 14px;
}
.net-hero__cue::after {
    content: ""; position: absolute; left: 50%; top: 7px; width: 4px; height: 8px; border-radius: 3px;
    background: var(--blue); transform: translateX(-50%);
    animation: netCue 2s ease-in-out infinite;
}
@keyframes netCue {
    0%, 100% { transform: translate(-50%, 0); opacity: 1; }
    60%       { transform: translate(-50%, 14px); opacity: 0; }
}

/* Responsive */
@media (max-width: 1180px) {
    .net-hero__inner { grid-template-columns: 1fr; }
    .net-gauge { max-width: 320px; }
}
@media (max-width: 767px) {
    .net-hero { min-height: 92vh; }
    .net-hero__form { flex-direction: column; }
    .net-hero__form .net-btn { width: 100%; border-radius: 12px; }
    .net-hero__cue { display: none; }
    .net-hero__chips { display: none; }
    .net-gauge { display: none; }
}

/* ============================================================
   Hero FX layer â€” spotlight, dotted grid, marker highlight,
   rotator swap underline, tilt glare, live gauge stats,
   floating parallax orbs. All decorative; none ever pre-hidden
   by CSS (GSAP-dead failure mode = static but visible).
   ============================================================ */

/* Cursor spotlight â€” soft blue radial that follows the pointer
   (motion.js sets --spot-x/--spot-y on .net-hero). */
.net-hero__spot {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: radial-gradient(560px circle at var(--spot-x, 60%) var(--spot-y, 38%),
                rgba(0, 97, 255, .085), rgba(255, 176, 31, .035) 42%, transparent 68%);
    opacity: 0; transition: opacity .6s ease;
}
.net-hero:hover .net-hero__spot { opacity: 1; }

/* Dotted grid sheet â€” drifts gently via [data-depth] */
.net-hero__grid {
    position: absolute; z-index: 0; pointer-events: none;
    inset: -40px;
    background-image: radial-gradient(rgba(11, 27, 48, .13) 1.3px, transparent 1.3px);
    background-size: 26px 26px;
    -webkit-mask-image: radial-gradient(720px 520px at 68% 40%, #000 0%, transparent 72%);
            mask-image: radial-gradient(720px 520px at 68% 40%, #000 0%, transparent 72%);
}

/* Marker highlight on "$30 a month" â€” sweeps in after the H1 rise */
.net-hl-marker {
    background-image: linear-gradient(100deg, rgba(255, 176, 31, .50), rgba(255, 176, 31, .38));
    background-repeat: no-repeat;
    background-size: 0% 42%;
    background-position: 0 82%;
    border-radius: 4px;
    animation: netMarkerSweep .7s var(--ease-out) 1.25s forwards;
}
@keyframes netMarkerSweep { to { background-size: 100% 42%; } }

/* Rotator swap underline â€” marker bar wipes under each new word */
.net-rotator { position: relative; }
.net-rotator::after {
    content: ""; position: absolute; left: 2%; right: 6%; bottom: .06em; height: .12em;
    background: var(--marker); border-radius: 3px;
    transform: scaleX(0); transform-origin: left center; opacity: 0;
}
.net-rotator.is-swap::after { animation: netRotMark .5s var(--ease-out); }
@keyframes netRotMark {
    0%   { transform: scaleX(0);  opacity: .9; }
    70%  { transform: scaleX(1);  opacity: .9; }
    100% { transform: scaleX(1);  opacity: 0; }
}

/* Gauge card â€” tilt host + glare sheen + live elements */
.net-gauge {
    position: relative; overflow: hidden;
    will-change: transform;
    transform-style: preserve-3d;
}
.net-gauge__flare {
    position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
    background: radial-gradient(240px circle at var(--gx, 50%) var(--gy, 0%),
                rgba(255, 255, 255, .65), rgba(0, 97, 255, .07) 45%, transparent 70%);
    opacity: 0; transition: opacity .35s ease;
}
.net-gauge:hover .net-gauge__flare { opacity: 1; }
.net-gauge__live {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    color: var(--muted-fg); margin: 0 0 6px;
}
.net-gauge__livedot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--green);
    box-shadow: 0 0 0 0 rgba(10, 195, 79, .45);
    animation: netLivePulse 2.1s ease-out infinite;
}
@keyframes netLivePulse {
    0%   { box-shadow: 0 0 0 0 rgba(10, 195, 79, .45); }
    70%  { box-shadow: 0 0 0 9px rgba(10, 195, 79, 0); }
    100% { box-shadow: 0 0 0 0 rgba(10, 195, 79, 0); }
}
.net-gauge__stats {
    display: flex; justify-content: center; gap: 26px;
    margin-top: 14px; padding-top: 14px;
    border-top: 1px dashed var(--border);
}
.net-gauge__stats b {
    display: block; font-family: var(--font-display); font-weight: 700;
    font-size: 1.06rem; color: var(--navy); letter-spacing: -.02em;
}
.net-gauge__stats b small { font-size: .68rem; font-weight: 600; color: var(--muted-fg); margin-left: 2px; }
.net-gauge__stats i {
    font-style: normal; font-size: .7rem; font-weight: 600; letter-spacing: .07em;
    text-transform: uppercase; color: var(--muted-fg);
}
.net-gauge__caption { position: relative; z-index: 1; }

/* Floating proof orbs â€” 3 transform owners, 3 nested elements:
   .net-orb (pointer parallax via data-depth) â†’ .net-orb__pop (GSAP
   entrance) â†’ .net-orb__bob (CSS idle float). Never pre-hidden. */
.net-hero__orbs { position: absolute; inset: -12px 0 0 0; pointer-events: none; z-index: 4; }
.net-orb { position: absolute; will-change: transform; }
.net-orb--a { top: -34px; right: -22px; }
.net-orb--b { bottom: -10px; left: -58px; }
.net-orb--c { top: 38%; right: -58px; }
.net-orb__bob {
    display: flex; align-items: center; gap: 10px;
    background: rgba(255, 255, 255, .82);
    -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
    border: 1.5px solid rgba(226, 233, 242, .9);
    border-radius: 16px; padding: 10px 16px 10px 11px;
    box-shadow: 0 14px 34px rgba(11, 27, 48, .12);
    animation: netOrbFloat var(--dur, 7s) ease-in-out infinite alternate;
}
@keyframes netOrbFloat {
    from { transform: translateY(calc(var(--amp, 10px) * -1)) rotate(-1deg); }
    to   { transform: translateY(var(--amp, 10px)) rotate(1.2deg); }
}
.net-orb__ic {
    width: 34px; height: 34px; flex: none; border-radius: 10px;
    display: grid; place-items: center; color: #fff;
}
.net-orb__ic svg { width: 17px; height: 17px; }
.net-orb__ic.i-marker { background: var(--marker); color: var(--navy); }
.net-orb__ic.i-blue   { background: linear-gradient(135deg, #0061ff, #00b5ff); }
.net-orb__ic.i-navy   { background: var(--navy); color: var(--marker); }
.net-orb__tx { display: flex; flex-direction: column; line-height: 1.2; white-space: nowrap; }
.net-orb__tx b { font-family: var(--font-display); font-size: .88rem; font-weight: 700; color: var(--navy); }
.net-orb__tx i { font-style: normal; font-size: .72rem; font-weight: 500; color: var(--muted-fg); }

@media (max-width: 1180px) {
    .net-hero__orbs, .net-hero__grid, .net-hero__spot { display: none; }
}

/* ============================================================
   Site-wide FX â€” the hero's language on every section/page
   ============================================================ */

/* Generic glare sheen for [data-glare] cards (motion.js sets --gx/--gy).
   The gauge keeps its dedicated flare span. */
[data-glare] { position: relative; }
[data-glare]:not(.net-gauge)::after {
    content: ""; position: absolute; inset: 0; border-radius: inherit;
    pointer-events: none; z-index: 2; opacity: 0; transition: opacity .35s ease;
    background: radial-gradient(260px circle at var(--gx, 50%) var(--gy, 0%),
                rgba(255, 255, 255, .45), rgba(0, 97, 255, .07) 45%, transparent 72%);
}
[data-glare]:not(.net-gauge):hover::after { opacity: 1; }

/* Scroll-drift images â€” oversize slightly so the parallax never shows edges */
[data-drift] { scale: 1.14; will-change: transform; }

/* Floating polaroid image chips inside sections */
.net-section { position: relative; }
.net-imgchip {
    position: absolute; z-index: 3; width: 225px; margin: 0;
    border: 6px solid #fff; border-radius: 18px; overflow: hidden;
    box-shadow: 0 22px 48px rgba(11, 27, 48, .18);
    rotate: var(--tilt, -3deg);
}
.net-imgchip img { display: block; width: 100%; height: 165px; object-fit: cover; }
.net-imgchip--r { right: 3%; top: 92px; --tilt: 2.5deg; }
.net-imgchip--l { left: 3%; top: 92px; --tilt: -3deg; }
@media (max-width: 1280px) { .net-imgchip { display: none; } }

/* Full-width article media strip (guide pages). The wrapper clips the
   drift-scaled image (scale 1.14) so the parallax never overflows. */
.net-artmedia {
    margin: 0; padding: 0;
    border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.net-artmedia img {
    display: block; width: 100%; max-height: 360px; object-fit: cover;
}
.net-artmedia figcaption { padding: 10px 16px 12px; background: var(--card); }
.net-artmedia figcaption { font-size: .8rem; color: var(--muted-fg); margin-top: 10px; }

/* Page-hero decor: dotted grid, spotlight layer, mini proof orbs */
.net-phero__grid {
    position: absolute; inset: -40px; z-index: 0; pointer-events: none;
    background-image: radial-gradient(rgba(11, 27, 48, .12) 1.3px, transparent 1.3px);
    background-size: 26px 26px;
    -webkit-mask-image: radial-gradient(640px 420px at 74% 46%, #000 0%, transparent 72%);
            mask-image: radial-gradient(640px 420px at 74% 46%, #000 0%, transparent 72%);
}
.net-spotlayer {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: radial-gradient(520px circle at var(--spot-x, 72%) var(--spot-y, 32%),
                rgba(0, 97, 255, .08), rgba(255, 176, 31, .03) 45%, transparent 70%);
    opacity: 0; transition: opacity .6s ease;
}
[data-spot]:hover .net-spotlayer { opacity: 1; }
.net-phero .net-orb { z-index: 3; }

/* Portrait photo card in sub-page heroes. Wrapper grid-centers the figure
   so the .net-hero__rise entrance (which animates transform) can't fight
   a translate-based centering. Proof orbs float over the photo edges.
   --pp-edge anchors the WHOLE cluster to the content container's right
   edge â€” on wide screens the photo must sit with the text column, not
   drift to the viewport edge. */
.net-phero {
    --pp-w: clamp(250px, 23vw, 320px);
    --pp-edge: max(clamp(16px, 4vw, 60px), calc((100% - var(--container)) / 2 + var(--gutter)));
}
.net-orb--p1 { top: 22%; right: calc(var(--pp-edge) - 26px); }
.net-orb--p2 { bottom: 15%; right: calc(var(--pp-edge) + var(--pp-w) - 52px); }
.net-phero__portwrap {
    position: absolute; z-index: 2; pointer-events: none;
    top: calc(var(--nav-h) + var(--offer-h)); bottom: 0;
    right: var(--pp-edge);
    display: grid; align-items: center;
}
.net-phero__portrait {
    width: var(--pp-w, clamp(250px, 23vw, 320px)); aspect-ratio: 3 / 4; margin: 0;
    border-radius: 26px; overflow: hidden; position: relative;
    border: 5px solid #fff;
    box-shadow: 0 26px 60px rgba(11, 27, 48, .18);
    rotate: 2deg;
}
.net-phero__portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.net-phero__portrait::after {
    content: ""; position: absolute; left: 16px; bottom: 16px;
    width: 46px; height: 8px; border-radius: 4px; background: var(--marker);
}
@media (min-width: 1181px) {
    .net-phero.has-portrait { min-height: 600px; display: flex; align-items: center; }
    .net-phero.has-portrait > .net-container { width: 100%; }
    .net-phero.has-portrait .net-phero__title,
    .net-phero.has-portrait .net-phero__sub,
    .net-phero.has-portrait .net-phero__cta {
        max-width: calc(100% - clamp(320px, 27vw, 420px));
    }
}
@media (max-width: 1180px) {
    .net-phero__grid, .net-phero .net-orb, .net-spotlayer, .net-phero__portwrap { display: none; }
}

/* ---- Page heroes (subpages) â€” light band with navy text ---- */
.net-phero {
    position: relative; overflow: hidden;
    background: var(--bg);
    color: var(--fg);
    padding: calc(var(--nav-h) + var(--offer-h) + clamp(44px, 7vw, 84px)) 0 clamp(44px, 7vw, 76px);
    border-bottom: 1px solid var(--border);
}
.net-phero .net-hero2-canvas {
    position: absolute; inset: 0; z-index: 0; opacity: .55; pointer-events: none;
}
.net-phero .net-hero2-canvas canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
/* Legacy phero canvas class kept for compat */
.net-phero__canvas { position: absolute; inset: 0; z-index: 0; opacity: .55; }
.net-phero__canvas canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.net-phero .net-container { position: relative; z-index: 2; }
.net-phero__title {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4.6vw, 3.4rem); color: var(--navy);
}
.net-phero__sub { color: var(--muted-fg); max-width: 640px; font-size: clamp(1rem, 1.5vw, 1.16rem); }
.net-phero__cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 26px; }

/* ==== sections.css ==== */
/* ============================================================
   Sections â€” shared component classes for all pages
   (plan cards, bento, steps, bundles, FAQ, pricing tables,
   final CTA, footer)
   ============================================================ */

/* ---- Offer trio (home, under hero) ---- */
.net-offers { padding: clamp(56px, 8vw, 92px) 0 0; }
.net-offers__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.net-offer {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 28px; display: flex; flex-direction: column; gap: 12px; position: relative; overflow: hidden;
}
.net-offer__media { margin: -28px -28px 4px; overflow: hidden; }
.net-offer__media img { width: 100%; height: 168px; object-fit: cover; display: block; transition: transform 4s var(--ease-out); }
.net-offer:hover .net-offer__media img { transform: scale(1.07); }
.net-offer__icon {
    width: 52px; height: 52px; border-radius: 15px; display: flex; align-items: center; justify-content: center;
    color: #fff; background: var(--grad); box-shadow: var(--shadow-blue);
    margin-top: -50px; position: relative; z-index: 1; border: 3px solid var(--card);
}
.net-offer__icon svg { width: 25px; height: 25px; }
.net-offer__title { font-size: 1.3rem; color: var(--navy); margin: 4px 0 0; }
.net-offer__badge {
    align-self: flex-start; font-size: .82rem; font-weight: 700; color: var(--blue);
    background: var(--sky); padding: 5px 12px; border-radius: var(--radius-pill);
}
.net-offer__desc { color: var(--muted-fg); font-size: .96rem; margin: 0; flex: 1; }
.net-offer__cta { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--blue); }
.net-offer__cta svg { width: 17px; height: 17px; transition: transform var(--t-fast) var(--ease-out); }
.net-offer__cta:hover svg { transform: translateX(5px); }

/* ---- Stats band ---- */
.net-stats { padding: clamp(48px, 7vw, 80px) 0; }
.net-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; text-align: center; }
.net-stat { padding: 22px 10px; border-radius: var(--radius); }
.net-stat__num { display: block; font-size: clamp(1.7rem, 3.2vw, 2.5rem); font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.net-stat__num .net-grad-text { font-weight: 800; }
.net-stat__unit { font-size: .6em; font-weight: 700; margin-left: 2px; }
.net-stat__label { display: block; margin-top: 6px; font-size: .9rem; color: var(--muted-fg); font-weight: 600; }

/* ---- Internet plan cards ---- */
.net-plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.net-plan {
    position: relative; display: flex; flex-direction: column;
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 30px 26px 26px;
    transition: transform var(--t) var(--ease-out), box-shadow var(--t) var(--ease-out), border-color var(--t);
}
.net-plan:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(0, 97, 255, .35); }
.net-plan.is-popular {
    background: linear-gradient(180deg, #042c55 0%, var(--navy) 100%);
    color: var(--dk-fg); border-color: rgba(0, 181, 255, .4);
    box-shadow: 0 26px 56px rgba(0, 34, 65, .45);
}
.net-plan.is-popular .net-plan__name, .net-plan.is-popular .net-plan__amt { color: #fff; }
.net-plan__flag {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--grad); color: #fff; font-size: .76rem; font-weight: 800; letter-spacing: .08em;
    text-transform: uppercase; padding: 7px 16px; border-radius: var(--radius-pill); white-space: nowrap;
    box-shadow: var(--shadow-blue);
}
.net-plan__speed {
    display: inline-flex; align-items: baseline; gap: 6px; align-self: flex-start;
    font-size: .85rem; font-weight: 700; color: var(--blue);
    background: var(--sky); padding: 5px 12px; border-radius: var(--radius-pill); margin-bottom: 14px;
}
.net-plan.is-popular .net-plan__speed { background: rgba(0, 181, 255, .16); color: #9ed6ff; }
.net-plan__name { font-size: 1.18rem; color: var(--navy); margin-bottom: 4px; }
.net-plan__tag { font-size: .9rem; color: var(--muted-fg); margin-bottom: 16px; }
.net-plan.is-popular .net-plan__tag { color: var(--dk-muted); }
.net-plan__price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 2px; }
.net-plan__cur { font-size: 1.3rem; font-weight: 700; color: var(--navy); }
.net-plan.is-popular .net-plan__cur { color: #fff; }
.net-plan__amt { font-size: 3.2rem; font-weight: 800; letter-spacing: -0.04em; color: var(--navy); line-height: 1; }
.net-plan__per { font-size: .92rem; color: var(--muted-fg); font-weight: 600; }
.net-plan.is-popular .net-plan__per { color: var(--dk-muted); }
.net-plan__guarantee { font-size: .84rem; font-weight: 700; color: var(--green); margin-bottom: 16px; }
.net-plan__feats { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 10px; flex: 1; }
.net-plan__feats li { display: flex; gap: 10px; font-size: .93rem; color: var(--fg); align-items: flex-start; }
.net-plan.is-popular .net-plan__feats li { color: #dce9f8; }
.net-plan__feats svg { width: 17px; height: 17px; flex-shrink: 0; color: var(--green); margin-top: 3px; }
.net-plan__fine { margin-top: 18px; }

/* ---- Promo / savings band (dark gradient) ---- */
.net-band {
    position: relative; overflow: hidden; border-radius: var(--radius-lg);
    background:
        radial-gradient(120% 160% at 85% -30%, rgba(0, 97, 255, .5), transparent 60%),
        radial-gradient(90% 130% at 8% 120%, rgba(10, 195, 79, .25), transparent 55%),
        var(--navy-900);
    color: var(--dk-fg); padding: clamp(34px, 5vw, 56px);
}
.net-band::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px; background: var(--grad); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: .5; pointer-events: none; }
.net-band__grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 36px; align-items: center; }
.net-band__title { font-size: clamp(1.7rem, 3.4vw, 2.5rem); color: #fff; }
.net-band__txt { color: var(--dk-muted); font-size: 1.02rem; }
.net-band__num {
    text-align: center; font-weight: 800; letter-spacing: -0.04em;
    font-size: clamp(3.6rem, 7vw, 5.6rem); line-height: 1;
}
.net-band__numlabel { display: block; margin-top: 8px; font-size: .95rem; font-weight: 600; color: var(--dk-muted); letter-spacing: 0; }

/* ---- Photo column inside the guarantee band ---- */
.net-band--photo .net-band__grid { grid-template-columns: 1.05fr .95fr; align-items: stretch; }
.net-band__photo { position: relative; border-radius: 18px; overflow: hidden; min-height: 300px; }
.net-band__photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 6s var(--ease-out); }
.net-band--photo:hover .net-band__photo img { transform: scale(1.06); }
.net-band__photo::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(200deg, rgba(0, 18, 38, 0) 30%, rgba(0, 18, 38, .72) 88%);
}
.net-band__photochip {
    position: absolute; z-index: 1; left: 18px; bottom: 18px; right: 18px;
    display: flex; align-items: center; gap: 14px;
    background: rgba(0, 18, 38, .72); border: 1px solid rgba(255, 255, 255, .16);
    backdrop-filter: blur(10px); border-radius: 16px; padding: 14px 18px;
}
.net-band__photonum { font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1; white-space: nowrap; }
.net-band__photolabel { font-size: .82rem; color: var(--dk-muted); line-height: 1.45; }

/* ---- Cinematic media strip (TV section) ---- */
.net-tvstrip {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    height: clamp(200px, 28vw, 320px); margin-top: 26px;
}
.net-tvstrip img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 6s var(--ease-out); }
.net-tvstrip:hover img { transform: scale(1.05); }
.net-tvstrip::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0, 18, 38, .05) 40%, rgba(0, 18, 38, .68) 100%);
}
.net-tvstrip__chip {
    position: absolute; z-index: 1; left: 22px; bottom: 20px; right: 22px;
    color: #fff; font-weight: 700; font-size: clamp(1rem, 1.8vw, 1.25rem);
    text-shadow: 0 2px 14px rgba(0, 10, 25, .55);
}

/* ---- Bento photo cell ---- */
.net-bento__cell--photo { padding: 0; min-height: 230px; border: 0; }
.net-bento__cell--photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 5s var(--ease-out); }
.net-bento__cell--photo:hover img { transform: scale(1.06); }
.net-bento__cell--photo::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(185deg, rgba(0, 18, 38, .02) 35%, rgba(0, 18, 38, .78) 95%);
}
.net-bento__caption {
    position: absolute; z-index: 1; left: 20px; right: 20px; bottom: 16px;
    color: #fff; font-size: .95rem; font-weight: 700; line-height: 1.45;
    text-shadow: 0 2px 12px rgba(0, 10, 25, .5);
}

/* ---- Bento grid (21st.dev-style feature mosaic) ---- */
.net-bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.net-bento__cell {
    position: relative; overflow: hidden; border-radius: var(--radius-lg);
    background: var(--card); border: 1px solid var(--border); padding: 26px;
    display: flex; flex-direction: column; gap: 8px;
    transition: transform var(--t) var(--ease-out), box-shadow var(--t) var(--ease-out);
}
.net-bento__cell:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.net-bento__cell.is-3 { grid-column: span 3; }
.net-bento__cell.is-2 { grid-column: span 2; }
.net-bento__cell.is-4 { grid-column: span 4; }
.net-bento__cell.is-6 { grid-column: 1 / -1; }
.net-bento__cell.is-dark { background: var(--navy); border-color: var(--navy-800); color: var(--dk-fg); }
.net-bento__cell.is-dark h3 { color: #fff; }
.net-bento__cell.is-dark p { color: var(--dk-muted); }
.net-bento__kpi { font-size: 2.3rem; font-weight: 800; letter-spacing: -0.03em; color: var(--navy); line-height: 1; }
.net-bento__cell.is-dark .net-bento__kpi { color: #fff; }
.net-bento__cell h3 { font-size: 1.08rem; color: var(--navy); margin: 0; }
.net-bento__cell p { font-size: .92rem; color: var(--muted-fg); margin: 0; }
.net-bento__icon { width: 44px; height: 44px; border-radius: 13px; display: flex; align-items: center; justify-content: center; color: #fff; background: var(--grad); margin-bottom: 6px; }
.net-bento__icon svg { width: 21px; height: 21px; }
.net-bento__media { margin: 14px -26px -26px; margin-top: auto; padding-top: 14px; border-radius: 0 0 var(--radius-lg) var(--radius-lg); overflow: hidden; }
.net-bento__media img { width: 100%; height: 180px; object-fit: cover; display: block; }

/* ---- Steps (how it works) ---- */
.net-steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: spcstep; }
.net-steps__line { position: absolute; top: 44px; left: 8%; right: 8%; height: 2px; z-index: 0; }
.net-steps__line svg { width: 100%; height: 100%; display: block; }
.net-step {
    position: relative; z-index: 1; background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 28px; text-align: center;
}
.net-step__num {
    counter-increment: spcstep; width: 56px; height: 56px; margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; background: var(--grad); color: #fff; font-weight: 800; font-size: 1.25rem;
    box-shadow: var(--shadow-blue);
}
.net-step__num::before { content: counter(spcstep); }
.net-step h3 { font-size: 1.12rem; color: var(--navy); }
.net-step p { font-size: .93rem; color: var(--muted-fg); margin: 0; }

/* ---- Step media headers ---- */
.net-step__media { margin: -28px -28px 18px; overflow: hidden; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.net-step__media img { width: 100%; height: 132px; object-fit: cover; display: block; transition: transform 4s var(--ease-out); }
.net-step:hover .net-step__media img { transform: scale(1.07); }
.net-step .net-step__num { margin-top: -44px; position: relative; z-index: 1; border: 3px solid var(--card); }

/* ---- Light split band (distinct closer for subpages â€” image right) ---- */
.net-splitband {
    display: grid; grid-template-columns: 1.1fr .9fr; align-items: stretch; overflow: hidden;
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.net-splitband__body { padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; gap: 12px; justify-content: center; align-items: flex-start; }
.net-splitband__body h2, .net-splitband__body h3 { color: var(--navy); font-size: clamp(1.5rem, 2.8vw, 2.1rem); margin: 0; }
.net-splitband__body p { color: var(--muted-fg); margin: 0; }
.net-splitband__kpi { font-size: .82rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); }
.net-splitband__media { position: relative; min-height: 260px; }
.net-splitband__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.net-splitband__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.16), transparent 35%); }
@media (max-width: 860px) {
    .net-splitband { grid-template-columns: 1fr; }
    .net-splitband__media { min-height: 200px; order: -1; }
}

/* ---- TV plan grid alignment: CTAs anchor to the card bottom ---- */
.net-plan .net-btn--block { margin-top: auto; }

/* ---- Bundle cards ---- */
.net-bundle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.net-bundle {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 28px; display: flex; flex-direction: column; gap: 12px;
}
.net-bundle__name { font-size: 1.08rem; color: var(--navy); min-height: 2.6em; }
.net-bundle__price { display: flex; align-items: baseline; gap: 6px; }
.net-bundle__amt { font-size: 2.6rem; font-weight: 800; letter-spacing: -0.04em; color: var(--navy); line-height: 1; }
.net-bundle__per { font-size: .9rem; color: var(--muted-fg); font-weight: 600; }
.net-bundle__lock { font-size: .82rem; font-weight: 700; color: var(--green); }
.net-bundle__bits { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; flex: 1; }
.net-bundle__bits li { display: flex; gap: 9px; font-size: .9rem; color: var(--fg); }
.net-bundle__bits svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--blue); margin-top: 4px; }
.net-bundle__lock svg { width: 15px; height: 15px; vertical-align: -2px; margin-right: 4px; }
.net-bundle__bits--icons li { align-items: flex-start; }
.net-bundle__bicon {
    width: 30px; height: 30px; flex-shrink: 0; border-radius: 9px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--sky); color: var(--blue);
}
.net-bundle__bicon svg { width: 15px; height: 15px; margin-top: 0; }

/* ---- Roll-off pricing table + modal ---- */
.net-rolloff { width: 100%; border-collapse: collapse; font-size: .94rem; }
.net-rolloff th, .net-rolloff td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--border); }
.net-rolloff th { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-fg); }
.net-rolloff td:first-child { font-weight: 700; color: var(--navy); }
.net-rolloff__save { color: var(--green); font-weight: 700; }
.net-pricing-link { font-size: .88rem; font-weight: 700; color: var(--blue); text-decoration: underline; background: none; border: 0; padding: 0; }

.net-modal {
    position: fixed; inset: 0; z-index: 1400; display: flex; align-items: center; justify-content: center;
    background: rgba(0, 14, 30, .66); backdrop-filter: blur(6px); padding: 20px;
    opacity: 0; transition: opacity .3s ease;
}
/* hidden must ALWAYS win or the invisible overlay blocks every click on the page. */
.net-modal[hidden] { display: none !important; }
.net-modal.is-in { opacity: 1; }
.net-modal__card {
    background: #fff; border-radius: var(--radius-lg); max-width: 680px; width: 100%;
    max-height: 86vh; overflow: auto; padding: 30px; position: relative;
    transform: translateY(14px); transition: transform .3s var(--ease-out);
}
.net-modal.is-in .net-modal__card { transform: none; }
.net-modal__close {
    position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%;
    border: 1px solid var(--border); background: #fff; font-size: 1.1rem; color: var(--muted-fg);
}
.net-modal__close:hover { color: var(--navy); border-color: var(--navy); }
.net-modal__title { color: var(--navy); font-size: 1.3rem; margin-bottom: 14px; }

/* ---- App logo / trust marquee row (light sections) ---- */
.net-applist { --mq-fade: var(--muted); padding: 8px 0; }
.net-applist span {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .98rem; font-weight: 700; color: var(--navy); white-space: nowrap;
}
.net-applist .sep { width: 6px; height: 6px; border-radius: 50%; background: var(--grad); padding: 0; }

/* ---- FAQ ---- */
.net-faq { max-width: 860px; margin: 0 auto; }
.net-faq__list { display: grid; gap: 12px; }
.net-faq__item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color var(--t); }
.net-faq__item.is-open { border-color: rgba(0, 97, 255, .4); box-shadow: var(--shadow-sm); }
.net-faq__q {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px;
    background: none; border: 0; text-align: left; padding: 18px 20px;
    font-family: var(--font); font-size: 1.02rem; font-weight: 700; color: var(--navy);
}
.net-faq__q svg { width: 19px; height: 19px; flex-shrink: 0; color: var(--blue); transition: transform var(--t) var(--ease-out); }
.net-faq__item.is-open .net-faq__q svg { transform: rotate(180deg); }
.net-faq__a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease-out); }
.net-faq__a p { padding: 0 20px 18px; margin: 0; color: var(--muted-fg); font-size: .96rem; }
.net-faq__a a { font-weight: 700; }
.net-faq__cta { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 30px; flex-wrap: wrap; }
.net-faq__cta p { margin: 0; font-weight: 700; color: var(--navy); }

/* ---- Final CTA ---- */
.net-final {
    position: relative; overflow: hidden; text-align: center;
    background:
        radial-gradient(90% 130% at 50% -40%, #0a3e74 0%, transparent 60%),
        var(--navy-950);
    color: var(--dk-fg); padding: clamp(72px, 10vw, 120px) 0;
}
.net-final__glow {
    position: absolute; left: 50%; top: 58%; transform: translate(-50%, -50%);
    width: min(820px, 90vw); height: 320px; pointer-events: none;
    background: radial-gradient(closest-side, rgba(0, 97, 255, .35), transparent 75%);
    filter: blur(20px);
}
.net-final__inner { position: relative; z-index: 1; }
.net-final__title { color: #fff; font-size: clamp(2rem, 4.6vw, 3.3rem); }
.net-final__sub { color: var(--dk-muted); max-width: 560px; margin: 0 auto 30px; }
.net-final__cta { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.net-final__hours { color: var(--dk-muted); font-size: .9rem; margin: 0; }

/* ---- Footer ---- */
.net-footer { background: var(--navy-950); color: var(--dk-muted); padding: clamp(48px, 7vw, 72px) 0 32px; border-top: 1px solid rgba(255,255,255,.07); }
.net-footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; margin-bottom: 38px; }
.net-footer__brand img { width: 190px; margin-bottom: 14px; }
.net-footer__tag { font-size: .9rem; line-height: 1.6; }
.net-footer__nav { display: flex; flex-direction: column; gap: 9px; }
.net-footer__nav h3, .net-footer__contact h3 { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: #8fa6bd; margin-bottom: 6px; }
.net-footer__nav a { color: #c6d6e8; font-size: .93rem; transition: color var(--t-fast), transform var(--t-fast); }
.net-footer__nav a:hover { color: #fff; transform: translateX(3px); }
.net-footer__phone { display: inline-block; font-size: 1.35rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.net-footer__phone:hover { color: var(--cyan); }
.net-footer__hours { font-size: .85rem; margin: 0 0 6px; }
.net-footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; }
.net-footer__legal { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-bottom: 16px; }
.net-footer__legal a, .net-footer__cookies { color: #c6d6e8; font-size: .88rem; font-weight: 600; }
.net-footer__legal a:hover { color: #fff; }
.net-footer__cookies { background: none; border: 0; padding: 0; text-decoration: underline; }
.net-footer__cookies:hover { color: #fff; }
.net-footer__copy { font-size: .8rem; color: #7e93aa; margin: 0; }
@media (max-width: 1023px) { .net-footer { padding-bottom: 110px; } }

/* ==== coverage-page.css ==== */
/* ============================================================
   Search page â€” availability results
   ============================================================ */
.net-srch { padding: clamp(48px, 7vw, 80px) 0 clamp(64px, 9vw, 100px); min-height: 50vh; }
.net-srch__head { max-width: 760px; margin-bottom: 34px; }
.net-srch__loc { color: var(--blue); }

.net-srch__loading { display: flex; align-items: center; gap: 14px; color: var(--muted-fg); font-weight: 600; padding: 40px 0; }
.net-srch__spinner {
    width: 26px; height: 26px; border-radius: 50%;
    border: 3px solid var(--sky); border-top-color: var(--blue);
    animation: netSpin 0.9s linear infinite;
}
@keyframes netSpin { to { transform: rotate(360deg); } }

/* Spectrum feature card */
.net-scard {
    position: relative; overflow: hidden;
    background:
        radial-gradient(110% 150% at 88% -30%, rgba(0, 97, 255, .42), transparent 58%),
        radial-gradient(80% 120% at 0% 130%, rgba(10, 195, 79, .2), transparent 55%),
        var(--navy-900);
    color: var(--dk-fg); border-radius: var(--radius-lg);
    padding: clamp(28px, 4.5vw, 46px); margin-bottom: 34px;
}
.net-scard::after { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px; background: var(--grad); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: .5; pointer-events: none; }
.net-scard__badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(10, 195, 79, .15); border: 1px solid rgba(10, 195, 79, .45); color: #7ce8a8;
    font-size: .8rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
    padding: 7px 14px; border-radius: var(--radius-pill); margin-bottom: 16px;
}
.net-scard__title { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.net-scard__sub { color: var(--dk-muted); max-width: 660px; }
.net-scard__sub a { color: #9ed6ff; font-weight: 700; }
.net-scard__plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 24px 0 14px; }
.net-scard__plan {
    background: rgba(255, 255, 255, .06); border: 1px solid var(--dk-border); border-radius: var(--radius);
    padding: 16px 18px; display: flex; flex-direction: column; gap: 3px;
    transition: transform var(--t-fast) var(--ease-out), border-color var(--t-fast);
}
.net-scard__plan:hover { transform: translateY(-4px); border-color: rgba(0, 181, 255, .5); }
.net-scard__pname { font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #9ed6ff; }
.net-scard__pspeed { font-size: 1.25rem; font-weight: 800; color: #fff; }
.net-scard__pprice { font-size: 1.05rem; font-weight: 800; color: #fff; }
.net-scard__pprice i { font-style: normal; font-weight: 500; font-size: .76rem; color: var(--dk-muted); margin-left: 4px; }
.net-scard__note { font-size: .85rem; color: var(--dk-muted); }
.net-scard__cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 10px; }
.net-scard__hint { font-size: .85rem; color: var(--dk-muted); }
.net-scard--alt { background: var(--navy-900); }

/* Other providers */
.net-srch__others { margin-top: 10px; }
.net-srch__otitle { font-size: 1.2rem; color: var(--navy); }
.net-srch__osub { font-size: .84rem; color: var(--muted-fg); margin-bottom: 18px; }
.net-srch__ogrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.net-ocard {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 16px 18px; display: flex; flex-direction: row; align-items: center; gap: 14px;
    transition: transform var(--t-fast) var(--ease-out), box-shadow var(--t-fast);
}
.net-ocard:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.net-ocard__body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.net-ocard__name { font-weight: 700; color: var(--navy); font-size: .98rem; }
.net-ocard__meta { font-size: .84rem; color: var(--muted-fg); }
.net-ocard__cov { font-size: .78rem; font-weight: 700; color: var(--blue); }

/* Carrier identity chip: brand-tinted monogram + animated tech badge */
.net-oavatar {
    position: relative; flex-shrink: 0;
    width: 46px; height: 46px; border-radius: 13px;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: .82rem; letter-spacing: .02em;
}
.net-obadge {
    position: absolute; right: -7px; bottom: -7px;
    width: 22px; height: 22px; border-radius: 8px;
    background: #fff; border: 1px solid var(--border);
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-sm);
}
.net-obadge svg { width: 13px; height: 13px; display: block; }

/* Tech glyph animations */
.net-anim-flow .flow {
    stroke-dasharray: 6 5;
    animation: netFlowDash 1.4s linear infinite;
}
@keyframes netFlowDash { to { stroke-dashoffset: -22; } }

.net-anim-arcs .a1, .net-anim-arcs .a2, .net-anim-arcs .a3 {
    animation: netArcPulse 2.1s ease-in-out infinite;
}
.net-anim-arcs .a2 { animation-delay: .3s; }
.net-anim-arcs .a3 { animation-delay: .6s; }
@keyframes netArcPulse { 0%, 100% { opacity: .25; } 35% { opacity: 1; } }

.net-anim-orbit .orb {
    transform-origin: 12px 12px;
    animation: netOrbit 3.2s linear infinite;
}
@keyframes netOrbit { to { transform: rotate(360deg); } }

/* Empty / error panes */
.net-srch__empty, .net-srch__error {
    background: var(--muted); border: 1px dashed var(--border); border-radius: var(--radius-lg);
    padding: 38px; text-align: center; color: var(--muted-fg);
}
.net-srch__empty a, .net-srch__error a { font-weight: 700; }

@media (max-width: 900px) {
    .net-scard__plans, .net-srch__ogrid { grid-template-columns: 1fr; }
}

/* ==== responsive.css ==== */
/* ============================================================
   Responsive â€” global breakpoints (component files handle
   their own where local)
   ============================================================ */
@media (max-width: 1023px) {
    .net-offers__grid, .net-plan-grid, .net-bundle-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
    .net-stats__grid { grid-template-columns: repeat(2, 1fr); }
    .net-band__grid { grid-template-columns: 1fr; text-align: left; }
    .net-band__num { text-align: left; }
    .net-steps { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
    .net-steps__line { display: none; }
    .net-bento { grid-template-columns: 1fr 1fr; }
    .net-bento__cell.is-2, .net-bento__cell.is-3, .net-bento__cell.is-4 { grid-column: span 2; }
    .net-footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    body { font-size: 16px; }
    .net-stats__grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .net-bento { grid-template-columns: 1fr; }
    .net-bento__cell.is-2, .net-bento__cell.is-3, .net-bento__cell.is-4 { grid-column: span 1; }
    .net-footer__top { grid-template-columns: 1fr; gap: 26px; }
    .net-consent { left: 12px; right: 12px; bottom: 86px; max-width: none; }
    .net-final .net-btn--xl { width: 100%; }
}

/* ==== polish.css ==== */
/* ============================================================
   UX polish layer â€” loads LAST in the bundle so it can refine
   anything beneath it. Brand lockup sizing, focus visibility,
   micro-interactions, selection/scrollbar, type niceties.
   ============================================================ */

/* Official Spectrum Authorized Retailer lockup (nav pill + footer) */
.net-nav__brand img { display: block; width: 190px; height: 25px; }
.net-footer__brandline { margin: 0 0 14px; }
.net-footer__brandline img { display: block; width: 190px; height: 25px; }
@media (max-width: 480px) {
    .net-nav__brand img { width: 152px; height: 20px; }
}

/* Keyboard focus â€” always visible, never for mouse clicks */
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
    outline: 3px solid var(--cyan);
    outline-offset: 2px;
    border-radius: 6px;
}

/* Buttons: lift on hover, settle on press. Magnetic buttons keep their
   GSAP-driven transform â€” only shadow/background transitions for them. */
.net-btn:active { transform: translateY(0) scale(.985); }
/* Gradient/blue button hovers are owned by base.css (deepen + lift + strong
   shadow, no covering overlay). Magnetic buttons keep GSAP transform â€” their
   transition stays transform-free so the cursor-follow never lags. */
[data-magnetic] { transition: background-position .5s var(--ease-out), box-shadow .18s var(--ease-out), background-color .18s ease, color .18s ease; }

/* Type niceties */
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
body { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

/* Anchor jumps land below the fixed nav */
[id] { scroll-margin-top: calc(var(--nav-h) + var(--offer-h) + 18px); }

/* Branded selection + scrollbar */
::selection { background: rgba(255, 176, 31, .45); color: var(--navy); }
@media (pointer: fine) {
    ::-webkit-scrollbar { width: 11px; }
    ::-webkit-scrollbar-track { background: var(--muted); }
    ::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 8px; border: 3px solid var(--muted); }
}

/* Marquees pause while the visitor reads them */
.net-marquee:hover .net-marquee__track { animation-play-state: paused; }

/* Decorative images aren't draggable ghosts */
.net-imgchip img, .net-phero__portrait img, .net-orb img { -webkit-user-drag: none; user-select: none; }

/* ============================================================
   LITE MODE (html.net-lite) â€” low-end devices. Set by motion.js
   (hardware heuristic, FPS probe, or ?lite=1). Kills the paint-
   expensive layers; never touches content or entrances.
   ============================================================ */
html.net-lite * { -webkit-backdrop-filter: none !important; backdrop-filter: none !important; }
html.net-lite .net-orb__bob { background: rgba(255, 255, 255, .96); animation: none; }
html.net-lite .net-hero__spot,
html.net-lite .net-spotlayer,
html.net-lite .net-hero__grid,
html.net-lite .net-phero__grid,
html.net-lite .net-gauge__flare { display: none; }
html.net-lite [data-drift] { scale: none; will-change: auto; }
html.net-lite .net-orb, html.net-lite .net-gauge { will-change: auto; }
html.net-lite .net-imgchip,
html.net-lite .net-phero__portrait,
html.net-lite .net-gauge { box-shadow: 0 10px 26px rgba(11, 27, 48, .14); }
html.net-lite .net-imgchip { rotate: none; }
html.net-lite .net-phero__portrait { rotate: none; }

