/* CSS Reset & Variables */
:root {
    /* Premium Dark Blue/Slate Palette (from DESIGN_SYSTEM.md) */
    --bg-gradient: linear-gradient(180deg, #0e1e2b 0%, #2f3b4b 100%);
    --bg-color: #0e1e2b;
    --card-bg: rgba(255, 255, 255, 0.08);
    /* 0.08 opacity as per design system */
    --card-border: rgba(255, 255, 255, 0.15);
    /* 0.15 opacity */
    --text-main: #ffffff;
    --text-sub: rgba(255, 255, 255, 0.7);
    --primary-blue: #007AFF;
    /* System Blue */
    --primary-glow: rgba(0, 122, 255, 0.5);
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
    background: var(--bg-color);
    background-image: var(--bg-gradient);
    color: var(--text-main);
    font-family: var(--font-family);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Background Glow */
.glow-effect {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    opacity: 0.4;
    z-index: -1;
    pointer-events: none;
}

/* Layout */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav {
    width: 100vw;
    /* Full viewport width */
    max-width: 100%;
    display: flex;
    justify-content: center;
    /* Center the inner content */
    align-items: center;
    padding: 20px 24px;
    margin-bottom: 60px;

    /* Sticky magic */
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(14, 30, 43, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);

    /* Break out of parent padding if needed, but since we modify hero below/structure, 
       ensure it behaves well. Actually, best way is to wrap nav content in a container matching max-width. */
}

/* Inner container for nav to keep alignment with content */
.nav-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

html {
    scroll-behavior: smooth;
}

/* Scroll Offset for Sticky Nav */
#use-cases,
#pricing,
#about,
#faq,
#waitlist-section {
    scroll-margin-top: 120px;
}

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

.nav-link {
    color: var(--text-sub);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #fff;
}

.btn-small {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-small:hover {
    background: #fff;
    color: #000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    text-decoration: none;
    color: var(--text-main);
}

.logo:hover {
    opacity: 0.9;
}

.brand-logo {
    height: 48px;
    width: auto;
    border-radius: 8px;
    /* Attempt to blend dark background of logo with page background */
    /* If the logo background is NOT transparent, this helps (assuming logo is on black) */
    mix-blend-mode: screen;
}

/* Content */
.content {
    text-align: center;
    max-width: 700px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge {
    background: rgba(59, 130, 246, 0.15);
    color: #93c5fd;
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 6px 16px;
    border-radius: 200px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 32px;
    backdrop-filter: blur(4px);
    display: inline-block;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.125rem;
    color: var(--text-sub);
    margin-bottom: 48px;
    max-width: 500px;
    line-height: 1.6;
}

/* Form */
/* Detailed Form Styles */
.waitlist-form-detailed {
    background: #1e293b;
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 32px;
    width: 100%;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

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

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

.waitlist-form-detailed input,
.waitlist-form-detailed select,
.waitlist-form-detailed textarea {
    width: 100%;
    background: rgba(15, 23, 42, 0.6);
    /* Darker input bg */
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 12px 16px;
    color: #fff;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border 0.2s;
}

.waitlist-form-detailed input:focus,
.waitlist-form-detailed select:focus,
.waitlist-form-detailed textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.waitlist-form-detailed textarea {
    resize: vertical;
    min-height: 100px;
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: "▼";
    font-size: 0.8rem;
    color: var(--text-sub);
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.waitlist-form-detailed select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.btn-submit-mvp {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2563eb 100%);
    border: none;
    padding: 14px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 12px;
    transition: transform 0.1s, opacity 0.2s;
}

.btn-submit-mvp:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-submit-mvp:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.input-group {
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    padding: 6px;
    border-radius: 12px;
    transition: border-color 0.2s;
}

.input-group:focus-within {
    border-color: rgba(255, 255, 255, 0.3);
}

input[type="email"] {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 16px;
    color: #fff;
    font-size: 1rem;
    outline: none;
    font-family: inherit;
}

input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.btn-primary {
    background: #fff;
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.1s, background 0.2s;
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
}

.privacy-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 12px;
}

.form-status {
    margin-top: 12px;
    font-size: 0.9rem;
    min-height: 1.5em;
}

.form-status.success {
    color: #4ade80;
    /* Keep success green as is for now or add var */
}

.form-status.error {
    color: #ef4444;
    /* Keep error red as is */
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 900px;
    margin-top: 32px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 24px;
    border-radius: 16px;
    text-align: left;
    backdrop-filter: blur(8px);
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
}

.icon {
    font-size: 24px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-sub);
    line-height: 1.6;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin: 80px 0 40px;
}

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

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

/* Use Cases Grid */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2x2 grid */
    gap: 24px;
    width: 100%;
    max-width: 900px;
    margin-bottom: 80px;
}

.use-case-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    padding: 24px;
    border-radius: 16px;
    transition: background 0.2s;
}

