/* =========================================================
   DMZHOST — offshore infrastructure
   Palette : abyss navy / panel slate / electric cyan / uptime green
   Type    : Space Grotesk (display) · Inter (body) · JetBrains Mono (data)
   ========================================================= */

:root {
    --abyss:      #060910;
    --abyss-2:    #0a0f1c;
    --panel:      #0e1524;
    --panel-2:    #121b2e;
    --line:       #1e2a42;
    --line-soft:  #16203399;

    --cyan:       #22d3ee;
    --cyan-deep:  #0891b2;
    --uptime:     #34d399;
    --amber:      #fbbf24;

    --ink:        #eef4ff;
    --slate:      #93a4c3;
    --slate-dim:  #64748b;

    --grad-cyan:  linear-gradient(135deg, #22d3ee 0%, #3b82f6 100%);
    --glow-cyan:  0 0 0 1px rgba(34,211,238,.25), 0 12px 40px -12px rgba(34,211,238,.45);

    --radius:     14px;
    --radius-lg:  22px;
    --wrap:       1140px;

    --font-display: 'Space Grotesk', system-ui, sans-serif;
    --font-body:    'Inter', system-ui, sans-serif;
    --font-mono:    'JetBrains Mono', ui-monospace, monospace;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--slate);
    background: var(--abyss);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); line-height: 1.12; margin: 0 0 .5em; font-weight: 600; letter-spacing: -.02em; }
p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; transition: color .18s ease; }
img, svg { display: block; max-width: 100%; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }

.skip-link {
    position: absolute; left: -999px; top: 0; z-index: 200;
    background: var(--cyan); color: var(--abyss); padding: 10px 16px; border-radius: 0 0 10px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- eyebrow / labels ---------- */
.eyebrow {
    font-family: var(--font-mono); font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
    color: var(--cyan); display: inline-flex; align-items: center; gap: .55rem; margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--cyan); opacity: .6; }

/* ---------- buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: .5rem; justify-content: center;
    font-family: var(--font-display); font-weight: 600; font-size: .95rem;
    padding: 13px 26px; border-radius: 10px; cursor: pointer; border: 1px solid transparent;
    background: var(--grad-cyan); color: #041016;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--glow-cyan); color: #041016; }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); box-shadow: none; }
.btn-sm { padding: 9px 18px; font-size: .85rem; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(6,9,16,.72);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .25s ease, background .25s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); background: rgba(6,9,16,.92); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }

.logo { display: inline-flex; align-items: center; gap: .6rem; color: var(--ink); }
.logo-mark { color: var(--cyan); flex: none; }
.logo-text { font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; letter-spacing: -.01em; }
.logo-text i { color: var(--cyan); font-style: normal; font-weight: 500; opacity: .85; }

.primary-nav { display: flex; align-items: center; gap: 1.9rem; }
.nav-link { font-size: .93rem; color: var(--slate); font-weight: 500; position: relative; }
.nav-link:hover { color: var(--ink); }
.nav-link.is-active { color: var(--ink); }
.nav-link.is-active::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -22px; height: 2px; background: var(--cyan);
}
.nav-cta { margin-left: .4rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO — signature animated network
   ========================================================= */
