/* Proxy Manager licensing site — sleek dark-tech theme, 2026 */

:root {
    --bg:          #080b14;
    --bg-soft:     #0c1020;
    --surface:     #10162a;
    --surface-2:   #141c33;
    --surface-3:   #1b2442;
    --line:        rgba(140,155,200,0.12);
    --line-2:      rgba(140,155,200,0.22);
    --header-bg:   rgba(10,14,26,0.78);

    --text:        #eef1f8;
    --text-2:      #b6bfd6;
    --muted:       #7e8aa8;
    --muted-2:     #5d6889;

    --accent:      #6f74f0;
    --accent-2:    #9aa0ff;
    --accent-deep: #4b50d4;
    --accent-lo:   rgba(111,116,240,0.13);
    --glow:        rgba(111,116,240,0.55);

    --success:     #34d399;
    --success-bg:  rgba(52,211,153,0.14);
    --success-bd:  rgba(52,211,153,0.40);
    --warning:     #fbbf24;
    --warning-bg:  rgba(251,191,36,0.14);
    --warning-bd:  rgba(251,191,36,0.40);
    --danger:      #fb7185;
    --danger-bg:   rgba(251,113,133,0.14);
    --danger-bd:   rgba(251,113,133,0.40);

    --radius:      16px;
    --radius-sm:   11px;
    --shadow:      0 18px 50px -20px rgba(0,0,0,0.75);
    --shadow-glow: 0 14px 40px -14px var(--glow);
    --ease:        cubic-bezier(0.16, 1, 0.30, 1);
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Segoe UI Variable Text', 'Segoe UI', -apple-system,
                 BlinkMacSystemFont, system-ui, 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body {
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Animated ambient background glow */
body::before,
body::after {
    content: "";
    position: fixed;
    z-index: 0;
    width: 60vw;
    height: 60vw;
    max-width: 760px;
    max-height: 760px;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.5;
    pointer-events: none;
}
body::before {
    top: -16vw;
    left: -12vw;
    background: radial-gradient(circle, rgba(111,116,240,0.55), transparent 70%);
    animation: drift-a 22s var(--ease) infinite alternate;
}
body::after {
    bottom: -22vw;
    right: -14vw;
    background: radial-gradient(circle, rgba(56,189,248,0.34), transparent 70%);
    animation: drift-b 26s var(--ease) infinite alternate;
}

@keyframes drift-a {
    to { transform: translate(14vw, 10vw) scale(1.18); }
}
@keyframes drift-b {
    to { transform: translate(-12vw, -8vw) scale(1.22); }
}

@keyframes rise {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes drop-in {
    from { opacity: 0; transform: translateY(-14px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 var(--accent-lo), 0 0 22px -4px var(--glow); }
    50%      { box-shadow: 0 0 0 6px transparent, 0 0 34px 2px var(--glow); }
}
@keyframes sheen {
    from { transform: translateX(-130%) skewX(-20deg); }
    to   { transform: translateX(330%) skewX(-20deg); }
}

a { color: var(--accent-2); text-decoration: none; transition: color 140ms ease; }
a:hover { color: #c3c7ff; }

/* ---- Header ------------------------------------------------------------ */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 15px 32px;
    background: var(--header-bg);
    backdrop-filter: blur(14px) saturate(150%);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    border-bottom: 1px solid var(--line);
    animation: drop-in 600ms var(--ease) both;
}
.header .logo {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--accent-2), var(--accent-deep));
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.04em;
    color: #fff;
    animation: pulse-glow 4.5s ease-in-out infinite;
}
.header h1 {
    font-size: 18px;
    margin: 0;
    font-weight: 650;
    letter-spacing: -0.01em;
}
.header .sub { color: var(--muted); font-size: 13px; }

/* ---- Layout ------------------------------------------------------------ */
.container {
    position: relative;
    z-index: 1;
    max-width: 880px;
    margin: 36px auto;
    padding: 0 24px;
}

.card {
    position: relative;
    background: linear-gradient(180deg, var(--surface-2), var(--surface));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 22px;
    box-shadow: var(--shadow);
    animation: rise 700ms var(--ease) both;
}
.container > .card:nth-child(2) { animation-delay: 90ms; }
.container > .card:nth-child(3) { animation-delay: 180ms; }
.container > .card:nth-child(4) { animation-delay: 270ms; }
.container > .card:nth-child(5) { animation-delay: 360ms; }

.card h2 {
    margin: 0 0 16px;
    font-size: 19px;
    font-weight: 650;
    letter-spacing: -0.01em;
}
.card .lead { color: var(--text-2); margin: 0 0 18px; font-size: 15.5px; }

.label {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.09em;
    color: var(--muted);
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
}

/* ---- Forms ------------------------------------------------------------- */
input[type=text], input[type=email], input[type=password], select, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--line-2);
    border-radius: var(--radius-sm);
    background: var(--bg-soft);
    color: var(--text);
    font: inherit;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
input::placeholder, textarea::placeholder { color: var(--muted-2); }
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--surface);
    box-shadow: 0 0 0 4px var(--accent-lo);
}
textarea { min-height: 100px; resize: vertical; }
select option { background: var(--surface); color: var(--text); }

