@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@600;700;800&display=swap');

:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-2: #edf3f9;
  --surface-3: #e4ebf3;
  --text: #0c1724;
  --muted: #5e6b79;
  --line: rgba(11, 30, 49, .12);
  --header: rgba(244,247,251,.88);
  --primary: #1578b7;
  --primary-strong: #0c639c;
  --primary-soft: #e4f3fc;
  --cyan: #35b7d8;
  --purple: #5947a6;
  --orange: #f37345;
  --success: #20ae73;
  --danger: #e35959;
  --shadow: 0 24px 70px rgba(12, 28, 45, .12);
  --shadow-sm: 0 14px 36px rgba(12, 28, 45, .08);
  --radius: 16px;
  --radius-sm: 10px;
  --shell: 1180px;
  --header-height: 78px;
}

html[data-theme="dark"] {
  --bg: #07111d;
  --surface: #0d1926;
  --surface-2: #101f2e;
  --surface-3: #15283a;
  --text: #f4f8fc;
  --muted: #9eafc0;
  --line: rgba(180, 211, 237, .13);
  --header: rgba(7, 17, 29, .88);
  --primary: #3ba8e0;
  --primary-strong: #5ab8e7;
  --primary-soft: rgba(43, 151, 207, .12);
  --cyan: #58d2e5;
  --purple: #7965cf;
  --orange: #ff8357;
  --success: #35d28d;
  --danger: #ff7575;
  --shadow: 0 28px 90px rgba(0,0,0,.34);
  --shadow-sm: 0 14px 42px rgba(0,0,0,.24);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: var(--bg); color: var(--text); font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; -webkit-font-smoothing: antialiased; transition: background-color .2s ease, color .2s ease; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }
.skip-link { position: fixed; top: 10px; left: 10px; transform: translateY(-150%); padding: 10px 14px; background: var(--surface); border: 1px solid var(--line); z-index: 999; }
.skip-link:focus { transform: none; }

.site-header { height: var(--header-height); position: sticky; top: 0; z-index: 100; background: var(--header); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); }
.nav-shell { height: 100%; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: 180px; }
.brand img { width: 42px; height: 42px; object-fit: cover; border-radius: 8px; box-shadow: 0 6px 18px rgba(14, 104, 156, .2); }
.brand-copy { display: flex; flex-direction: column; line-height: 1; gap: 4px; }
.brand-copy strong { font-family: Manrope, sans-serif; font-size: 16px; letter-spacing: .05em; }
.brand-copy small { color: var(--muted); font-size: 8px; letter-spacing: .24em; font-weight: 800; }
.desktop-nav { flex: 1; display: flex; justify-content: center; align-items: center; gap: 28px; }
.desktop-nav a { color: var(--muted); font-size: 13px; font-weight: 700; position: relative; padding: 29px 0 27px; transition: color .18s ease; }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--text); }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--primary); transform: scaleX(0); transform-origin: center; transition: transform .18s ease; }
.desktop-nav a.active::after { transform: scaleX(1); }
.nav-actions { min-width: 180px; display: flex; justify-content: flex-end; align-items: center; gap: 9px; }
.header-apv { display: inline-flex; align-items: center; justify-content: center; height: 38px; padding: 0 14px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); font-size: 12px; font-weight: 800; letter-spacing: .04em; transition: border-color .18s ease, transform .18s ease; }
.header-apv:hover { border-color: var(--primary); transform: translateY(-1px); }
.theme-toggle, .square-button { width: 40px; height: 38px; border: 1px solid var(--line); background: var(--surface); border-radius: 8px; display: inline-grid; place-items: center; cursor: pointer; transition: border-color .18s ease, transform .18s ease, background .18s ease; }
.theme-toggle:hover, .square-button:hover { border-color: var(--primary); transform: translateY(-1px); }
.theme-toggle svg { width: 17px; height: 17px; }
html[data-theme="dark"] .theme-sun { display: none; }
html[data-theme="light"] .theme-moon { display: none; }
.menu-button { display: none; width: 40px; height: 38px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); cursor: pointer; padding: 9px; }
.menu-button span { display: block; height: 2px; margin: 4px 0; background: currentColor; transition: transform .18s ease, opacity .18s ease; }
.menu-button.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-button.open span:nth-child(2) { opacity: 0; }
.menu-button.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--surface); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.mobile-nav-inner { display: grid; padding-top: 8px; padding-bottom: 18px; }
.mobile-nav a { padding: 13px 2px; border-bottom: 1px solid var(--line); font-weight: 700; font-size: 14px; }