.hero { position: relative; padding: 92px 0 84px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-bg::before {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(680px 340px at 78% 8%, rgba(34,211,238,.16), transparent 70%),
        radial-gradient(560px 360px at 12% 90%, rgba(59,130,246,.12), transparent 70%);
}
.hero-grid {
    position: absolute; inset: -2px; opacity: .5;
    background-image:
        linear-gradient(var(--line-soft) 1px, transparent 1px),
        linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
    background-size: 46px 46px;
    -webkit-mask-image: radial-gradient(circle at 70% 20%, #000 0%, transparent 72%);
            mask-image: radial-gradient(circle at 70% 20%, #000 0%, transparent 72%);
}
.hero-net { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-net line { stroke: rgba(34,211,238,.22); stroke-width: 1; }
.hero-net .node { fill: var(--cyan); }
.hero-net .pulse { fill: var(--cyan); animation: nodePulse 3.4s ease-in-out infinite; transform-origin: center; }
@keyframes nodePulse { 0%,100% { opacity: .25; r: 3; } 50% { opacity: 1; r: 5.4; } }
.hero-net .packet { fill: #fff; filter: drop-shadow(0 0 4px var(--cyan)); }

.hero-inner { position: relative; z-index: 2; max-width: 780px; }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 700; margin-bottom: .5em; }
.hero h1 .accent { background: var(--grad-cyan); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lead { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--slate); max-width: 620px; margin-bottom: 2.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 3rem; }

.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.hero-stats .stat { background: var(--panel); padding: 20px 22px; }
.hero-stats .stat b { display: block; font-family: var(--font-display); font-size: 1.6rem; color: var(--ink); font-weight: 600; }
.hero-stats .stat span { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--slate-dim); }

/* =========================================================
   SECTIONS
   ========================================================= */
.section { padding: 84px 0; position: relative; }
.section.alt { background: linear-gradient(180deg, var(--abyss) 0%, var(--abyss-2) 100%); border-block: 1px solid var(--line); }
.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.section-head p { font-size: 1.05rem; }

/* ---------- feature strip ---------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; transition: border-color .2s ease, transform .2s ease; }
.feature:hover { border-color: var(--cyan-deep); transform: translateY(-3px); }
.feature .ico { width: 42px; height: 42px; border-radius: 10px; display: grid; place-items: center; background: rgba(34,211,238,.1); color: var(--cyan); margin-bottom: 16px; }
.feature h3 { font-size: 1.08rem; margin-bottom: .35em; }
.feature p { font-size: .92rem; margin: 0; }

/* ---------- plan / spec cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
    position: relative; background: linear-gradient(180deg, var(--panel) 0%, var(--panel-2) 100%);
    border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 28px 32px;
    display: flex; flex-direction: column; transition: border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}
.card:hover { border-color: var(--cyan-deep); transform: translateY(-4px); box-shadow: 0 22px 50px -26px rgba(34,211,238,.4); }
.card.featured { border-color: var(--cyan); }
.card.featured::before {
    content: "Most requested"; position: absolute; top: -12px; left: 28px;
    font-family: var(--font-mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase;
    background: var(--grad-cyan); color: #04141a; padding: 5px 12px; border-radius: 20px; font-weight: 600;
}
.card .card-kicker { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--cyan); margin-bottom: .5rem; }
.card h3 { font-size: 1.35rem; margin-bottom: .3em; }
.card .card-sub { font-size: .9rem; color: var(--slate); margin-bottom: 1.4rem; }
.card .specs { list-style: none; margin: 0 0 1.8rem; padding: 0; border-top: 1px solid var(--line); }
.card .specs li { display: flex; justify-content: space-between; gap: 1rem; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: .9rem; }
.card .specs li span:first-child { color: var(--slate-dim); }
.card .specs li span:last-child { color: var(--ink); font-family: var(--font-mono); font-size: .85rem; }
.card .card-cta { margin-top: auto; }
.card .card-cta .btn { width: 100%; }
.price-note { font-family: var(--font-mono); font-size: .8rem; color: var(--slate-dim); margin-bottom: 1.4rem; }
.price-note b { color: var(--ink); }

/* real pricing */
.card-price { display: flex; align-items: baseline; gap: .35rem; margin-bottom: .3rem; }
.card-price .amt { font-family: var(--font-display); font-size: 2.1rem; font-weight: 600; color: var(--ink); letter-spacing: -.02em; }
.card-price .per { font-family: var(--font-mono); font-size: .8rem; color: var(--slate-dim); }
.card-price-alt { font-family: var(--font-mono); font-size: .78rem; color: var(--slate); margin-bottom: 1.5rem; }
.card-price + .card-cta, .card-price-alt + .card-cta { margin-top: 1.1rem; }

/* 4-up grid for web hosting comparison */
.cards.cols-4 { grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cards.cols-4 .card { padding: 26px 22px 28px; }
@media (max-width: 1080px) { .cards.cols-4 { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin-inline: auto; } }
@media (max-width: 600px)  { .cards.cols-4 { grid-template-columns: 1fr; max-width: 420px; } }

/* ---------- network / locations ---------- */
.net-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.net-panel { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 8px; }
.net-panel-inner { border: 1px solid var(--line); border-radius: 16px; padding: 26px; background: radial-gradient(600px 300px at 30% 0%, rgba(34,211,238,.08), transparent 70%); }
.metric-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 8px; }
.metric { background: var(--abyss-2); border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; }
.metric b { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); }
.metric span { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--slate-dim); }
.check-list { list-style: none; margin: 1.5rem 0 0; padding: 0; }
.check-list li { display: flex; gap: .7rem; padding: 9px 0; font-size: .98rem; color: var(--slate); }
.check-list li::before { content: ""; flex: none; width: 20px; height: 20px; margin-top: 2px; border-radius: 6px; background: rgba(52,211,153,.14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2334d399' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--panel); padding: 56px 44px; text-align: center; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 260px at 50% 0%, rgba(34,211,238,.16), transparent 70%); }
.cta-band > * { position: relative; }
.cta-band h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); }
.cta-band p { max-width: 520px; margin-inline: auto; margin-bottom: 1.8rem; }
.cta-band .hero-actions { justify-content: center; margin-bottom: 0; }

/* ---------- page hero (inner pages) ---------- */
.page-hero { position: relative; padding: 74px 0 40px; overflow: hidden; border-bottom: 1px solid var(--line); }
.page-hero .hero-grid { opacity: .35; }
.page-hero-inner { position: relative; z-index: 2; max-width: 720px; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); }
.page-hero p { font-size: 1.1rem; max-width: 560px; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 46px; align-items: start; }
.contact-aside .info-block { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-aside .info-block .ico { flex: none; width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: rgba(34,211,238,.1); color: var(--cyan); }
.contact-aside .info-block h4 { font-size: 1rem; margin: 0 0 .15em; }
.contact-aside .info-block p { margin: 0; font-size: .92rem; }
.contact-aside .info-block a { color: var(--cyan); }

.form-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 30px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-mono); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--slate); margin-bottom: 8px; }
.field input, .field select, .field textarea {
    width: 100%; background: var(--abyss-2); border: 1px solid var(--line); border-radius: 10px;
    color: var(--ink); font-family: var(--font-body); font-size: .96rem; padding: 12px 14px; transition: border-color .18s ease, box-shadow .18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(34,211,238,.14); }
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hp { position: absolute; left: -9999px; }
.form-note { font-size: .82rem; color: var(--slate-dim); margin-top: 4px; }

