:root {
    /* Color Palette - RevGrowth Style (Stark Black & Orange) */
    --bg-dark: #050505;
    --bg-card: #0F0F0F;
    --bg-card-hover: #141414;

    --primary: #FF5E00;
    /* RevGrowth Orange */
    --primary-hover: #FF7B33;
    --border-color: #262626;

    --success: #10B981;
    /* Green for "Good Fit" */
    --error: #EF4444;
    /* Red for "Bad Fit" */

    --text-main: #FFFFFF;
    --text-muted: #A3A3A3;

    --font-main: 'Inter', sans-serif;
    /* Cleaner, straighter than Outfit */

    --radius-sm: 4px;
    /* Sharper corners */
    --radius-md: 8px;

    --nav-height: 70px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    letter-spacing: -0.02em;
    font-weight: 700;
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

p {
    color: var(--text-muted);
    font-size: 1.125rem;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.text-highlight {
    color: var(--primary);
}

/* Layout Utilities */
.container {
    max-width: 1100px;
    /* Slightly tighter container for that focused SaaS look */
    margin: 0 auto;
    padding: 0 24px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

/* Navbar */
.navbar {
    height: var(--nav-height);
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(5, 5, 5, 0.85);
    /* Darker blur */
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: white;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links a:hover {
    color: var(--text-main);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--border-color);
    color: white;
}

.btn-secondary:hover {
    border-color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}

/* Hero - Centered & Stark */
.hero {
    padding-top: 140px;
    padding-bottom: 100px;
    background: var(--bg-dark);
    /* Removed glow */
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.25rem;
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 80px;
}

/* Trust Bar */
.trust-bar {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 32px 0;
    margin-bottom: 100px;
}

.trust-text {
    text-align: center;
    font-size: 0.875rem;
    color: #525252;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.logo-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    opacity: 0.4;
    filter: grayscale(100%);
}

.logo-placeholder {
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
}

/* Feature Cards (Dark & Sharp) */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: var(--radius-md);
    transition: transform 0.2s;
    height: 100%;
}

.feature-card:hover {
    border-color: #404040;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 94, 0, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: white;
}

.feature-card p {
    font-size: 1rem;
    color: var(--text-muted);
}

/* Good Fit / Bad Fit Section */
.fit-section {
    padding: 100px 0;
    background: #080808;
    border-top: 1px solid var(--border-color);
}

.fit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    /* Gap for border effect */
    background: var(--border-color);
    /* Creates the border lines */
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.fit-col {
    background: var(--bg-card);
    padding: 48px;
}

.fit-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    font-weight: 700;
    font-size: 1.25rem;
}

.good-fit .fit-header {
    color: var(--success);
}

.bad-fit .fit-header {
    color: var(--error);
}

.fit-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-muted);
}

.check-icon {
    color: var(--success);
}

.cross-icon {
    color: var(--error);
}

/* CTA Box */
.cta-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 80px 24px;
    text-align: center;
    border-radius: var(--radius-md);
}

/* Footer */
footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-dark);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .fit-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }
}