/* ===== CSS VARIABLES - V2 ===== */
:root {
    /* Brand Colors - Refined */
    --primary: #2F73B4;
    --primary-dark: #1a4d80;
    --primary-light: #5c9ce6;
    --primary-soft: rgba(47, 115, 180, 0.08);

    /* Neutral Colors */
    --bg-body: #ffffff;
    --bg-surface: #f8fafc;
    --bg-surface-2: #f1f5f9;

    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --text-on-primary: #ffffff;

    /* Accents */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;

    /* Spacing */
    --space-xs: 0.5rem;
    /* 8px */
    --space-sm: 1rem;
    /* 16px */
    --space-md: 1.5rem;
    /* 24px */
    --space-lg: 2rem;
    /* 32px */
    --space-xl: 3rem;
    /* 48px */
    --space-2xl: 5rem;
    /* 80px */
    --space-3xl: 8rem;
    /* 128px */

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Borders & Shadows */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --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-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 40px rgba(47, 115, 180, 0.15);

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

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

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

ul {
    list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: 1.5rem;
}

p {
    color: var(--text-muted);
    font-size: 1.125rem;
    line-height: 1.7;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

/* ===== LAYOUT ===== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

section {
    padding: var(--space-2xl) 0;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(47, 115, 180, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(47, 115, 180, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--text-main);
    border: 1px solid var(--bg-surface-2);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.nav-logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-links {
    display: flex;
    gap: var(--space-lg);
}

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

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

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

/* ===== HERO ===== */
.hero {
    padding-top: calc(var(--header-height) + var(--space-xl));
    padding-bottom: var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.hero-bg-blob {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(47, 115, 180, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

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

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.hero h1 {
    margin-bottom: var(--space-md);
}

.hero p {
    max-width: 600px;
    margin: 0 auto var(--space-lg);
    font-size: 1.25rem;
}

.hero-buttons {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    margin-bottom: var(--space-2xl);
}

.hero-visual {
    position: relative;
    margin-top: var(--space-lg);
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.hero-mockup {
    max-width: 280px;
    border-radius: 40px;
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border: 8px solid white;
    position: relative;
    z-index: 2;
}

.hero-floating-card {
    position: absolute;
    background: white;
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 6s ease-in-out infinite;
}

.card-left {
    top: 20%;
    left: 50%;
    transform: translateX(-220px);
}

.card-right {
    bottom: 20%;
    right: 50%;
    transform: translateX(220px);
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(var(--tx, 0), 0);
    }

    50% {
        transform: translate(var(--tx, 0), -15px);
    }
}

/* ===== HOW IT WORKS (THE LOOP) ===== */
.loop-section {
    background: var(--bg-surface);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
}

.loop-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    position: relative;
}

/* Connecting line */
.loop-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
    z-index: 0;
    opacity: 0.3;
}

.step-card {
    background: white;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

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

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: 2rem;
    color: var(--primary);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* ===== FEATURE ROWS (ZIGZAG) ===== */
.features-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-3xl);
    max-width: 1000px;
    margin: 0 auto;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

/* If grid support is tricky with order, we can use flex or just swap columns in HTML. 
   But grid is fine. Let's use flex for easier ordering control on mobile too. */
.feature-row {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.feature-reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-icon-small {
    width: 48px;
    height: 48px;
    background: var(--bg-surface);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    color: var(--primary);
}

.feature-text h3 {
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
}

.feature-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.feature-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

/* "Compact" screenshots */
.feature-mockup {
    max-width: 280px;
    /* Smaller than full width */
    width: 100%;
    border-radius: 32px;
    box-shadow: var(--shadow-xl), 0 0 0 8px white;
    /* Frame */
    transition: transform 0.3s ease;
}

.feature-row:hover .feature-mockup {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 0 8px white, var(--shadow-glow);
}

/* Decorative blobs behind images */
.feature-blob {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
    filter: blur(40px);
}

.blob-blue {
    background: #bfdbfe;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.blob-green {
    background: #bbf7d0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.blob-purple {
    background: #e9d5ff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.blob-yellow {
    background: #fef08a;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 768px) {

    .feature-row,
    .feature-reverse {
        flex-direction: column;
        text-align: center;
        gap: var(--space-lg);
    }

    .feature-icon-small {
        margin: 0 auto var(--space-md);
    }

    .feature-reverse .feature-text {
        order: 0;
    }

    .feature-reverse .feature-image-container {
        order: 1;
    }
}

/* ===== COMPARISON ===== */
.comparison-table-wrapper {
    overflow-x: auto;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: var(--space-md);
    text-align: left;
    border-bottom: 1px solid var(--bg-surface-2);
}

th {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

td {
    font-weight: 500;
}

.col-feature {
    width: 40%;
}

.col-app {
    width: 20%;
    text-align: center;
}

.col-highlight {
    background: var(--primary-soft);
    color: var(--primary);
    font-weight: 700;
    border-bottom-color: rgba(47, 115, 180, 0.1);
}

.check {
    color: var(--success);
}

.cross {
    color: var(--text-light);
    opacity: 0.5;
}

/* ===== CTA ===== */
.cta-section {
    background: var(--primary);
    color: white;
    text-align: center;
    border-radius: var(--radius-xl);
    margin: var(--space-2xl) auto;
    padding: var(--space-3xl) var(--space-md);
    max-width: 1000px;
}

.cta-section h2 {
    color: white;
    margin-bottom: var(--space-md);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-lg);
}

.cta-section .btn-secondary {
    background: white;
    color: var(--primary);
    border: none;
}

/* ===== FOOTER ===== */
footer {
    border-top: 1px solid var(--bg-surface-2);
    padding: var(--space-2xl) 0;
    background: var(--bg-surface);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    margin-left: var(--space-lg);
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

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

    .span-4 {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {

    /* Hide detail text in comparison table on mobile */
    .detail-text {
        display: none;
    }

    header {
        height: 64px;
    }

    .nav-container {
        padding: 0 var(--space-sm);
    }

    .logo {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: var(--space-sm);
        font-size: 0.85rem;
    }

    /* Hide some nav links on mobile to reduce crowding */
    .nav-links a[href="#how-it-works"],
    .nav-links a[href="#features"] {
        display: none;
    }

    .nav-links a:not(.btn) {
        padding: 0.5rem 0.75rem;
    }

    .nav-links .btn {
        padding: 0.6rem 1rem !important;
        font-size: 0.85rem !important;
        color: white !important;
    }

    h1 {
        font-size: 2.5rem;
    }

    .hero-visual {
        gap: var(--space-md);
    }

    .hero-mockup {
        max-width: 240px;
    }

    .hero-floating-card {
        display: none;
    }

    .loop-steps {
        grid-template-columns: 1fr;
    }

    .loop-steps::before {
        display: none;
    }

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

    .span-2,
    .span-4 {
        grid-column: span 1;
    }

    .row-2 {
        grid-row: auto;
    }

    .footer-content {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .footer-links a {
        margin: 0 var(--space-sm);
    }
}

@media (max-width: 480px) {
    header {
        height: 60px;
    }

    .logo {
        font-size: 1rem;
    }

    .nav-links {
        gap: var(--space-xs);
        font-size: 0.8rem;
    }

    /* Hide Compare link on very small screens */
    .nav-links a[href="#comparison"] {
        display: none;
    }

    .nav-links .btn {
        padding: 0.55rem 1rem !important;
        font-size: 0.8rem !important;
        color: white !important;
    }

    h1 {
        font-size: 2rem;
    }

    .hero-mockup {
        max-width: 200px;
    }
}

/* ===== CTA / COMING SOON ===== */
.cta-section-wrapper {
    background: linear-gradient(135deg, #2F73B4 0%, #1e5a8e 100%);
    position: relative;
    overflow: hidden;
    padding: var(--space-3xl) 0;
    color: white;
}

/* Decorative background elements */
.cta-bg-circle-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    top: -200px;
    right: -100px;
    z-index: 0;
}

.cta-bg-circle-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    bottom: -150px;
    left: -50px;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-icon-wrapper {
    /* Removed fixed width/height and background to let the icon stand alone */
    display: inline-block;
    margin-bottom: var(--space-lg);
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.cta-app-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    /* Optional: slight border to make it pop against the dark bg if needed */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-section-wrapper:hover .cta-icon-wrapper {
    transform: rotate(0deg) scale(1.05);
}

/* ===== SMART SETTLEMENTS VISUALIZATION ===== */
.settlement-card {
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.settlement-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.person {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.avatar-1 {
    background: #FF9F1C;
}

.avatar-2 {
    background: #FF6B6B;
}

.avatar-3 {
    background: #2EC4B6;
}

.avatar-4 {
    background: #E71D36;
}

.name {
    font-weight: 600;
    font-size: 0.95rem;
    color: white;
}

.action {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
}

.pay-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: -4px;
}

.arrow {
    font-size: 1.2rem;
    line-height: 1;
}

.amount {
    font-weight: 700;
    color: var(--success);
    font-size: 1rem;
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
}

@media (max-width: 480px) {
    .settlement-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .amount {
        width: 100%;
        text-align: center;
        margin-top: 0.25rem;
    }
}

/* ===== OLD WAY VISUALIZATION ===== */
.old-way-card {
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.messy-list-container {
    width: 200px;
    height: 180px;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0.9;
    /* Increased from 0.5 */
    /* margin: 1rem auto 0; Removed centering as parent handles it */
}

.messy-row {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
    /* Increased from 0.75rem */
    color: rgba(255, 255, 255, 0.9);
    /* Increased from 0.7 */
    white-space: nowrap;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
    padding-bottom: 2px;
}

.settlements-comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-lg);
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-top: 4rem;
    /* Push down to align roughly with the middle of the visual elements */
    color: rgba(255, 255, 255, 0.4);
}

.separator-arrow {
    width: 32px;
    height: 32px;
}

@media (max-width: 768px) {
    .settlements-comparison-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .comparison-separator {
        padding-top: 0;
        transform: rotate(90deg);
    }
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.app-store-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1.75rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: default;
}

.app-store-badge:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

.app-store-text {
    text-align: left;
    line-height: 1.2;
}

.app-store-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.app-store-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

/* ===== WAITLIST FORM ===== */
.waitlist-form {
    max-width: 500px;
    margin: 2rem auto 0;
}

.form-group {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.waitlist-input {
    flex: 1;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.waitlist-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.waitlist-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.waitlist-submit {
    padding: 1rem 2rem;
    white-space: nowrap;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

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

.spinner {
    animation: spin 1s linear infinite;
}

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

.form-message {
    text-align: center;
    font-size: 0.95rem;
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

@media (max-width: 600px) {
    .form-group {
        flex-direction: column;
    }

    .waitlist-submit {
        width: 100%;
    }
}