.alert { border-radius: 10px; padding: 14px 16px; font-size: .92rem; margin-bottom: 20px; border: 1px solid; }
.alert-ok  { background: rgba(52,211,153,.08); border-color: rgba(52,211,153,.4); color: #a7f3d0; }
.alert-err { background: rgba(251,113,133,.08); border-color: rgba(251,113,133,.4); color: #fecdd3; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { border-top: 1px solid var(--line); background: var(--abyss-2); padding: 64px 0 28px; margin-top: 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-note { font-size: .92rem; max-width: 340px; margin-bottom: 18px; }
.footer-col h4 { font-size: .8rem; font-family: var(--font-mono); letter-spacing: .12em; text-transform: uppercase; color: var(--slate-dim); margin-bottom: 14px; }
.footer-col a { display: block; font-size: .92rem; color: var(--slate); padding: 5px 0; }
.footer-col a:hover { color: var(--cyan); }
.footer-col .btn { margin-top: 8px; }
.status-pill { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-mono); font-size: .76rem; color: var(--uptime); border: 1px solid rgba(52,211,153,.3); border-radius: 30px; padding: 6px 12px; }
.status-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--uptime); box-shadow: 0 0 0 0 rgba(52,211,153,.6); animation: ping 2.2s ease-out infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(52,211,153,.5); } 70%,100% { box-shadow: 0 0 0 8px rgba(52,211,153,0); } }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); font-size: .84rem; color: var(--slate-dim); }
.footer-legal a:hover { color: var(--cyan); }

/* ---------- order CTA on cards ---------- */
.card-cta .btn { width: 100%; }
.card-cta .quote-link {
    display: block; text-align: center; margin-top: 12px;
    font-family: var(--font-mono); font-size: .78rem; letter-spacing: .04em; color: var(--slate);
}
.card-cta .quote-link:hover { color: var(--cyan); }

