:root {
    /* Brand Colors */
    --color-primary: #1A3C34;
    --color-primary-light: #2C5248;
    --color-secondary: #4A6C64;
    --color-accent: #C6A87C;
    --color-accent-hover: #b09265;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1A3C34 0%, #0F2520 100%);
    --gradient-gold: linear-gradient(135deg, #C6A87C 0%, #E5D5B8 50%, #C6A87C 100%);
    --gradient-dark: linear-gradient(180deg, rgba(26, 60, 52, 0) 0%, rgba(26, 60, 52, 0.05) 100%);

    /* Neutrals */
    --bg-white: #FFFFFF;
    --bg-light: #F9FAFB;
    --bg-dark: #111827;

    /* Text */
    --text-main: #111827;
    --text-secondary: #4B5563;
    --text-muted: #9CA3AF;
    --text-white: #FFFFFF;

    /* UI Elements */
    --border-light: #E5E7EB;
    --border-primary: rgba(26, 60, 52, 0.1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 20px rgba(198, 168, 124, 0.2);

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-white);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(198, 168, 124, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(26, 60, 52, 0.03) 0%, transparent 20%);
    background-attachment: fixed;
}

/* Typography Polish */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-primary);
    letter-spacing: -0.02em;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 400;
}

/* Premium Utilities */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(198, 168, 124, 0.1);
    color: var(--color-accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 999px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(198, 168, 124, 0.2);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--color-accent);
    color: #FFFFFF;
}

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

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-text {
    padding: 0;
    color: var(--color-accent);
    font-weight: 600;
}

.btn-text:hover {
    opacity: 0.8;
}

/* Header */
.header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.02em;
}

.nav-links {
    display: none;
}

@media(min-width: 768px) {
    .nav-links {
        display: flex;
        gap: 2rem;
    }

    .nav-links a {
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--text-secondary);
    }

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

/* Hero Section */
.hero {
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 6rem;
    background: linear-gradient(180deg, rgba(235, 240, 239, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}

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

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-privacy {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hero-privacy svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* Problem Section */
.problem-section {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

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

.grid-3 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media(min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Integration Grid Specifics */
.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.integration-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all 0.3s ease;
}

.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
}

.card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    color: var(--color-secondary);
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

/* Solution Section - Steps */
.steps {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(198, 168, 124, 0.3);
    /* Transparent Gold */
    line-height: 0.8;
    flex-shrink: 0;
    font-family: var(--font-heading);
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

/* Benefits Section */
.benefits-section {
    background-color: var(--color-primary);
    color: white;
    padding: 6rem 0;
}

.benefits-section h2 {
    color: white;
}

.benefits-section p {
    color: rgba(255, 255, 255, 0.8);
}

.benefit-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

@media(min-width: 768px) {
    .benefit-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefit-item {
    display: flex;
    gap: 1rem;
}

.checkmark {
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

/* Differentiation */
.diff-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media(min-width: 768px) {
    .diff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.diff-card {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 1rem;
}

/* Roadmap */
.roadmap {
    border-left: 2px solid var(--border-light);
    margin-left: 1rem;
    padding-left: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.roadmap-item {
    position: relative;
    margin-bottom: 3rem;
}

.roadmap-item::before {
    content: '';
    position: absolute;
    left: -2.6rem;
    top: 0.4rem;
    width: 1rem;
    height: 1rem;
    background-color: var(--bg-white);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
}

.roadmap-item.active::before {
    background-color: var(--color-primary);
}

.tag-status {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    background-color: var(--border-light);
    color: var(--text-secondary);
    margin-left: 0.5rem;
    vertical-align: middle;
    font-weight: 500;
}

.tag-status.live {
    background-color: #DCFCE7;
    color: #166534;
}

/* Founding Access / Funding */
.funding-card {
    background: linear-gradient(135deg, #1A3C34 0%, #0F2520 100%);
    border-radius: 1.5rem;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.funding-card h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.funding-card p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-size: 1.125rem;
}

.gold-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(198, 168, 124, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid var(--border-light);
    padding: 1.5rem 0;
}

.faq-question {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

/* Mobile Navigation */
.mobile-menu-btn {
    display: block;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-primary);
}

@media(min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Animations & Polish */
.btn {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    box-shadow: 0 4px 14px 0 rgba(198, 168, 124, 0.39);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(198, 168, 124, 0.23);
    transform: translateY(-2px);
}

.nav-links a {
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-accent);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hover Glow for Cards */
.card,
.integration-card,
.pricing-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover,
.integration-card:hover,
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1), 0 10px 20px -5px rgba(0, 0, 0, 0.04);
}

/* Footer Responsive Fix */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

@media(min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        text-align: left;
        gap: 3rem;
    }
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--color-primary);
}

/* Founder Image Polish */
.team-member img {
    transition: transform 0.5s ease;
}

.team-member:hover img {
    transform: scale(1.05) rotate(1deg);
}

/* General Spacing Polish */
.section {
    padding: 8rem 0;
    /* Premium spacing */
}

@media(max-width: 768px) {
    .section {
        padding: 5rem 0;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .hero-sub {
        font-size: 1.15rem;
    }
}

/* Container Fix - This was missing! */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Form Styles */
.form-container {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: 0.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(198, 168, 124, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-overlay a {
    font-size: 1.5rem;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 1rem;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-primary);
}

@media(max-width: 768px) {
    .nav-links {
        display: none !important;
        /* Force hide on mobile in favor of overlay */
    }

    .mobile-toggle {
        display: block;
    }

    .btn {
        width: 100%;
        /* Full width buttons on mobile forms */
    }

    .header .btn {
        display: none;
        /* Hide header CTA on mobile to save space */
    }
}

/* Success Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 2000;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 1.5rem;
    border: 1px solid var(--color-accent);
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-shadow: var(--shadow-lg);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.modal-text {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

/* Premium Gradients Polish */
.text-gradient {
    background: linear-gradient(135deg, #1A3C34 0%, #3D7A6B 50%, #1A3C34 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 4s linear infinite;
}

.text-gradient-gold {
    background: linear-gradient(135deg, #C6A87C 0%, #F5E6CC 50%, #C6A87C 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 4s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}