﻿/* CSS RESET & VARIABLES */
        :root {
            --flow-blue: #0A64BC;
            --blue-light: #1A7FE0;
            --blue-pale: #EBF3FC;
            --flowy-amber: #E8830A;
            --flowy-green: #2EB67D;
            --ink-900: #0D0D0D;
            --ink-700: #3A3A3C;
            --ink-500: #5F5F64; 
            --ink-300: #7A7A80; 
            --page-bg: #F4F5F7;
            --white: #FFFFFF;
        }

        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--page-bg);
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: var(--ink-900);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
            position: relative;
        }

        /* AMBIENT LIGHTING */
        .hero-ambient {
            position: absolute;
            top: -20%;
            left: 50%;
            transform: translateX(-50%);
            width: 140%;
            height: 70%;
            background: radial-gradient(ellipse at 50% 40%, rgba(10,100,188,0.07) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }

        .tagline-ambient {
            position: absolute;
            bottom: -10%;
            right: -10%;
            width: 60%;
            height: 60%;
            background: radial-gradient(ellipse, rgba(10,100,188,0.04) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }

        /* SEAMLESS DIVIDER */
        .section-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.06) 50%, transparent 100%);
            width: 100%;
            max-width: 1000px;
            margin: 0 auto;
        }

        /* TYPOGRAPHY */
        .headline {
            font-size: 52px;
            font-weight: 800;
            color: var(--ink-900);
            letter-spacing: -2.5px;
            line-height: 1.08;
        }

        .sub-headline {
            font-size: 19px;
            font-weight: 400;
            color: var(--ink-500);
            letter-spacing: -0.2px;
            line-height: 1.7;
        }

        .eyebrow {
            font-family: 'DM Mono', monospace;
            font-size: 11px;
            font-weight: 400;
            color: var(--ink-300);
            letter-spacing: 3px;
            text-transform: uppercase;
            text-align: center;
            margin-bottom: 40px;
        }

        .card-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--ink-900);
            letter-spacing: -0.4px;
            line-height: 1.3;
            margin-bottom: 8px;
            text-wrap: balance;
        }

        .card-body {
            font-size: 15px;
            font-weight: 400;
            color: var(--ink-500);
            letter-spacing: 0;
            line-height: 1.7;
            text-wrap: pretty;
        }

        .card-body strong {
            color: var(--ink-900);
            font-weight: 600;
        }

        .card-body a {
            color: var(--flow-blue);
            text-decoration: underline;
            text-decoration-thickness: 1px;
            text-underline-offset: 2px;
        }

        .tagline {
            font-size: 44px;
            font-weight: 800;
            color: var(--ink-900);
            letter-spacing: -2px;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .tagline-sub {
            font-size: 17px;
            font-weight: 400;
            color: var(--ink-500);
            letter-spacing: 0;
            line-height: 1.7;
            margin-bottom: 36px;
        }

        .small-text {
            font-size: 13px;
            font-weight: 400;
            color: var(--ink-300);
            line-height: 1.5;
            margin-top: 14px;
        }

        /* LAYOUT */
        .container {
            max-width: 920px;
            margin: 0 auto;
            padding: 0 48px;
            position: relative;
            z-index: 2;
        }

        section {
            padding-top: 120px;
            padding-bottom: 120px;
            position: relative;
        }

        .text-center {
            text-align: center;
        }

        /* NAVIGATION */
        .site-nav {
            position: sticky;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            padding: 24px 0;
            transition: background-color 0.2s, padding 0.2s, box-shadow 0.2s;
        }

        .nav-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 18px;
            font-weight: 700;
            color: var(--ink-900);
            letter-spacing: -0.5px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
        }

        .logo-img {
            height: 35px; /* Increased by 25% from 28px */
            width: auto;
            margin-right: 10px;
            border-radius: 4px;
            transform: translateY(1px);
        }

        .footer .logo-img {
            height: 25px; /* Increased by 25% from 20px */
            filter: grayscale(100%);
            opacity: 0.6;
        }

        .nav-link {
            font-size: 15px;
            font-weight: 600;
            color: var(--flow-blue);
            text-decoration: none;
            transition: color 0.15s;
        }
        
        .nav-link:hover {
            color: var(--blue-light);
        }

        /* STICKY NAV STATE (Level 3 Glass) */
        .site-nav.is-sticky {
            padding: 16px 0;
            background: rgba(255, 255, 255, 0.86);
            box-shadow: 0 1px 0 0 rgba(255,255,255,0.80) inset, 0 1px 0 rgba(0,0,0,0.06);
        }

        /* GLASS MATERIAL BASE */
        .glass {
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.70);
            border-radius: 20px;
        }

        .glass::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                135deg, 
                rgba(255,255,255,0.50) 0%, 
                rgba(255,255,255,0.10) 40%, 
                transparent 60%
            );
            pointer-events: none;
            border-radius: inherit;
            z-index: 0;
        }

        .glass > * {
            position: relative;
            z-index: 1;
        }

        /* LIVE WAITLIST STAT */
        .live-stat {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 20px;
            padding: 8px 16px;
            background: rgba(255, 255, 255, 0.72);
            border: 1px solid rgba(0, 0, 0, 0.05);
            border-radius: 20px;
        }

        .pulse-dot {
            width: 8px;
            height: 8px;
            background-color: var(--flowy-green);
            border-radius: 50%;
            position: relative;
        }

        .pulse-dot::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            background-color: var(--flowy-green);
            opacity: 0.4;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(0.5); opacity: 0.8; }
            100% { transform: scale(1.5); opacity: 0; }
        }

        .stat-text {
            font-size: 13px;
            font-weight: 500;
            color: var(--ink-700);
        }

        .stat-text strong {
            color: var(--ink-900);
            font-weight: 700;
            transition: color 0.3s ease;
        }

        .stat-text strong.just-updated {
            color: var(--flowy-green);
        }

        /* LEVEL 1 GLASS (Cards) */
        .glass-l1 {
            background: rgba(255, 255, 255, 0.72);
            box-shadow: 
                0 1px 0 0 rgba(255,255,255,0.80) inset,
                0 0 0 0.5px rgba(0,0,0,0.05),
                0 8px 32px rgba(0,0,0,0.06);
        }

        /* COMPONENTS */
        .card {
            padding: 32px;
            display: flex;
            flex-direction: column;
            text-align: left;
        }

        .step-num {
            font-family: 'DM Mono', monospace;
            font-size: 13px;
            font-weight: 400;
            margin-bottom: 16px;
        }

        .step-num.c-01 { color: var(--flow-blue); }
        .step-num.c-02 { color: var(--flowy-amber); }
        .step-num.c-03 { color: var(--flowy-green); }

        .cards-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .cards-3 .card {
            align-self: stretch;
        }

        /* STAGGERED LIST (For Why It Works) */
        .staggered-list {
            display: flex;
            flex-direction: column;
            gap: 48px;
            max-width: 800px;
            margin: 0 auto;
        }

        .staggered-item {
            width: 75%;
        }

        .staggered-item:nth-child(odd) {
            align-self: flex-start;
        }

        .staggered-item:nth-child(even) {
            align-self: flex-end;
        }

        /* PHONE ANIMATION COMPONENTS */
        .phone-frame {
            width: 280px;
            aspect-ratio: 9 / 19.5;
            background: #2C2E34;
            border-radius: 40px;
            padding: 5px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.12);
            position: relative;
            overflow: hidden;
        }
        
        .phone-screen {
            width: 100%;
            height: 100%;
            border-radius: 36px;
            overflow: hidden;
            position: relative;
            isolation: isolate;
            background: linear-gradient(
                180deg,
                #c6d7eb 0%,
                #c6d7eb 8.5%,
                #f7f8fb 8.5%,
                #f7f8fb 100%
            );
        }
        
        .phone-screen img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            opacity: 0;
            transform: translate3d(0, 10px, 0) scale(1.01);
            backface-visibility: hidden;
            transition:
                opacity 0.95s cubic-bezier(0.25, 0.1, 0.25, 1),
                transform 1.05s cubic-bezier(0.22, 1, 0.36, 1);
        }
        
        .phone-screen img.active {
            opacity: 1;
            transform: translate3d(0, 0, 0) scale(1);
        }

        /* FORMS & INPUTS */
        .form-group {
            display: grid;
            grid-template-areas: "inner";
            max-width: 440px;
            position: relative;
        }

        .email-input {
            flex: 1;
            background: rgba(255, 255, 255, 0.68);
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 12px;
            padding: 15px 20px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 15px;
            font-weight: 400;
            color: var(--ink-900);
            outline: none;
            transition: border 0.15s, box-shadow 0.15s;
            box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
            width: 100%;
        }

        .email-input::placeholder {
            color: var(--ink-300);
        }

        .email-input:focus {
            border-color: rgba(10,100,188,0.40);
            box-shadow: 0 0 0 3px rgba(10,100,188,0.10);
        }

        .cta-button {
            flex: none;
            background: var(--flow-blue);
            color: var(--white);
            border: none;
            border-radius: 12px;
            padding: 15px 32px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.15s, box-shadow 0.15s, transform 0.1s ease;
            white-space: nowrap;
            -webkit-appearance: none;
        }

        .cta-button:hover {
            background: var(--blue-light);
            box-shadow: 0 4px 20px rgba(10,100,188,0.30);
        }

        .cta-button:active {
            transform: scale(0.97);
        }

        .waitlist-form {
            grid-area: inner;
            width: 100%;
            transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s;
        }

        .waitlist-form.is-hidden {
            opacity: 0;
            transform: scale(0.96) translateY(4px);
            visibility: hidden;
        }

        .success-message {
            grid-area: inner;
            align-self: center;
            background: rgba(235, 250, 243, 0.96);
            box-shadow: 
                0 1px 0 0 rgba(255,255,255,0.80) inset,
                0 0 0 0.5px rgba(46, 182, 125, 0.2),
                0 8px 32px rgba(46, 182, 125, 0.12);
            border: 1px solid rgba(46, 182, 125, 0.3);
            border-radius: 12px;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            font-size: 15px;
            font-weight: 500;
            color: var(--ink-900);
            
            opacity: 0;
            transform: scale(0.96) translateY(-4px);
            visibility: hidden;
            transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s;
            z-index: 10;
        }

        .success-message.is-visible {
            opacity: 1;
            transform: scale(1) translateY(0);
            visibility: visible;
        }

        /* SPECIFIC SECTIONS */
        .hero {
            padding-top: 60px; 
            padding-bottom: 100px;
        }

        .hero-container {
            display: grid;
            grid-template-columns: minmax(auto, 520px) auto;
            column-gap: 56px;
            row-gap: 0;
            justify-content: center;
            align-items: center;
            text-align: left;
        }

        .hero-text-top {
            grid-column: 1;
            grid-row: 1;
        }

        .hero-form-wrapper {
            grid-column: 1;
            grid-row: 2;
            margin-top: 32px;
        }

        .action-block {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
        }

        .action-block .live-stat {
            margin-top: 4px;
        }

        .hero-mockup {
            grid-column: 2;
            grid-row: 1 / span 2;
            display: flex;
            justify-content: flex-start;
        }

        .hero-mockup .phone-frame {
            margin: 0;
        }

        .hero-form-group {
            margin: 0; 
            width: 100%;
        }

        .hero .headline { margin-bottom: 24px; }
        .hero .sub-headline { margin-bottom: 0; }

        .problem-text-wrapper {
            border-left: 3px solid rgba(10, 100, 188, 0.15);
            padding-left: 24px;
            max-width: 680px;
            margin: 0 auto;
            text-align: left;
        }

        .problem-text {
            font-size: 19px;
            font-weight: 400;
            color: var(--ink-500);
            line-height: 1.7;
        }

        .problem-text strong {
            color: var(--ink-900);
            font-weight: 600;
        }

        .founder-text-wrapper {
            max-width: 600px;
            margin: 0 auto;
            text-align: left;
        }

        .founder-text {
            font-size: 17px;
            color: var(--ink-500);
            font-style: italic;
            line-height: 1.7;
            margin-bottom: 16px;
        }

        .founder-signature {
            font-size: 14px;
            color: var(--ink-300);
            text-align: right;
        }

        .footer {
            padding: 60px 0;
            text-align: center;
            font-size: 13px;
            color: var(--ink-300);
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: center;
        }

        .footer .logo {
            color: var(--ink-300);
            font-weight: 600;
        }

        .footer-links {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .footer-links a {
            color: var(--ink-300);
            text-decoration: none;
            transition: color 0.15s;
        }

        .footer-links a:hover {
            color: var(--flow-blue);
        }

        /* RESPONSIVE DESIGN */
        @media (max-width: 768px) {
            .container { padding: 0 24px; }
            
            section { padding-top: 80px; padding-bottom: 80px; }
            
            .site-nav { padding: 20px 0; }
            .site-nav.is-sticky { padding: 16px 0; }
            .nav-link { display: none; }

            .hero { padding-top: 64px; padding-bottom: 64px; }

            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 0;
            }

            .hero-text-top { grid-column: 1; grid-row: 1; }
            
            .hero-mockup { 
                grid-column: 1; 
                grid-row: 2; 
                justify-content: center; 
                margin: 40px 0; 
            }
            
            .hero-form-wrapper { 
                grid-column: 1; 
                grid-row: 3; 
                margin-top: 0; 
            }

            .action-block {
                align-items: center;
                gap: 16px;
            }
            
            .hero-mockup .phone-frame { 
                transform: none; 
                max-width: 240px;
                margin: 0 auto; 
            }
            
            .hero-form-group { margin: 0 auto; }

            .headline { font-size: 34px; letter-spacing: -1.5px; }
            .sub-headline { font-size: 17px; }
            .tagline { font-size: 30px; letter-spacing: -1px; }
            .tagline-sub { font-size: 15px; }
            .problem-text { font-size: 17px; }
            .card-title { font-size: 17px; }
            .card-body { font-size: 14px; }
            .founder-text { font-size: 15px; }

            .problem-text-wrapper {
                padding-left: 16px;
                border-left-width: 2px;
            }

            .cards-3 {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .staggered-list {
                gap: 32px;
            }

            .staggered-item {
                width: 100%;
                align-self: stretch !important;
            }

            .cta-button { width: 100%; }

            .footer-links {
                flex-direction: column;
                gap: 8px;
            }
            .footer-links .dot-separator { display: none; }
        }

        /* MODAL (PRIVACY POLICY) */
        body.modal-open {
            overflow: hidden;
        }

        .modal {
            position: fixed;
            inset: 0;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
            padding: 24px;
        }

        .modal.is-visible {
            opacity: 1;
            visibility: visible;
        }

        .modal-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.2);
        }

        .modal-content {
            position: relative;
            width: 100%;
            max-width: 640px;
            max-height: 85vh;
            overflow-y: auto;
            padding: 48px;
            border-radius: 24px;
            transform: scale(0.96) translateY(10px);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            scrollbar-width: none;
        }
        
        .modal-content::-webkit-scrollbar {
            display: none;
        }

        .modal.is-visible .modal-content {
            transform: scale(1) translateY(0);
        }

        .modal-close {
            position: absolute;
            top: 24px;
            right: 24px;
            width: 32px;
            height: 32px;
            border-radius: 16px;
            background: rgba(0,0,0,0.05);
            border: none;
            color: var(--ink-500);
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.2s, color 0.2s;
            z-index: 2;
        }

        .modal-close:hover {
            background: rgba(0,0,0,0.1);
            color: var(--ink-900);
        }

        .modal-body h2 {
            font-size: 24px;
            font-weight: 800;
            color: var(--ink-900);
            margin-bottom: 8px;
            letter-spacing: -0.5px;
        }

        .modal-body .last-updated {
            font-size: 13px;
            color: var(--ink-300);
            margin-bottom: 32px;
            font-family: 'DM Mono', monospace;
        }

        .modal-body h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--ink-900);
            margin: 32px 0 12px 0;
        }

        .modal-body p, .modal-body li {
            font-size: 15px;
            color: var(--ink-500);
            line-height: 1.6;
            margin-bottom: 16px;
        }
        
        .modal-body ul {
            padding-left: 20px;
            margin-bottom: 16px;
        }

        .modal-body strong {
            color: var(--ink-900);
            font-weight: 600;
        }

        .modal-body a {
            color: var(--flow-blue);
            text-decoration: none;
        }

        @media (max-width: 768px) {
            .modal-content {
                padding: 32px 24px;
                border-radius: 20px;
            }
        }
        
        #nav-sentinel {
            position: absolute;
            top: 100px;
            left: 0;
            width: 100%;
            height: 1px;
            pointer-events: none;
            visibility: hidden;
        }
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