/* ---- Buttons ----------------------------------------------------------- */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--surface-3);
    color: var(--text);
    border: 1px solid var(--line-2);
    border-radius: var(--radius-sm);
    padding: 12px 20px;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: transform 150ms var(--ease), border-color 150ms ease,
                background 150ms ease, box-shadow 150ms ease;
}
.btn:hover {
    transform: translateY(-2px);
    border-color: var(--line-2);
    background: #222c4f;
    color: var(--text);
}
.btn:active { transform: translateY(0); }

.btn-primary {
    background: linear-gradient(135deg, var(--accent-2), var(--accent-deep));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 26px -10px var(--glow);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #aab0ff, #565cdf);
    color: #fff;
    box-shadow: 0 16px 34px -10px var(--glow);
}
/* moving sheen on primary buttons */
.btn-primary::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 38%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: translateX(-130%) skewX(-20deg);
}
.btn-primary:hover::after { animation: sheen 850ms ease; }

.btn-danger { color: var(--danger); border-color: var(--danger-bd); }
.btn-danger:hover { background: var(--danger-bg); border-color: var(--danger); color: var(--danger); }

/* ---- Pricing tiers ----------------------------------------------------- */
.tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
    margin: 18px 0 24px;
}
.tier {
    position: relative;
    display: block;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 18px;
    background: var(--surface);
    cursor: pointer;
    transition: transform 180ms var(--ease), border-color 180ms ease,
                background 180ms ease, box-shadow 180ms ease;
}
.tier:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}
.tier.selected {
    border-color: var(--accent);
    background: linear-gradient(180deg, var(--accent-lo), var(--surface));
    box-shadow: var(--shadow-glow);
}
.tier .name { font-weight: 650; color: var(--text); }
.tier .price {
    font-size: 25px;
    font-weight: 800;
    margin-top: 6px;
    letter-spacing: -0.02em;
    color: #fff;
}
.tier .currency { color: var(--muted); font-size: 13px; font-weight: 500; }

/* ---- Pills ------------------------------------------------------------- */
.pill {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    border: 1px solid transparent;
}
.pill-success { background: var(--success-bg); color: var(--success); border-color: var(--success-bd); }
.pill-warning { background: var(--warning-bg); color: var(--warning); border-color: var(--warning-bd); }
.pill-danger  { background: var(--danger-bg);  color: var(--danger);  border-color: var(--danger-bd); }
.pill-muted   { background: var(--surface-3);  color: var(--text-2);  border-color: var(--line-2); }

/* ---- Code / keys ------------------------------------------------------- */
pre, code, .mono {
    font-family: 'Cascadia Mono', 'Consolas', 'SF Mono', 'Monaco', monospace;
}
.mono { color: var(--text); }
pre {
    background: var(--bg);
    color: #d6def0;
    padding: 16px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    overflow-x: auto;
    font-size: 13px;
    line-height: 1.7;
}

