/* ============================================================================
   ROI Anticheat — marketing landing page
   Clean dark theme, single-page hero + trust grid
   ============================================================================ */

:root {
    --bg:           #07070a;
    --bg-2:         #0a0a10;
    --panel:        #0f0f17;
    --panel-2:      #14141d;
    --border:       #1c1c2a;
    --border-2:     #25253a;
    --text:         #ffffff;
    --muted:        #8b8ba4;
    --muted-2:      #6b6b80;
    --accent:       #2563eb;
    --accent-2:     #3b82f6;
    --accent-soft:  rgba(37,99,235,0.15);
    --accent-border:rgba(37,99,235,0.4);
    --shadow-1:     0 4px 24px rgba(0,0,0,0.35);
    --shadow-2:     0 30px 80px rgba(0,0,0,0.55);
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, system-ui, sans-serif;
    font-feature-settings: 'cv11', 'ss01', 'ss03', 'cv02';
    font-optical-sizing: auto;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
}
h1, h2, h3, h4, h5, h6 { letter-spacing: -0.022em; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body.site-body {
    background:
        radial-gradient(1100px 600px at 50% -200px, rgba(37,99,235,0.10), transparent 60%),
        radial-gradient(900px 500px at 90% 30%,    rgba(37,99,235,0.05), transparent 70%),
        var(--bg);
    min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ============================================================================
   Promo bar
   ============================================================================ */
.promo-bar {
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
    padding: 9px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    color: var(--muted);
    flex-wrap: wrap;
}
.promo-badge {
    display: inline-block;
    background: var(--accent-soft);
    color: var(--accent-2);
    border: 1px solid var(--accent-border);
    border-radius: 999px;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.promo-text       { color: #cfcfdb; }
.promo-text strong{ color: #fff; }
.promo-percent    { color: var(--accent-2); font-weight: 700; }
.promo-dot        { color: var(--muted-2); }
.promo-code       { color: var(--accent-2); letter-spacing: 1px; font-weight: 700; }

/* ============================================================================
   Top nav
   ============================================================================ */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(7, 7, 10, 0.7);
    border-bottom: 1px solid transparent;
    transition: border-color .2s;
}
.site-nav:hover { border-color: var(--border); }

.nav-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 22px 32px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 700;
}
.brand-icon {
    width: 32px; height: 32px;
    border-radius: 9px;
    background: var(--accent-soft);
    border: 1px solid var(--accent-border);
    color: var(--accent-2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Brand logo image — transparent PNG, no tile background.
   Soft drop-shadow gives it depth on dark backgrounds. */
.brand-logo {
    display: inline-block;
    object-fit: contain;
    background: transparent;
    border: 0;
    padding: 0;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(37, 99, 235, 0.5));
    transition: filter .2s, transform .2s;
}
.brand-logo:hover { filter: drop-shadow(0 4px 14px rgba(37, 99, 235, 0.6)); transform: translateY(-1px); }
.brand-logo-sm { width: 32px; height: 32px; }
.brand-logo-md { width: 38px; height: 38px; }
.brand-logo-lg { width: 72px; height: 72px; }
.brand-name {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.nav-links {
    display: flex;
    gap: 40px;
    justify-content: center;
}
.nav-links a {
    color: var(--muted);
    font-size: 15px;
    font-weight: 500;
    transition: color .15s;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }

.nav-cta {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

/* ============================================================================
   Buttons
   ============================================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background .15s, border-color .15s, color .15s, transform .05s;
    color: #fff;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 18px rgba(37,99,235,0.35);
}
.btn-primary:hover { background: var(--accent-2); }
.btn-ghost {
    background: transparent;
    border-color: var(--border);
    color: #fff;
}
.btn-ghost:hover { background: var(--panel); border-color: var(--border-2); }
.btn-outline {
    background: transparent;
    border-color: #2a2a3d;
    color: #fff;
}
.btn-outline:hover { background: var(--panel); border-color: #3a3a55; }
.btn-lg {
    padding: 14px 22px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
}

/* ============================================================================
   Hero
   ============================================================================ */
.hero {
    position: relative;
    padding: 90px 0 110px;
}
.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
}

.pill {
    display: inline-block;
    background: var(--accent-soft);
    color: var(--accent-2);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border: 1px solid var(--accent-border);
}
.pill-outline { background: transparent; }
.hero-left .pill { margin-bottom: 26px; }

.hero-title {
    margin: 0 0 24px;
    font-size: 60px;
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -1.4px;
    color: #fff;
}
.hero-sub {
    margin: 0 0 36px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
    max-width: 540px;
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ===== Hero dashboard mock ===== */
.hero-right {
    position: relative;
    perspective: 1800px;
}
.dash-mock {
    position: relative;
    transform: rotateY(-9deg) rotateX(4deg);
    transform-origin: center;
}

.dash-frame {
    background: linear-gradient(180deg, #0e0e17 0%, #08080d 100%);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-2);
    display: grid;
    grid-template-columns: 140px 1fr;
    min-height: 340px;
}

.dash-sidebar {
    background: #08080d;
    padding: 14px 10px;
    border-right: 1px solid var(--border);
    font-size: 9.5px;
}
.dash-brand {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-weight: 700;
    font-size: 11px;
    padding: 4px 6px 14px;
}
.dash-brand-ic {
    width: 14px; height: 14px;
    border-radius: 4px;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent-soft);
}
.dash-nav-item {
    padding: 5px 8px;
    border-radius: 5px;
    color: #6c6c80;
    margin-bottom: 2px;
}
.dash-nav-item.active {
    background: var(--accent-soft);
    color: #fff;
}
.dash-section {
    color: #45455a;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 12px 6px 6px;
}

.dash-main { padding: 16px 18px; }
.dash-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}
.dash-header {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}
.dash-redeem {
    background: var(--accent);
    color: #fff;
    border-radius: 6px;
    font-size: 9px;
    font-weight: 600;
    padding: 5px 10px;
    box-shadow: 0 2px 10px rgba(37,99,235,0.4);
}
.dash-section-title {
    color: var(--muted);
    font-size: 10px;
    margin: 0 0 10px;
}
.dash-thead, .dash-row {
    display: grid;
    grid-template-columns: 2fr 1.4fr 0.9fr 1.6fr;
    gap: 10px;
    padding: 8px 6px;
    font-size: 9px;
    color: var(--muted);
    border-bottom: 1px solid var(--border);
    align-items: center;
}
.dash-thead {
    font-weight: 600;
    color: #6c6c80;
    font-size: 8.5px;
    letter-spacing: 0.3px;
}
.dash-blur {
    height: 7px;
    background: linear-gradient(90deg, #2a2a3d, #1a1a26);
    border-radius: 3px;
    width: 90%;
}
.dash-blur-sm { width: 65%; }
.dash-cell-text { font-size: 9px; color: #8b8ba4; }
.dash-actions { display: flex; gap: 4px; flex-wrap: wrap; }
.chip {
    background: rgba(37,99,235,0.12);
    color: var(--accent-2);
    border-radius: 4px;
    padding: 3px 6px;
    font-size: 8px;
    font-weight: 500;
    white-space: nowrap;
}

/* ===== Floating stat badges ===== */
.stat-badge {
    position: absolute;
    background: rgba(15, 15, 23, 0.95);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 18px;
    box-shadow: var(--shadow-1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2;
    text-align: left;
    min-width: 110px;
}
.stat-num {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.1;
}
.stat-num span {
    color: var(--accent-2);
    margin-left: 1px;
}
.stat-label {
    color: var(--muted-2);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.4px;
    margin-top: 2px;
}
.stat-tl { top: -22px; left: -34px; }
.stat-tr { top: -8px;  right: -38px; }
.stat-br { bottom: -24px; right: 90px; }

/* ===== Scroll indicator ===== */
.scroll-indicator {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border);
    margin: 70px auto 0;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .15s, border-color .15s, transform .25s;
    animation: floatY 2.4s ease-in-out infinite;
}
.scroll-indicator:hover { color: #fff; border-color: var(--accent-border); }
@keyframes floatY {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(6px); }
}

/* ============================================================================
   Trust + integration
   ============================================================================ */
.trust { padding: 110px 0 120px; }

.trust-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}
.trust-head .pill { margin-bottom: 22px; }
.trust-head h2 {
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 18px;
    letter-spacing: -0.8px;
    color: #fff;
}
.trust-head p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 80px;
}
.trust-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 26px 28px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: border-color .18s, transform .18s, background .18s;
}
.trust-card:hover {
    border-color: var(--accent-border);
    background: var(--panel-2);
    transform: translateY(-2px);
}
.trust-ic {
    width: 42px; height: 42px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--accent-soft);
    color: var(--accent-2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.trust-card h3 {
    margin: 0 0 6px;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}
.trust-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.frameworks {
    border-top: 1px solid var(--border);
    padding-top: 36px;
    display: flex;
    justify-content: center;
    gap: 36px;
    align-items: center;
    flex-wrap: wrap;
}
.fw-logo {
    width: 46px; height: 46px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    transition: transform .15s, filter .15s;
}
.fw-logo:hover { transform: translateY(-2px); filter: brightness(1.15); }
.fw-esx { background: #1c1c1c; color: #f4f4f4; border: 1px solid #2a2a2a; }
.fw-qb  { background: #c83232; }
.fw-vrp { background: linear-gradient(135deg, #1f4d3f, #2bb18a); font-style: italic; }
.fw-ox  { background: #f4d83b; color: #2b2b2b; }

/* ============================================================================
   Functions
   ============================================================================ */
.functions { padding: 60px 0 100px; }
.fn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.fn-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    transition: border-color .18s, transform .18s, background .18s;
}
.fn-card:hover {
    border-color: var(--accent-border);
    background: var(--panel-2);
    transform: translateY(-2px);
}
.fn-ic {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: var(--accent-soft);
    color: var(--accent-2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.fn-card h3 {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}
.fn-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

/* ============================================================================
   Pricing
   ============================================================================ */
.pricing { padding: 60px 0 100px; }
.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}
.price-card {
    position: relative;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    transition: border-color .18s, transform .18s, background .18s;
}
.price-card:hover {
    border-color: var(--accent-border);
    transform: translateY(-3px);
}
.price-card-featured {
    border-color: var(--accent-border);
    background:
        radial-gradient(600px 200px at 50% 0%, rgba(37,99,235,0.12), transparent 70%),
        var(--panel);
    box-shadow: 0 12px 36px rgba(37,99,235,0.15);
}
.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    padding: 5px 12px;
    border-radius: 999px;
    box-shadow: 0 4px 16px rgba(37,99,235,0.45);
}
.price-name {
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.price-amount {
    color: #fff;
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -1.2px;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}
.price-currency {
    font-size: 22px;
    color: var(--muted);
    font-weight: 600;
}
.price-period {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
    margin-left: 4px;
}
.price-tag {
    color: var(--muted);
    font-size: 14px;
    margin: 0 0 22px;
    line-height: 1.5;
}
.price-list {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    display: flex;
    flex-direction: column;
    gap: 11px;
    flex: 1;
}
.price-list li {
    color: #d0d0dd;
    font-size: 14px;
    padding-left: 24px;
    position: relative;
    line-height: 1.4;
}
.price-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent-soft);
    border: 1px solid var(--accent-border);
}
.price-list li::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 8px;
    width: 6px;
    height: 3px;
    border-left: 1.5px solid var(--accent-2);
    border-bottom: 1.5px solid var(--accent-2);
    transform: rotate(-45deg);
}
.btn-block { width: 100%; }

/* ============================================================================
   Reviews
   ============================================================================ */
.reviews { padding: 60px 0 110px; }
.rev-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.rev-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 26px 28px;
    display: flex;
    flex-direction: column;
    transition: border-color .18s, transform .18s, background .18s;
}
.rev-card:hover {
    border-color: var(--accent-border);
    background: var(--panel-2);
    transform: translateY(-2px);
}
.rev-stars {
    color: #f5b840;
    font-size: 17px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.rev-body {
    color: #d0d0dd;
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 24px;
    flex: 1;
}
.rev-foot {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border);
    padding-top: 18px;
}
.rev-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--accent-soft);
    border: 1px solid var(--accent-border);
    color: var(--accent-2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
}
.rev-name {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}
.rev-role {
    color: var(--muted);
    font-size: 12px;
}

/* ============================================================================
   Footer
   ============================================================================ */
.site-foot {
    border-top: 1px solid var(--border);
    padding: 60px 0 40px;
    background: #060609;
}
.foot-cols {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}
.brand-foot { margin-bottom: 14px; }
.foot-tag {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    max-width: 360px;
    margin: 0;
}
.foot-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.foot-h {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
}
.foot-col a {
    color: var(--muted);
    font-size: 14px;
    transition: color .15s;
}
.foot-col a:hover { color: #fff; }
.foot-fine {
    border-top: 1px solid var(--border);
    padding-top: 22px;
    color: var(--muted-2);
    font-size: 13px;
    text-align: center;
}

/* ============================================================================
   Responsive
   ============================================================================ */
@media (max-width: 1080px) {
    .hero-title { font-size: 52px; }
    .hero-inner { gap: 40px; }
    .stat-tl { left: -10px; }
    .stat-tr { right: -14px; }
    .stat-br { right: 60px; }
}

@media (max-width: 980px) {
    .hero        { padding: 60px 0 90px; }
    .hero-inner  { grid-template-columns: 1fr; gap: 60px; }
    .hero-right  { transform: scale(.92); margin-top: 10px; }
    .hero-title  { font-size: 44px; }
    .nav-links   { display: none; }
    .nav-inner   { grid-template-columns: auto 1fr auto; padding: 18px 24px; }
    .trust-grid  { grid-template-columns: 1fr; }
    .fn-grid     { grid-template-columns: 1fr 1fr; }
    .price-grid  { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
    .rev-grid    { grid-template-columns: 1fr; }
    .foot-cols   { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 640px) {
    .promo-bar    { font-size: 11px; padding: 7px 10px; gap: 8px; text-align: center; }
    .hero         { padding: 40px 0 70px; }
    .hero-title   { font-size: 34px; }
    .hero-sub     { font-size: 15px; }
    .nav-inner    { padding: 14px 18px; gap: 14px; }
    .container    { padding: 0 18px; }
    .trust-head h2{ font-size: 28px; }
    .trust        { padding: 70px 0 90px; }
    .trust-card   { padding: 20px; }
    .stat-badge   { padding: 9px 13px; min-width: 90px; }
    .stat-num     { font-size: 18px; }
    .stat-tl      { left: -6px; top: -16px; }
    .stat-tr      { right: -10px; top: -6px; }
    .stat-br      { right: 30px; bottom: -18px; }
    .fn-grid      { grid-template-columns: 1fr; }
    .price-amount { font-size: 38px; }
}

/* ============================================================================
   Refinements — motion, depth, accent glows
   ============================================================================ */

/* Smoother accent gradient running underneath the hero — the previous radial
   was a bit flat. Add a subtle moving grain so the page doesn't look static
   on a desktop viewport. */
body.site-body {
    background:
        radial-gradient(1200px 700px at 50% -150px, rgba(37,99,235,0.16), transparent 60%),
        radial-gradient(800px 480px at 12% 35%,    rgba(37,99,235,0.07), transparent 65%),
        radial-gradient(900px 520px at 92% 12%,    rgba(59,130,246,0.07),  transparent 70%),
        radial-gradient(1000px 600px at 80% 110%,  rgba(37,99,235,0.05), transparent 65%),
        var(--bg);
}

/* Promo bar gradient sweep — communicates that "10% OFF" is live without
   tipping into garish. */
.promo-bar {
    position: relative;
    overflow: hidden;
}
.promo-bar::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transform: translateX(-100%);
    animation: promo-sweep 6s ease-in-out infinite;
    pointer-events: none;
}
@keyframes promo-sweep {
    0%   { transform: translateX(-100%); }
    55%  { transform: translateX(120%); }
    100% { transform: translateX(120%); }
}

/* Buttons — refine the primary CTA with an accent halo on hover, and add a
   subtle lift that keeps the click target feeling responsive. */
.btn {
    transition: transform 120ms ease, box-shadow 160ms ease, background-color 140ms ease, color 140ms ease, border-color 140ms ease;
}
.btn-primary {
    box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 8px 24px -8px rgba(37,99,235,0.55);
}
.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.10) inset, 0 14px 32px -10px rgba(37,99,235,0.7);
}
.btn-primary:active { transform: translateY(0); }
.btn-outline:hover  { border-color: var(--accent-border); background: var(--accent-soft); }

/* Hero title — tighten the kerning and give a soft gradient on the second
   line so the headline reads like a campaign poster instead of plain text. */
.hero-title {
    letter-spacing: -0.028em;
    line-height: 1.05;
}
.hero-title .accent-line,
.hero-title strong {
    background: linear-gradient(180deg, #ffffff 0%, #cfe0ff 55%, #93b8ff 100%);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
}

/* Pills — depth, gloss, and a hover bloom for interactive ones. */
.pill-solid {
    background: linear-gradient(180deg, rgba(37,99,235,0.32), rgba(37,99,235,0.18));
    border: 1px solid rgba(59,130,246,0.4);
    box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 8px 22px -10px rgba(37,99,235,0.55);
}
.pill-outline {
    background: rgba(37,99,235,0.06);
}

/* Dash-mock visualisation — slight float so the right side of the hero feels
   alive. Disable on reduced motion. */
.dash-mock {
    animation: dash-float 9s ease-in-out infinite;
}
@keyframes dash-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}
@media (prefers-reduced-motion: reduce) {
    .dash-mock, .promo-bar::before, .scroll-indicator { animation: none !important; }
}

/* Trust + function cards — interactive hover with accent border-glow */
.trust-card, .fn-card {
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 200ms ease, background-color 160ms ease;
}
.trust-card:hover, .fn-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent-border);
    background: linear-gradient(180deg, rgba(37,99,235,0.04), transparent);
    box-shadow: 0 18px 40px -28px rgba(37,99,235,0.55), 0 1px 0 rgba(255,255,255,0.04) inset;
}
.trust-ic, .fn-ic {
    transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}
.trust-card:hover .trust-ic,
.fn-card:hover .fn-ic {
    background: var(--accent-soft);
    color: var(--accent-2);
}

/* Pricing cards — emphasise the featured tier with a soft accent halo. */
.price-card {
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 200ms ease;
}
.price-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-border);
    box-shadow: 0 30px 60px -36px rgba(37,99,235,0.55);
}
.price-card-featured {
    box-shadow: 0 24px 60px -28px rgba(37,99,235,0.6), 0 0 0 1px rgba(37,99,235,0.32);
}
.price-card-featured::before {
    content: '';
    position: absolute; inset: -1px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(37,99,235,0.18), transparent 70%);
    pointer-events: none;
    z-index: -1;
}
.price-amount { letter-spacing: -0.04em; }