main {
    display: block;
}

main > section,
.footer {
    content-visibility: auto;
    contain-intrinsic-size: 720px;
}

.hero-kicker {
    display: inline-block;
    padding: 6px 14px;
    margin-bottom: 24px;
    border: 1px solid rgba(10, 100, 188, 0.15);
    border-radius: 20px;
    background: rgba(10, 100, 188, 0.08);
    color: var(--flow-blue);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.2px;
}

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

.text-amber {
    color: var(--flowy-amber);
    font-weight: 600;
}

.text-green-soft {
    color: var(--flowy-green);
    opacity: 0.85;
}

.form-row {
    display: flex;
    gap: 10px;
    width: 100%;
    flex-wrap: wrap;
}

.form-group-centered {
    margin: 0 auto;
}

.problem-text-spaced {
    margin-top: 24px;
}

.success-logo {
    width: 22.5px;
    height: 22.5px;
    margin-left: 8px;
    flex: none;
}

.small-text-strong {
    font-weight: 500;
}

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

.small-text-ink {
    color: var(--ink-500);
}

.small-text-top {
    margin-top: 16px;
}

.footer-email-link {
    color: var(--ink-300);
    text-decoration: underline;
}

.closing-cta {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 260px;
}

.closing-cta-art {
    position: absolute;
    left: clamp(-56px, 1vw, -8px);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: flex-start;
    pointer-events: none;
}

