:root {
    --primary: #A3E635;
    /* Lime Green accent */
    --primary-glow: rgba(163, 230, 53, 0.4);
    --background-dark: #0A0A0A;
    --background-darker: #000000;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --text-main: #EDEDED;
    --text-muted: #888888;
    --font-family: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--background-darker);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

a:hover {
    color: #fff;
}

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

.text-accent {
    color: #fff;
    background: linear-gradient(135deg, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hidden {
    display: none !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

/* Button */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    /* sharper corners for linear look */
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--text-main);
    color: var(--background-darker);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    background-color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

.btn-large {
    padding: 14px 28px;
    font-size: 15px;
}

.btn-full {
    width: 100%;
}

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

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Nav */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--card-border);
    height: 64px;
    display: flex;
    align-items: center;
}

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

.logo {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: #fff;
}

/* Hero Section */
.hero {
    padding-top: 140px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top center, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 32px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.8;
    }
}

.hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 600;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 24px;
    color: #fff;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-actions {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.hero-disclaimer {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 80px;
}

.hero-image-wrapper {
    position: relative;
    max-width: 1040px;
    margin: 0 auto;
    border-radius: 12px;
    padding: 1px;
    /* border acts as a gradient outline */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.8);
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 40px;
    background: var(--primary);
    filter: blur(100px);
    opacity: 0.15;
    z-index: -1;
}

.hero-image {
    border-radius: 11px;
    width: 100%;
    background: var(--background-dark);
}

/* Sections */
.section {
    padding: 120px 0;
    border-top: 1px solid var(--card-border);
    position: relative;
    background-color: var(--background-darker);
}

.bg-light {
    background-color: var(--background-dark);
}

.section-header {
    max-width: 650px;
    margin: 0 auto 80px;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -1px;
    color: #fff;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
}

/* Cards & Grid */
.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 32px;
    transition: background 0.3s, border-color 0.3s;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.card-text {
    color: var(--text-muted);
    font-size: 15px;
}

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

.feature-item {
    background: var(--background-dark);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    transition: border-color 0.3s ease;
}

.feature-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.feature-desc {
    font-size: 14px;
    color: var(--text-muted);
}

/* List */
.feature-list {
    list-style: none;
    margin-top: 24px;
}

.feature-list li {
    margin-bottom: 16px;
    position: relative;
    padding-left: 24px;
    color: var(--text-muted);
}

.feature-list li strong {
    color: #fff;
    font-weight: 500;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary);
    box-shadow: 0 0 5px var(--primary-glow);
}

.business-case-box {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    position: relative;
    overflow: hidden;
}

.business-case-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.box-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #fff;
}

/* Form Section */
.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 768px) {
    .form-container {
        grid-template-columns: 1fr;
    }
}

.form-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.form-subtitle {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 14px;
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 6px;
    color: #fff;
    font-family: var(--font-family);
    font-size: 14px;
    transition: border-color 0.2s ease, background 0.2s;
}

.form-group input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

/* Footer */
.footer {
    background: var(--background-darker);
    color: var(--text-muted);
    padding: 64px 0 32px;
    border-top: 1px solid var(--card-border);
    font-size: 14px;
}

.footer-logo {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeIn 0.3s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.modal-content {
    background: #0A0A0A;
    border: 1px solid var(--card-border);
    padding: 48px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 1);
    position: relative;
    overflow: hidden;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.modal-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.modal-message {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 32px;
}