/* ==============================================================
   Bare-bones shared styles for the landing/auth/legal pages.
   Intentionally minimal — your team's real design replaces this.
   ============================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');
* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: #1a1a1a;
    background: #ffffff;
    line-height: 1.5;
}

a { color: #3b5bfd; }

/* ---- Header / nav ---- */
header.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid #e2e2e2;
}
header.site-header .logo {
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    color: #1a1a1a;
}
header.site-header nav a {
    margin-left: 16px;
    text-decoration: none;
    font-size: 14px;
    color: #333;
}

/* ---- Buttons ---- */
.btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 6px;
    border: 1px solid #ccc;
    background: #f4f4f4;
    color: #1a1a1a;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
}
.btn:hover { background: #e9e9e9; }
.btn-primary {
    background: #3b5bfd;
    border-color: #3b5bfd;
    color: #fff;
}
.btn-primary:hover { background: #2f47cc; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ---- Layout helpers ---- */
.container {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px;
}
section { padding: 48px 0; }
section.alt-bg { background: #f8f8f8; }
h1 { font-size: 32px; margin: 0 0 12px; }
h2 { font-size: 22px; margin: 0 0 16px; }
.subtitle { font-size: 16px; color: #555; margin: 0 0 24px; }

/* ---- Feature grid ---- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 24px;
}
.feature-card {
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    padding: 16px;
}
.feature-card h3 { margin: 0 0 8px; font-size: 16px; }
.feature-card p { margin: 0; font-size: 14px; color: #555; }

/* ---- Download grid ---- */
.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-top: 24px;
}
.download-card {
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}
.download-card h3 { margin: 0 0 12px; font-size: 15px; }

/* ---- Forms ---- */
form .field { margin-bottom: 14px; }
form label { display: block; font-size: 13px; margin-bottom: 4px; color: #333; }
form input[type="text"],
form input[type="email"],
form input[type="password"] {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}
.checkbox-field {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 13px;
}
.checkbox-field input { margin-top: 3px; }

/* ---- Misc ---- */
.status-msg { margin-top: 10px; font-size: 14px; }
.status-msg.error { color: #c0392b; }
.status-msg.success { color: #1e824c; }
.muted { color: #777; font-size: 13px; }

footer.site-footer {
    border-top: 1px solid #e2e2e2;
    padding: 24px;
    text-align: center;
    font-size: 13px;
    color: #777;
}
footer.site-footer a { color: #555; margin: 0 8px; }

.legal-doc {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 24px;
}
.legal-doc h1 { margin-bottom: 4px; }
.legal-doc .doc-meta { color: #777; font-size: 13px; margin-bottom: 32px; }
.legal-doc h2 { font-size: 18px; margin-top: 32px; }
.legal-doc p, .legal-doc li { font-size: 14px; color: #333; }
.placeholder-banner {
    background: #fff8e1;
    border: 1px solid #f0c93b;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 13px;
    margin-bottom: 24px;
}