/* Global Typography */
@font-face { font-family: 'Lato'; src: url('../fonts/Lato/Lato-Regular.ttf') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Lato'; src: url('../fonts/Lato/Lato-Bold.ttf') format('truetype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Lato'; src: url('../fonts/Lato/Lato-Italic.ttf') format('truetype'); font-weight: 400; font-style: italic; font-display: swap; }

:root {
	--bg: #0b0f1a;
	--panel: #121827;
	--panel-2: #0f1524;
	--text: #e8eefc;
	--muted: #9fb3d1;
	--brand: #53b1fd;
	--brand-2: #3a8bfd;
	--accent: #22d3ee;
	--danger: #f43f5e;
	--ok: #34d399;
	--ring: rgba(83, 177, 253, 0.4);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); font-family: 'Lato', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* Layout */
.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 16px; }
section { padding: 56px 0; border-top: 1px solid rgba(255,255,255,0.06); background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)); }
section:nth-of-type(odd) { background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0)); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(11, 15, 26, 0.7); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,0.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 14px 10px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 32px; border-radius: 8px; }
.brand span { font-weight: 700; letter-spacing: 0.4px; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 40px; padding: 0 16px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.12); color: var(--text); background: linear-gradient(180deg, rgba(83,177,253,0.16), rgba(83,177,253,0.06)); box-shadow: 0 0 0 0 var(--ring); transition: box-shadow .2s ease, transform .15s ease, background .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-1px); border-color: rgba(255,255,255,0.24); box-shadow: 0 6px 18px -8px rgba(83,177,253,.5), 0 0 0 4px var(--ring); }
.btn.primary { background: linear-gradient(180deg, var(--brand), var(--brand-2)); border-color: transparent; color: #061120; }
.btn.primary:hover { box-shadow: 0 10px 24px -10px rgba(58,139,253,.7), 0 0 0 4px var(--ring); }
.btn.ghost { background: transparent; }

/* Burger */
.burger { display: none; position: relative; width: 40px; height: 40px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.02); cursor: pointer; align-items: center; justify-content: center; transition: border-color .2s ease, background .2s ease; }
.burger:hover { border-color: rgba(255,255,255,0.24); background: rgba(255,255,255,0.06); }
.burger .bar { width: 20px; height: 2px; background: var(--text); border-radius: 2px; position: relative; transition: background .2s ease; }
.burger .bar::before, .burger .bar::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s ease, top .25s ease, opacity .2s ease; }
.burger .bar::before { top: -6px; }
.burger .bar::after { top: 6px; }
.burger.active .bar { background: transparent; }
.burger.active .bar::before { transform: rotate(45deg); top: 0; }
.burger.active .bar::after { transform: rotate(-45deg); top: 0; }

/* Overlay Menu */
.overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; height: 100vh; width: 100vw; background: radial-gradient(1000px 600px at 50% -20%, rgba(83,177,253,0.15), transparent), linear-gradient(180deg, rgba(15,21,36,0.98), rgba(11,15,26,0.98)); display: none; z-index: 100; }
.overlay.open { display: block; }
.overlay-inner { height: 100%; display: flex; flex-direction: column; }
.overlay-top { display: flex; align-items: center; justify-content: space-between; padding: 16px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.overlay-nav { flex: 1; display: flex; align-items: center; justify-content: center; }
.overlay-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; text-align: center; }
.overlay-list a { font-size: 24px; font-weight: 700; color: var(--text); padding: 10px 16px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.03); transition: transform .15s ease, background .2s ease, border-color .2s ease; }
.overlay-list a:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.18); background: rgba(255,255,255,0.06); }

/* Hero */
.hero { padding: 40px 0 24px; }
.hero h1 { margin: 12px 0 8px; font-size: 36px; line-height: 1.2; }
.hero p { color: var(--muted); max-width: 760px; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.hero-media { margin-top: 24px; display: grid; grid-template-columns: 1fr; }
.hero-media .media-wrap { width: 100%; max-width: 560px; }
.hero-media .media-wrap img { aspect-ratio: 1 / 1; object-fit: cover; border-radius: 16px; border: 1px solid rgba(255,255,255,0.08); }

/* Sections */
h2 { font-size: 26px; margin: 0 0 12px; }
h3 { font-size: 20px; margin: 18px 0 8px; color: var(--muted); }
p { margin: 8px 0; }
.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 12px; }
.card { background: linear-gradient(180deg, var(--panel), var(--panel-2)); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 16px; }
.card h4 { margin: 0 0 6px; font-size: 18px; }
.card p { color: var(--muted); }

/* Tables */
.table-wrap { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; }
table { width: 100%; border-collapse: collapse; min-width: 640px; }
th, td { padding: 12px 14px; border-bottom: 1px solid rgba(255,255,255,0.08); text-align: left; }
thead th { background: rgba(255,255,255,0.04); font-weight: 700; }

/* Footer */
.site-footer { margin-top: 48px; border-top: 1px solid rgba(255,255,255,0.08); background: #0a0f1a; }
.footer-inner { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 24px; padding: 32px 10px; }
.footer-brand { display: flex; gap: 12px; align-items: center; }
.footer-brand img { height: 40px; border-radius: 10px; }
.footer-brand span { font-weight: 700; }
.footer-nav { display: grid; gap: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 14px 10px; color: var(--muted); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

/* Responsive */
@media (max-width: 992px) {
	.cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
	.hero h1 { font-size: 28px; }
	.cards { grid-template-columns: 1fr; }
	.nav-desktop { display: none; }
	.burger { display: inline-flex; }
	.footer-inner {
		grid-template-columns: 1fr;
	}
}


