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

:root {
    --bg: #f8f6f3;
    --bg-warm: #f3f0eb;
    --surface: #ffffff;
    --border: rgba(0,0,0,0.08);
    --border-strong: rgba(0,0,0,0.12);
    --text: #1a1a1a;
    --text-secondary: #5c5c5c;
    --text-muted: #8a8a8a;
    --accent: #b8860b;
    --accent-light: rgba(184, 134, 11, 0.1);
    --accent-glow: rgba(184, 134, 11, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Subtle texture overlay */
.texture {
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.02;
    pointer-events: none;
    z-index: 1;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 2rem;
    backdrop-filter: blur(20px);
    background: rgba(248, 246, 243, 0.8);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-mark {
    width: 32px;
    height: 36px;
    flex-shrink: 0;
}

.version-badge {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.25rem 0.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text-muted);
    font-family: 'SF Mono', 'Fira Code', monospace;
}

.nav-cta {
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: var(--text);
    border: 1px solid var(--text);
    color: var(--surface);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-cta:hover {
    background: var(--accent);
    border-color: var(--accent);
}

/* Main Content */
main {
    position: relative;
    z-index: 2;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5rem 2rem 2rem;
    position: relative;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-light);
    border: 1px solid rgba(184, 134, 11, 0.2);
    padding: 0.4rem 0.875rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
}

.badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero h1 {
    font-size: clamp(3.5rem, 14vw, 8rem);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.04em;
    max-width: 1100px;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.4s forwards;
}

/* Animated gradient text */
.hero h1 .gradient {
    background: linear-gradient(
        135deg,
        var(--text) 0%,
        var(--text-secondary) 25%,
        var(--accent) 50%,
        #8b6914 75%,
        var(--text) 100%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.1875rem);
    font-weight: 400;
    color: var(--text-secondary);
    max-width: 540px;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.8s forwards;
}

.btn {
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--text);
    color: var(--surface);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    background: var(--accent);
    box-shadow: 0 4px 16px var(--accent-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border-strong);
}

.btn-secondary:hover {
    background: var(--bg-warm);
    border-color: var(--border-strong);
    transform: translateY(-2px);
}

.btn svg {
    width: 16px;
    height: 16px;
}

/* Waitlist Counter */
.waitlist-counter {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 1s forwards;
}

.waitlist-avatars {
    display: flex;
    align-items: center;
}

.waitlist-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--bg);
    margin-left: -10px;
    background: linear-gradient(135deg, #e0e0e0 0%, #c0c0c0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.waitlist-avatar:first-child {
    margin-left: 0;
}

.waitlist-avatar.count {
    background: var(--accent);
    color: white;
    font-size: 0.625rem;
}

.waitlist-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.waitlist-text strong {
    color: var(--text);
    font-weight: 600;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 1.2s forwards;
}

.scroll-indicator span {
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, var(--text-muted), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* Integrations Section */
.integrations {
    padding: 3rem 2rem;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.integrations-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.integrations-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.integrations-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.integration-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
    transition: opacity 0.2s ease;
    text-decoration: none;
}

.integration-logo:hover {
    opacity: 1;
}

.integration-logo svg {
    height: 24px;
    width: auto;
}

.integration-logo span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em;
}

/* Differentiator Section */
.differentiator {
    padding: 4rem 2rem;
    position: relative;
    background: var(--bg);
}

.diff-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.diff-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.diff-header h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.diff-header p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Comparison Grid */
.comparison {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
    align-items: start;
}

.comparison-col {
    padding: 2rem;
    border-radius: 16px;
    position: relative;
    transition: all 0.3s ease;
}

.comparison-col.old {
    background: var(--surface);
    border: 1px solid var(--border);
}

.comparison-col.new {
    background: linear-gradient(145deg, rgba(184, 134, 11, 0.1) 0%, rgba(212, 160, 23, 0.05) 50%, rgba(255,255,255,0.8) 100%);
    border: 2px solid var(--accent);
    box-shadow:
        0 4px 24px rgba(184, 134, 11, 0.15),
        0 12px 48px rgba(184, 134, 11, 0.1),
        inset 0 1px 0 rgba(255,255,255,0.8);
    padding: 2.5rem 2rem 2rem;
}