.use-case-card:hover {
    background: rgba(255, 255, 255, 0.06);
}

.use-case-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #93c5fd;
    /* Soft blue accent */
}

/* Pricing Cards */
.pricing-grid {
    display: flex;
    gap: 24px;
    flex-wrap: nowrap;
    /* Force single row on desktop */
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    /* Give it more room */
    margin-bottom: 80px;
}

@media (max-width: 900px) {
    .pricing-grid {
        flex-wrap: wrap;
        /* Allow wrapping on tablets/mobile */
    }
}

.pricing-card {
    flex: 1;
    min-width: 250px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(12px);

    /* Flex column for button alignment */
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: var(--primary-blue);
    background: rgba(59, 130, 246, 0.1);
    transform: scale(1.02);
    /* Pop out effect */
    z-index: 1;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 16px 0;
}

.price span {
    font-size: 1rem;
    color: var(--text-sub);
    font-weight: 400;
}

.features-list {
    list-style: none;
    margin: 24px 0;
    text-align: left;
    color: var(--text-sub);
}

.features-list li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.features-list li::before {
    content: "✓";
    color: #4ade80;
    position: absolute;
    left: 0;
}

/* Card Buttons */
.btn-card {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 14px;
    margin-top: auto;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.95rem;

    /* Outline Style (Default) */
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff !important;
}

