@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ─── Tokens ────────────────────────────────────────────────── */
:root {
    --brand:          #f97316;
    --brand-dark:     #ea580c;
    --brand-light:    #fff7ed;
    --brand-grad:     linear-gradient(135deg,#f97316 0%,#ea580c 100%);
    --brand-glow:     0 4px 18px rgba(249,115,22,.38);

    --sidebar-bg:     #0f1117;
    --sidebar-width:  240px;
    --sidebar-text:   #a1a1aa;
    --sidebar-hover:  rgba(255,255,255,.06);
    --sidebar-active: rgba(249,115,22,.15);

    --bg:             #f4f6fb;
    --surface:        #ffffff;
    --border:         #e4e7ef;
    --text:           #0f172a;
    --text-muted:     #64748b;
    --text-xs:        #94a3b8;

    --radius-sm:      8px;
    --radius:         12px;
    --radius-lg:      16px;
    --radius-xl:      24px;

    --shadow-sm:      0 1px 3px rgba(0,0,0,.06),0 1px 2px rgba(0,0,0,.04);
    --shadow:         0 4px 16px rgba(0,0,0,.07),0 1px 4px rgba(0,0,0,.04);
    --shadow-lg:      0 12px 40px rgba(0,0,0,.1),0 4px 12px rgba(0,0,0,.05);
}

/* ─── Reset ─────────────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

/* ─── Base ───────────────────────────────────────────────────── */
html{height:100%}
body{
    font-family:'Inter',system-ui,-apple-system,sans-serif;
    background:var(--bg);
    color:var(--text);
    font-size:15px;
    line-height:1.6;
    min-height:100%;
    -webkit-font-smoothing:antialiased;
}

/* ─── App Shell (authenticated pages) ───────────────────────── */
.app{display:flex;min-height:100vh}

/* ─── Sidebar ────────────────────────────────────────────────── */
.sidebar{
    width:var(--sidebar-width);
    min-width:var(--sidebar-width);
    background:var(--sidebar-bg);
    display:flex;
    flex-direction:column;
    position:sticky;
    top:0;
    height:100vh;
    overflow-y:auto;
    z-index:100;
}

.sidebar-logo{
    display:flex;
    align-items:center;
    gap:.625rem;
    padding:1.5rem 1.25rem 1.25rem;
    text-decoration:none;
    font-weight:700;
    font-size:1rem;
    color:#fff;
    border-bottom:1px solid rgba(255,255,255,.07);
    margin-bottom:.5rem;
}
.sidebar-logo .logo-icon{
    width:34px;height:34px;
    background:var(--brand-grad);
    border-radius:9px;
    display:inline-flex;
    align-items:center;justify-content:center;
    flex-shrink:0;
    box-shadow:var(--brand-glow);
    color:#fff;
}
.sidebar-logo .logo-icon svg{width:17px;height:17px;stroke-width:2.5}

.sidebar-section{
    padding:.25rem .75rem;
    margin-top:.5rem;
}
.sidebar-label{
    font-size:.6875rem;
    font-weight:600;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:rgba(255,255,255,.25);
    padding:.5rem .625rem .375rem;
}
.sidebar-link{
    display:flex;
    align-items:center;
    gap:.625rem;
    padding:.5625rem .75rem;
    border-radius:var(--radius-sm);
    color:var(--sidebar-text);
    text-decoration:none;
    font-size:.875rem;
    font-weight:500;
    transition:background .15s,color .15s;
    margin-bottom:.125rem;
}
.sidebar-link:hover{background:var(--sidebar-hover);color:#fff}
.sidebar-link.active{
    background:var(--sidebar-active);
    color:var(--brand);
}
.sidebar-link .nav-icon{
    width:18px;height:18px;
    display:inline-flex;
    align-items:center;justify-content:center;
    flex-shrink:0;
}
.sidebar-link .nav-icon svg{width:16px;height:16px;stroke-width:2}
.nav-icon svg{width:16px;height:16px;stroke-width:2}
/* General lucide size helpers */
.icon-sm svg{width:14px;height:14px}
.icon-md svg{width:18px;height:18px}
.icon-lg svg{width:22px;height:22px}
i[data-lucide]{display:inline-flex;align-items:center;justify-content:center}

.sidebar-footer{
    margin-top:auto;
    padding:1rem .75rem;
    border-top:1px solid rgba(255,255,255,.07);
}
.sidebar-user{
    display:flex;
    align-items:center;
    gap:.625rem;
    padding:.5rem .625rem;
    border-radius:var(--radius-sm);
    cursor:default;
}
.sidebar-avatar{
    width:30px;height:30px;
    border-radius:50%;
    background:var(--brand-grad);
    display:inline-flex;
    align-items:center;justify-content:center;
    font-size:.75rem;
    font-weight:700;
    color:#fff;
    flex-shrink:0;
}
.sidebar-user-name{font-size:.8125rem;font-weight:600;color:#fff;line-height:1.2}
.sidebar-user-plan{font-size:.7rem;color:var(--sidebar-text)}

/* ─── Main content area ──────────────────────────────────────── */
.main{flex:1;overflow:auto;display:flex;flex-direction:column;min-width:0}

.topbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:.875rem 2rem;
    background:var(--surface);
    border-bottom:1px solid var(--border);
    position:sticky;
    top:0;
    z-index:50;
}
.topbar-title{font-size:1rem;font-weight:600;color:var(--text)}
.topbar-actions{display:flex;align-items:center;gap:.75rem}

.page-content{padding:2rem;flex:1}

/* ─── Auth layout (split-screen) ────────────────────────────── */
.auth-shell{display:flex;min-height:100vh}
.auth-brand{
    width:48%;
    background:var(--sidebar-bg);
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
    padding:4rem;
    position:relative;
    overflow:hidden;
}
.auth-brand::before{
    content:'';
    position:absolute;
    top:-120px;right:-120px;
    width:420px;height:420px;
    background:radial-gradient(circle,rgba(249,115,22,.2) 0%,transparent 70%);
    pointer-events:none;
}
.auth-brand::after{
    content:'';
    position:absolute;
    bottom:-80px;left:-80px;
    width:300px;height:300px;
    background:radial-gradient(circle,rgba(249,115,22,.12) 0%,transparent 70%);
    pointer-events:none;
}
.auth-form-side{
    width:52%;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:3rem 2rem;
    background:var(--bg);
}
.auth-form-box{width:100%;max-width:420px}

.auth-brand-logo{
    display:flex;align-items:center;gap:.625rem;
    color:#fff;font-weight:700;font-size:1.1rem;
    text-decoration:none;margin-bottom:3rem;
}
.auth-brand-logo .logo-icon{
    width:38px;height:38px;
    background:var(--brand-grad);
    border-radius:10px;
    display:inline-flex;align-items:center;justify-content:center;
    box-shadow:var(--brand-glow);
    color:#fff;
}
.auth-brand-logo .logo-icon svg{width:19px;height:19px;stroke-width:2.5}
.landing-nav-logo .logo-icon svg{width:16px;height:16px;stroke-width:2.5}
.auth-brand h2{
    font-size:2rem;font-weight:800;
    color:#fff;line-height:1.25;
    margin-bottom:1rem;
}
.auth-brand p{color:rgba(255,255,255,.55);font-size:.9375rem;line-height:1.7;max-width:340px}
.auth-features{margin-top:2.5rem;display:flex;flex-direction:column;gap:.75rem}
.auth-feature{
    display:flex;align-items:center;gap:.75rem;
    color:rgba(255,255,255,.75);font-size:.875rem;
}
.auth-feature-dot{
    width:22px;height:22px;flex-shrink:0;
    background:var(--brand-grad);
    border-radius:50%;
    display:inline-flex;align-items:center;justify-content:center;
    font-size:.7rem;color:#fff;
}

/* ─── Landing page ───────────────────────────────────────────── */
.landing-nav{
    position:fixed;top:0;left:0;right:0;
    display:flex;align-items:center;justify-content:space-between;
    padding:1rem 2.5rem;
    background:rgba(15,17,23,.92);
    backdrop-filter:blur(12px);
    z-index:200;
    border-bottom:1px solid rgba(255,255,255,.07);
}
.landing-nav-logo{
    display:flex;align-items:center;gap:.625rem;
    color:#fff;font-weight:700;font-size:1rem;text-decoration:none;
}
.landing-nav-logo .logo-icon{
    width:32px;height:32px;
    background:var(--brand-grad);
    border-radius:8px;
    display:inline-flex;align-items:center;justify-content:center;
    box-shadow:var(--brand-glow);
    color:#fff;
}
.landing-nav-links{display:flex;align-items:center;gap:1rem}

.hero{
    background:var(--sidebar-bg);
    color:#fff;
    padding:9rem 2rem 7rem;
    text-align:center;
    position:relative;
    overflow:hidden;
}
.hero::before{
    content:'';
    position:absolute;
    top:0;left:50%;transform:translateX(-50%);
    width:800px;height:500px;
    background:radial-gradient(ellipse at 50% 0%,rgba(249,115,22,.18) 0%,transparent 70%);
    pointer-events:none;
}
.hero-badge{
    display:inline-flex;align-items:center;gap:.375rem;
    background:rgba(249,115,22,.15);
    color:var(--brand);
    border:1px solid rgba(249,115,22,.3);
    border-radius:999px;
    padding:.3rem .875rem;
    font-size:.8125rem;font-weight:600;
    margin-bottom:1.75rem;
}
.hero h1{
    font-size:3.5rem;font-weight:800;
    line-height:1.1;letter-spacing:-.02em;
    margin-bottom:1.25rem;
    max-width:700px;margin-left:auto;margin-right:auto;
}
.hero h1 span{
    background:var(--brand-grad);
    -webkit-background-clip:text;-webkit-text-fill-color:transparent;
    background-clip:text;
}
.hero p{
    font-size:1.125rem;color:rgba(255,255,255,.6);
    max-width:520px;margin:0 auto 2.5rem;line-height:1.7;
}
.hero-cta{display:flex;align-items:center;justify-content:center;gap:1rem;flex-wrap:wrap}
.hero-proof{
    margin-top:4rem;
    color:rgba(255,255,255,.35);
    font-size:.8125rem;
    display:flex;align-items:center;justify-content:center;gap:.5rem;
}

.features-section{padding:5rem 2rem;background:var(--bg)}
.section-label{
    text-align:center;
    font-size:.8125rem;font-weight:600;
    letter-spacing:.08em;text-transform:uppercase;
    color:var(--brand);margin-bottom:.75rem;
}
.section-title{
    text-align:center;
    font-size:2.25rem;font-weight:800;
    color:var(--text);margin-bottom:.875rem;
}
.section-sub{
    text-align:center;
    color:var(--text-muted);font-size:1rem;
    max-width:480px;margin:0 auto 3rem;
}
.features-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1.25rem;
    max-width:960px;margin:0 auto;
}
.feature-card{
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    padding:1.75rem;
    box-shadow:var(--shadow-sm);
}
.feature-icon{
    width:46px;height:46px;
    background:var(--brand-light);
    border-radius:12px;
    display:flex;align-items:center;justify-content:center;
    margin-bottom:1.125rem;
    color:var(--brand);
}
.feature-icon svg{width:22px;height:22px;stroke-width:1.75}
.feature-card h3{font-size:1rem;font-weight:700;margin-bottom:.5rem;color:var(--text)}
.feature-card p{font-size:.875rem;color:var(--text-muted);line-height:1.65;margin:0}

.pricing-section{
    padding:5rem 2rem;
    background:var(--sidebar-bg);
    position:relative;overflow:hidden;
}
.pricing-section::before{
    content:'';
    position:absolute;top:-200px;right:-200px;
    width:600px;height:600px;
    background:radial-gradient(circle,rgba(249,115,22,.1) 0%,transparent 65%);
    pointer-events:none;
}
.pricing-grid{
    display:grid;grid-template-columns:1fr 1fr;
    gap:1.25rem;max-width:700px;margin:0 auto;
}
.pricing-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.1);
    border-radius:var(--radius-lg);
    padding:2rem;
}
.pricing-card.featured{
    background:var(--brand-grad);
    border-color:transparent;
    box-shadow:var(--brand-glow);
}
.pricing-card .plan-name{
    font-size:.8125rem;font-weight:700;
    letter-spacing:.06em;text-transform:uppercase;
    color:rgba(255,255,255,.6);margin-bottom:.875rem;
}
.pricing-card.featured .plan-name{color:rgba(255,255,255,.85)}
.pricing-price{
    font-size:2.5rem;font-weight:800;
    color:#fff;line-height:1;margin-bottom:.25rem;
}
.pricing-price span{font-size:1rem;font-weight:500;opacity:.6}
.pricing-desc{font-size:.875rem;color:rgba(255,255,255,.5);margin-bottom:1.5rem}
.pricing-card.featured .pricing-desc{color:rgba(255,255,255,.75)}
.pricing-features{list-style:none;display:flex;flex-direction:column;gap:.625rem;margin-bottom:1.75rem}
.pricing-features li{
    display:flex;align-items:center;gap:.625rem;
    font-size:.875rem;color:rgba(255,255,255,.7);
}
.pricing-card.featured .pricing-features li{color:rgba(255,255,255,.9)}
.pricing-features li::before{
    content:'✓';
    width:18px;height:18px;flex-shrink:0;
    background:rgba(255,255,255,.15);
    border-radius:50%;
    display:inline-flex;align-items:center;justify-content:center;
    font-size:.6875rem;font-weight:700;
}
.pricing-card.featured .pricing-features li::before{background:rgba(255,255,255,.3)}

