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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Main Site */
:root {
    --ink: #1a1a1a;
    --ink-soft: #5c5c5c;
    --ink-faint: #9a9a9a;
    --hair: #e8e6e2;
    --tint: #2f6f8f;
}

.site {
    max-width: 680px;
    margin: 0 auto;
    padding: 56px 24px 48px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
.site-header {
    margin-bottom: auto;
}

.wordmark {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    color: var(--ink);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.sail-mark {
    width: 22px;
    height: 22px;
    color: var(--tint);
}

/* Hero */
.hero {
    padding: 88px 0 72px;
}

.eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--tint);
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(38px, 7vw, 60px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.035em;
    margin-bottom: 24px;
}

.lede {
    font-size: 19px;
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 520px;
}

/* Principles */
.principles {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 8px 0 64px;
}

.principle h2 {
    font-size: 21px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.principle p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 560px;
}

/* Status */
.status {
    border-top: 1px solid var(--hair);
    padding: 40px 0;
}

.status-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 10px;
}

.status-text {
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 520px;
}

/* Footer */
.site-footer {
    margin-top: auto;
    padding-top: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-link {
    font-size: 14px;
    color: var(--ink-soft);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.footer-dot {
    color: var(--ink-faint);
}

.footer-copy {
    font-size: 14px;
    color: var(--ink-faint);
}

/* Landing Page (for launched apps) */
.landing-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 24px;
    text-align: center;
}

.landing-container h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.landing-container p {
    font-size: 20px;
    color: #666;
    margin-bottom: 24px;
}

.landing-container .coming-soon {
    font-size: 18px;
    color: #999;
    font-style: italic;
}

/* Waitlist Layout */
.waitlist-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
    min-height: 100vh;
    align-items: center;
}

/* Left Column */
.waitlist-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.app-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.waitlist-headline {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #1a1a1a;
}

.waitlist-subtitle {
    font-size: 20px;
    color: #666;
    line-height: 1.5;
    max-width: 480px;
}

/* Waitlist Form */
.waitlist-form {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 0;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    max-width: 480px;
    transition: border-color 0.2s ease;
}

.form-row:focus-within {
    border-color: var(--accent-color);
}

.email-input {
    flex: 1;
    padding: 16px 20px;
    font-size: 16px;
    border: none;
    outline: none;
    background: transparent;
    color: #1a1a1a;
}

.email-input::placeholder {
    color: #999;
}

.submit-button {
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: var(--accent-color);
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.submit-button:hover {
    background: color-mix(in srgb, var(--accent-color), black 15%);
}

/* Social Link */
.social-link {
    font-size: 14px;
    color: #999;
    text-decoration: none;
    transition: color 0.2s ease;
}

.social-link:hover {
    color: #666;
}

/* Right Column - Phone Screenshot */
.waitlist-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-screenshot {
    width: 100%;
    max-width: 340px;
    height: auto;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .waitlist-container {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 48px 20px;
    }
    
    .waitlist-headline {
        font-size: 40px;
    }
    
    .waitlist-subtitle {
        font-size: 18px;
    }
    
    .phone-screenshot {
        max-width: 280px;
    }

    .form-row {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .waitlist-headline {
        font-size: 32px;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .submit-button {
        width: 100%;
    }
}