.btn-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-card.primary {
    /* Solid Primary Style */
    background: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

.btn-card.primary:hover {
    background: #0062cc;
    border-color: #0062cc;
    transform: translateY(-1px);
}

/* About Section (New Design) */
.about-section-new {
    width: 100%;
    max-width: 1100px;
    margin: 80px 0;
    text-align: center;
}

.about-header {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-pill {
    background: #f59e0b;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 16px;
    display: inline-block;
}

.highlight-blue {
    color: var(--primary-blue);
}

.about-subtitle {
    color: var(--text-sub);
    max-width: 600px;
    margin-top: 16px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.about-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    text-align: left;
}

.about-text {
    flex: 1;
    color: var(--text-sub);
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 24px;
}

.award-card {
    flex: 1;
    background: rgba(30, 41, 59, 0.6);
    /* Slightly lighter/transparent than bg */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    backdrop-filter: blur(10px);
}

.award-header {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.award-icon-box {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.award-badge {
    background: #f59e0b;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 4px;
}

.award-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.award-desc {
    color: var(--text-sub);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.5;
}

.award-meta {
    display: flex;
    gap: 24px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 32px;
}

.award-footer {
    display: flex;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.award-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

.award-tag svg {
    color: var(--primary-blue);
}

@media (max-width: 800px) {
    .about-grid {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        /* Center align on mobile */
    }

    .about-text,
    .award-card {
        text-align: left;
        /* Keep card content left aligned mostly */
    }

    .award-card {
        width: 100%;
    }
}


/* Footer (Detailed) */
.site-footer {
    padding: 40px 0 24px;
    /* Reduced from 80px 0 40px */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    /* Reduced from 40px */
    max-width: 1200px;
    margin: 0 auto 32px;
    /* Reduced from 60px */
    padding: 0 24px;
}

.footer-brand {
    flex: 2;
    min-width: 300px;
    max-width: 350px;
    text-align: left;
    /* Ensure left alignment */
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    /* Brand Blue */
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-sub);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s;
    font-size: 1.25rem;
}

.social-links a:hover {
    color: #fff;
}

.footer-col {
    flex: 1;
    min-width: 150px;
    text-align: left;
}

.footer-col h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

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

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

.footer-col a {
    color: var(--text-sub);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 32px 24px 0;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

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

    .nav {
        margin-bottom: 40px;
    }
}

/* Pricing Component Styles (New) */
.plan-sub {
    font-size: 0.9rem;
    color: var(--text-sub);
    margin-bottom: 24px;
    font-weight: 500;
}

.badge-pop {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.badge-pilot {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #f59e0b;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Pilot Section Styles */
.pilot-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 400px;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .pilot-tags {
        justify-content: flex-start;
        margin-top: 16px;
    }
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--text-sub);
}

.tag.highlight {
    border-color: #f59e0b;
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.pilot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 1000px;
    margin-bottom: 40px;
}

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

.pilot-card {
    background: rgba(30, 41, 59, 0.5);
    /* darker slate */
    border: 1px solid var(--card-border);
    padding: 24px;
    border-radius: 12px;
    text-align: left;
}

.pilot-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #fff;
}

.pilot-card p {
    font-size: 0.9rem;
    color: var(--text-sub);
    line-height: 1.5;
}

.icon-box {
    margin-bottom: 12px;
    font-size: 1.2rem;
    color: var(--primary-blue);
    background: rgba(56, 189, 248, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pilot-cta-box {
    width: 100%;
    max-width: 1000px;
    border: 1px solid var(--card-border);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    padding: 48px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 80px;
}


/* FAQ Section Styles */
.faq-container {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 100px;
}

.faq-item {
    background: #1e293b;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s;
}

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

.faq-question {
    padding: 24px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 1rem;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--primary-blue);
}

/* Active state logic will be handled via JS toggling a class, but we can style .active here if needed */
.faq-item.active .faq-question {
    color: var(--primary-blue);
    background: rgba(59, 130, 246, 0.05);
}

.faq-answer {
    padding: 0 24px 24px;
    color: var(--text-sub);
    line-height: 1.6;
    font-size: 0.95rem;
    display: none;
    /* Hidden by default */
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s;
}

.chevron::after {
    content: '⌵';
    font-size: 1.2rem;
    font-weight: 700;
    transform: rotate(0deg);
    display: inline-block;
    transition: transform 0.2s;
}

.faq-item.active .chevron::after {
    transform: rotate(180deg);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

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

.pilot-cta-box p {
    color: var(--text-sub);
    max-width: 600px;
    margin: 0 auto 32px;
}

.pilot-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-pilot {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.95rem;
}

.btn-pilot.primary {
    background: var(--primary-blue);
    color: #0f172a;
    /* dark text on bright blue */
}

.btn-pilot.primary:hover {
    background: #0ea5e9;
}

.btn-pilot.outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}


/* Comparison Section Styles (Three Superpowers) */
.comparison-container {
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 80px;
}

.comparison-card {
    display: flex;
    align-items: center;
    background: #1e293b;
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    min-height: 180px;
}

.problem-side,
.solution-side {
    flex: 1;
    padding: 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.problem-side {
    background: rgba(239, 68, 68, 0.05);
    /* very subtle red tint */
    border-right: 1px solid var(--card-border);
}

.solution-side {
    background: rgba(59, 130, 246, 0.05);
    /* very subtle blue tint */
    position: relative;
}

.connector {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #0f172a;
    border: 1px solid var(--card-border);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-sub);
    z-index: 2;
}

.label-red {
    display: block;
    color: #ef4444;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.label-blue {
    display: block;
    color: #3b82f6;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.comparison-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #fff;
}

.comparison-card p {
    font-size: 0.9rem;
    color: var(--text-sub);
    line-height: 1.5;
}

.icon-sm {
    min-width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-sm.red {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.icon-sm.blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.badge-num {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    background: #38bdf8;
    color: #0f172a;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .comparison-card {
        flex-direction: column;
    }

    .problem-side {
        border-right: none;
        border-bottom: 1px solid var(--card-border);
        width: 100%;
    }

    .solution-side {
        width: 100%;
    }

    .connector {
        top: 50%;
        /* Just leave it or hide it on mobile? Hide is cleaner. */
        display: none;
    }
}