.landing-footer{
    background:var(--sidebar-bg);
    border-top:1px solid rgba(255,255,255,.07);
    padding:2rem;text-align:center;
    color:rgba(255,255,255,.3);font-size:.8125rem;
}

/* ─── Cards ──────────────────────────────────────────────────── */
.card{
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    padding:1.5rem;
    margin-bottom:1.25rem;
}
.card-header{
    padding-bottom:1.125rem;
    margin-bottom:1.25rem;
    border-bottom:1px solid var(--border);
    display:flex;align-items:center;justify-content:space-between;
}
.card-title{font-size:1rem;font-weight:700;color:var(--text)}
.card-subtitle{font-size:.8125rem;color:var(--text-muted);margin-top:.125rem}

/* ─── Stat cards ─────────────────────────────────────────────── */
.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
    gap:1rem;
    margin-bottom:1.5rem;
}
.stat-card{
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    padding:1.25rem 1.375rem;
    display:flex;flex-direction:column;gap:.25rem;
}
.stat-icon{
    width:36px;height:36px;
    background:var(--brand-light);
    border-radius:9px;
    display:flex;align-items:center;justify-content:center;
    margin-bottom:.625rem;
    color:var(--brand);
}
.stat-icon svg{width:18px;height:18px;stroke-width:2}
.stat-number{font-size:1.875rem;font-weight:800;color:var(--text);line-height:1}
.stat-label{font-size:.8125rem;color:var(--text-muted);font-weight:500}
.stat-change{
    font-size:.75rem;font-weight:600;margin-top:.25rem;
    display:flex;align-items:center;gap:.25rem;
}
.stat-change.up{color:#16a34a}
.stat-change.neutral{color:var(--text-muted)}

/* ─── Usage bar ──────────────────────────────────────────────── */
.usage-bar-wrap{margin:.75rem 0}
.usage-bar-header{
    display:flex;align-items:center;justify-content:space-between;
    margin-bottom:.5rem;font-size:.8125rem;font-weight:500;
}
.usage-bar-bg{
    height:8px;background:var(--border);
    border-radius:999px;overflow:hidden;
}
.usage-bar-fill{
    height:100%;border-radius:999px;
    background:var(--brand-grad);
    transition:width .4s ease;
}
.usage-bar-fill.warning{background:linear-gradient(90deg,#f59e0b,#d97706)}
.usage-bar-fill.danger{background:linear-gradient(90deg,#ef4444,#dc2626)}

/* ─── Info rows ──────────────────────────────────────────────── */
.info-row{
    display:flex;align-items:center;justify-content:space-between;
    padding:.75rem 0;border-bottom:1px solid var(--border);gap:1rem;
}
.info-row:last-child{border-bottom:none}
.info-label{font-size:.8125rem;color:var(--text-muted);font-weight:500}
.info-value{font-weight:500;color:var(--text);text-align:right;font-size:.9375rem}

/* ─── Typography ─────────────────────────────────────────────── */
h1{font-size:1.875rem;font-weight:800;line-height:1.2}
h2{font-size:1.375rem;font-weight:700;line-height:1.25}
h3{font-size:1.0625rem;font-weight:700;line-height:1.3}
p{color:var(--text-muted);margin-bottom:.625rem}
p:last-child{margin-bottom:0}

code{
    font-family:'Fira Code','JetBrains Mono','Courier New',monospace;
    background:var(--brand-light);color:var(--brand-dark);
    padding:.175em .5em;border-radius:5px;font-size:.8125em;word-break:break-all;
}

/* ─── Forms ──────────────────────────────────────────────────── */
.form{display:flex;flex-direction:column;gap:.875rem}
.form-group{display:flex;flex-direction:column;gap:.3rem}
label{font-size:.8125rem;font-weight:600;color:var(--text);display:block}
input[type="text"],input[type="email"],input[type="password"],select,textarea{
    display:block;width:100%;
    padding:.6875rem .875rem;
    border:1.5px solid var(--border);
    border-radius:var(--radius-sm);
    font-size:.9375rem;font-family:inherit;
    color:var(--text);background:var(--surface);
    transition:border-color .15s,box-shadow .15s;
    outline:none;
}
input::placeholder,textarea::placeholder{color:#b0bac7}
input:focus,select:focus,textarea:focus{
    border-color:var(--brand);
    box-shadow:0 0 0 3px rgba(249,115,22,.12);
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn,.button-primary,.button-secondary,button[type="submit"]{
    display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
    padding:.625rem 1.375rem;
    border-radius:var(--radius-sm);
    font-size:.9rem;font-weight:600;font-family:inherit;
    cursor:pointer;border:none;
    transition:box-shadow .15s,transform .12s,opacity .15s;
    text-decoration:none;white-space:nowrap;line-height:1.4;
}
.btn-sm{padding:.4rem .875rem;font-size:.8125rem}
.btn-lg{padding:.8rem 2rem;font-size:1rem}
.btn-full,button[type="submit"]{width:100%}

.button-primary,button[type="submit"]{
    background:var(--brand-grad);color:#fff;
    box-shadow:var(--brand-glow);
}
.button-primary:hover,button[type="submit"]:hover{
    box-shadow:0 6px 24px rgba(249,115,22,.5);
    transform:translateY(-1px);color:#fff;
}
.button-secondary{
    background:var(--surface);color:var(--text);
    border:1.5px solid var(--border);box-shadow:var(--shadow-sm);
}
.button-secondary:hover{background:var(--bg);color:var(--text)}
.btn-ghost{
    background:transparent;color:rgba(255,255,255,.65);
    border:1.5px solid rgba(255,255,255,.15);
}
.btn-ghost:hover{background:rgba(255,255,255,.08);color:#fff}
.btn-danger{background:#ef4444;color:#fff}
.btn-danger:hover{background:#dc2626;color:#fff}

button:disabled,[disabled]{opacity:.45;cursor:not-allowed;transform:none!important;box-shadow:none!important}

/* ─── Badges ─────────────────────────────────────────────────── */
.badge{
    display:inline-flex;align-items:center;
    padding:.2em .65em;border-radius:999px;
    font-size:.7rem;font-weight:700;
    text-transform:uppercase;letter-spacing:.04em;
    white-space:nowrap;
}
.badge-free{background:#f1f5f9;color:#64748b}
.badge-pro{background:var(--brand-grad);color:#fff;box-shadow:0 2px 6px rgba(249,115,22,.35)}
.badge-active{background:#dcfce7;color:#15803d}
.badge-inactive{background:#fee2e2;color:#b91c1b}
.badge-admin{background:#ede9fe;color:#6d28d9}
.badge-trial{background:#fef3c7;color:#92400e}

/* ─── Alerts ─────────────────────────────────────────────────── */
.alert{
    padding:.875rem 1rem;border-radius:var(--radius-sm);
    font-size:.9rem;margin-bottom:1rem;
    border:1px solid transparent;display:flex;align-items:flex-start;gap:.625rem;
}
.alert-error{background:#fef2f2;color:#991b1b;border-color:#fecaca}
.alert-success{background:#f0fdf4;color:#166534;border-color:#bbf7d0}
.alert-info{background:#eff6ff;color:#1e40af;border-color:#bfdbfe}
.alert-warning{background:#fffbeb;color:#92400e;border-color:#fde68a}

/* ─── Tables ─────────────────────────────────────────────────── */
.table-wrap{overflow-x:auto;border-radius:var(--radius);border:1px solid var(--border)}
table{width:100%;border-collapse:collapse;font-size:.875rem;background:var(--surface)}
th{
    text-align:left;padding:.625rem 1rem;
    font-size:.7125rem;font-weight:700;
    text-transform:uppercase;letter-spacing:.06em;
    color:var(--text-muted);background:var(--bg);
    border-bottom:1px solid var(--border);white-space:nowrap;
}
td{padding:.875rem 1rem;border-bottom:1px solid var(--border);color:var(--text);vertical-align:middle}
tr:last-child td{border-bottom:none}
tbody tr:hover td{background:#fafbfc}

/* ─── Links ──────────────────────────────────────────────────── */
a{color:var(--brand);text-decoration:none;transition:color .15s}
a:hover{color:var(--brand-dark)}

/* ─── Key copy block ─────────────────────────────────────────── */
.key-block{
    background:var(--bg);border:1.5px solid var(--border);
    border-radius:var(--radius-sm);
    padding:.625rem .875rem;
    display:flex;align-items:center;justify-content:space-between;gap:.75rem;
    margin-top:.375rem;
}
.key-block code{background:none;padding:0;font-size:.825rem;color:var(--text);flex:1;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.copy-btn{
    flex-shrink:0;background:none;border:1.5px solid var(--border);
    border-radius:6px;padding:.25rem .625rem;
    font-size:.75rem;font-weight:600;color:var(--text-muted);cursor:pointer;
    transition:all .15s;font-family:inherit;
}
.copy-btn:hover{border-color:var(--brand);color:var(--brand)}
.copy-btn.copied{border-color:#16a34a;color:#16a34a}

/* ─── Utility ────────────────────────────────────────────────── */
.text-center{text-align:center}
.text-muted{color:var(--text-muted)}
.text-sm{font-size:.8125rem}
.text-xs{font-size:.75rem;color:var(--text-xs)}
.font-bold{font-weight:700}
.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.5rem}.mt-4{margin-top:2rem}
.mb-0{margin-bottom:0}.mb-1{margin-bottom:.5rem}.mb-2{margin-bottom:1rem}.mb-3{margin-bottom:1.5rem}
.flex{display:flex}.items-center{align-items:center}.justify-between{justify-content:space-between}.gap-1{gap:.5rem}.gap-2{gap:1rem}
hr.divider{border:none;border-top:1px solid var(--border);margin:1.25rem 0}
.btn-group{display:flex;flex-direction:column;gap:.625rem}

/* ─── Responsive ─────────────────────────────────────────────── */
@media(max-width:900px){
    .auth-brand{display:none}
    .auth-form-side{width:100%}
    .features-grid{grid-template-columns:1fr 1fr}
    .pricing-grid{grid-template-columns:1fr}
    .hero h1{font-size:2.25rem}
}
@media(max-width:768px){
    .sidebar{
        position:fixed;left:-100%;
        transition:left .25s;
        height:100%;
    }
    .sidebar.open{left:0}
    .main{margin-left:0}
    .page-content{padding:1.25rem}
    .stats-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:600px){
    .features-grid{grid-template-columns:1fr}
    .hero h1{font-size:1.875rem}
    .hero{padding:7rem 1.5rem 4rem}
    .stats-grid{grid-template-columns:1fr}
}
