@import url('/css/base/variables.css');

:root { color-scheme: dark; }
* { box-sizing: border-box; }
body { min-height: 100vh; margin: 0; overflow-x: hidden; background: radial-gradient(circle at 14% 0%, rgba(100, 200, 255, .14), transparent 32rem), linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 100%); color: var(--color-text); font-family: var(--font-primary); line-height: 1.6; }
body::before { content: ''; position: fixed; inset: 0; z-index: -1; pointer-events: none; background-image: linear-gradient(rgba(100, 200, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(100, 200, 255, .035) 1px, transparent 1px); background-size: 50px 50px; mask-image: linear-gradient(to bottom, #000, transparent 80%); }
a { color: var(--color-accent); transition: color .2s ease; } a:hover { color: #fff; }
.page { width: min(1120px, calc(100% - 40px)); margin: 0 auto; padding: 24px 0 80px; }
.nav { display: flex; justify-content: space-between; gap: 16px; align-items: center; min-height: 64px; margin-bottom: 42px; border-bottom: 1px solid var(--color-border); }
.nav > a:last-child { padding: .45rem .75rem; border: 1px solid var(--color-accent-30); border-radius: var(--radius-sm); text-decoration: none; font-size: .8rem; font-weight: 700; letter-spacing: .08em; }
.logo { color: #fff; font-size: 1.1rem; font-weight: 800; letter-spacing: .14em; text-decoration: none; text-shadow: 0 0 18px var(--color-accent-glow); }
.hero { position: relative; isolation: isolate; overflow: hidden; padding: clamp(32px, 6vw, 72px); border: 1px solid var(--color-accent-30); border-radius: var(--radius-xl); background: linear-gradient(135deg, rgba(15, 23, 42, .9), rgba(10, 10, 15, .86)); box-shadow: 0 24px 70px rgba(0, 0, 0, .32), inset 0 1px 0 rgba(255,255,255,.06); }
.hero::after { content: ''; position: absolute; z-index: -1; width: 360px; height: 360px; top: -240px; right: -100px; border-radius: 50%; background: var(--color-accent-glow); filter: blur(18px); }
h1, h2, h3 { color: var(--color-text); letter-spacing: -.025em; } h1 { max-width: 830px; margin: 0 0 18px; font-size: clamp(2.25rem, 6vw, 4.6rem); line-height: 1.05; } h2 { margin: 56px 0 20px; font-size: clamp(1.65rem, 3vw, 2.3rem); } h3 { margin: 0 0 10px; font-size: 1.2rem; }
.lead { max-width: 720px; margin: 0; color: var(--color-text-muted); font-size: clamp(1.08rem, 2vw, 1.3rem); }
.cta { display: inline-flex; align-items: center; margin-top: 28px; padding: 14px 21px; border: 1px solid var(--color-accent); border-radius: var(--radius-md); background: var(--color-accent); color: #06111b; box-shadow: 0 0 28px var(--color-accent-glow); font-weight: 800; text-decoration: none; transform: translateY(0); transition: transform .2s ease, box-shadow .2s ease; }.cta:hover { color: #06111b; transform: translateY(-2px); box-shadow: 0 0 38px var(--color-accent-glow); }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(235px, 1fr)); gap: 20px; margin-top: 24px; }.card { position: relative; overflow: hidden; min-height: 175px; padding: 27px; border: 1px solid var(--color-border); border-radius: var(--radius-lg); background: var(--color-surface); box-shadow: 0 12px 30px rgba(0,0,0,.15); transition: transform .25s ease, border-color .25s ease; }.card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, var(--color-accent), transparent); opacity: .65; }.card:hover { border-color: var(--color-accent-40); transform: translateY(-4px); }.card p { margin: 0; color: var(--color-text-muted); }
.notice { margin-top: 28px; padding: 20px 22px; border: 1px solid var(--color-accent-30); border-left: 4px solid var(--color-accent); border-radius: var(--radius-md); background: var(--color-accent-08); color: var(--color-text-muted); }
footer { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 72px; padding-top: 24px; border-top: 1px solid var(--color-border); color: var(--color-text-dim); font-size: .9rem; } footer a { text-decoration: none; }
@media (max-width: 600px) { .page { width: min(100% - 28px, 1120px); } .nav { margin-bottom: 24px; } .hero { padding: 30px 24px; } .grid { gap: 14px; } .card { min-height: auto; padding: 22px; } }
