/* CSS Variables */
:root {
    --color-primary: #1e3a5f;
    --color-primary-dark: #152a45;
    --color-primary-light: #2d5a8a;
    --color-accent: #c5a028;
    --color-accent-light: #d4b33d;
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-error: #ef4444;
    --color-text: #1f2937;
    --color-text-light: #6b7280;
    --color-text-lighter: #9ca3af;
    --color-bg: #ffffff;
    --color-bg-alt: #f9fafb;
    --color-bg-dark: #111827;
    --color-border: #e5e7eb;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
}

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

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

a {
    color: inherit;
    text-decoration: none;
}

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

.btn-primary {
    background-color: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.header.scrolled {
    border-bottom-color: var(--color-border);
    box-shadow: var(--shadow-sm);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-primary);
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--color-accent);
}

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

.nav-links a {
    color: var(--color-text);
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.nav-links .btn-primary {
    color: white;
}

.nav-links .btn-primary:hover {
    color: white;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4f8 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hero-note {
    font-size: 0.875rem;
    color: var(--color-text-lighter);
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 380px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-ready {
    background-color: #d1fae5;
    color: #065f46;
}

.triad-display {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.triad-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius);
    font-size: 0.9rem;
}

.triad-item.complete .triad-icon {
    color: var(--color-success);
    font-weight: bold;
}

.rating-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: var(--radius);
    color: white;
}

.rating-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.rating-value {
    font-size: 2rem;
    font-weight: 700;
}

/* Trust Banner */
.trust-banner {
    background-color: var(--color-primary);
    color: white;
    padding: 2rem 0;
}

.trust-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.trust-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
}

.trust-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--color-text-light);
}

/* Features Section */
.features {
    padding: 5rem 0;
}

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

.feature-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--color-primary-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

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

/* How It Works */
.how-it-works {
    padding: 5rem 0;
    background-color: var(--color-bg-alt);
}

