/* Meeting Recorder — shared styles
 * Single-file, no preprocessor, no build step. The site is deliberately
 * minimal so it can live on Netlify's free tier for years without
 * maintenance and so deploys are instant (one production deploy on
 * Netlify Starter costs 15 of 300 monthly credits).
 */

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

:root {
    --bg: #0a0a0a;
    --bg-elevated: #141414;
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.18);
    --text: #e8e8e8;
    --text-secondary: #9b9b9b;
    --text-tertiary: #6b6b6b;
    --accent-from: #ff9500;
    --accent-to: #ffcc00;
    --link: #66aaff;
}

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Site header / top nav ───────────────────────────────────────── */

.site-header {
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
    color: var(--text);
}

.brand:hover { text-decoration: none; }

.brand .gradient {
    background: linear-gradient(90deg, var(--accent-from), var(--accent-to));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.site-nav {
    display: flex;
    gap: 24px;
    font-size: 0.95rem;
}

.site-nav a {
    color: var(--text-secondary);
}

.site-nav a:hover {
    color: var(--text);
    text-decoration: none;
}

/* ── Hero ────────────────────────────────────────────────────────── */

.hero {
    padding: 88px 0 56px;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
    background: linear-gradient(90deg, var(--accent-from), var(--accent-to));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero .lead {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 32px;
}

.cta-badge {
    display: inline-block;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

.cta-badge::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-from);
    margin-right: 8px;
    vertical-align: middle;
    box-shadow: 0 0 12px var(--accent-from);
}

/* ── Section ─────────────────────────────────────────────────────── */

.section {
    padding: 72px 0;
    border-top: 1px solid var(--border);
}

.section h2 {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.section .section-lead {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 640px;
    margin-bottom: 48px;
}

/* ── Feature grid ────────────────────────────────────────────────── */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    transition: border-color 0.15s ease;
}

.feature-card:hover {
    border-color: var(--border-hover);
}

.feature-card .icon {
    width: 32px;
    height: 32px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-from), var(--accent-to));
    border-radius: 8px;
    color: #1a1a1a;
    font-weight: 700;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.55;
}

/* ── Pricing block ───────────────────────────────────────────────── */

.pricing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 720px) {
    .pricing { grid-template-columns: 1fr; }
}

.pricing-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
}

.pricing-card.featured {
    border-color: rgba(255, 149, 0, 0.4);
    background: linear-gradient(180deg, rgba(255, 149, 0, 0.06), transparent 60%), var(--bg-elevated);
}

.pricing-card .tier {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-tertiary);
    margin-bottom: 8px;
}

.pricing-card .pricing-badge {
    display: inline-block;
    margin-left: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 3px 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-from), var(--accent-to));
    color: #1a1a1a;
    vertical-align: 2px;
}

.pricing-card h3 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.pricing-card .price-detail {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
}

.pricing-card li {
    padding: 6px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.pricing-card li::before {
    content: "✓";
    color: var(--accent-from);
    font-weight: 700;
    margin-right: 10px;
}

.pricing-card li.no::before {
    content: "—";
    color: var(--text-tertiary);
}

/* ── Footer ──────────────────────────────────────────────────────── */

.site-footer {
    border-top: 1px solid var(--border);
    padding: 36px 0;
    margin-top: 64px;
}

.site-footer .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

.site-footer .links {
    display: flex;
    gap: 20px;
}

.site-footer .links a {
    color: var(--text-tertiary);
}

.site-footer .links a:hover {
    color: var(--text-secondary);
    text-decoration: none;
}

/* ── Long-form pages (Privacy / Support) ─────────────────────────── */

.longform {
    padding: 56px 0 24px;
    max-width: 720px;
    margin: 0 auto;
}

.longform h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.longform .updated {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    margin-bottom: 32px;
}

.longform h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 36px;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.longform h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 8px;
    color: var(--text);
}

.longform p,
.longform li {
    color: var(--text-secondary);
    margin-bottom: 14px;
    font-size: 1rem;
}

.longform ul,
.longform ol {
    margin-left: 24px;
    margin-bottom: 14px;
}

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

.longform code {
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 0.92em;
    background: rgba(255, 255, 255, 0.06);
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--text);
}

.longform table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 22px;
    font-size: 0.95rem;
}

.longform table th,
.longform table td {
    text-align: left;
    padding: 10px 12px;
    border-bottom: 1px solid var(--border);
}

.longform table th {
    color: var(--text);
    font-weight: 600;
}

.longform hr {
    border: 0;
    border-top: 1px solid var(--border);
    margin: 32px 0;
}
