/* Copyright (C) 2026 Jason M. Schwefel. All Rights Reserved. */

:root {
    --bg:          #0c1118;
    --surface:     #131c26;
    --surface2:    #1a2736;
    --border:      #243448;
    --accent:      #4a9fc8;
    --accent-dim:  #2e6e8e;
    --text:        #d6e4ef;
    --text-muted:  #6e8fa8;
    --radius-sm:   8px;
    --radius-md:   12px;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
}

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

/* ── Site header ──────────────────────────────────────────────────────────── */

.site-header {
    border-bottom: 1px solid var(--border);
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: sticky;
    top: 0;
    background: var(--bg);
    z-index: 100;
}

.site-header .wordmark {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-logo {
    height: 34px;
    width: 34px;
    flex-shrink: 0;
}

.site-header .wordmark:hover { text-decoration: none; }

.site-header .wordmark span { color: var(--accent); }

.site-nav {
    display: flex;
    gap: 24px;
    align-items: center;
}

.site-nav a {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

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

.hero {
    max-width: 760px;
    margin: 32px auto 80px;
    padding: 0 24px;
    text-align: center;
}

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

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text);
}

.hero h1 span { color: var(--accent); }

.hero .tagline {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.75;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badge-wrap {
    margin-bottom: 32px;
}

.hero-badge {
    width: 400px;
    height: 400px;
    max-width: 90vw;
}

.btn-primary {
    display: inline-block;
    padding: 13px 32px;
    background: var(--accent);
    color: var(--bg);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    transition: opacity 0.15s;
    text-decoration: none;
}

.btn-primary:hover { opacity: 0.85; text-decoration: none; }

/* ── Shared section layout ────────────────────────────────────────────────── */

.section-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
    color: var(--text);
}

.section-sub {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

/* ── Products section ─────────────────────────────────────────────────────── */

.products-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
    padding: 80px 0;
}

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

.product-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-card-future {
    opacity: 0.75;
}

.product-card-top {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-lockup {
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: 4px 0;
}

.product-bc-wordmark {
    width: 100%;
    max-width: 260px;
    height: auto;
    opacity: 0.75;
    margin-top: -4px;
}

.product-status {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--surface2);
    border: 1px solid var(--accent-dim);
    border-radius: 4px;
    padding: 3px 8px;
}

.product-status-pending {
    color: var(--text-muted);
    border-color: var(--border);
    background: transparent;
}

.product-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.1;
}

.product-name span { color: var(--accent); }

.product-name-future {
    color: var(--text-muted);
    font-style: italic;
}

.product-tagline {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.product-tagline-muted {
    color: var(--text-muted);
    font-weight: 400;
    font-style: italic;
}

.product-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.product-facts {
    list-style: none;
    padding: 0;
}

.product-facts li {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 7px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.product-facts li:first-child { border-top: 1px solid var(--border); }

.product-facts li::before {
    content: '—';
    color: var(--accent-dim);
    flex-shrink: 0;
    font-size: 0.75rem;
}

.btn-product {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    margin-top: auto;
    padding-top: 4px;
    transition: opacity 0.15s;
}

.btn-product:hover { opacity: 0.75; text-decoration: none; }

.product-stay-tuned {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: auto;
}

/* ── Callout strip ────────────────────────────────────────────────────────── */

.callout-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 56px 24px;
    text-align: center;
}

.callout-strip blockquote {
    max-width: 660px;
    margin: 0 auto;
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 500;
    color: var(--text);
    line-height: 1.6;
    font-style: italic;
}

/* ── About section ────────────────────────────────────────────────────────── */

.about-section {
    padding: 80px 0;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 700px) {
    .about-inner { grid-template-columns: 1fr; gap: 40px; }
}

.about-text h2 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    color: var(--text);
}

.about-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 14px;
}

.about-text p:last-child { margin-bottom: 0; }

.about-ethos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.ethos-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
}

.ethos-item h4 {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.ethos-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ── Site footer ──────────────────────────────────────────────────────────── */

.site-footer {
    border-top: 1px solid var(--border);
    background: var(--surface);
    padding: 40px 24px;
}

.footer-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

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

.footer-brand span { color: var(--accent); }

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

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

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

/* ── Content pages (privacy, etc.) ───────────────────────────────────────── */

.content-page {
    max-width: 720px;
    margin: 64px auto 80px;
    padding: 0 24px;
}

.content-page h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.content-page .meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.content-page h2 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 36px;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--border);
}

.content-page p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 12px;
}

.content-page ul {
    padding-left: 0;
    margin-bottom: 12px;
    list-style: none;
}

.content-page ul li {
    font-size: 0.875rem;
    color: var(--text-muted);
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: baseline;
    gap: 10px;
    line-height: 1.6;
}

.content-page ul li::before {
    content: '—';
    color: var(--accent-dim);
    flex-shrink: 0;
    font-size: 0.75rem;
}

.content-page a {
    color: var(--accent);
}

.content-page a:hover {
    text-decoration: underline;
}
