/* --- CSS VARIABLES & RESET --- */
:root {
    --lime-green: #a3d733e2;
    /* High-Vis Lime */
    --bg-dark: #0a0a0a;
    --lime-green-dim: #a3d73310;
    /* Dimmed glow */
    --bg-card: #141414;
    --text-main: #ffffff;
    --text-muted: #b3b3b3;
    --font-main: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

/* --- UTILITIES --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--lime-green);
    color: var(--bg-dark);
    border: 1px solid var(--lime-green);
    box-shadow: 0 0 15px var(--lime-green-dim);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--lime-green);
    box-shadow: 0 0 25px var(--lime-green-dim);
}

.text-green {
    color: var(--lime-green);
}

.text-center {
    text-align: center;
}

/* --- HEADER --- */
header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid #333;
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- UPDATED LOGO STYLES --- */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 55px;
    width: auto;
    margin-right: 0;
    /* Reset margin since we use gap */
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}

.brand-name {
    font-size: 2rem;
    font-weight: 900;
    /* Extra Bold for Montserrat */
    color: #ffffff;
    letter-spacing: 1px;
}

.brand-tagline {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a:hover {
    color: var(--lime-green);
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: radial-gradient(circle at 80% 20%, var(--lime-green-dim) 0%, transparent 40%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

/* --- WAITLIST FORM --- */
.waitlist-form {
    display: flex;
    gap: 10px;
    max-width: 400px;
    margin-top: 20px;
}

.waitlist-input {
    flex: 1;
    padding: 12px 20px;
    border-radius: 4px;
    border: 1px solid #333;
    background: #111;
    color: white;
    font-family: var(--font-main);
    outline: none;
    transition: var(--transition);
}

.waitlist-input:focus {
    border-color: var(--lime-green);
    box-shadow: 0 0 10px var(--lime-green-dim);
}

.waitlist-btn {
    border: none;
    cursor: pointer;
}

/* The Transparent Brackets container */
.hero-visual {
    position: relative;
    height: auto;
    width: fit-content;
    margin: 0 auto;

    background: transparent;

    border-left: 4px solid #333;
    border-right: 4px solid #333;
    border-top: none;
    border-bottom: none;
    border-radius: 25px;

    padding: 0 40px;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* The Vortex Image */
.phone-img {
    width: 100%;
    max-width: 320px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 30px var(--lime-green-dim));
    transition: var(--transition);
}


/* --- TRUST BAR --- */
.trust-bar {
    padding: 40px 0;
    background: #0f0f0f;
    border-bottom: 1px solid #222;
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-item {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;

    color: var(--lime-green);
    /* The bright color */
    opacity: 0.7;
    /* <--- 70% brightness (Adjust this to taste) */

    transition: var(--transition);
    /* Smooth transition for hover */
}

/* Optional: Make it light up when they hover over it */
.trust-item:hover {
    opacity: 1;
}

/* --- FEATURES GRID --- */
.features {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #222;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--lime-green);
    transform: translateY(-5px);
}

.icon-box {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--lime-green);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- FOOTER --- */
footer {
    padding: 60px 0 20px;
    border-top: 1px solid #222;
    background: #050505;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: var(--text-main);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: var(--lime-green);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #1a1a1a;
    color: #555;
    font-size: 0.8rem;
}

/* --- RESPONSIVE FIXES (CLEANED UP) --- */
@media (max-width: 768px) {

    /* 1. SLIM DOWN THE HEADER */
    header {
        padding: 10px 0;
    }

    /* 2. PUSH CONTENT DOWN & FIX OVERLAP */
    .hero {
        padding-top: 130px;
        /* Essential to stop header overlap */
        height: auto;
        min-height: 100vh;
        align-items: flex-start;
    }

    /* 3. Stack the layout vertically */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding-bottom: 50px;
    }

    /* 4. Hide Desktop Menu */
    .nav-links {
        display: none;
    }

    /* 5. Shrink Headline */
    .hero-text h1 {
        font-size: 2.2rem;
    }

    /* 6. Fix Logo Sizing */
    .brand-name {
        font-size: 1.4rem;
    }

    .logo-img {
        height: 40px;
    }

    /* 7. Fix Brackets/Image */
    .hero-visual {
        margin-top: 20px;
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
    }

    .phone-img {
        max-width: 260px;
    }

    /* 8. Stack Form */
    .waitlist-form {
        flex-direction: column;
        width: 100%;
    }
}

/* --- Contact Section --- */
.contact-section {
    background: #0a0a0a;
    padding: 80px 20px;
    border-top: 1px solid #333;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-header h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-header h2 span {
    color: #ccff00;
    /* Kardo Lime */
}

.contact-header p {
    color: #888;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* Form Layout */
.contact-form {
    text-align: left;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

/* Inputs */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #fff;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ccff00;
    /* Lime Glow on Focus */
}

/* Button */
.btn-high-vis {
    width: 100%;
    padding: 18px;
    font-weight: 800;
    background: #ccff00;
    color: #000;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-high-vis:hover {
    background: #b3e600;
    /* Slightly darker lime */
    transform: translateY(-2px);
}

/* Mobile Tweak */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
        /* Stack inputs on mobile */
    }
}

/* --- HOW IT WORKS --- */
.section-dark {
    padding: 100px 0;
    background-color: #0d0d0d;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step-card {
    background: linear-gradient(145deg, #1a1a1a, #141414);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #222;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: #222;
    position: absolute;
    top: -10px;
    right: 10px;
    z-index: 0;
    opacity: 0.5;
}

.step-card h3,
.step-card p {
    position: relative;
    z-index: 1;
}

.step-card h3 {
    margin-bottom: 15px;
    color: var(--lime-green);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-card p {
    color: var(--text-muted);
}