.steps {
    max-width: 700px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.step:last-child {
    border-bottom: none;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.step-content p {
    color: var(--color-text-light);
}

/* PACT Act Section */
.pact-act {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
}

.pact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.pact-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.pact-text h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pact-text p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.pact-list {
    list-style: none;
    margin-bottom: 2rem;
}

.pact-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.check-icon {
    color: var(--color-accent);
    font-weight: bold;
}

.pact-zones h3 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

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

.zone {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem;
    border-radius: var(--radius);
    text-align: center;
    font-size: 0.9rem;
}

/* VA Math Section */
.va-math {
    padding: 5rem 0;
}

.va-math-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.calculation-example {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.calc-header {
    background: var(--color-primary);
    color: white;
    padding: 1rem 1.5rem;
    font-weight: 600;
}

.calc-conditions {
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.calc-condition {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.calc-result {
    padding: 1.5rem;
    background: white;
}

.calc-math, .calc-rounded {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.calc-rounded {
    font-size: 1.25rem;
    font-weight: 600;
}

.final-rating {
    color: var(--color-success);
}

.va-math-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.va-math-text p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.va-math-text .btn {
    margin-top: 1rem;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background-color: var(--color-bg-alt);
}

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

.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--color-text);
    line-height: 1.7;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--color-primary);
}

.author-detail {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    text-align: center;
    color: white;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta .btn-primary {
    background: white;
    color: var(--color-primary);
}

.cta .btn-primary:hover {
    background: var(--color-accent);
    color: white;
}

.cta-note {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background-color: var(--color-bg-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--color-text-lighter);
    margin-top: 1rem;
    max-width: 300px;
}

.footer-brand .logo {
    color: white;
}

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

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: var(--color-text-lighter);
}

.footer-column a {
    display: block;
    color: white;
    padding: 0.25rem 0;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.footer-column a:hover {
    opacity: 1;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--color-text-lighter);
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.75rem;
    opacity: 0.6;
    max-width: 800px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        max-width: none;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-visual {
        order: -1;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pact-content {
        grid-template-columns: 1fr;
    }

    .va-math-content {
        grid-template-columns: 1fr;
    }

    .va-math-visual {
        order: -1;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-items {
        justify-content: center;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .btn-large {
        width: 100%;
    }

    .zones-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* ================================
   BETA SIGNUP STYLES
   ================================ */

/* Announcement Banner */
.announcement-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: linear-gradient(90deg, var(--color-accent) 0%, #d4b33d 100%);
    color: var(--color-bg-dark);
    padding: 0.75rem 0;
    text-align: center;
    font-size: 0.9rem;
}

.announcement-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.announcement-icon {
    font-size: 1.1rem;
}

.announcement-link {
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.announcement-link:hover {
    opacity: 0.8;
}

/* Adjust header position for announcement banner */
.header {
    top: 44px;
}

.hero {
    padding-top: 10rem;
}

/* Beta Badge */
.beta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(197, 160, 40, 0.15);
    border: 1px solid var(--color-accent);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.pulse {
    width: 8px;
    height: 8px;
    background-color: var(--color-accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(197, 160, 40, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(197, 160, 40, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(197, 160, 40, 0);
    }
}

/* Hero Signup Form */
.hero-signup-form {
    max-width: 500px;
    margin-bottom: 1rem;
}

.input-group {
    display: flex;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.input-group input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    min-width: 0;
}

.input-group input::placeholder {
    color: var(--color-text-lighter);
}

.input-group .btn {
    white-space: nowrap;
}

/* Coming Soon Banner */
.coming-soon-banner {
    background-color: var(--color-primary);
    color: white;
    padding: 2.5rem 0;
}

.coming-soon-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.coming-soon-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.coming-soon-text p {
    opacity: 0.9;
}

.beta-benefits {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.beta-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.benefit-icon {
    font-size: 1.25rem;
}

/* Beta Signup Section */
.beta-signup {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4f8 100%);
}

.beta-signup-content {
    max-width: 700px;
    margin: 0 auto;
}

.beta-signup-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.beta-label {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-bg-dark);
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.beta-signup-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.beta-signup-header p {
    font-size: 1.125rem;
    color: var(--color-text-light);
}

/* Beta Form */
.beta-form {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.form-group input::placeholder {
    color: var(--color-text-lighter);
}

/* Full Width Form Group */
.form-group-full {
    grid-column: 1 / -1;
    margin-bottom: 1rem;
}

/* Form Section (for feature checklist) */
.form-section {
    margin-bottom: 1.5rem;
}

.form-section-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

/* Feature Checklist */
.feature-checklist {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s ease;
}

.feature-check:hover {
    border-color: var(--color-primary-light);
    background: #f0f7ff;
}

.feature-check input[type="checkbox"] {
    display: none;
}

.feature-check .check-box {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-top: 2px;
}

.feature-check .check-box::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--color-primary);
    border-radius: 2px;
    transform: scale(0);
    transition: transform 0.2s ease;
}

.feature-check input[type="checkbox"]:checked + .check-box {
    border-color: var(--color-primary);
    background: rgba(30, 58, 95, 0.1);
}

.feature-check input[type="checkbox"]:checked + .check-box::after {
    transform: scale(1);
}

.feature-check .check-label {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.feature-check .check-label strong {
    font-size: 0.95rem;
    color: var(--color-text);
}

.feature-check .check-label span {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

/* Textarea Styling */
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    min-height: 80px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.form-group textarea::placeholder {
    color: var(--color-text-lighter);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 0.15rem;
    accent-color: var(--color-primary);
}

.form-checkbox label {
    font-size: 0.875rem;
    color: var(--color-text-light);
    cursor: pointer;
}

.btn-full {
    width: 100%;
}

.form-success {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #d1fae5;
    color: #065f46;
    border-radius: var(--radius);
    margin-top: 1rem;
    font-weight: 500;
}

.success-icon {
    font-size: 1.25rem;
}

.form-error {
    padding: 1rem;
    background: #fee2e2;
    color: #991b1b;
    border-radius: var(--radius);
    margin-top: 1rem;
}

.form-privacy {
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text-lighter);
    margin-top: 1rem;
}

/* Waitlist Count */
.waitlist-count {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.count-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    display: block;
}

.count-label {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* Footer Beta Note */
.footer-beta-note {
    display: inline-block;
    background: var(--color-accent);
    color: #1a1a1a;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.75rem;
}

/* Spinner Animation */
.spinner {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Responsive Adjustments for Beta Components */
@media (max-width: 768px) {
    .announcement-banner {
        display: none;
    }

    .header {
        top: 0;
    }

    .nav-links {
        top: 70px;
    }

    .hero {
        padding-top: 7rem;
    }

    .beta-badge {
        font-size: 0.75rem;
    }

    .hero-signup-form {
        max-width: 100%;
    }

    .input-group {
        flex-direction: column;
    }

    .input-group .btn {
        width: 100%;
    }

    .coming-soon-content {
        flex-direction: column;
        text-align: center;
    }

    .beta-benefits {
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .beta-signup-header h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .announcement-banner .container {
        flex-direction: column;
        gap: 0.25rem;
    }

    .beta-benefits {
        flex-direction: column;
        gap: 1rem;
    }

    .beta-form {
        padding: 1.5rem;
    }
}