.comparison-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--accent) 0%, #d4a017 100%);
    color: white;
    border-radius: 100px;
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
}

.comparison-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comparison-col.old .comparison-label {
    color: var(--text-muted);
}

.comparison-col.new .comparison-label {
    color: var(--accent);
}

.comparison-logo {
    width: 18px;
    height: 20px;
}

.comparison-col h3 {
    font-size: 1.375rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.comparison-col.old h3 {
    color: var(--text-secondary);
}

.comparison-col.new h3 {
    color: var(--text);
    border-bottom-color: rgba(184, 134, 11, 0.2);
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    font-size: 0.9375rem;
    padding: 0.75rem 0;
    line-height: 1.5;
}

.comparison-col.old .comparison-list li {
    color: var(--text-muted);
}

.comparison-col.new .comparison-list li {
    color: var(--text);
    font-weight: 450;
}

.comparison-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.comparison-col.old .comparison-icon {
    background: rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.08);
}

.comparison-col.old .comparison-icon svg {
    width: 10px;
    height: 10px;
    color: var(--text-muted);
}

.comparison-col.new .comparison-icon {
    background: linear-gradient(135deg, var(--accent) 0%, #d4a017 100%);
    box-shadow: 0 2px 6px rgba(184, 134, 11, 0.3);
}

.comparison-col.new .comparison-icon svg {
    width: 12px;
    height: 12px;
    color: white;
}

.comparison-cta {
    display: block;
    width: 100%;
    margin-top: 1.5rem;
    padding: 1rem;
    text-align: center;
    background: var(--text);
    color: var(--surface);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.comparison-cta:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(184, 134, 11, 0.3);
}

/* Philosophy Points */
.philosophy {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.philosophy-item {
    background: var(--surface);
    padding: 1.75rem 1.5rem;
    text-align: center;
}

.philosophy-item h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.philosophy-item h4 span {
    color: var(--accent);
}

.philosophy-item p {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Early Access Section */
.early-access {
    padding: 4rem 2rem;
    position: relative;
    background: var(--surface);
}

.early-access::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto;
}

/* Cards Grid */
.cards-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.card:first-child .card-icon {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.15) 0%, rgba(184, 134, 11, 0.05) 100%);
    border: 1px solid rgba(184, 134, 11, 0.25);
}

.card:first-child .card-icon svg {
    color: var(--accent);
}

.card:last-child .card-icon {
    background: linear-gradient(135deg, rgba(90, 90, 90, 0.15) 0%, rgba(90, 90, 90, 0.05) 100%);
    border: 1px solid rgba(90, 90, 90, 0.2);
}

.card:last-child .card-icon svg {
    color: var(--text-secondary);
}

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

.card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.card > p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.card-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    padding: 0.35rem 0;
}

.card-features li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--text-muted);
    border-radius: 50%;
}

/* Form Styles */
.card-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.card-form.submitted {
    display: none;
}

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

.input-group {
    position: relative;
}

.input-group label {
    position: absolute;
    top: 0.625rem;
    left: 0.875rem;
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.2s ease;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 1.625rem 0.875rem 0.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text);
    font-family: inherit;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    outline: none;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: var(--accent);
    background: var(--surface);
    box-shadow: 0 0 0 3px var(--accent-light);
}

.input-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%238a8a8a' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.875rem center;
}

.input-group textarea {
    min-height: 60px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 0.875rem;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    margin-top: 0.25rem;
    position: relative;
    overflow: hidden;
}

