:root {
  --bg: #030507;
  --bg-2: #0a1016;
  --panel: rgba(10, 16, 22, 0.9);
  --line: rgba(132, 246, 255, 0.2);
  --text: #f2f7fb;
  --muted: #9eb5c4;
  --brand: #5ef3ff;
  --brand-2: #1ca6ff;
  --shadow: 0 16px 42px rgba(0, 0, 0, 0.45);
  --radius: 10px;
  --container: min(1200px, 92vw);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: radial-gradient(circle at 8% -20%, #0f2436 0%, var(--bg) 44%, #010205 100%);
  font-family: Rajdhani, Segoe UI, Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3 { margin-top: 0; font-family: Orbitron, Rajdhani, sans-serif; letter-spacing: 0.4px; }
.container { width: var(--container); margin: 0 auto; }
.atmosphere { position: fixed; inset: 0; pointer-events: none; z-index: -1; background: linear-gradient(120deg, rgba(94,243,255,0.1), transparent 28%), linear-gradient(280deg, rgba(28,166,255,0.1), transparent 34%); }
.progress { position: fixed; top: 0; left: 0; width: 0; height: 3px; z-index: 90; background: linear-gradient(90deg, var(--brand), var(--brand-2)); }
.site-header { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(12px); background: rgba(4, 8, 12, 0.9); border-bottom: 1px solid var(--line); }
.nav-wrap { min-height: 72px; display: flex; align-items: center; justify-content: space-between; }
.logo img { width: 210px; }
.nav-links { display: flex; gap: 22px; align-items: center; }
.nav-links a { color: var(--muted); position: relative; font-size: 0.96rem; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px; transform: scaleX(0); transform-origin: left; transition: transform 280ms var(--ease); background: linear-gradient(90deg, var(--brand), transparent); }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-toggle { display: none; width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--line); background: transparent; color: var(--text); }
.icon { width: 20px; height: 20px; }
.hero { min-height: clamp(560px, 80vh, 900px); display: grid; align-items: end; position: relative; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(2,4,6,0.1), rgba(3,6,10,0.9)); }
.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); }
.hero-content { padding: 0 0 72px; }
.eyebrow { margin: 0 0 12px; color: var(--brand); letter-spacing: 2px; text-transform: uppercase; font-size: 0.8rem; }
h1 { font-size: clamp(2rem, 4.8vw, 4.1rem); max-width: 830px; line-height: 1.08; margin-bottom: 16px; }
.lead { margin: 0; max-width: 820px; color: #dfe7f3; font-size: clamp(1rem, 1.95vw, 1.24rem); }
.cta-row { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line); border-radius: 999px; padding: 11px 18px; transition: transform 250ms var(--ease), border-color 250ms var(--ease); }
.btn:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.45); }
.btn-primary { background: linear-gradient(140deg, rgba(94,243,255,0.28), rgba(28,166,255,0.25)); }
.section { padding: clamp(58px, 8vw, 108px) 0; }
.section.alt { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(180deg, rgba(7,11,16,0.84), rgba(3,6,10,0.7)); }
.grid { display: grid; gap: 18px; }
.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card { background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.card h3 { margin-bottom: 8px; font-size: 1.25rem; }
.card p { margin: 0; color: var(--muted); }
.kpi { text-align: center; }
.kpi strong { display: block; color: var(--brand); font-family: Orbitron, Rajdhani, sans-serif; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.kpi span { color: var(--muted); }
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 24px; align-items: stretch; }
.media-block { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; min-height: 320px; }
.media-block img { width: 100%; height: 100%; object-fit: cover; }
.checklist { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.checklist li { display: flex; gap: 10px; color: var(--muted); }
.checklist li::before { content: ">"; color: var(--brand); font-weight: 700; }
.news-ticker { overflow: hidden; border: 1px solid var(--line); border-radius: 999px; background: rgba(13,22,35,0.85); }
.news-ticker-track { display: flex; width: max-content; animation: ticker 24s linear infinite; }
.news-ticker-track span { display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; color: var(--muted); padding: 11px 22px; }
.news-ticker-track span::before { content: ""; width: 8px; height: 8px; border-radius: 999px; background: var(--brand); }
@keyframes ticker { from { transform: translateX(0);} to { transform: translateX(-50%);} }
.feature-band { border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 4vw, 34px); background: linear-gradient(120deg, rgba(94,243,255,0.1), rgba(28,166,255,0.08)); display: grid; grid-template-columns: 1.1fr 1fr; gap: 20px; }
.matrix, .faq-grid, .region-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.region-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 20px; }
.contact-list { display: grid; gap: 12px; }
.contact-item { display: flex; align-items: flex-start; gap: 12px; }
.contact-item .icon { color: var(--brand); margin-top: 2px; }
.timeline { display: grid; gap: 14px; }
.timeline article { border-left: 2px solid rgba(94,243,255,0.6); padding-left: 14px; }
.policy { border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; background: rgba(8,14,20,0.85); }
.policy h2, .policy h3 { margin-top: 28px; }
.policy h2:first-child, .policy h3:first-child { margin-top: 0; }
.policy p, .policy li { color: var(--muted); }
.policy ul, .policy ol { padding-left: 20px; }
.disclosure { color: var(--brand); }
.site-footer { border-top: 1px solid var(--line); margin-top: 46px; background: rgba(3, 6, 9, 0.95); }
.footer-grid { display: grid; grid-template-columns: minmax(360px,1.25fr) minmax(260px,0.9fr) minmax(340px,1fr); align-items: start; gap: 30px; padding: 38px 0 30px; }
.footer-brand img { width: 160px; margin-bottom: 0; }
.footer-brand, .footer-links, .footer-meta { display: grid; gap: 10px; align-content: start; justify-self: start; }
.footer-brand {
  grid-template-columns: 1fr;
  grid-template-areas:
    "heading"
    "logo"
    "name"
    "address";
  row-gap: 8px;
  column-gap: 0;
}
.footer-brand img { grid-area: logo; align-self: start; }
.footer-brand p:first-of-type { grid-area: name; align-self: start; }
.footer-brand p:last-of-type { grid-area: address; }
.footer-brand p, .footer-links a, .footer-meta p { color: var(--muted); margin: 0; line-height: 1.75; }
.footer-brand::before, .footer-links::before, .footer-meta::before { display: block; color: var(--brand); text-transform: uppercase; letter-spacing: 1.2px; font-size: 0.72rem; margin-bottom: 6px; }
.footer-brand::before { content: "Company"; grid-area: heading; margin-bottom: 2px; }
.footer-links::before { content: "Legal"; }
.footer-meta::before { content: "Contacts"; }
.footer-brand p:last-of-type { max-width: 54ch; }
.footer-links, .footer-meta { padding-top: 2px; }
.footer-links a:hover { color: var(--text); }
.footer-links a, .footer-meta p { white-space: normal; word-break: break-word; }
.footer-bottom { border-top: 1px solid var(--line); padding: 14px 0 20px; color: var(--muted); font-size: 0.9rem; }
.footer-bottom p { margin: 0; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 760ms var(--ease), transform 760ms var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (max-width: 980px) {
  .cards-3, .cards-2, .split, .matrix, .faq-grid, .region-grid, .feature-band, .footer-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-links { position: absolute; right: 4vw; top: 72px; width: min(290px, 92vw); flex-direction: column; align-items: flex-start; gap: 12px; border: 1px solid var(--line); border-radius: 12px; padding: 14px; background: rgba(5,10,18,0.95); opacity: 0; transform: scale(0.98); pointer-events: none; transition: opacity 220ms ease, transform 220ms ease; }
  .nav-links.open { opacity: 1; transform: scale(1); pointer-events: auto; }
  .hero-content { padding-bottom: 48px; }
  .footer-grid { gap: 18px; padding: 28px 0 22px; }
  .footer-brand { grid-template-columns: 1fr; grid-template-areas: "heading" "logo" "name" "address"; }
  .footer-brand img { width: 170px; }
  .footer-links, .footer-meta { justify-self: start; }
  .footer-links a, .footer-meta p { white-space: normal; }
  .footer-brand p:last-child { max-width: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
