/* KilrWhale — Landing Page Styles */

:root {
    --orca-black: #0A0A0A;
    --bone-white: #F5F5F0;
    --deep-water: #1A1A1A;
    --surface-grey: #E8E8E2;
    --slate: #3D3D3D;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Roboto, sans-serif;
    background: var(--bone-white);
    color: var(--orca-black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--orca-black); }

/* Nav */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 32px;
    max-width: 960px;
    margin: 0 auto;
}

.wordmark {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.5px;
    text-decoration: none;
    color: var(--orca-black);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
}

nav ul a {
    font-size: 14px;
    text-decoration: none;
    color: var(--slate);
}

nav ul a:hover {
    color: var(--orca-black);
}

/* Hero */
.hero {
    text-align: center;
    padding: 80px 24px 60px;
    max-width: 640px;
    margin: 0 auto;
}

.hero h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 700;
    font-size: 48px;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero .tagline {
    font-size: 18px;
    color: var(--slate);
    margin-bottom: 40px;
    line-height: 1.5;
}

.badge-link {
    display: inline-block;
}

.badge-link img {
    height: 54px;
}

/* How it works */
.how-it-works {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 24px;
    text-align: center;
}

.how-it-works h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 40px;
}

.steps {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.step {
    flex: 1;
    max-width: 200px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--orca-black);
    color: var(--bone-white);
    border-radius: 50%;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
}

.step h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.step p {
    font-size: 14px;
    color: var(--slate);
}

/* Quote */
.quote {
    text-align: center;
    padding: 60px 24px;
    max-width: 600px;
    margin: 0 auto;
}

.quote blockquote {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 22px;
    font-style: italic;
    line-height: 1.5;
    color: var(--slate);
    border: none;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 24px;
    border-top: 1px solid var(--surface-grey);
    max-width: 960px;
    margin: 0 auto;
}

footer p {
    font-size: 13px;
    color: var(--slate);
}

footer a {
    color: var(--slate);
    text-decoration: underline;
}

footer .footer-links {
    margin-bottom: 12px;
}

footer .footer-links a {
    margin: 0 12px;
}

/* Content pages (privacy, support) */
.content {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

.content h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
}

.content .date {
    color: var(--slate);
    font-size: 14px;
    margin-bottom: 32px;
}

.content h2 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 12px;
}

.content p,
.content li {
    font-size: 15px;
    margin-bottom: 12px;
}

.content ul {
    padding-left: 20px;
}

.content li {
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 600px) {
    .hero h1 { font-size: 36px; }
    .hero { padding: 60px 20px 40px; }
    .steps { flex-direction: column; align-items: center; gap: 32px; }
    nav { padding: 16px 20px; }
    nav ul { gap: 16px; }
}