/* ---------- support cards (contact page) ---------- */
.hours-pill {
    display: inline-flex; align-items: center; gap: .5rem; margin-top: 6px;
    font-family: var(--font-mono); font-size: .76rem; letter-spacing: .04em; color: var(--uptime);
    border: 1px solid rgba(52,211,153,.3); border-radius: 30px; padding: 6px 14px;
}
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.support-card {
    display: flex; flex-direction: column; background: var(--panel);
    border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; color: inherit;
}
a.support-card:hover { border-color: var(--cyan-deep); transform: translateY(-3px); box-shadow: 0 18px 40px -24px rgba(34,211,238,.4); }
.support-card .ico { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; background: rgba(34,211,238,.1); color: var(--cyan); margin-bottom: 16px; }
.support-card.abuse .ico { background: rgba(251,191,36,.12); color: var(--amber); }
.support-card h3 { font-size: 1.1rem; margin-bottom: .35em; }
.support-card p { font-size: .92rem; margin: 0 0 1.2rem; }
.support-card .addr { font-family: var(--font-mono); font-size: .88rem; color: var(--ink); margin-bottom: 1.2rem; word-break: break-all; }
.support-card .support-cta { margin-top: auto; font-family: var(--font-mono); font-size: .8rem; letter-spacing: .05em; color: var(--cyan); display: inline-flex; align-items: center; gap: .4rem; }
.support-card.abuse .support-cta { color: var(--amber); }
@media (max-width: 940px) { .support-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

/* =========================================================
   COMPARISON TABLE (dedicated / vps plans)
   ========================================================= */
.ptable-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--panel);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}
.ptable { border-collapse: separate; border-spacing: 0; width: 100%; min-width: 780px; }
.ptable th, .ptable td {
    padding: 15px 16px; text-align: center; vertical-align: middle;
    border-bottom: 1px solid var(--line); font-size: .9rem; color: var(--slate);
}
.ptable td strong, .ptable td b { color: var(--ink); font-weight: 500; }
.ptable td small { display: block; font-family: var(--font-mono); font-size: .68rem; color: var(--slate-dim); margin-top: 4px; letter-spacing: .02em; }
.ptable td.is-featured small { color: var(--slate); }

/* sticky label column */
.ptable .rowlabel, .ptable .corner {
    position: sticky; left: 0; z-index: 2;
    text-align: right; white-space: nowrap; background: var(--panel);
    border-right: 1px solid var(--line);
    font-family: var(--font-mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--slate-dim);
    min-width: 120px;
}
.ptable .corner { z-index: 4; border-bottom: 1px solid var(--line); }

/* plan headers */
.ptable thead th.plan { background: var(--panel-2); border-bottom: 1px solid var(--line); padding: 20px 16px; min-width: 150px; }
.ptable .plan-name { display: block; font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; color: var(--ink); letter-spacing: -.01em; }
.ptable .plan-kicker { display: block; font-family: var(--font-mono); font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--cyan); margin-top: 5px; }

/* row hover */
.ptable tbody tr:hover td { background: rgba(255,255,255,.02); }

/* featured column */
.ptable .is-featured { background: rgba(34,211,238,.06); }
.ptable td.is-featured { border-left: 1px solid rgba(34,211,238,.35); border-right: 1px solid rgba(34,211,238,.35); }
.ptable thead th.plan.is-featured {
    background: linear-gradient(180deg, rgba(34,211,238,.22), rgba(34,211,238,.05));
    border-top: 2px solid var(--cyan);
    border-left: 1px solid rgba(34,211,238,.35); border-right: 1px solid rgba(34,211,238,.35);
    position: relative;
}
.ptable thead th.plan.is-featured .plan-kicker { color: var(--ink); }
.ptable tbody tr:hover td.is-featured { background: rgba(34,211,238,.1); }

/* price + order rows */
.ptable .row-price td, .ptable .row-price th { padding-top: 20px; padding-bottom: 8px; }
.ptable .amt { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--ink); }
.ptable .per { font-family: var(--font-mono); font-size: .72rem; color: var(--slate-dim); margin-left: 2px; }
.ptable .row-order td, .ptable .row-order th { border-bottom: 0; padding-top: 6px; padding-bottom: 22px; }
.ptable .row-order .btn { width: 100%; }
.ptable .row-order td.is-featured { border-bottom: 1px solid rgba(34,211,238,.35); border-bottom-left-radius: 0; }

.ptable-hint { display: none; text-align: center; margin-top: 14px; font-family: var(--font-mono); font-size: .76rem; letter-spacing: .06em; color: var(--slate-dim); }
@media (max-width: 820px) { .ptable-hint { display: block; } }

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 940px) {
    .features, .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .cards { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
    .net-split, .contact-split { grid-template-columns: 1fr; gap: 34px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
    .nav-toggle { display: flex; }
    .primary-nav {
        position: fixed; inset: 68px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
        background: var(--abyss-2); border-bottom: 1px solid var(--line); padding: 10px 22px 22px;
        transform: translateY(-140%); transition: transform .3s ease; z-index: 90;
    }
    .primary-nav.open { transform: translateY(0); }
    .nav-link { padding: 14px 0; border-bottom: 1px solid var(--line); }
    .nav-link.is-active::after { display: none; }
    .nav-cta { margin: 16px 0 0; }
    .metric-row { grid-template-columns: 1fr 1fr; }
    .field-row { grid-template-columns: 1fr; }
    .cta-band { padding: 40px 24px; }
}
@media (max-width: 460px) {
    .features, .hero-stats, .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; }
}
