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

:root {
    --bg-color: #050505;
    --text-color: #f4f4f4;
    --accent: #E60023;
    --accent-hover: #cc001f;
    --border-color: #222;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px; /* offset for sticky navbar height */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    max-width: 1200px;
    margin: 0 auto 1.5rem;
}

h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

p {
    font-size: 1.125rem;
    color: #aaa;
    max-width: 600px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a[href="./privacy/"] {
    color: rgba(255, 255, 255, 0.28);
}

.nav-links a[href="./privacy/"]:hover {
    color: rgba(255, 255, 255, 0.6);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    display: block;
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent);
    color: #fff;
    padding: 1.2rem 2.5rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.1rem;
    transition: background 0.2s, transform 0.2s;
    border-radius: 4px;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-primary.large {
    padding: 1.5rem 4rem;
    font-size: 1.5rem;
}

.btn-outline {
    display: inline-block;
    border: 2px solid var(--text-color);
    color: var(--text-color);
    padding: 0.8rem 1.5rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.btn-outline:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
}

section {
    padding: 8rem 4rem;
    max-width: 1600px;
    margin: 0 auto;
    border-bottom: 1px solid var(--border-color);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 0;
    border-bottom: 1px solid var(--border-color);
}

/* ── Background video (YouTube, cover-fit) ── */
.hero-video-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-video-wrapper video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* ── Gradient overlay for text legibility ── */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(5, 5, 5, 0.55) 0%,
        rgba(5, 5, 5, 0.35) 50%,
        rgba(5, 5, 5, 0.75) 100%
    );
    z-index: 1;
}

/* ── Text content layer ── */
.hero-content {
    position: relative;
    z-index: 2;
    padding: 10rem 2rem 8rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.hero .subtitle {
    margin: 0 auto 3rem;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: #ddd;
    max-width: 800px;
}

.cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.guarantee {
    font-size: 0.9rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.grid-2 p {
    margin-bottom: 1.5rem;
}

/* ══════════════════════════
   SHOWCASE
══════════════════════════ */
.showcase {
    padding: 8rem 4rem;
    max-width: 1600px;
    margin: 0 auto;
    border-bottom: 1px solid var(--border-color);
}

.showcase-screen {
    margin-bottom: 5rem;
}

.showcase-screen img {
    display: block;
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 0 0 1px rgba(0,0,0,0.5),
        0 40px 100px rgba(0, 0, 0, 0.7),
        0 0 80px rgba(230, 0, 35, 0.06);
}

.showcase-split {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 6rem;
    align-items: center;
}

.showcase-split-img img {
    display: block;
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 0 0 1px rgba(0,0,0,0.5),
        0 30px 70px rgba(0, 0, 0, 0.6);
}

.showcase-split-copy .eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 1rem;
    max-width: none;
}

.showcase-split-copy h2 {
    margin-bottom: 1.5rem;
    font-size: clamp(2rem, 3.5vw, 3rem);
}

.showcase-split-copy p {
    margin-bottom: 1.2rem;
}

.showcase-split-copy .btn-primary {
    margin-top: 1rem;
    display: inline-block;
    width: auto;
}

@media (max-width: 900px) {
    .showcase-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .showcase-split-img img {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ══════════════════════════
   FEATURE GRID
══════════════════════════ */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    padding: 3rem;
    background: #111;
    border: 1px solid var(--border-color);
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.cta-section {
    text-align: center;
    padding: 10rem 4rem;
    border-bottom: none;
}

.cta-section p {
    margin: 0 auto 3rem;
}

.subtext {
    margin-top: 1.5rem !important;
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
}

footer {
    padding: 4rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer p {
    font-size: 0.8rem;
    margin: 0;
}

@media (max-width: 768px) {
    .navbar {
        padding: 1.5rem;
    }

    .nav-links {
        display: none;
    }
    section {
        padding: 4rem 1.5rem;
    }
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hero {
        padding-top: 6rem;
    }
    .btn-primary.large {
        padding: 1.2rem 2rem;
        font-size: 1.2rem;
        width: 100%;
    }
    footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
