:root {
    --bg: #0A0A0A;
    --bg-2: #111;
    --text: #F4F4F4;
    --text-secondary: #A0A0A0;
    --text-tertiary: #6B6B6B;
    --accent: #FF4000;
    --accent-soft: rgba(255, 64, 0, 0.12);
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.16);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ============ Landing layout ============ */

body.landing {
    min-height: 100vh;
}

.bg-glow {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse 60% 40% at 50% 0%, rgba(255, 64, 0, 0.18), transparent 70%),
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(255, 64, 0, 0.06), transparent 70%);
}

.nav,
.hero,
.features,
.site-footer {
    position: relative;
    z-index: 1;
}

.nav {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text);
    text-decoration: none;
}

.brand svg,
.brand .brand-logo {
    color: var(--text);
}

.brand-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
}

.brand:hover {
    color: var(--accent);
}

.brand:hover svg {
    color: var(--accent);
}

.nav-cta {
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 18px;
    border: 1px solid var(--border);
    border-radius: 999px;
    transition: border-color 0.15s, background 0.15s;
}

.nav-cta:hover {
    border-color: var(--accent);
    background: var(--accent-soft);
}

/* ============ Hero ============ */

.hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 28px 40px;
    text-align: center;
}

.hero-logo {
    width: 88px;
    height: 88px;
    object-fit: contain;
    margin: 0 auto 32px;
    display: block;
    filter: drop-shadow(0 0 32px rgba(255, 64, 0, 0.25));
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--text-secondary);
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    margin-bottom: 28px;
}

.eyebrow .dot {
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(255, 64, 0, 0.6);
}

.hero-title {
    font-size: clamp(38px, 6vw, 64px);
    font-weight: 800;
    letter-spacing: -1.8px;
    line-height: 1.05;
    margin-bottom: 24px;
    background: linear-gradient(180deg, #FFF 0%, #C8C8C8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title .accent {
    background: linear-gradient(135deg, #FF4000 0%, #FF7E47 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    max-width: 580px;
    margin: 0 auto 36px;
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.cta-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FFF;
    color: #000;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 22px;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.12s, box-shadow 0.15s;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
}

.btn-primary svg {
    color: #000;
}

.proof-row {
    color: var(--text-tertiary);
    font-size: 13px;
    margin-top: 16px;
}

/* ============ Features ============ */

.features {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 28px 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.feature {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    transition: border-color 0.2s, transform 0.2s;
}

.feature:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}

.feature p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.55;
}

/* ============ Footer ============ */

.site-footer {
    border-top: 1px solid var(--border);
    margin-top: 40px;
    padding: 40px 0;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    text-align: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.brand-mark {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.footer-tag {
    color: var(--text-tertiary);
    font-size: 13px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.footer-nav a {
    color: var(--text-secondary);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.15s;
}

.footer-nav a:hover {
    color: var(--accent);
}

.footer-copy {
    color: var(--text-tertiary);
    font-size: 12px;
}

/* ============ Policy pages ============ */

.container {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

.container .brand {
    margin-bottom: 40px;
}

h1 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.meta {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.meta strong {
    color: var(--text);
    font-weight: 600;
    display: block;
}

h2 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 36px;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

h3 {
    font-size: 17px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 8px;
}

p {
    margin-bottom: 14px;
    color: var(--text);
}

ul {
    margin: 8px 0 16px 24px;
    color: var(--text);
}

li {
    margin-bottom: 6px;
}

li strong {
    color: var(--text);
    font-weight: 600;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 13px;
}

@media (max-width: 600px) {
    .nav { padding: 18px 20px; }
    .hero { padding: 56px 20px 32px; }
    .features { padding: 40px 20px 60px; }
    .footer-nav { gap: 16px; }
}
