/* TP-AGE-001: accessible, script-free storefront entry screen. */
:root { color-scheme: light; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: #1d1d1f; background: #f5f5f7; }
* { box-sizing: border-box; }
body { margin: 0; min-height: 100vh; min-height: 100svh; display: grid; place-items: center; padding: 24px; }
.age-card { width: 100%; max-width: 520px; overflow: hidden; border-radius: 24px; background: #fff; box-shadow: 0 20px 60px #00000012; text-align: center; }
.age-logo { display: block; width: 100%; height: 130px; padding: 30px 60px; object-fit: contain; background: #101113; }
.age-content { padding: 36px; }
.age-eyebrow { color: #55555a; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
h1 { margin: 14px 0; font-size: clamp(26px, 5vw, 34px); letter-spacing: -.035em; line-height: 1.15; }
p { color: #55555a; line-height: 1.6; }
.age-actions { display: grid; gap: 12px; margin: 28px 0 20px; }
button { min-height: 50px; width: 100%; padding: 14px 18px; border: 1px solid transparent; border-radius: 12px; font: inherit; font-weight: 600; cursor: pointer; }
.age-yes { background: #0066cc; color: #fff; }
.age-yes:hover { background: #0055aa; }
.age-no { background: #f5f5f7; border-color: #c8c8cc; color: #1d1d1f; }
.age-no:hover { background: #e8e8ed; }
button:focus-visible { outline: 3px solid #0066cc; outline-offset: 4px; }
.age-note { font-size: 13px; margin-bottom: 0; }
.age-error { color: #b42318; }
@media (max-width: 380px) { body { padding: 16px; } .age-content { padding: 24px; } .age-logo { padding: 28px 40px; } }
