/* 
  BytSpend - Information-Rich Vercel/Linear Aesthetic
*/

:root {
    --bg-main: #ffffff;
    --bg-slate-50: #fafafa;
    --bg-slate-100: #f4f4f5;

    --text-dark: #09090b;
    --text-muted: #71717a;
    --text-light: #a1a1aa;

    --border-color: #e4e4e7;

    --accent: #18181b;
    /* Pure black/dark grey for Vercel-like primary */
    --accent-hover: #27272a;
    --accent-soft: #f4f4f5;

    --danger: #ef4444;
    --danger-soft: #fef2f2;

    --blue: #3b82f6;
    --blue-soft: #eff6ff;

    --indigo: #6366f1;
    --indigo-soft: #eef2ff;

    --font-sans: 'Inter', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --container-max: 1100px;
}

[data-theme="dark"] {
    --bg-main: #09090b;
    --bg-slate-50: #121214;
    --bg-slate-100: #18181b;

    --text-dark: #fafafa;
    --text-muted: #a1a1aa;
    --text-light: #71717a;

    --border-color: #27272a;

    --accent: #ffffff;
    --accent-hover: #e4e4e7;
    --accent-soft: #27272a;

    --danger-soft: #451a1a;
    --blue-soft: #1e3a8a;
    --indigo-soft: #312e81;
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-dark);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration-color: var(--border-color);
    transition: color 0.2s, text-decoration-color 0.2s;
}

a:hover {
    color: var(--accent);
}

/* Utilities */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 6rem 0;
}

.border-b {
    border-bottom: 1px solid var(--border-color);
}

.border-t {
    border-top: 1px solid var(--border-color);
}

.border {
    border: 1px solid var(--border-color);
}

.rounded-lg {
    border-radius: 8px;
}

.rounded-xl {
    border-radius: 12px;
}

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

/* Typography */
h1,
h2,
h3,
h4 {
    letter-spacing: -0.02em;
    font-weight: 700;
    line-height: 1.2;
}

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

.text-accent {
    color: var(--accent);
}

.text-danger {
    color: var(--danger);
}

.text-blue {
    color: var(--blue);
}

.text-indigo {
    color: var(--indigo);
}

.text-muted {
    color: var(--text-muted);
}

.font-mono {
    font-family: var(--font-mono);
}

.text-sm {
    font-size: 0.875rem;
}