/* Reviews — small lift on hover */
.rev-card { transition: transform 160ms ease, border-color 160ms ease, box-shadow 200ms ease; }
.rev-card:hover {
    transform: translateY(-2px);
    border-color: var(--border-2);
    box-shadow: 0 18px 36px -28px rgba(0,0,0,0.55);
}

/* Scroll-indicator: bounce */
.scroll-indicator {
    animation: scroll-bounce 1.8s ease-in-out infinite;
    color: var(--muted);
    opacity: 0.7;
    transition: opacity 160ms ease, color 160ms ease;
}
.scroll-indicator:hover { opacity: 1; color: var(--accent-2); }
@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
}

/* Nav — pill underline that animates in on hover */
.nav-links a {
    position: relative;
    transition: color 140ms ease;
}
.nav-links a::after {
    content: '';
    position: absolute; left: 12px; right: 12px; bottom: 4px;
    height: 2px; border-radius: 1px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    transform: scaleX(0); transform-origin: left center;
    transition: transform 220ms ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

/* Focus rings — accessibility */
.btn:focus-visible,
.nav-links a:focus-visible,
.trust-card:focus-visible,
.price-card:focus-visible {
    outline: 2px solid var(--accent-2);
    outline-offset: 3px;
}

/* Selection color matches accent */
::selection { background: rgba(37,99,235,0.4); color: #fff; }

/* ============================================================
   Site (homepage) — entry animations + tighter mobile rules
   ============================================================ */

@keyframes hero-fade-up {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes hero-mock-fade {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0)    scale(1); }
}
@keyframes section-reveal {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-left  { animation: hero-fade-up   .9s cubic-bezier(.2,.85,.35,1.05) both; }
.hero-right { animation: hero-mock-fade .9s cubic-bezier(.2,.85,.35,1.05) 0.18s both; }

.hero-actions  > .btn:nth-child(1) { animation: hero-fade-up .9s cubic-bezier(.2,.85,.35,1.05) 0.32s both; }
.hero-actions  > .btn:nth-child(2) { animation: hero-fade-up .9s cubic-bezier(.2,.85,.35,1.05) 0.42s both; }

/* Section reveals: each top-level <section> fades up as the viewport
   reaches it. We rely on CSS-only @keyframes + animation-timeline:view()
   in modern browsers; older browsers just see the static end state. */
@supports (animation-timeline: view()) {
    .trust, .functions, .pricing, .reviews, .site-foot {
        animation: section-reveal cubic-bezier(.2,.85,.35,1.05) both;
        animation-timeline: view();
        animation-range: entry 0% entry 60%;
    }
}

/* Mobile polish — tighten the hero on phones */
@media (max-width: 640px) {
    .hero-title { letter-spacing: -0.02em; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { justify-content: center; }
    .nav-cta .btn-ghost { display: none; }
    .nav-cta .btn-primary { padding: 8px 14px; font-size: 13px; }
    .promo-bar { font-size: 11px; gap: 6px; }
    .container { padding: 0 16px; }
    .price-card { padding: 22px 18px; }
    .price-amount { font-size: 36px; }
    .trust-grid, .fn-grid { gap: 14px; }
}

/* Honour reduced-motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================================================
   Stats strip — below the hero
   ============================================================================ */
.stats-strip {
    padding: 28px 0 8px;
    position: relative;
}
.stats-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 0;
    padding: 28px 36px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005)),
        var(--panel);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 24px 48px -28px rgba(0,0,0,0.6), 0 0 0 1px rgba(37,99,235,0.04) inset;
}
.stat-cell {
    text-align: center;
    padding: 4px 12px;
}
.stat-cell-num {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.04em;
    line-height: 1.05;
    font-feature-settings: 'tnum';
}
.stat-cell-num span {
    color: var(--accent-2);
    margin-left: 2px;
    font-weight: 700;
}
.stat-cell-label {
    margin-top: 6px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}
