:root {
    --bg: #f4f7fc;
    --surface: #ffffff;
    --surface-soft: #f8faff;
    --navy: #111e33;
    --navy-2: #172941;
    --primary: #2f66ee;
    --primary-dark: #2354ce;
    --primary-soft: #eaf0ff;
    --cyan: #22b6e8;
    --green: #22c98f;
    --orange: #ffad24;
    --text: #12203a;
    --muted: #71809a;
    --line: #e1e8f2;
    --line-strong: #d4deec;
    --shadow: 0 18px 55px rgba(36, 61, 105, .12);
    --shadow-soft: 0 8px 26px rgba(36, 61, 105, .08);
    --radius: 18px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
    margin: 0;
    min-width: 320px;
    color: var(--text);
    background: var(--bg);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.65;
    overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }

.topbar {
    height: 34px;
    color: #d5dfef;
    background: var(--navy);
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: 10px;
    font-weight: 700;
}
.topbar-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.utility-links, .social-links { display: flex; align-items: center; gap: 22px; }
.utility-links a::before { content: "◆"; margin-right: 7px; color: #6f8dc7; font-size: 6px; }
.social-links a { position: relative; }
.social-links a + a::before { content: ""; position: absolute; left: -11px; top: 50%; width: 1px; height: 9px; background: rgba(255,255,255,.18); transform: translateY(-50%); }
.topbar a:hover { color: #fff; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    min-height: 84px;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 30px rgba(24, 50, 92, .08);
    backdrop-filter: blur(18px);
}
.header-inner { min-height: 84px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    border-radius: 15px;
    box-shadow: 0 10px 24px rgba(47,102,238,.25);
    font-size: 15px;
    font-weight: 900;
    transform: rotate(-5deg);
}
.brand-copy strong, .brand-copy small { display: block; white-space: nowrap; }
.brand-copy strong { font-size: 16px; line-height: 1; letter-spacing: -.02em; }
.brand-copy small { margin-top: 5px; color: var(--primary); font-size: 7px; font-weight: 900; letter-spacing: .06em; }
.primary-menu { display: flex; align-items: center; justify-content: center; gap: 28px; margin-left: auto; }
.primary-menu a { position: relative; padding: 31px 0 29px; color: #41506a; font-size: 10px; font-weight: 900; white-space: nowrap; transition: color .2s ease; }
.primary-menu a::after { content: ""; position: absolute; left: 50%; bottom: 20px; width: 0; height: 3px; border-radius: 999px; background: var(--primary); transform: translateX(-50%); transition: width .2s ease; }
.primary-menu a:hover, .primary-menu a.active { color: var(--primary); }
.primary-menu a:hover::after, .primary-menu a.active::after { width: 22px; }
.header-actions { display: flex; gap: 9px; margin-left: 6px; }
.nav-toggle { display: none; width: 42px; height: 42px; place-items: center; margin-left: auto; background: var(--surface-soft); border: 1px solid var(--line); border-radius: 11px; cursor: pointer; }

.btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 19px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .01em;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
    cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--primary), #4d7df4); box-shadow: 0 10px 24px rgba(47,102,238,.23); }
.btn-primary:hover { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); box-shadow: 0 14px 30px rgba(47,102,238,.3); }
.btn-outline { color: var(--text); background: rgba(255,255,255,.88); border-color: #cad5e5; }
.btn-outline:hover { color: var(--primary); border-color: var(--primary); box-shadow: 0 10px 24px rgba(36,61,105,.1); }
.btn-header { min-height: 42px; padding-inline: 15px; }
.btn.wide { width: 100%; margin-top: 18px; }

.hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #f7faff;
    border-bottom: 1px solid var(--line);
}
.hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 25%, rgba(34,182,232,.26), transparent 38%),
        linear-gradient(135deg, #172941, #2f66ee 58%, #22b6e8);
}
.hero-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transform: scale(1.025);
    filter: saturate(.9) contrast(1.06) brightness(.86);
    transition: opacity .65s ease;
    pointer-events: none;
}
.hero.video-ready .hero-video { opacity: 1; }
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(247,250,255,.98) 0%, rgba(247,250,255,.95) 30%, rgba(247,250,255,.78) 48%, rgba(247,250,255,.26) 72%, rgba(247,250,255,.14) 100%),
        linear-gradient(180deg, rgba(255,255,255,.03) 35%, rgba(244,247,252,.18) 74%, rgba(244,247,252,.94) 100%);
}
.hero-grid { position: relative; z-index: 2; min-height: 650px; display: grid; grid-template-columns: 58% 42%; align-items: center; }
.hero-copy { max-width: 690px; padding: 70px 0 80px; }
.server-pill { display: inline-flex; align-items: center; gap: 9px; padding: 9px 14px; color: var(--primary-dark); background: rgba(255,255,255,.9); border: 1px solid #cfdaf0; border-radius: 999px; box-shadow: var(--shadow-soft); font-size: 9px; font-weight: 900; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(34,201,143,.12); flex: 0 0 auto; }
.hero-kicker { margin: 24px 0 3px; color: #61728f; font-size: 11px; font-weight: 900; letter-spacing: .22em; }
.hero h1 { margin: 0 0 20px; line-height: .9; text-transform: uppercase; letter-spacing: -3px; }
.hero h1 span, .hero h1 strong { display: block; }
.hero h1 span { color: var(--navy); font-size: clamp(48px, 5.2vw, 76px); font-weight: 900; }
.hero h1 strong { color: var(--primary); font-size: clamp(46px, 5vw, 72px); font-weight: 900; }
.hero-text { max-width: 610px; margin: 0 0 28px; color: #52617a; font-size: 13px; line-height: 1.85; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.stats-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 13px; max-width: 610px; margin-top: 30px; }
.stat-card { min-height: 104px; padding: 18px; background: rgba(255,255,255,.92); border: 1px solid var(--line-strong); border-radius: 15px; box-shadow: var(--shadow-soft); backdrop-filter: blur(8px); }
.stat-icon { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 9px; }
.stat-icon svg { width: 15px; height: 15px; }
.stat-blue { color: var(--primary); background: var(--primary-soft); }
.stat-green { color: var(--green); background: #e7fbf4; }
.stat-orange { color: var(--orange); background: #fff5df; }
.stat-card strong { display: block; margin-top: 10px; color: var(--navy); font-size: 22px; line-height: 1; }
.stat-card small { display: block; margin-top: 7px; color: var(--muted); font-size: 8px; }

.news-ticker { height: 42px; display: flex; align-items: stretch; overflow: hidden; background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ticker-label { flex: 0 0 92px; display: flex; align-items: center; justify-content: center; gap: 7px; color: #fff; background: var(--primary); font-size: 9px; font-weight: 900; }
.ticker-window { position: relative; flex: 1; min-width: 0; overflow: hidden; }
.ticker-track { display: flex; align-items: center; width: max-content; height: 100%; will-change: transform; animation: tickerMove 42s linear infinite; }
.ticker-group { display: flex; align-items: center; flex-shrink: 0; }
.ticker-track span { position: relative; display: inline-flex; align-items: center; padding: 0 42px; color: #52617a; font-size: 9px; font-weight: 700; white-space: nowrap; }
.ticker-track span::before { content: "◆"; margin-right: 14px; color: var(--primary); font-size: 6px; }
.news-ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes tickerMove { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }

.trust-strip { min-height: 46px; display: flex; align-items: center; background: #f9fbff; border-bottom: 1px solid var(--line); }
.trust-items { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 18px 32px; color: #60708a; font-size: 9px; }
.trust-items span { display: inline-flex; align-items: center; gap: 7px; }
.trust-items svg { width: 13px; height: 13px; color: var(--green); }

.section { position: relative; padding: 86px 0; border-bottom: 1px solid var(--line); }
.section-heading { margin-bottom: 30px; }
.section-heading.centered { text-align: center; }
.section-heading.centered p { margin-inline: auto; }
.section-heading > span, .eyebrow { display: block; color: var(--primary); font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.section-heading h2 { margin: 5px 0 7px; color: var(--navy); font-size: clamp(31px, 4vw, 46px); line-height: 1.06; letter-spacing: -1.5px; }
.section-heading p { max-width: 650px; margin: 0; color: var(--muted); font-size: 11px; }
.section-heading.compact { margin-bottom: 0; }
.heading-row { display: flex; align-items: end; justify-content: space-between; gap: 22px; margin-bottom: 28px; }
.heading-note { margin: 0 0 7px; color: var(--muted); font-size: 10px; }
.outline-link { display: inline-flex; align-items: center; gap: 7px; padding: 10px 13px; color: var(--primary); background: #fff; border: 1px solid #ccd8ed; border-radius: 9px; font-size: 9px; font-weight: 900; box-shadow: var(--shadow-soft); }
.outline-link:hover { border-color: var(--primary); }

.about { background: #fff; }
.about-grid { display: grid; grid-template-columns: minmax(0, 2.05fr) minmax(290px, .95fr); gap: 24px; align-items: stretch; }
.video-card { position: relative; display: block; width: 100%; padding: 0; overflow: hidden; background: #e9eff8; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); cursor: pointer; }
.video-card img { height: 100%; min-height: 380px; object-fit: cover; transition: transform .5s ease, filter .5s ease; }
.video-card:hover img { transform: scale(1.025); filter: saturate(1.08); }
.video-overlay { position: absolute; inset: 0; display: grid; place-items: center; background: linear-gradient(180deg, rgba(21,31,52,.02), rgba(21,31,52,.18)); }
.video-play { width: 68px; height: 50px; display: grid; place-items: center; color: #fff; background: #ff315d; border-radius: 13px; box-shadow: 0 14px 35px rgba(255,49,93,.32); }
.update-card { padding: 28px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.update-card h3 { margin: 6px 0 20px; color: var(--navy); font-size: 23px; line-height: 1.2; }
.check-list { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 13px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; color: #52617a; font-size: 10px; font-weight: 700; }
.check-list svg { width: 18px; height: 18px; padding: 3px; color: var(--green); background: #e7fbf4; border-radius: 5px; flex: 0 0 auto; }
.discord-banner { display: flex; align-items: center; gap: 12px; padding: 14px; margin-top: 20px; color: #fff; background: linear-gradient(135deg, #5865f2, #6e78f7); border-radius: 11px; box-shadow: 0 14px 30px rgba(88,101,242,.22); }
.discord-logo { width: 31px; height: 31px; display: grid; place-items: center; background: rgba(255,255,255,.16); border-radius: 50%; }
.discord-banner strong, .discord-banner small { display: block; }
.discord-banner strong { font-size: 11px; }
.discord-banner small { color: rgba(255,255,255,.74); font-size: 8px; }
.muted { margin: 15px 0 0; color: var(--muted); font-size: 9px; }

.news-section { background: var(--bg); }
.news-layout { display: grid; grid-template-columns: minmax(0, 2.2fr) minmax(300px, .8fr); gap: 20px; }
.featured-news { position: relative; min-height: 440px; overflow: hidden; background: #dce4f0; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.featured-news > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.featured-news:hover > img { transform: scale(1.025); }
.featured-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,18,34,.02) 0%, rgba(8,18,34,.16) 46%, rgba(8,18,34,.9) 100%); }
.featured-content { position: absolute; left: 26px; right: 26px; bottom: 22px; z-index: 1; color: #fff; }
.news-type { color: #7da0ff; font-size: 8px; font-weight: 900; letter-spacing: .05em; }
.featured-content h3 { max-width: 760px; margin: 7px 0 9px; font-size: clamp(21px, 2.7vw, 34px); line-height: 1.14; text-transform: uppercase; }
.featured-content p { max-width: 720px; margin: 0; color: #d7dfec; font-size: 9px; }
.news-meta { margin-top: 13px; display: flex; align-items: center; justify-content: space-between; color: #c7d1df; font-size: 8px; }
.news-meta a { display: inline-flex; align-items: center; gap: 4px; font-weight: 800; }
.news-list { display: grid; gap: 13px; }
.news-mini { min-height: 135px; display: grid; grid-template-columns: 43% 57%; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-soft); transition: transform .2s ease, border-color .2s ease; }
.news-mini:hover { transform: translateY(-3px); border-color: #b9caf0; }
.news-mini img { width: 100%; height: 100%; object-fit: cover; }
.news-mini > div { padding: 14px 14px 11px; display: flex; flex-direction: column; }
.news-mini .news-type { color: var(--primary); }
.news-mini h3 { margin: 5px 0 9px; color: var(--navy); font-size: 11px; line-height: 1.3; text-transform: uppercase; }
.news-mini time { margin-top: auto; color: var(--muted); font-size: 8px; }

.guide { background: #fff; }
.steps-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.step-card { min-height: 265px; padding: 26px; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.step-card:hover { transform: translateY(-5px); border-color: #b9caf0; box-shadow: var(--shadow); }
.step-top { display: flex; justify-content: space-between; align-items: flex-start; }
.step-top > strong { color: var(--primary); font-size: 40px; line-height: 1; }
.step-top > span { width: 42px; height: 42px; display: grid; place-items: center; color: var(--primary); background: var(--primary-soft); border-radius: 12px; }
.step-card h3 { margin: 18px 0 9px; color: var(--navy); font-size: 16px; }
.step-card p { margin: 0; color: var(--muted); font-size: 9px; }
.step-card > a { width: max-content; margin-top: auto; display: inline-flex; align-items: center; gap: 5px; padding: 8px 10px; color: var(--primary); background: var(--primary-soft); border-radius: 7px; font-size: 8px; font-weight: 900; }

.server-section { background: linear-gradient(180deg, #f4f7fc, #eef3fb); }
.server-layout { display: grid; grid-template-columns: minmax(0, 2.2fr) minmax(280px, .8fr); gap: 20px; }
.server-card, .donor-card, .quick-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.server-card { padding: 28px; }
.server-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.online-badge { display: inline-flex; align-items: center; gap: 8px; color: var(--green); font-size: 8px; font-weight: 900; }
.server-card h3 { margin: 7px 0 3px; color: var(--navy); font-size: clamp(25px, 3vw, 36px); line-height: 1.08; }
.server-card-head p { margin: 0; color: var(--muted); font-size: 9px; }
.server-count { display: flex; align-items: baseline; color: var(--navy); line-height: 1; }
.server-count strong { font-size: 50px; }
.server-count span { color: #91a0b7; font-size: 14px; font-weight: 800; }
.progress-track { height: 9px; margin: 24px 0; overflow: hidden; background: #edf2f8; border-radius: 999px; }
.progress-track span { display: block; height: 100%; background: linear-gradient(90deg, var(--green), #60e5b3); border-radius: inherit; box-shadow: 0 0 18px rgba(34,201,143,.28); transition: width .5s ease; }
.server-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.server-facts div { padding: 13px; background: var(--surface-soft); border: 1px solid var(--line); border-radius: 10px; }
.server-facts small, .server-address small { display: block; color: #8a98ad; font-size: 7px; font-weight: 900; letter-spacing: .07em; }
.server-facts strong { color: var(--navy); font-size: 10px; }
.server-address { display: flex; align-items: center; justify-content: space-between; padding: 14px 15px; background: var(--primary-soft); border: 1px solid #d4def6; border-radius: 11px; }
.server-address strong { display: block; margin-top: 3px; color: var(--primary-dark); font-size: 12px; }
.copy-button { width: 40px; height: 40px; display: grid; place-items: center; color: var(--primary); background: #fff; border: 1px solid #cbd7ee; border-radius: 9px; cursor: pointer; }
.copy-button:hover { border-color: var(--primary); }
.server-sidebar { display: grid; gap: 14px; align-content: start; }
.donor-card { padding: 20px; }
.donor-title { display: flex; align-items: center; gap: 11px; padding-bottom: 15px; border-bottom: 1px solid var(--line); }
.donor-title > span { color: var(--orange); font-size: 22px; }
.donor-title strong, .donor-title small { display: block; }
.donor-title strong { color: var(--navy); font-size: 11px; }
.donor-title small { color: var(--muted); font-size: 8px; }
.donor-title a { margin-left: auto; display: inline-flex; align-items: center; gap: 5px; color: var(--primary); font-size: 8px; font-weight: 900; }
.donor-person { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 10px; margin: 15px 0 9px; padding: 13px; background: var(--surface-soft); border: 1px solid var(--line); border-radius: 11px; }
.avatar { width: 42px; height: 42px; display: grid; place-items: center; color: #fff; background: linear-gradient(145deg, var(--green), #139f70); border-radius: 10px; font-weight: 900; }
.donor-person strong, .donor-person small { display: block; }
.donor-person strong { color: var(--navy); font-size: 10px; }
.donor-person small { color: var(--muted); font-size: 7px; }
.donor-person b { color: var(--green); font-size: 8px; }
.donor-card p { margin: 0; color: var(--muted); font-size: 7px; }
.quick-card { min-height: 78px; padding: 15px; display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 11px; }
.quick-card > span { width: 38px; height: 38px; display: grid; place-items: center; color: var(--primary); background: var(--primary-soft); border-radius: 10px; }
.quick-card strong, .quick-card small { display: block; }
.quick-card strong { color: var(--navy); font-size: 10px; }
.quick-card small { color: var(--muted); font-size: 7px; }
.quick-card:hover { border-color: #b9caf0; }

footer { padding: 70px 0 28px; color: #cbd6e8; background: var(--navy); }
.footer-grid { display: grid; grid-template-columns: 1.8fr .7fr .7fr; gap: 70px; }
.footer-brand { margin-bottom: 18px; }
.footer-brand .brand-copy strong { color: #fff; }
.footer-brand .brand-copy small { color: #8ba9f5; }
.footer-about p { max-width: 560px; margin: 0 0 12px; color: #95a7bf; font-size: 9px; }
.footer-grid h3 { margin: 0 0 15px; color: #fff; font-size: 11px; }
.footer-grid > div:not(.footer-about) a { display: block; width: max-content; margin: 0 0 8px; color: #9eb0c8; font-size: 9px; }
.footer-grid > div:not(.footer-about) a:hover { color: #fff; }
.footer-social { display: flex; gap: 8px; margin-top: 18px; }
.footer-social a { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.15); border-radius: 7px; font-size: 7px; font-weight: 900; }
.footer-bottom { margin-top: 54px; padding-top: 17px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); color: #71839d; font-size: 7px; }
.toast { position: fixed; left: 50%; bottom: 28px; z-index: 80; transform: translate(-50%, 20px); padding: 11px 16px; color: #fff; background: var(--navy); border-radius: 9px; box-shadow: var(--shadow); font-size: 10px; font-weight: 800; opacity: 0; pointer-events: none; transition: .25s ease; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
    .primary-menu { gap: 17px; }
    .primary-menu a { font-size: 9px; }
    .btn-header { padding-inline: 11px; font-size: 9px; }
    .hero-video { object-position: 56% center; }
}

@media (max-width: 980px) {
    .site-header, .header-inner { min-height: 72px; }
    .nav-toggle { display: grid; }
    .primary-menu {
        position: fixed;
        left: 20px;
        right: 20px;
        top: 112px;
        z-index: 60;
        display: grid;
        gap: 0;
        padding: 8px;
        background: rgba(255,255,255,.99);
        border: 1px solid var(--line);
        border-radius: 15px;
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: .2s ease;
    }
    .primary-menu.open { opacity: 1; visibility: visible; transform: none; }
    .primary-menu a { padding: 13px 14px; border-bottom: 1px solid var(--line); }
    .primary-menu a::after { display: none; }
    .primary-menu a:last-child { border-bottom: 0; }
    .header-actions { margin-left: 0; }
    .hero-video { object-position: center; filter: saturate(.82) contrast(1.04) brightness(.78); }
    .hero-overlay { background: linear-gradient(90deg, rgba(247,250,255,.97), rgba(247,250,255,.90) 62%, rgba(247,250,255,.72)); }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy { max-width: 720px; }
    .about-grid, .news-layout, .server-layout { grid-template-columns: 1fr; }
    .news-list { grid-template-columns: repeat(3, 1fr); }
    .news-mini { grid-template-columns: 1fr; min-height: 255px; }
    .news-mini img { height: 128px; }
}

@media (max-width: 720px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .topbar { height: 30px; }
    .utility-links { gap: 12px; }
    .social-links a:not(:first-child) { display: none; }
    .site-header, .header-inner { min-height: 66px; }
    .brand-mark { width: 41px; height: 41px; border-radius: 12px; }
    .brand-copy strong { font-size: 13px; }
    .brand-copy small { font-size: 6px; }
    .header-actions .btn-outline { display: none; }
    .header-actions .btn-primary { width: 43px; padding: 0; font-size: 0; }
    .header-actions .btn-primary svg { width: 17px; height: 17px; }
    .primary-menu { top: 101px; left: 14px; right: 14px; }
    .hero, .hero-grid { min-height: 650px; }
    .hero-copy { padding: 60px 0 66px; }
    .hero h1 { letter-spacing: -2px; }
    .hero h1 span, .hero h1 strong { font-size: clamp(42px, 14vw, 62px); }
    .hero-text { font-size: 11px; }
    .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
    .btn { padding-inline: 12px; font-size: 9px; }
    .stats-grid { gap: 8px; }
    .stat-card { min-height: 95px; padding: 14px 11px; }
    .stat-card strong { font-size: 18px; }
    .stat-card small { font-size: 7px; }
    .ticker-label { flex-basis: 70px; }
    .ticker-track { animation-duration: 30s; }
    .ticker-track span { padding-inline: 28px; }
    .trust-items { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; padding: 11px 0; }
    .trust-items span { white-space: nowrap; }
    .section { padding: 62px 0; }
    .section-heading h2 { font-size: 32px; }
    .heading-row { align-items: flex-start; }
    .heading-note { display: none; }
    .video-card img { min-height: 230px; }
    .update-card { padding: 21px; }
    .news-list { grid-template-columns: 1fr; }
    .news-mini { grid-template-columns: 125px 1fr; min-height: 115px; }
    .news-mini img { height: 100%; }
    .featured-news { min-height: 395px; }
    .featured-content { left: 18px; right: 18px; }
    .featured-content p { display: none; }
    .steps-grid { grid-template-columns: 1fr; }
    .step-card { min-height: 225px; }
    .server-card { padding: 20px; }
    .server-card-head { align-items: center; }
    .server-count strong { font-size: 38px; }
    .server-facts { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .footer-about { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; }
}

@media (max-width: 460px) {
    .brand-copy { display: none; }
    .header-inner { gap: 9px; }
    .nav-toggle { margin-left: auto; }
    .hero-actions { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-card { min-height: 82px; }
    .server-facts { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; }
    .ticker-track { animation-duration: 42s !important; animation-iteration-count: infinite !important; }
}