.page { display: none; min-height: calc(100vh - var(--header-height)); animation: pageIn .22s ease both; }
.page.active { display: block; }
@keyframes pageIn { from { opacity: .25; transform: translateY(3px); } to { opacity: 1; transform: none; } }

.hero { min-height: 660px; display: grid; grid-template-columns: minmax(0, .98fr) minmax(420px, .9fr); align-items: center; gap: 70px; padding-top: 70px; padding-bottom: 72px; position: relative; }
.hero::before { content: ""; position: absolute; width: 420px; height: 420px; left: -250px; top: 90px; background: radial-gradient(circle, rgba(38,155,215,.18), transparent 68%); pointer-events: none; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--primary); font-size: 11px; line-height: 1; letter-spacing: .18em; font-weight: 800; margin-bottom: 20px; }
.eyebrow.plain { margin-bottom: 14px; }
.live-dot, .status-mini-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 5px rgba(53,210,141,.10); }
.hero h1, .page-hero h1 { margin: 0; font-family: Manrope, sans-serif; font-weight: 800; letter-spacing: -.052em; line-height: .99; }
.hero h1 { font-size: clamp(48px, 5.5vw, 78px); max-width: 760px; }
.hero h1 span, .page-hero h1 span { color: var(--primary); }
.hero-text { max-width: 630px; color: var(--muted); font-size: 17px; line-height: 1.72; margin: 24px 0 30px; }
.hero-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.button { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 0 18px; border: 1px solid transparent; border-radius: 9px; font-weight: 800; font-size: 13px; line-height: 1; cursor: pointer; transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease; }
.button svg { width: 17px; height: 17px; }
.button:hover { transform: translateY(-2px); }
.button.primary { color: #fff; background: linear-gradient(135deg, #167ebc, #269bcf); box-shadow: 0 10px 26px rgba(15,120,184,.22); }
.button.primary:hover { box-shadow: 0 14px 32px rgba(15,120,184,.32); }
.button.secondary { border-color: var(--line); background: var(--surface); color: var(--text); }
.button.secondary:hover { border-color: rgba(52,168,224,.5); }
.button.ghost { color: var(--muted); border-color: transparent; background: transparent; }
.button.ghost:hover { color: var(--text); background: var(--surface-2); }
.button.compact { min-height: 40px; padding-inline: 14px; font-size: 12px; }
.button.full { width: 100%; }
.hero-meta { margin-top: 30px; display: flex; gap: 10px; align-items: center; color: var(--muted); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.hero-meta i { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); opacity: .7; }

.hero-art { min-height: 510px; position: relative; display: grid; place-items: center; }
.hero-art::before { content: ""; position: absolute; inset: 9% 3%; border-radius: 50%; background: radial-gradient(circle at 50% 45%, rgba(46,166,220,.28), rgba(86,68,166,.14) 36%, transparent 70%); filter: blur(14px); }
.hero-logo-card { width: min(440px, 88%); aspect-ratio: 1; position: relative; z-index: 2; border-radius: 30px; padding: 12px; background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.03)); border: 1px solid rgba(121,198,234,.25); box-shadow: 0 45px 90px rgba(0,0,0,.28); transform: rotate(-1.5deg); }
html[data-theme="light"] .hero-logo-card { border-color: rgba(17,110,162,.2); box-shadow: 0 40px 80px rgba(17,55,82,.18); }
.hero-logo-card img { width: 100%; height: 100%; object-fit: cover; border-radius: 21px; }
.hero-orbit { position: absolute; border: 1px solid rgba(72,179,226,.18); border-radius: 50%; }
.orbit-one { width: 480px; height: 480px; }
.orbit-two { width: 570px; height: 570px; border-style: dashed; opacity: .55; }
.hero-float { position: absolute; z-index: 4; background: color-mix(in srgb, var(--surface) 91%, transparent); border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow-sm); backdrop-filter: blur(14px); }
.hero-float-one { left: 0; bottom: 18%; padding: 12px 16px; display: flex; flex-direction: column; gap: 2px; }
.hero-float-one strong { font-family: Manrope; font-size: 13px; letter-spacing: .05em; }
.hero-float-one span { font-size: 8px; color: var(--muted); letter-spacing: .2em; font-weight: 800; }
.hero-float-two { right: -2px; top: 24%; padding: 11px 13px; display: flex; align-items: center; gap: 9px; font-size: 11px; }
.hero-float-two strong { font-weight: 800; }