.stat-cell-sep {
    width: 1px;
    height: 38px;
    background: linear-gradient(180deg, transparent, var(--border-2), transparent);
}
@media (max-width: 980px) {
    .stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 18px 12px;
        padding: 24px 18px;
    }
    .stat-cell-sep { display: none; }
}
@media (max-width: 460px) {
    .stats-row { grid-template-columns: 1fr; }
    .stat-cell { padding: 8px 0; }
    .stat-cell + .stat-cell { border-top: 1px solid var(--border); padding-top: 16px; }
}

/* ============================================================================
   Footer — social, columns, status row
   ============================================================================ */
.foot-cols {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
}
.foot-brand-col { max-width: 320px; }
.foot-social {
    display: flex;
    gap: 8px;
    margin-top: 18px;
}
.foot-social-link {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--panel-2);
    border: 1px solid var(--border);
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color .15s, border-color .15s, background-color .15s, transform .15s;
}
.foot-social-link:hover {
    color: #fff;
    border-color: var(--accent-border);
    background: var(--accent-soft);
    transform: translateY(-2px);
}

.foot-bottom {
    border-top: 1px solid var(--border);
    padding-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}
.foot-fine {
    border-top: 0;
    padding-top: 0;
    text-align: left;
    color: var(--muted-2);
    font-size: 13px;
}
.foot-legal {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--muted-2);
    font-size: 13px;
}
.foot-legal a {
    color: var(--muted);
    transition: color .15s;
}
.foot-legal a:hover { color: #fff; }
.foot-sep { opacity: 0.5; }
.foot-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
}
.foot-status-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 2px rgba(34,197,94,0.18);
    animation: foot-status-pulse 2.6s ease-in-out infinite;
}
@keyframes foot-status-pulse {
    0%, 100% { box-shadow: 0 0 0 2px rgba(34,197,94,0.18); }
    50%      { box-shadow: 0 0 0 5px rgba(34,197,94,0.0); }
}

@media (max-width: 980px) {
    .foot-cols { grid-template-columns: 1fr 1fr; gap: 30px 24px; }
    .foot-brand-col { grid-column: 1 / -1; max-width: 100%; }
    .foot-bottom { justify-content: center; text-align: center; }
    .foot-fine { width: 100%; text-align: center; }
}
@media (max-width: 560px) {
    .foot-cols { grid-template-columns: 1fr; }
}

/* ============================================================================
   Hero polish — accent glow ring around dashboard mock
   ============================================================================ */
.hero-right::before {
    content: '';
    position: absolute;
    inset: -40px;
    background:
        radial-gradient(60% 50% at 50% 50%, rgba(37,99,235,0.18), transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: dash-halo 8s ease-in-out infinite;
}
.dash-mock { position: relative; z-index: 1; }
@keyframes dash-halo {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50%      { opacity: 1;   transform: scale(1.04); }
}
@media (prefers-reduced-motion: reduce) {
    .hero-right::before { animation: none; }
}