.key-display {
    position: relative;
    background: var(--bg);
    color: var(--accent-2);
    padding: 20px 22px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--accent-lo);
    font-family: 'Cascadia Mono', 'Consolas', monospace;
    font-size: 17px;
    letter-spacing: 0.08em;
    text-align: center;
    word-break: break-all;
    box-shadow: inset 0 0 28px -10px var(--glow);
    animation: pulse-glow 5s ease-in-out infinite;
}

/* ---- Tables ------------------------------------------------------------ */
table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
}
th, td {
    text-align: left;
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
}
th {
    color: var(--muted);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.07em;
    font-weight: 700;
}
tbody tr { transition: background 140ms ease; }
tbody tr:hover td { background: var(--surface-3); }
td.small, th { white-space: nowrap; }

/* ---- Flash messages ---------------------------------------------------- */
.flash {
    padding: 13px 17px;
    border-radius: var(--radius-sm);
    margin-bottom: 18px;
    border: 1px solid;
    font-size: 14.5px;
    animation: drop-in 420ms var(--ease) both;
}
.flash-success { background: var(--success-bg); border-color: var(--success-bd); color: #9bf0d3; }
.flash-error   { background: var(--danger-bg);  border-color: var(--danger-bd);  color: #ffc4cd; }
.flash-info    { background: var(--accent-lo);  border-color: var(--accent);     color: #cdd0ff; }

/* ---- Details / accordion ---------------------------------------------- */
details {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color 160ms ease;
}
details[open] { border-color: var(--line-2); }
details summary {
    cursor: pointer;
    padding: 13px 16px;
    font-size: 14.5px;
    list-style: none;
    transition: background 140ms ease;
}
details summary:hover { background: var(--surface-3); }
details summary::-webkit-details-marker { display: none; }
details summary::before {
    content: "+";
    display: inline-block;
    width: 18px;
    color: var(--accent-2);
    font-weight: 800;
}
details[open] summary::before { content: "\2212"; }
details pre { margin: 0 14px 14px; }

ol { color: var(--text-2); padding-left: 22px; }
ol li { margin-bottom: 9px; }
b { color: var(--text); }

/* ---- Utilities --------------------------------------------------------- */
.row { display: flex; gap: 12px; align-items: center; }
.row > * { flex: 1; }
.muted { color: var(--muted); }
.small { font-size: 13px; }
.center { text-align: center; }
.mt-1 { margin-top: 8px; }  .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; }

/* =======================================================================
   Landing page (index.php)
   ======================================================================= */
.nav { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.nav a.navlink {
    color: var(--text-2);
    font-size: 14px;
    font-weight: 550;
    padding: 8px 12px;
    border-radius: 9px;
    transition: color 140ms ease, background 140ms ease;
}
.nav a.navlink:hover { color: #fff; background: var(--surface-3); }

.hero {
    position: relative;
    z-index: 1;
    max-width: 980px;
    margin: 0 auto;
    padding: 84px 24px 40px;
    text-align: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 15px;
    border-radius: 999px;
    background: var(--accent-lo);
    border: 1px solid var(--accent);
    color: var(--accent-2);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 26px;
    animation: rise 700ms var(--ease) both;
}
.hero-badge .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 10px 1px var(--success);
}
.hero-title {
    font-size: clamp(38px, 6.4vw, 64px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 20px;
    animation: rise 760ms var(--ease) 80ms both;
}
.gradient-text {
    background: linear-gradient(120deg, var(--accent-2) 10%, #7dd3fc 60%, var(--accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-sub {
    max-width: 620px;
    margin: 0 auto 32px;
    font-size: 18px;
    color: var(--text-2);
    animation: rise 760ms var(--ease) 160ms both;
}
.hero-form {
    display: flex;
    gap: 12px;
    max-width: 540px;
    margin: 0 auto;
    animation: rise 760ms var(--ease) 240ms both;
}
.hero-form input[type=text] { flex: 1; }
.hero-note {
    margin-top: 14px;
    font-size: 13px;
    color: var(--muted);
    animation: rise 760ms var(--ease) 320ms both;
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 38px;
    flex-wrap: wrap;
    margin-top: 48px;
    animation: rise 760ms var(--ease) 400ms both;
}
.stat .num {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}
.stat .lbl { font-size: 13px; color: var(--muted); }

/* Section scaffolding */
.section { max-width: 980px; margin: 0 auto; padding: 56px 24px; }
.section-head { text-align: center; margin-bottom: 38px; }
.section-head .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-2);
}
.section-head h2 {
    font-size: clamp(26px, 3.6vw, 34px);
    font-weight: 750;
    letter-spacing: -0.02em;
    margin: 10px 0 0;
}

/* Feature grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}
.feature {
    background: linear-gradient(180deg, var(--surface-2), var(--surface));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    transition: transform 200ms var(--ease), border-color 200ms ease,
                box-shadow 200ms ease;
}
.feature:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}
.feature-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    background: var(--accent-lo);
    border: 1px solid var(--accent);
    color: var(--accent-2);
    margin-bottom: 16px;
}
.feature-icon svg { width: 23px; height: 23px; }
.feature h3 { margin: 0 0 8px; font-size: 17px; font-weight: 650; }
.feature p { margin: 0; color: var(--text-2); font-size: 14.5px; }

/* Steps */
.steps { display: grid; gap: 16px; }
.step {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: linear-gradient(180deg, var(--surface-2), var(--surface));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px 24px;
    transition: transform 180ms var(--ease), border-color 180ms ease;
}
.step:hover { transform: translateX(6px); border-color: var(--line-2); }
.step-num {
    flex-shrink: 0;
    width: 38px; height: 38px;
    border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-2), var(--accent-deep));
    color: #fff;
}
.step h3 { margin: 0 0 4px; font-size: 16px; font-weight: 650; }
.step p { margin: 0; color: var(--text-2); font-size: 14.5px; }

/* Pricing band */
.price-cta { text-align: center; margin-top: 26px; }

/* Footer */
.site-footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--line);
    margin-top: 40px;
    padding: 30px 24px;
    text-align: center;
    color: var(--muted);
    font-size: 13.5px;
}