.server-band { border-block: 1px solid var(--line); background: linear-gradient(90deg, transparent, var(--surface-2), transparent); }
.server-card { min-height: 106px; display: grid; grid-template-columns: 1.1fr .55fr 1.2fr auto; align-items: center; gap: 26px; }
.server-status-block, .server-stat { display: flex; align-items: center; gap: 13px; }
.status-indicator { flex: 0 0 auto; width: 10px; height: 10px; border-radius: 50%; background: #7a8794; box-shadow: 0 0 0 5px rgba(126,139,152,.08); }
.status-indicator.online { background: var(--success); box-shadow: 0 0 0 5px rgba(53,210,141,.10); }
.status-indicator.offline { background: var(--danger); box-shadow: 0 0 0 5px rgba(227,89,89,.10); }
.server-status-block div, .server-stat { flex-direction: column; align-items: flex-start; gap: 3px; }
.server-card small { color: var(--muted); font-size: 9px; letter-spacing: .15em; font-weight: 800; }
.server-card strong { font-size: 13px; }
.server-name-stat strong { max-width: 300px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.server-actions { display: flex; gap: 8px; justify-content: flex-end; }

.section { padding-top: 104px; padding-bottom: 104px; }
.section-tight { padding-bottom: 74px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 44px; margin-bottom: 34px; }
.section-heading h2 { margin: 0; font-family: Manrope, sans-serif; font-size: clamp(30px, 4vw, 45px); letter-spacing: -.04em; line-height: 1.05; }
.section-heading > p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 14px; max-width: 470px; }
.text-link { color: var(--primary); font-weight: 800; font-size: 13px; }
.quick-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.quick-card { min-height: 218px; position: relative; display: grid; grid-template-columns: 52px 1fr auto; gap: 18px; padding: 27px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .18s ease, border-color .18s ease; }
.quick-card:hover { transform: translateY(-3px); border-color: rgba(52,168,224,.44); }
.quick-card::after { content: ""; width: 150px; height: 150px; position: absolute; right: -80px; bottom: -90px; background: radial-gradient(circle, rgba(54,180,221,.16), transparent 67%); }
.quick-index { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .08em; padding-top: 4px; }
.quick-card small { color: var(--primary); font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.quick-card h3 { margin: 9px 0 10px; font-family: Manrope; font-size: 25px; letter-spacing: -.03em; }
.quick-card p { margin: 0; color: var(--muted); line-height: 1.62; font-size: 13px; max-width: 420px; }
.quick-card .arrow { font-size: 20px; color: var(--primary); }
.accent-card { background: linear-gradient(135deg, color-mix(in srgb, var(--surface) 92%, var(--primary)), var(--surface)); }

.support-banner { min-height: 245px; padding: 36px; display: grid; grid-template-columns: 72px 1fr auto; align-items: center; gap: 28px; border: 1px solid rgba(59,168,224,.23); border-radius: 20px; background: linear-gradient(135deg, var(--primary-soft), var(--surface)); box-shadow: var(--shadow-sm); }
.support-icon { width: 62px; height: 62px; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; color: var(--primary); }
.support-icon svg { width: 27px; height: 27px; }
.support-copy h2 { margin: 0 0 10px; font-family: Manrope; font-size: 31px; letter-spacing: -.035em; }
.support-copy p { max-width: 620px; margin: 0; color: var(--muted); line-height: 1.65; font-size: 14px; }

.home-faq-preview { padding-top: 36px; }
.faq-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.faq-preview-grid article { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.faq-preview-grid article > span { color: var(--primary); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.faq-preview-grid h3 { margin: 18px 0 10px; font-family: Manrope; font-size: 18px; letter-spacing: -.02em; }
.faq-preview-grid p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 13px; }

.inner-page { padding-bottom: 110px; }
.page-hero { padding-top: 92px; padding-bottom: 54px; max-width: var(--shell); }
.page-hero h1 { font-size: clamp(44px, 6vw, 68px); max-width: 810px; }
.page-hero p { max-width: 720px; margin: 22px 0 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.store-hero { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.store-hero > div { max-width: 800px; }

.cards-stack { display: grid; gap: 12px; }
.application-card { min-height: 190px; display: grid; grid-template-columns: 56px 1fr auto; gap: 24px; align-items: center; padding: 30px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.featured-card { border-color: rgba(52,168,224,.28); background: linear-gradient(135deg, var(--primary-soft), var(--surface) 52%); }
.card-index { color: var(--muted); align-self: start; padding-top: 5px; font-size: 11px; font-weight: 800; }
.tag { width: max-content; display: inline-flex; padding: 6px 8px; border: 1px solid var(--line); border-radius: 6px; color: var(--muted); background: var(--surface-2); font-size: 8px; font-weight: 800; letter-spacing: .13em; }
.tag.open { color: var(--success); border-color: color-mix(in srgb, var(--success) 28%, transparent); background: color-mix(in srgb, var(--success) 8%, transparent); }
.application-content h2 { margin: 11px 0 8px; font-family: Manrope; font-size: 25px; letter-spacing: -.03em; }
.application-content p { max-width: 700px; margin: 0; color: var(--muted); line-height: 1.62; font-size: 13px; }
.muted-label { color: var(--muted); font-size: 12px; font-weight: 700; }

.discord-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.discord-card { min-height: 315px; display: flex; flex-direction: column; align-items: flex-start; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-sm); }
.discord-main-card { background: linear-gradient(145deg, var(--primary-soft), var(--surface) 60%); border-color: rgba(52,168,224,.26); }
.discord-badge { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 24px; border: 1px solid var(--line); border-radius: 9px; background: var(--surface-2); color: var(--primary); font-family: Manrope; font-size: 13px; font-weight: 800; }
.discord-card h2 { margin: 11px 0 8px; font-family: Manrope; font-size: 25px; letter-spacing: -.03em; }
.discord-card p { flex: 1; margin: 0 0 24px; color: var(--muted); line-height: 1.63; font-size: 13px; }

.store-shell { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 22px; align-items: start; }
.store-sidebar { position: sticky; top: calc(var(--header-height) + 24px); padding: 18px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.store-sidebar-head { display: flex; flex-direction: column; gap: 5px; padding: 5px 6px 15px; border-bottom: 1px solid var(--line); }
.store-sidebar-head small { color: var(--muted); font-size: 8px; letter-spacing: .16em; font-weight: 800; }
.store-sidebar-head strong { font-family: Manrope; font-size: 18px; }
.category-list { display: grid; gap: 5px; padding-block: 13px; }
.category-button { width: 100%; min-height: 39px; text-align: left; padding: 0 10px; border: 1px solid transparent; border-radius: 7px; background: transparent; color: var(--muted); font-size: 12px; font-weight: 700; cursor: pointer; }
.category-button:hover { background: var(--surface-2); color: var(--text); }
.category-button.active { color: var(--primary); background: var(--primary-soft); border-color: rgba(52,168,224,.15); }
.safe-payment { display: flex; gap: 10px; padding: 14px 7px 4px; border-top: 1px solid var(--line); }
.safe-payment svg { flex: 0 0 auto; width: 20px; height: 20px; color: var(--success); }
.safe-payment div { display: flex; flex-direction: column; gap: 3px; }
.safe-payment strong { font-size: 11px; }
.safe-payment span { color: var(--muted); font-size: 9px; line-height: 1.4; }
.store-toolbar { min-height: 64px; display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; padding: 0 2px; }
.store-toolbar > div { display: flex; flex-direction: column; gap: 4px; }
.store-toolbar strong { font-family: Manrope; font-size: 20px; }
.store-toolbar span { color: var(--muted); font-size: 11px; }
.square-button svg { width: 18px; height: 18px; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; }
.product-card { min-width: 0; display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .18s ease, border-color .18s ease; }
.product-card:hover { transform: translateY(-3px); border-color: rgba(52,168,224,.34); }
.product-media { aspect-ratio: 16 / 10; background: linear-gradient(145deg, var(--surface-2), var(--surface-3)); display: grid; place-items: center; overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-placeholder { width: 54px; height: 54px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 12px; font-family: Manrope; font-size: 16px; color: var(--primary); background: var(--surface); }
.product-body { flex: 1; display: flex; flex-direction: column; padding: 18px; }
.product-category { color: var(--primary); font-size: 8px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.product-body h3 { margin: 9px 0 8px; font-family: Manrope; font-size: 17px; line-height: 1.22; letter-spacing: -.02em; }
.product-description { flex: 1; margin: 0 0 18px; color: var(--muted); font-size: 11px; line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 15px; border-top: 1px solid var(--line); }
.product-price { display: flex; flex-direction: column; gap: 2px; }
.product-price strong { font-family: Manrope; font-size: 17px; }
.product-price del { color: var(--muted); font-size: 9px; }
.product-buy { min-height: 38px; padding-inline: 12px; }
.store-loading { grid-column: 1 / -1; min-height: 260px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.store-loading span { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); animation: loading 1s infinite ease-in-out; }
.store-loading span:nth-child(2) { animation-delay: .12s; }
.store-loading span:nth-child(3) { animation-delay: .24s; }
@keyframes loading { 0%,80%,100%{ transform: scale(.65); opacity:.35} 40%{transform:scale(1);opacity:1} }
.store-message { grid-column: 1/-1; min-height: 250px; display: grid; place-items: center; text-align: center; padding: 40px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.store-message div { max-width: 520px; }
.store-message h3 { margin: 0 0 9px; font-family: Manrope; font-size: 22px; }
.store-message p { margin: 0 0 18px; color: var(--muted); line-height: 1.6; font-size: 13px; }

.faq-layout { display: grid; grid-template-columns: minmax(0, 1fr) 315px; gap: 22px; align-items: start; }
.faq-list { display: grid; gap: 8px; }
details { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
summary { min-height: 70px; display: grid; grid-template-columns: 38px 1fr 18px; gap: 15px; align-items: center; padding: 0 22px; list-style: none; cursor: pointer; font-size: 14px; font-weight: 800; }
summary::-webkit-details-marker { display: none; }
summary > span { color: var(--muted); font-size: 10px; letter-spacing: .08em; }
summary i { width: 12px; height: 12px; position: relative; }
summary i::before, summary i::after { content: ""; position: absolute; background: var(--muted); }
summary i::before { width: 12px; height: 1px; top: 5px; left: 0; }
summary i::after { width: 1px; height: 12px; top: 0; left: 5px; transition: transform .18s ease; }
details[open] summary i::after { transform: rotate(90deg); }
.faq-answer { padding: 0 22px 22px 75px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.faq-answer p { margin: 0 0 10px; }
.faq-answer a { color: var(--primary); font-weight: 800; }
.faq-support-card { position: sticky; top: calc(var(--header-height) + 24px); padding: 28px; border: 1px solid rgba(52,168,224,.23); border-radius: var(--radius); background: linear-gradient(145deg, var(--primary-soft), var(--surface)); box-shadow: var(--shadow-sm); }
.faq-support-card .support-icon { margin-bottom: 25px; }
.faq-support-card h2 { margin: 0 0 10px; font-family: Manrope; font-size: 27px; letter-spacing: -.035em; }
.faq-support-card p { margin: 0 0 24px; color: var(--muted); font-size: 13px; line-height: 1.65; }

.site-footer { margin-top: 70px; border-top: 1px solid var(--line); background: var(--surface); }
.footer-top { display: grid; grid-template-columns: 1fr 1.5fr; gap: 70px; padding-top: 54px; padding-bottom: 48px; }
.footer-brand { display: flex; align-items: center; gap: 14px; align-self: start; }
.footer-brand img { width: 56px; height: 56px; object-fit: cover; border-radius: 10px; }
.footer-brand div { display: flex; flex-direction: column; gap: 4px; }
.footer-brand strong { font-family: Manrope; font-size: 17px; letter-spacing: .04em; }
.footer-brand span { color: var(--muted); font-size: 11px; }
.footer-columns { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.footer-columns > div { display: flex; flex-direction: column; gap: 11px; }
.footer-columns strong { margin-bottom: 3px; font-size: 11px; letter-spacing: .05em; }
.footer-columns a { color: var(--muted); font-size: 11px; }
.footer-columns a:hover { color: var(--primary); }
.footer-bottom { min-height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 9px; }
.toast { position: fixed; right: 22px; bottom: 22px; z-index: 400; max-width: 360px; padding: 13px 15px; color: var(--text); background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--primary); border-radius: 8px; box-shadow: var(--shadow); font-size: 12px; line-height: 1.45; transform: translateY(130%); opacity: 0; transition: .2s ease; }
.toast.show { transform: none; opacity: 1; }

@media (max-width: 1020px) {
  .desktop-nav { display: none; }
  .nav-shell { justify-content: space-between; }
  .nav-actions { min-width: 0; }
  .menu-button { display: block; }
  .mobile-nav.open { display: block; }
  .hero { grid-template-columns: 1fr .82fr; gap: 30px; }
  .hero-art { min-height: 440px; }
  .orbit-two { width: 470px; height: 470px; }
  .orbit-one { width: 410px; height: 410px; }
  .server-card { grid-template-columns: 1fr .6fr auto; padding-block: 18px; }
  .server-name-stat { display: none; }
  .product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 780px) {
  :root { --header-height: 68px; }
  .shell { width: min(calc(100% - 30px), var(--shell)); }
  .brand { min-width: 0; }
  .brand img { width: 38px; height: 38px; }
  .brand-copy strong { font-size: 14px; }
  .header-apv { display: none; }
  .hero { min-height: auto; display: flex; flex-direction: column; gap: 20px; padding-top: 56px; padding-bottom: 48px; }
  .hero-content { width: 100%; }
  .hero h1 { font-size: clamp(43px, 13vw, 62px); max-width: 640px; }
  .hero-text { font-size: 15px; margin: 20px 0 25px; }
  .hero-actions .button { flex: 1 1 150px; }
  .hero-meta { flex-wrap: wrap; margin-top: 22px; }
  .hero-art { width: 100%; min-height: 410px; margin-top: 12px; overflow: hidden; }
  .hero-logo-card { width: min(390px, 86vw); }
  .orbit-one { width: min(420px, 96vw); height: min(420px, 96vw); }
  .orbit-two { width: min(500px, 116vw); height: min(500px, 116vw); }
  .hero-float-one { left: 4%; bottom: 13%; }
  .hero-float-two { right: 4%; top: 16%; }
  .server-card { grid-template-columns: 1fr auto; gap: 16px; }
  .server-stat { display: none; }
  .server-actions .secondary { display: none; }
  .section { padding-top: 76px; padding-bottom: 76px; }
  .section-tight { padding-bottom: 54px; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 15px; }
  .quick-grid { grid-template-columns: 1fr; }
  .quick-card { min-height: 185px; grid-template-columns: 38px 1fr auto; padding: 22px; }
  .support-banner { grid-template-columns: 56px 1fr; padding: 26px; }
  .support-icon { width: 52px; height: 52px; }
  .support-banner .button { grid-column: 1 / -1; width: 100%; }
  .faq-preview-grid { grid-template-columns: 1fr; }
  .page-hero { padding-top: 64px; padding-bottom: 38px; }
  .page-hero h1 { font-size: clamp(42px, 12vw, 58px); }
  .page-hero p { font-size: 14px; }
  .store-hero { display: block; }
  .store-hero .button { margin-top: 24px; }
  .application-card { grid-template-columns: 34px 1fr; gap: 12px; padding: 24px; }
  .application-card > .button, .application-card > .muted-label { grid-column: 2; justify-self: start; }
  .discord-grid { grid-template-columns: 1fr; }
  .store-shell { grid-template-columns: 1fr; }
  .store-sidebar { position: static; }
  .category-list { display: flex; overflow-x: auto; padding-bottom: 10px; scrollbar-width: thin; }
  .category-button { width: auto; flex: 0 0 auto; padding-inline: 12px; }
  .safe-payment { display: none; }
  .product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-support-card { position: static; }
  .footer-top { grid-template-columns: 1fr; gap: 38px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; justify-content: center; padding-block: 16px; }
}

@media (max-width: 540px) {
  .shell { width: min(calc(100% - 24px), var(--shell)); }
  .brand-copy { display: none; }
  .nav-actions { gap: 7px; }
  .theme-toggle, .menu-button { width: 38px; height: 36px; }
  .hero { padding-top: 42px; }
  .hero h1 { font-size: clamp(40px, 12.8vw, 56px); }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-actions .primary { grid-column: 1 / -1; }
  .hero-art { min-height: 350px; }
  .hero-float-one { display: none; }
  .hero-float-two { right: 2%; top: 11%; }
  .server-card { min-height: 92px; }
  .server-actions .button { min-height: 40px; }
  .quick-card { min-height: 180px; grid-template-columns: 30px 1fr auto; gap: 10px; padding: 19px; }
  .quick-card h3 { font-size: 22px; }
  .support-banner { grid-template-columns: 1fr; gap: 16px; padding: 22px; }
  .support-copy h2 { font-size: 28px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-media { aspect-ratio: 16 / 8.7; }
  .application-card { grid-template-columns: 1fr; }
  .application-card .card-index { display: none; }
  .application-card > .button, .application-card > .muted-label { grid-column: auto; width: 100%; text-align: center; justify-self: stretch; }
  summary { grid-template-columns: 30px 1fr 16px; padding: 0 16px; font-size: 13px; }
  .faq-answer { padding: 0 16px 20px 61px; }
  .footer-columns { grid-template-columns: 1fr 1fr; }
  .footer-columns > div:last-child { grid-column: 1 / -1; }
  .toast { left: 12px; right: 12px; bottom: 12px; max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Cookie consent */
.footer-link-button { appearance: none; border: 0; padding: 0; background: none; color: var(--muted); font: inherit; font-size: 11px; text-align: left; cursor: pointer; }
.footer-link-button:hover, .footer-link-button:focus-visible { color: var(--primary); }
.cookie-banner { position: fixed; inset: 0; z-index: 2000; display: grid; place-items: center; padding: 24px; pointer-events: none; opacity: 0; background: rgba(2, 8, 16, .68); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); transition: opacity .18s ease; }
.cookie-banner[hidden] { display: none; }
.cookie-banner.visible { pointer-events: auto; opacity: 1; }
.cookie-panel { width: min(720px, 100%); max-height: calc(100vh - 48px); overflow-y: auto; display: grid; grid-template-columns: 1fr; gap: 22px; padding: 28px; border: 1px solid var(--line); border-top: 2px solid var(--primary); border-radius: 12px; background: color-mix(in srgb, var(--surface) 98%, transparent); box-shadow: 0 30px 90px rgba(0,0,0,.42); transform: translateY(14px) scale(.985); transition: transform .18s ease; }
.cookie-banner.visible .cookie-panel { transform: translateY(0) scale(1); }
body.cookie-overlay-open { overflow: hidden; }
.cookie-copy { max-width: 100%; }
.cookie-copy h2 { margin: 8px 0 7px; font-family: Manrope; font-size: 22px; letter-spacing: -.035em; }
.cookie-copy p { margin: 0 0 8px; color: var(--muted); font-size: 12px; line-height: 1.65; }
.cookie-copy > a { color: var(--primary); font-size: 11px; font-weight: 800; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; padding-top: 2px; }
.cookie-actions .button { min-height: 42px; white-space: nowrap; }

/* Privacy page */
.privacy-body { min-height: 100vh; }
.privacy-header .nav-shell { justify-content: space-between; }
.privacy-nav-actions { display: flex; align-items: center; gap: 10px; }
.privacy-main { padding-top: var(--header-height); }
.privacy-hero { padding-top: 82px; padding-bottom: 48px; border-bottom: 1px solid var(--line); }
.privacy-hero h1 { margin: 8px 0 16px; max-width: 820px; font-family: Manrope; font-size: clamp(46px, 7vw, 78px); line-height: .98; letter-spacing: -.055em; }
.privacy-hero h1 span { color: var(--primary); }
.privacy-hero > p { max-width: 760px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.privacy-meta { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 30px; color: var(--muted); font-size: 10px; }
.privacy-settings-link { appearance: none; border: 0; padding: 0; background: none; cursor: pointer; }
.privacy-layout { display: grid; grid-template-columns: 245px minmax(0, 1fr); gap: 70px; align-items: start; padding-top: 62px; padding-bottom: 100px; }
.privacy-toc { position: sticky; top: calc(var(--header-height) + 24px); display: flex; flex-direction: column; gap: 11px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.privacy-toc strong { margin-bottom: 5px; font-family: Manrope; font-size: 12px; }
.privacy-toc a { color: var(--muted); font-size: 11px; line-height: 1.35; }
.privacy-toc a:hover { color: var(--primary); }
.privacy-content { max-width: 850px; }
.privacy-content > section { scroll-margin-top: calc(var(--header-height) + 32px); padding: 0 0 46px; margin: 0 0 46px; border-bottom: 1px solid var(--line); }
.privacy-content > section:last-child { border-bottom: 0; margin-bottom: 0; }
.privacy-number { display: block; margin-bottom: 10px; color: var(--primary); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.privacy-content h2 { margin: 0 0 16px; font-family: Manrope; font-size: clamp(25px, 3vw, 34px); letter-spacing: -.035em; }
.privacy-content p { margin: 0 0 15px; color: var(--muted); font-size: 13px; line-height: 1.8; }
.privacy-content .button { margin-top: 7px; }
.privacy-table-wrap { margin: 24px 0; overflow-x: auto; border: 1px solid var(--line); border-radius: 10px; }
.privacy-table { width: 100%; min-width: 620px; border-collapse: collapse; font-size: 11px; }
.privacy-table th, .privacy-table td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.privacy-table th { color: var(--text); background: var(--surface-2); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.privacy-table td { color: var(--muted); line-height: 1.5; }
.privacy-table tr:last-child td { border-bottom: 0; }
.privacy-table code { color: var(--text); font-size: 10px; }
.privacy-footer-bottom { min-height: 72px; }
.privacy-footer-links { display: flex; align-items: center; gap: 18px; }
.privacy-footer-links a { color: var(--muted); }
.privacy-footer-links a:hover { color: var(--primary); }

@media (max-width: 780px) {
  .cookie-banner { padding: 14px; }
  .cookie-panel { width: min(100%, 720px); max-height: calc(100vh - 28px); gap: 18px; padding: 20px; }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions .button { flex: 1 1 180px; }
  .privacy-hero { padding-top: 54px; padding-bottom: 38px; }
  .privacy-meta { align-items: flex-start; flex-direction: column; }
  .privacy-layout { grid-template-columns: 1fr; gap: 28px; padding-top: 38px; }
  .privacy-toc { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; }
  .privacy-toc strong { grid-column: 1 / -1; }
  .privacy-nav-actions .header-apv { display: inline-flex; }
}

@media (max-width: 540px) {
  .privacy-nav-actions .header-apv { display: none; }
  .privacy-hero h1 { font-size: 45px; }
  .privacy-toc { grid-template-columns: 1fr; }
  .cookie-actions { display: grid; grid-template-columns: 1fr; }
  .cookie-actions .button { width: 100%; }
}