.card:first-child .submit-btn {
    background: linear-gradient(135deg, var(--accent) 0%, #d4a017 100%);
    color: white;
}

.card:first-child .submit-btn:hover {
    box-shadow: 0 4px 16px var(--accent-glow);
    transform: translateY(-2px);
}

.card:last-child .submit-btn {
    background: var(--text);
    color: var(--surface);
    border: 1px solid var(--text);
}

.card:last-child .submit-btn:hover {
    background: var(--text-secondary);
    border-color: var(--text-secondary);
}

/* Success State */
.success-state {
    display: none;
    text-align: center;
    padding: 2rem 1rem;
}

.success-state.active {
    display: block;
    animation: fadeUp 0.5s ease;
}

.success-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.05) 100%);
    border: 1px solid rgba(34, 197, 94, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.success-icon svg {
    width: 28px;
    height: 28px;
    color: #16a34a;
}

.success-state h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.success-state p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.success-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.success-meta svg {
    width: 14px;
    height: 14px;
}

/* Footer */
footer {
    padding: 2.5rem 2rem;
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
}

.footer-logo-mark {
    width: 22px;
    height: 24px;
}

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

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

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

.footer-link {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--accent);
}

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

.footer-copyright {
    font-size: 0.6875rem;
    color: var(--text-muted);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        padding: 0.75rem 1rem;
    }

    .nav-inner {
        gap: 0.5rem;
    }

    .nav-left {
        gap: 0.5rem;
    }

    .logo {
        font-size: 0.8125rem;
    }

    .logo-mark {
        width: 26px;
        height: 30px;
    }

    .version-badge {
        font-size: 0.5625rem;
        padding: 0.2rem 0.4rem;
    }

    .nav-cta {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
        white-space: nowrap;
    }

    .integrations-grid {
        gap: 2rem;
    }

    .integration-logo span {
        font-size: 0.875rem;
    }

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

    .comparison-col.new {
        order: -1;
    }

    .comparison-col {
        padding: 1.75rem 1.5rem;
    }

    .comparison-col.new {
        padding: 2.25rem 1.5rem 1.75rem;
    }

    .comparison-col h3 {
        font-size: 1.25rem;
    }

    .comparison-list li {
        font-size: 0.875rem;
        padding: 0.625rem 0;
    }

    .comparison-icon {
        width: 20px;
        height: 20px;
    }

    .comparison-cta {
        padding: 0.875rem;
        font-size: 0.875rem;
    }

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

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

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

    .hero {
        padding-top: 5rem;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 12vw, 4.5rem);
    }

    .card {
        padding: 1.5rem;
    }

    .footer-inner {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        text-align: center;
    }

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

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

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .differentiator,
    .early-access {
        padding: 3rem 1.5rem;
    }

    .waitlist-counter {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Extra small screens */
@media (max-width: 380px) {
    nav {
        padding: 0.625rem 0.75rem;
    }

    .logo {
        font-size: 0.75rem;
    }

    .logo-mark {
        width: 22px;
        height: 26px;
    }

    .version-badge {
        display: none;
    }

    .nav-cta {
        font-size: 0.6875rem;
        padding: 0.35rem 0.625rem;
    }

    .hero {
        padding: 4.5rem 1rem 2rem;
    }

    .hero h1 {
        font-size: clamp(2rem, 14vw, 3rem);
    }

    .hero-sub {
        font-size: 0.9375rem;
    }

    .badge {
        font-size: 0.6875rem;
        padding: 0.3rem 0.75rem;
    }

    .btn {
        font-size: 0.8125rem;
        padding: 0.75rem 1.25rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .waitlist-avatars {
        transform: scale(0.9);
    }

    .waitlist-text {
        font-size: 0.8125rem;
    }

    .integrations {
        padding: 2rem 1rem;
    }

    .integrations-grid {
        gap: 1.25rem;
    }

    .integration-logo span {
        font-size: 0.75rem;
    }

    .integration-logo svg {
        height: 20px;
    }

    .differentiator,
    .early-access {
        padding: 2.5rem 1rem;
    }

    .section-header h2,
    .diff-header h2 {
        font-size: 1.375rem;
    }

    .section-header p,
    .diff-header p {
        font-size: 0.875rem;
    }

    .card {
        padding: 1.25rem;
    }

    .footer-inner {
        padding: 0;
    }

    .footer-links {
        gap: 0.375rem;
    }

    .footer-link {
        font-size: 0.75rem;
    }

    .footer-divider {
        font-size: 0.625rem;
    }
}