/* ---- Two-step split (download + activate) ------------------------------ */
.intro {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    padding: 72px 24px 6px;
    text-align: center;
}
.intro .hero-badge { margin-bottom: 22px; }
.intro h1 {
    font-size: clamp(32px, 5vw, 50px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 16px;
    animation: rise 760ms var(--ease) 80ms both;
}
.intro p {
    max-width: 580px;
    margin: 0 auto;
    font-size: 17px;
    color: var(--text-2);
    animation: rise 760ms var(--ease) 160ms both;
}

.split {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    padding: 36px 24px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}
.stepcard {
    position: relative;
    background: linear-gradient(180deg, var(--surface-2), var(--surface));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px 30px 30px;
    box-shadow: var(--shadow);
    transition: transform 200ms var(--ease), border-color 200ms ease, box-shadow 200ms ease;
}
.stepcard:nth-child(1) { animation: rise 720ms var(--ease) 240ms both; }
.stepcard:nth-child(2) { animation: rise 720ms var(--ease) 340ms both; }
.stepcard:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}
.stepcard-num {
    position: absolute;
    top: -17px;
    left: 26px;
    width: 38px; height: 38px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-2), var(--accent-deep));
    color: #fff;
    box-shadow: 0 8px 20px -6px var(--glow);
}
.stepcard-icon {
    width: 54px; height: 54px;
    border-radius: 15px;
    display: flex; align-items: center; justify-content: center;
    background: var(--accent-lo);
    border: 1px solid var(--accent);
    color: var(--accent-2);
    margin-bottom: 18px;
}
.stepcard-icon svg { width: 27px; height: 27px; }
.stepcard h2 { margin: 0 0 8px; font-size: 21px; font-weight: 700; }
.stepcard p { margin: 0 0 22px; color: var(--text-2); font-size: 15px; }
.stepcard form { display: flex; flex-direction: column; gap: 12px; }
.stepcard .meta {
    margin-top: 14px;
    font-size: 12.5px;
    color: var(--muted);
    display: flex; align-items: center; gap: 7px;
}
.stepcard .meta svg { width: 15px; height: 15px; flex-shrink: 0; }

