:root { --ink: #0d1720; --paper: #f5f6f7; --accent: #d7ff45; }
* { box-sizing: border-box; }
html, body { min-height: 100%; }
body { margin: 0; color: #fff; background: var(--ink); font-family: Manrope, Arial, sans-serif; letter-spacing: 0; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
.home-shell { min-height: 100dvh; position: relative; overflow: hidden; }
.home-background { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.home-overlay { position: absolute; inset: 0; background: rgba(5, 13, 20, .84); }
.home-content { width: min(calc(100% - 40px), 1180px); min-height: 100dvh; margin: 0 auto; padding: 72px 0 44px; position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; }
.eyebrow { margin: 0 0 22px; display: flex; align-items: center; gap: 10px; color: var(--accent); font: 600 12px "Source Code Pro", monospace; text-transform: uppercase; }
.eyebrow span { width: 34px; height: 2px; background: currentColor; }
h1 { max-width: 840px; margin: 0; font-size: clamp(60px, 10vw, 132px); line-height: .86; font-weight: 800; }
.intro { margin: 30px 0 18px; color: rgba(255,255,255,.72); font-size: 18px; }
.choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.choice-grid > a { min-height: 190px; padding: 24px; position: relative; display: flex; flex-direction: column; align-items: flex-start; border: 1px solid rgba(255,255,255,.32); background: rgba(10, 20, 28, .62); backdrop-filter: blur(10px); transition: transform .2s ease, color .2s ease, background .2s ease; }
.choice-grid > a:hover { color: #101820; background: var(--accent); transform: translateY(-3px); }
.choice-number { font: 600 11px "Source Code Pro", monospace; opacity: .66; }
.choice-grid strong { margin-top: auto; font-size: clamp(34px, 5vw, 64px); line-height: 1; }
.choice-grid small { max-width: 360px; margin-top: 10px; font-size: 12px; opacity: .72; }
.choice-grid svg { position: absolute; top: 22px; right: 22px; width: 26px; height: 26px; }
.whatsapp { margin-top: 24px; display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; padding-bottom: 4px; border-bottom: 1px solid currentColor; color: rgba(255,255,255,.8); font-size: 13px; font-weight: 700; }
.whatsapp:hover { color: var(--accent); }
.whatsapp svg { width: 17px; }
@media (max-width: 680px) {
    .home-content { width: min(calc(100% - 28px), 1180px); padding: 54px 0 32px; }
    h1 { font-size: clamp(54px, 18vw, 82px); }
    .choice-grid { grid-template-columns: 1fr; }
    .choice-grid > a { min-height: 146px; padding: 20px; }
    .choice-grid strong { font-size: 38px; }
}
@media (prefers-reduced-motion: reduce) { .choice-grid > a { transition: none; } }
