:root { color-scheme: dark; --red: #ec0033; --bg: #101014; --text: #f3f0f2; --muted: #b6b0bb; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: Arial, Helvetica, sans-serif; font-size: 16px; }
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid #fff; outline-offset: 6px; }
.topbar { min-height: 86px; max-width: 1240px; margin: auto; padding: 18px 44px; display: flex; align-items: center; gap: 34px; border-bottom: 1px solid #ffffff14; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-size: 15px; letter-spacing: 1px; font-weight: 800; }
.brand img { width: 38px; height: 38px; object-fit: contain; }
.light { font-weight: 400; }
.navlink { font-size: 14px; color: var(--muted); margin-left: auto; }
.navlink:hover { color: #fff; }
.status { display: inline-flex; align-items: center; gap: 9px; font-size: 12px; color: var(--muted); }
.status::before { content: ''; width: 6px; height: 6px; border-radius: 100%; background: #847b88; }
.status[data-state='online']::before { background: #72d3a3; box-shadow: 0 0 14px #72d3a333; }
.status[data-state='error']::before { background: var(--red); }
main { max-width: 1240px; margin: auto; padding: 0 44px; }
.hero { display: grid; grid-template-columns: 1.15fr 1fr; align-items: center; gap: 48px; min-height: 540px; padding: 64px 0; }
.eyebrow { margin: 0 0 18px; color: #f06583; font-size: 11px; font-weight: 700; letter-spacing: 2.3px; }
h1 { font-size: clamp(38px, 4.8vw, 66px); line-height: 1.06; letter-spacing: -2.4px; margin: 0 0 22px; }
.intro { max-width: 455px; font-size: 17px; line-height: 1.7; color: var(--muted); }
.primary { display: inline-flex; align-items: center; justify-content: space-between; gap: 32px; margin-top: 18px; padding: 17px 24px; background: var(--red); border-radius: 3px; font-size: 15px; font-weight: 700; }
.primary:hover { background: #ff204d; }
.download-note { color: #9a939f; font-size: 12px; line-height: 1.6; margin-top: 18px; }
.hero-mark { display: grid; place-items: center; min-height: 360px; background: radial-gradient(ellipse at center, #96193236, transparent 68%); }
.hero-mark img { width: min(100%, 350px); height: auto; }
.library { padding: 24px 0 68px; scroll-margin-top: 28px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 30px; }
.section-heading .eyebrow { margin-bottom: 10px; }
h2 { margin: 0; font-size: 29px; letter-spacing: -.7px; }
.library-caption, .muted { color: var(--muted); font-size: 14px; line-height: 1.6; }
.pack-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.pack { overflow: hidden; border: 1px solid #ffffff14; border-radius: 7px; background: #15151b; }
.pack-banner { height: 142px; display: grid; place-items: center; padding: 28px; background: radial-gradient(ellipse at top, #49362450, #101014); border-bottom: 1px solid #ffffff0b; }
.pack-banner img { max-width: 90%; max-height: 86px; object-fit: contain; }
.pack-body { padding: 25px; }
.pack h3 { font-size: 21px; margin: 0 0 12px; }
.pack p { margin: 0; min-height: 52px; font-size: 14px; line-height: 1.75; color: var(--muted); }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tag { font-size: 11px; padding: 7px 10px; border: 1px solid #ffffff19; border-radius: 3px; color: #cec7d2; }
footer { max-width: 1240px; margin: auto; padding: 27px 44px; border-top: 1px solid #ffffff14; display: flex; justify-content: space-between; gap: 20px; color: #918b97; font-size: 11px; line-height: 1.7; }
footer > :first-child { letter-spacing: 1.5px; color: #c6c0cc; }
@media (max-width: 700px) {
    .topbar { padding: 18px 22px; gap: 18px; flex-wrap: wrap; }
    .brand { font-size: 12px; }
    .brand img { width: 30px; height: 30px; }
    .status { margin-left: auto; }
    .navlink { display: none; }
    main { padding: 0 22px; }
    .hero { min-height: auto; padding: 44px 0; grid-template-columns: 1fr; gap: 28px; }
    h1 { letter-spacing: -1.3px; }
    .hero-mark { min-height: 200px; }
    .hero-mark img { width: 190px; }
    .section-heading { display: block; }
    .library-caption { display: block; margin-top: 12px; }
    .pack-grid { grid-template-columns: 1fr; }
    .pack p { min-height: 0; }
    footer { padding: 24px 22px; flex-direction: column; gap: 8px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