.btn-lg {
    width: 100%;
    padding: 15px 22px;
    font-size: 15.5px;
}

/* ---- Content / SEO pages ---------------------------------------------- */
.navlink.active { color: #fff; background: var(--surface-3); }

.page-hero {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto;
    padding: 66px 24px 8px;
    text-align: center;
}
.page-hero h1 {
    font-size: clamp(31px, 5vw, 46px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 12px 0 14px;
    animation: rise 760ms var(--ease) 80ms both;
}
.page-hero p {
    font-size: 17px;
    color: var(--text-2);
    max-width: 600px;
    margin: 0 auto;
    animation: rise 760ms var(--ease) 160ms both;
}

.prose { max-width: 760px; margin: 0 auto; }
.prose > p { color: var(--text-2); margin: 0 0 16px; font-size: 15.5px; }
.prose h2 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 36px 0 12px;
}
.prose h3 { font-size: 17px; font-weight: 650; margin: 22px 0 8px; }
.prose ul { color: var(--text-2); padding-left: 22px; margin: 0 0 16px; }
.prose ul li { margin-bottom: 8px; }
.prose ul li::marker { color: var(--accent-2); }

.cta-band {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 40px auto 12px;
    text-align: center;
    background: linear-gradient(135deg, rgba(111,116,240,0.18), rgba(56,189,248,0.10));
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    padding: 44px 30px;
}
.cta-band h2 { font-size: 26px; font-weight: 750; letter-spacing: -0.02em; margin: 0 0 10px; }
.cta-band p { color: var(--text-2); margin: 0 auto 22px; max-width: 480px; }

.stars { display: inline-flex; gap: 3px; color: var(--warning); }
.stars svg { width: 17px; height: 17px; }

.tpl-note {
    border: 1px dashed var(--accent);
    background: var(--accent-lo);
    border-radius: var(--radius-sm);
    padding: 14px 17px;
    color: var(--text-2);
    font-size: 13.5px;
    margin-bottom: 24px;
}
.tpl-note b { color: var(--accent-2); }

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}
.review {
    background: linear-gradient(180deg, var(--surface-2), var(--surface));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    transition: transform 200ms var(--ease), border-color 200ms ease;
}
.review:hover { transform: translateY(-4px); border-color: var(--line-2); }
.review .quote { color: var(--text-2); font-size: 14.5px; margin: 12px 0 18px; }
.review .who { display: flex; align-items: center; gap: 11px; }
.review .ava {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: #fff; font-size: 14px;
    background: linear-gradient(135deg, var(--accent-2), var(--accent-deep));
}
.review .nm { font-weight: 600; font-size: 14px; }
.review .rl { font-size: 12.5px; color: var(--muted); }

.site-footer .footlinks { margin-bottom: 10px; }
.site-footer .footlinks a { margin: 0 8px; }

/* ---- Scroll reveal ----------------------------------------------------- */
.r .reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 720ms var(--ease), transform 720ms var(--ease);
}
.r .reveal.show { opacity: 1; transform: none; }

@media (max-width: 760px) {
    .split { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .header { padding: 13px 18px; }
    .nav { display: none; }
    .hero { padding-top: 56px; }
    .intro { padding-top: 56px; }
    .hero-form { flex-direction: column; }
    .container { margin: 24px auto; }
    .card { padding: 22px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
    .r .reveal { opacity: 1; transform: none; }
}