.text-xs {
    font-size: 0.75rem;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

/* Layout Helpers */
.flex {
    display: flex;
}

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

.justify-between {
    justify-content: space-between;
}

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

.flex-wrap {
    flex-wrap: wrap;
}


.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-x-12 {
    column-gap: 3rem;
}

.gap-y-6 {
    row-gap: 1.5rem;
}


.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-20 {
    margin-bottom: 5rem;
}

.mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.opacity-40 {
    opacity: 0.4;
}

.grayscale {
    filter: grayscale(1);
}


.pt-1 {
    padding-top: 0.25rem;
}

.pt-2 {
    padding-top: 0.5rem;
}

.pb-2 {
    padding-bottom: 0.5rem;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.pb-5 {
    padding-bottom: 1.25rem;
}

.py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.space-y-2>*+* {
    margin-top: 0.5rem;
}

.space-y-3>*+* {
    margin-top: 0.75rem;
}

.max-w-sm {
    max-width: 24rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.w-4 {
    width: 1rem;
}

.h-4 {
    height: 1rem;
}

.w-5 {
    width: 1.25rem;
}

.h-5 {
    height: 1.25rem;
}

.w-full {
    width: 100%;
}

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

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

.hidden {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.transition-transform {
    transition: transform 0.2s;
}

.hover\:-translate-y-1:hover {
    transform: translateY(-0.25rem);
}

.hover\:text-dark:hover {
    color: var(--text-dark);
}

.no-underline {
    text-decoration: none;
}

/* Colors Bg */
.bg-white {
    background-color: var(--bg-main);
}

.bg-slate {
    background-color: var(--bg-slate-100);
}

.bg-slate-50 {
    background-color: var(--bg-slate-50);
}

.bg-slate-100 {
    background-color: var(--bg-slate-100);
}

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

.bg-accent-soft {
    background-color: var(--accent-soft);
}

.bg-danger-soft {
    background-color: var(--danger-soft);
}

.bg-blue-soft {
    background-color: var(--blue-soft);
}

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

.bg-indigo-soft {
    background-color: var(--indigo-soft);
}

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

.bg-red-100 {
    background-color: #fee2e2;
    color: #dc2626;
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--bg-main);
    border-bottom: 1px solid var(--border-color);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.1rem;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    /* Reduced from 2rem for tighter feel */
}

.nav-links.gap-8 {
    gap: 2rem;
}

/* Logo Marquee Animation */
.logo-marquee-container {
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-marquee {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 3rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
    filter: grayscale(1);
    opacity: 0.5;
}

.logo-item svg {
    height: 28px;
    width: auto;
    max-width: 120px;
    transition: all 0.4s ease;
}

.logo-item:hover {
    filter: grayscale(0);
    opacity: 1;
    color: var(--text-dark);
    transform: scale(1.05);
}

.logo-text {
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: -0.01em;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

.theme-toggle-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.2s;
}

.theme-toggle-btn:hover {
    background-color: var(--bg-slate-50);
    color: var(--text-dark);
}

.theme-toggle-btn svg {
    width: 20px;
    height: 20px;
}

[data-theme="dark"] .icon-moon {
    display: none;
}

[data-theme="light"] .icon-sun {
    display: none;
}

/* Fallback if no theme is strictly set yet but defaults to light */
:root:not([data-theme="dark"]) .icon-sun {
    display: none;
}

/* Buttons & Inputs */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.875rem;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
    text-decoration: none;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg-main);
}

.btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.form-input {
    width: 100%;
    background: var(--bg-main);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.form-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
    background: var(--bg-slate-100);
    color: var(--text-muted);
    border-radius: 4px;
    font-weight: 500;
}

/* Hero Section */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.pill-dot {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.hero-heading {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-sub {
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 480px;
}

.waitlist-form {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    max-width: 450px;
}

/* Visual Comparison Card (Dumb vs Smart) */
.comparison-card {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.comparison-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.1);
}

/* Glassmorphism for Smart Side */
.comp-smart {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    backdrop-filter: blur(4px);
}

[data-theme="dark"] .comp-smart {
    background: linear-gradient(135deg, rgba(24, 24, 27, 0.8) 0%, rgba(9, 9, 11, 0.9) 100%);
}

.comp-half {
    padding: 1.5rem;
}

.comp-dumb {
    background: var(--bg-slate-50);
}

.comp-header {
    margin-bottom: 1rem;
}

.sms-bubble {
    background: var(--bg-slate-50);
    border: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: 8px 8px 8px 0;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.comp-caption {
    font-size: 0.8rem;
    font-weight: 500;
}

.comp-divider {
    position: relative;
    height: 1px;
    width: 100%;
}

.divider-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--border-color);
}

.divider-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    padding: 0.2rem 0.5rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    z-index: 2;
}

/* Pipeline Section */
.section-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.pipeline-grid {
    display: grid;
    grid-template-columns: 1fr 20px 1fr 20px 1fr;
    gap: 1rem;
    align-items: start;
}

.pipeline-step {
    padding: 1rem;
}

.step-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-sm);
}

.step-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.step-num {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    text-align: center;
}

.step-title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    text-align: center;
}

.step-desc {
    font-size: 0.95rem;
    text-align: center;
    line-height: 1.6;
}

.pipeline-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

/* Features Section */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-row.flex-rev .feature-text {
    order: 1;
    margin-left: 3rem;
    padding-right: 0;
}

.feature-row.flex-rev .feature-visual {
    order: 0;
}

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

.feature-icon svg {
    width: 20px;
    height: 20px;
}

.feature-text h2 {
    font-size: 2rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.feature-list svg {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

/* Calendar Widget */
.calendar-widget {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

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

.calendar-month {
    font-size: 0.9rem;
    font-weight: 700;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    text-align: center;
}

.calendar-day-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.calendar-date {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    border-radius: 6px;
    position: relative;
    cursor: default;
}

.calendar-date.has-event {
    background: var(--accent-soft);
    font-weight: 600;
}

.event-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--danger);
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
}

.calendar-events {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-slate-50);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.event-date-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 32px;
}