.closing-fox {
    width: clamp(150px, 16vw, 220px);
    height: auto;
    display: block;
}

.closing-cta-content {
    width: min(100%, 640px);
    margin-left: auto;
    margin-right: auto;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.logo:focus-visible,
.nav-link:focus-visible,
.email-input:focus-visible,
.cta-button:focus-visible,
.footer-links a:focus-visible,
.modal-close:focus-visible,
.modal-body a:focus-visible {
    outline: 3px solid rgba(10, 100, 188, 0.2);
    outline-offset: 3px;
}

.cta-button[disabled] {
    cursor: progress;
    opacity: 0.88;
}

.phone-screen img {
    will-change: opacity, transform;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .pulse-dot::after {
        animation: none;
    }
}

@media (min-width: 769px) {
    .container {
        max-width: 980px;
    }

    section {
        padding-top: 104px;
        padding-bottom: 104px;
    }

    .headline {
        font-size: clamp(50px, 4.55vw, 62px);
        letter-spacing: -2.5px;
        line-height: 1.03;
    }

    .sub-headline {
        max-width: 36rem;
    }

    .hero {
        padding-top: 72px;
        padding-bottom: 112px;
    }

    .hero-container {
        grid-template-columns: minmax(0, 1.2fr) minmax(250px, 292px);
        column-gap: 58px;
        align-items: start;
    }

    .hero-text-top,
    .hero-form-wrapper {
        max-width: 38rem;
    }

    .hero-form-wrapper {
        margin-top: 24px;
    }

    .action-block {
        gap: 10px;
    }

    .hero-mockup {
        justify-content: center;
        padding-top: 8px;
    }

    .hero-mockup .phone-frame {
        width: clamp(272px, 29vw, 310px);
    }

    .form-group {
        max-width: 474px;
    }

    .cta-button {
        min-width: 230px;
    }

    .cards-3 {
        gap: 24px;
    }

    .card {
        padding: 30px;
    }

    .staggered-list {
        gap: 40px;
    }

    .tagline-section .container {
        max-width: 760px;
    }

    .footer {
        padding: 72px 0 56px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    section {
        padding-top: 68px;
        padding-bottom: 68px;
    }

    .site-nav {
        padding: 16px 0;
    }

    .site-nav.is-sticky {
        padding: 14px 0;
    }

    .logo {
        font-size: 16px;
    }

    .logo-img {
        height: 32px;
        margin-right: 8px;
    }

    .hero {
        padding-top: 36px;
        padding-bottom: 52px;
    }

    .hero-kicker {
        margin-bottom: 20px;
        padding: 6px 12px;
        font-size: 12px;
    }

    .headline {
        font-size: 36px;
        letter-spacing: -1.8px;
        line-height: 1.06;
    }

    .sub-headline {
        font-size: 17px;
        line-height: 1.6;
    }

    .hero-mockup {
        margin: 32px 0 28px;
    }

    .hero-mockup .phone-frame {
        width: min(72vw, 250px);
        max-width: none;
    }

    .action-block {
        gap: 14px;
    }

    .form-row {
        gap: 12px;
    }

    .email-input,
    .cta-button,
    .success-message {
        min-height: 54px;
    }

    .live-stat {
        margin-top: 6px;
    }

    .eyebrow {
        margin-bottom: 28px;
    }

    .cards-3 {
        gap: 20px;
    }

    .card {
        padding: 28px 24px;
    }

    .staggered-list {
        gap: 24px;
    }

    .problem-text-wrapper {
        max-width: none;
    }

    .footer {
        padding: 44px 0 56px;
        gap: 12px;
    }
}

body {
    text-rendering: optimizeLegibility;
    font-feature-settings: "liga" 1, "kern" 1, "calt" 1;
}

.logo {
    font-weight: 800;
    letter-spacing: -0.04em;
}

.nav-link {
    letter-spacing: -0.01em;
}

.hero-kicker,
.eyebrow {
    text-wrap: balance;
}

.hero-kicker {
    padding: 5px 12px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.headline,
.tagline {
    text-wrap: balance;
}

.sub-headline,
.tagline-sub,
.problem-text,
.card-body,
.founder-text,
.modal-body p,
.modal-body li {
    text-wrap: pretty;
}

.sub-headline {
    font-size: 19px;
    line-height: 1.62;
    letter-spacing: -0.025em;
}

.hero-support {
    margin-top: 12px;
    max-width: 28rem;
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: -0.015em;
    color: var(--ink-500);
    text-wrap: pretty;
}

.eyebrow {
    color: var(--ink-500);
    letter-spacing: 2.6px;
}

.card-title {
    font-size: 19px;
    line-height: 1.25;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}

.card-body {
    line-height: 1.68;
    color: #56565d;
}

.tagline {
    letter-spacing: -0.045em;
}

.tagline-sub {
    line-height: 1.62;
    letter-spacing: -0.015em;
}

.stat-text {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.015em;
}

.small-text {
    font-size: 12.5px;
    line-height: 1.58;
    letter-spacing: -0.015em;
}

.problem-text {
    line-height: 1.74;
    letter-spacing: -0.012em;
}

.founder-text {
    line-height: 1.76;
    letter-spacing: -0.012em;
    color: #66666d;
}

.founder-signature {
    font-size: 13px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.footer,
.footer-links a,
.footer-email-link {
    letter-spacing: -0.01em;
}

.modal-body h2 {
    letter-spacing: -0.04em;
}

.modal-body h3 {
    letter-spacing: -0.02em;
}

.modal-body p,
.modal-body li {
    line-height: 1.68;
}

@media (min-width: 769px) {
    .headline {
        max-width: 14.6ch;
    }

    .sub-headline {
        max-width: 34rem;
    }

    .hero-support {
        max-width: 26rem;
    }

    .tagline {
        max-width: 11ch;
        margin-left: auto;
        margin-right: auto;
    }

    .problem-text-wrapper {
        max-width: 700px;
    }

    .founder-text-wrapper {
        max-width: 620px;
    }
}

@media (max-width: 768px) {
    .closing-cta {
        display: grid;
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .closing-cta-art {
        position: static;
        transform: none;
        order: 2;
        justify-content: center;
    }

    .closing-cta-content {
        order: 1;
    }

    .closing-fox {
        width: min(46vw, 180px);
    }

    .hero-kicker {
        padding: 5px 10px;
        font-size: 11.5px;
        line-height: 1.3;
    }

    .headline {
        font-size: 35px;
        line-height: 1.05;
        text-wrap: pretty;
    }

    .sub-headline {
        font-size: 16.5px;
        line-height: 1.58;
    }

    .hero-support {
        margin-top: 10px;
        font-size: 14.5px;
        line-height: 1.5;
    }

    .eyebrow {
        letter-spacing: 2.2px;
    }

    .card-title {
        font-size: 17px;
        line-height: 1.28;
    }

    .card-body,
    .problem-text,
    .founder-text,
    .tagline-sub {
        font-size: 15px;
    }

    .small-text,
    .stat-text,
    .founder-signature,
    .modal-body .last-updated {
        font-size: 12.5px;
    }
}
