/* PopcornStack site styles — minimal, brand-matched */

:root {
    --amber: #F5B842;
    --amber-dark: #B07820;
    --cream: #FFF8E5;
    --ink: #1E2A44;
    --ink-soft: #4A5470;
    --line: rgba(30, 42, 68, 0.12);
    --bg: #FFFCF4;
}

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

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* --- Hero --- */

.hero {
    text-align: center;
    padding: 96px 24px 64px;
}

.hero .icon {
    width: 128px;
    height: 128px;
    border-radius: 28px;
    margin: 0 auto 32px;
    display: block;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 12px 32px rgba(245, 184, 66, 0.25);
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.05;
}

.hero .tagline {
    font-size: 22px;
    color: var(--ink-soft);
    max-width: 520px;
    margin: 0 auto 32px;
    font-weight: 400;
}

.hero .description {
    font-size: 17px;
    color: var(--ink-soft);
    max-width: 560px;
    margin: 0 auto;
}

/* --- Features --- */

.features {
    max-width: 880px;
    margin: 0 auto;
    padding: 32px 24px 96px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.feature {
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
}

.feature h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature p {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.5;
}

.feature .pill {
    display: inline-block;
    background: var(--amber);
    color: var(--ink);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

/* --- Status box --- */

.status {
    max-width: 600px;
    margin: 0 auto 96px;
    padding: 32px 24px;
    text-align: center;
}

.status-card {
    background: var(--cream);
    border: 1px solid rgba(176, 120, 32, 0.2);
    border-radius: 16px;
    padding: 32px;
}

.status-card h2 {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 600;
}

.status-card p {
    color: var(--ink-soft);
}

/* --- Footer --- */

footer {
    border-top: 1px solid var(--line);
    padding: 48px 24px;
    text-align: center;
    color: var(--ink-soft);
    font-size: 14px;
}

footer a {
    color: var(--ink);
    text-decoration: none;
    margin: 0 12px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 1px;
    transition: border-color 0.15s ease;
}

footer a:hover {
    border-bottom-color: var(--amber);
}

footer .copy {
    margin-top: 16px;
    font-size: 13px;
    opacity: 0.7;
}

/* --- Privacy page --- */

.policy {
    max-width: 700px;
    margin: 0 auto;
    padding: 80px 24px 96px;
}

.policy .back {
    display: inline-block;
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 1px;
}

.policy h1 {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.policy .updated {
    color: var(--ink-soft);
    font-size: 14px;
    margin-bottom: 40px;
}

.policy h2 {
    font-size: 22px;
    font-weight: 600;
    margin: 48px 0 16px;
}

.policy p {
    margin-bottom: 16px;
}

.policy strong {
    font-weight: 600;
}

.policy ul {
    margin: 0 0 16px 24px;
}

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

.policy a {
    color: var(--ink);
    border-bottom: 1px solid var(--amber);
    text-decoration: none;
}

.policy a:hover {
    background: rgba(245, 184, 66, 0.1);
}

/* --- Mobile --- */

@media (max-width: 700px) {
    .hero { padding: 64px 24px 48px; }
    .hero h1 { font-size: 40px; }
    .hero .tagline { font-size: 19px; }
    .features {
        grid-template-columns: 1fr;
        padding: 16px 24px 64px;
    }
    .policy h1 { font-size: 32px; }
}