.event-day {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--text-light);
}

.event-num {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
}

.event-info {
    flex-grow: 1;
}

.event-name {
    font-size: 0.8rem;
    font-weight: 600;
}

.event-amount {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* FAQ Accordion */
.accordion-header {
    background: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    font-family: inherit;
    color: var(--text-dark);
}

.accordion-header:hover {
    color: var(--accent);
}

.accordion-header.active svg {
    transform: rotate(180deg);
}

/* Animation / Spinner */
.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid var(--border-color);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.fade-in {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

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

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

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

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

/* Responsive */
@media(max-width: 900px) {
    .desktop-only {
        display: none !important;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-heading {
        font-size: 2.5rem;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .waitlist-form {
        flex-direction: column;
        margin: 0 auto;
    }

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

    .trust-row {
        justify-content: center;
        flex-direction: column;
        gap: 0.25rem;
    }

    .pipeline-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-row,
    .feature-row.flex-rev {
        grid-template-columns: 1fr;
    }

    /* New Sections */
    .logo-grid span {
        letter-spacing: -0.01em;
        user-select: none;
    }

    .insight-spotlight-card {
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .insight-spotlight-card:hover {
        transform: scale(1.02);
    }

    .insight-bubble {
        width: 280px;
        animation: float 4s ease-in-out infinite;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-5px);
        }
    }

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

    .bg-green {
        background-color: #10b981;
        color: white !important;
    }

    .text-bg-main {
        color: var(--bg-main);
    }

    .rounded-2xl {
        border-radius: 1rem;
    }


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


    /* Responsive fixes for new sections */
    @media(max-width: 900px) {

        .roadmap-grid,
        .grid-3,
        .grid-4 {
            grid-template-columns: 1fr;
        }

        .insight-spotlight-card {
            flex-direction: column;
            text-align: center;
        }

        .insight-bubble {
            margin: 0 auto;
        }
    }

    .feature-row.flex-rev .feature-text {
        order: 0;
        margin-left: 0;
    }

    .feature-row.flex-rev .feature-visual {
        order: 1;
    }

    .feature-text.pr-12,
    .feature-text.pl-12 {
        padding: 0;
    }
}

/* New Sections - Global Styles */
.logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem 3rem;
    /* row-gap column-gap */
    opacity: 0.4;
    filter: grayscale(1);
    margin-top: 2rem;
}

.logo-grid span {
    letter-spacing: -0.01em;
    user-select: none;
}

.insight-spotlight-card {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.insight-spotlight-card:hover {
    transform: scale(1.02);
}

.insight-bubble {
    width: 280px;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

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

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

.bg-green {
    background-color: #10b981;
    color: white !important;
}

.text-bg-main {
    color: var(--bg-main);
}

.rounded-2xl {
    border-radius: 1rem;
}

/* Bottom CTA Redesign */
.bottom-cta {
    padding-bottom: 6rem;
}

.cta-card {
    position: relative;
    background: linear-gradient(135deg, #09090b 0%, #1e1b4b 100%);
    border-radius: 24px;
    padding: 5rem 2rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.cta-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.glow-1 {
    top: -150px;
    right: -50px;
}

.glow-2 {
    bottom: -150px;
    left: -50px;
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.cta-desc {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
}

.btn-white {
    background: #ffffff;
    color: #000000;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    background: #f4f4f5;
}

[data-theme="dark"] .cta-card {
    background: linear-gradient(135deg, #020617 0%, #1e1b4b 100%);
    border-color: rgba(255, 255, 255, 0.05);
}

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


/* Responsive fixes for new sections */
@media(max-width: 900px) {

    .roadmap-grid,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .insight-spotlight-card {
        flex-direction: column;
        text-align: center;
    }

    .insight-bubble {
        margin: 0 auto;
    }

    .logo-grid {
        gap: 1.5rem;
    }
}