:root { --bg: #0d1116; --surface: #0f141b; --surface-2: #131a22; --text: #e8eef4; --muted: #9aa6b2; --primary: #c4fda8; --primary-600: #a6e88c; --primary-700: #8ace76; --danger: #ff4d4d; --shadow: 0 10px 30px rgba(0,0,0,0.5); --radius: 12px; --container: 1200px; }

/* Snow camo accents */
.camo-bg {
  background-image:
    radial-gradient(ellipse at 20% 30%, rgba(255,255,255,0.06), transparent 35%),
    radial-gradient(ellipse at 70% 10%, rgba(200,220,230,0.07), transparent 40%),
    radial-gradient(ellipse at 90% 80%, rgba(255,255,255,0.05), transparent 35%),
    linear-gradient(180deg, rgba(200,220,230,0.04), rgba(100,120,130,0.02));
}
.header, .footer, .card { position: relative; }
.card.camo, .video-banner, .gallery, #partners, #pricing, #rules, #rules-quick { background-color: #0f141b; }
.card.camo, .video-banner.camo, .gallery.camo, #partners, #pricing, #rules, #rules-quick { background-image: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)); }

/* Buttons keep contrast */
.btn-primary { color: #0a0f14; background: var(--primary); box-shadow: 0 10px 30px rgba(196,253,168,0.2); }

/* CSS Reset (modern minimal) */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html, body { height: 100%; }
body { line-height: 1.5; -webkit-font-smoothing: antialiased; background: var(--bg); color: var(--text); }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }

/* Typography */
@font-face {
  font-family: 'Inter';
  src: local('Inter'), url('./assets/fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-display: swap;
}

:root { --font-sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; }

body { font-family: var(--font-sans); }

h1, h2, h3 { line-height: 1.1; letter-spacing: -0.02em; }

h1 { font-size: clamp(2.2rem, 3vw + 1rem, 3.25rem); font-weight: 800; }
.h1-accent { color: var(--primary); }

h2 { font-size: clamp(1.6rem, 1.6vw + 1rem, 2.2rem); font-weight: 800; }
section > .section-title { margin-bottom: 1rem; }

p.muted, .muted { color: var(--muted); }

/* Layout */
.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.grid { display: grid; gap: 24px; }

/* 12-column fluid grid */
.row { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.col-12 { grid-column: span 12; }
.col-9 { grid-column: span 9; }
.col-8 { grid-column: span 8; }
.col-6 { grid-column: span 6; }
.col-4 { grid-column: span 4; }
.col-3 { grid-column: span 3; }

@media (max-width: 1024px) {
  .row { gap: 20px; }
  .lg-col-12 { grid-column: span 12; }
  .lg-col-6 { grid-column: span 6; }
  .lg-col-4 { grid-column: span 4; }
}

@media (max-width: 768px) {
  .row { gap: 16px; }
  .md-col-12 { grid-column: span 12; }
  .md-col-6 { grid-column: span 6; }
}

@media (max-width: 560px) {
  .sm-col-12, .col { grid-column: span 12; }
}

/* Components */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(13,17,22,0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav {
  display: flex; align-items: center; justify-content: space-between; padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: 0.04em; }
.brand-text { display: grid; line-height: 1; }
.brand-title { font-size: 0.95rem; letter-spacing: 0.08em; }
.brand-sub { font-size: 0.72rem; font-weight: 600; color: var(--muted); white-space: nowrap; }
@media (max-width: 1200px) { .brand-sub { display: none; } }
/* Header logo image */
.brand .logo { width: 36px; height: 36px; object-fit: contain; background: transparent; box-shadow: none; border-radius: 6px; }
.nav ul { display: flex; gap: 16px; list-style: none; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
.nav ul::-webkit-scrollbar { display: none; }
.nav a { color: var(--text); text-decoration: none; opacity: 0.85; white-space: nowrap; font-size: 0.95rem; }
@media (max-width: 1200px) { .brand span { display: none; } }
.nav a:hover { color: var(--primary); opacity: 1; }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 16px; border-radius: 10px; text-decoration: none; font-weight: 700; cursor: pointer; transition: transform .1s ease, filter .2s ease, background .2s ease; }
.btn-primary { color: #0a0f14; background: var(--primary); box-shadow: 0 10px 30px rgba(196,253,168,0.2); }
.btn-primary:hover { filter: brightness(1.05); transform: translateY(-1px); }
.btn-ghost { border: 1px solid rgba(255,255,255,0.1); color: var(--text); background: transparent; }
.btn-ghost:hover { border-color: rgba(255,255,255,0.2); }

.card { background: linear-gradient(180deg, var(--surface), var(--surface-2)); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius); box-shadow: var(--shadow); }
.card.padded { padding: 24px; }

/* Hero */
.hero { position: relative; background: radial-gradient(1200px 600px at 70% -20%, rgba(165,255,47,0.13), transparent 60%), linear-gradient(180deg, rgba(0,0,0,0.2), transparent 30%), url('./assets/images/dust2.jpg') center/cover no-repeat, var(--bg); }
.hero .container { padding: 72px 0 40px; }
.hero .super { display: inline-flex; gap: 8px; align-items: center; color: #b6c2ce; border: 1px solid rgba(255,255,255,0.08); padding: 6px 10px; border-radius: 999px; backdrop-filter: blur(6px); }
.hero .actions { display: flex; gap: 12px; margin-top: 16px; }
.hero .stats { display: flex; gap: 32px; margin-top: 24px; color: var(--muted); flex-wrap: wrap; }
.hero .stats b { color: var(--text); font-size: 1.25rem; }

/* Section */
section { padding: 56px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 24px; }
.section-eyebrow { color: var(--primary); font-weight: 800; letter-spacing: 0.16em; font-size: 0.8rem; text-transform: uppercase; }

/* Hide section eyebrow labels */
.section-eyebrow { display: none; }

/* Progress Bars */
.progress { display: grid; gap: 12px; }
.progress-item { display: grid; gap: 10px; }
.progress-bar { height: 10px; border-radius: 999px; background: #0b0f14; border: 1px solid rgba(255,255,255,0.06); overflow: hidden; }
.progress-bar > span { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, var(--primary), #ccff66); box-shadow: 0 0 16px rgba(165,255,47,0.35); }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pricing-card { position: relative; padding: 24px; }
.pricing-card .price { font-size: 2rem; font-weight: 900; color: var(--primary); }
.pricing-card ul { margin-top: 12px; display: grid; gap: 8px; color: var(--muted); }

/* Modern pricing cards */
.pricing-modern { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.pricing-card2 { padding: 20px; display: grid; gap: 10px; }
.price-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px; background: rgba(165,255,47,0.12); color: var(--primary); font-weight: 900; }
.pricing-card2 ul { list-style: none; display: grid; gap: 6px; color: var(--muted); padding-left: 0; }
.pricing-extras { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 12px; }
.pricing-extras .mini { padding: 14px; display: grid; gap: 6px; }
@media (max-width: 920px) { .pricing-modern { grid-template-columns: 1fr; } .pricing-extras { grid-template-columns: 1fr; } }

/* Testimonials */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote { padding: 20px; }

/* Events */
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.event-card img { border-radius: 10px; }
.event-card .meta { display: flex; gap: 10px; color: var(--muted); font-size: 0.9rem; margin-top: 8px; }

/* Footer */
.footer { background: #0a0f14; border-top: 1px solid rgba(255,255,255,0.06); padding: 40px 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 24px; }
.footer a { color: var(--muted); text-decoration: none; }
.footer a:hover { color: var(--primary); }

/* Responsive */
@media (max-width: 1024px) {
  .pricing-grid, .testimonials, .events-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .nav ul { display: none; }
  .nav .menu-btn { display: inline-flex; }
  .pricing-grid, .testimonials, .events-grid { grid-template-columns: 1fr; }
  .hero .container { padding: 56px 0 28px; }
}

/* Mobile menu */
.menu-btn { display: none; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,0.1); background: transparent; color: var(--text); padding: 8px 12px; border-radius: 8px; }
.mobile-menu { position: fixed; inset: 0 0 auto 0; top: 56px; background: rgba(13,17,22,0.98); border-top: 1px solid rgba(255,255,255,0.06); transform: translateY(-16px); opacity: 0; pointer-events: none; transition: transform .2s ease, opacity .2s ease; }
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu .container { padding: 12px 0 24px; }
.mobile-menu ul { list-style: none; display: grid; gap: 12px; }
.mobile-menu a { text-decoration: none; color: var(--text); padding: 12px; border-radius: 8px; }
.mobile-menu a:hover { background: rgba(255,255,255,0.06); }

/* Minor responsive polish */
@media (max-width: 920px) {
  .section-head { align-items: start; gap: 12px; flex-wrap: wrap; }
}

/* Benefits */
.benefits { list-style: none; display: grid; gap: 18px; }
.benefits li { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; }
.benefit-icon { width: 44px; height: 44px; border-radius: 10px; background: #121820; border: 1px solid rgba(255,255,255,0.06); box-shadow: inset 0 0 0 2px rgba(165,255,47,0.1); }
.benefit-text h4 { font-size: 1rem; letter-spacing: 0.04em; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 8px; }

/* Video banner */
.video-banner { background: #10151c; }
.video-row { display: flex; align-items: center; gap: 16px; padding: 32px 0; }
.video-row h3 { font-size: clamp(1.2rem, 1.2vw + 1rem, 1.8rem); }
.play { width: 64px; height: 64px; border-radius: 999px; border: none; background: radial-gradient(circle at 35% 50%, rgba(0,0,0,0.35), rgba(0,0,0,0.7)); position: relative; box-shadow: inset 0 0 0 2px rgba(255,255,255,0.06); cursor: pointer; }
.play span { position: absolute; left: 26px; top: 22px; width: 0; height: 0; border-left: 16px solid var(--primary); border-top: 10px solid transparent; border-bottom: 10px solid transparent; }

/* Newsletter */
.newsletter-form { display: flex; gap: 10px; align-items: center; justify-content: flex-end; }
.newsletter-form input { flex: 1; min-width: 240px; padding: 12px 14px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.1); background: #0c1116; color: var(--text); }

/* Active nav */
.nav a.active { color: var(--primary); }

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .services-grid { grid-template-columns: 1fr; }
  .video-row { padding: 20px 0; }
}

/* Gallery slider */
.gallery { padding: 56px 0; }
.slider { position: relative; overflow: hidden; border-radius: 12px; border: 1px solid rgba(255,255,255,0.06); background: #0c1116; }
.slides { display: flex; transition: transform .4s ease; }
.slides img { width: 100%; height: 420px; object-fit: cover; flex: 0 0 100%; }
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.45); color: #fff; border: 1px solid rgba(255,255,255,0.2); width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; cursor: pointer; }
.slider-btn.prev { left: 12px; }
.slider-btn.next { right: 12px; }

@media (max-width: 680px) {
  .slides img { height: 240px; }
}

/* Venues category bar */
.venues-bar { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }

/* Experience table */
.xp-table { display: grid; border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; overflow: hidden; }
.xp-row { display: grid; grid-template-columns: 1.2fr 1fr 1.2fr; gap: 0; }
.xp-row > div { padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.xp-row:last-child > div { border-bottom: none; }
.xp-head { background: #0c1218; color: var(--muted); font-weight: 700; }
.xp-title { font-weight: 800; color: var(--text); }

/* Maps cards reuse event-card */
#maps .event-card h3 { margin-top: 10px; }
#maps .event-card p { margin-top: 6px; }

@media (max-width: 920px) {
  .xp-row { grid-template-columns: 1fr; }
  .xp-head { display: none; }
  .xp-row > div { border-bottom: 1px solid rgba(255,255,255,0.06); }
}

/* SpeedSoft section */
#speedsoft img { width: 100%; height: auto; display: block; border-radius: 12px; }

/* Advantages list */
.advantages { list-style: none; display: grid; gap: 10px; padding-left: 0; }
.advantages li { background: linear-gradient(180deg, var(--surface), var(--surface-2)); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; padding: 12px 14px; }

/* Infographic cards */
.advantages.infocards { grid-template-columns: repeat(4, 1fr); }
.advantages.infocards li { display: grid; grid-template-columns: 44px 1fr; align-items: center; gap: 12px; }
.advantages.infocards .ico { width: 44px; height: 44px; border-radius: 999px; display: grid; place-items: center; background: #121820; border: 1px solid rgba(255,255,255,0.08); box-shadow: inset 0 0 0 2px rgba(165,255,47,0.12); font-size: 20px; }
.advantages.infocards .txt { font-weight: 600; }
@media (max-width: 1024px) { .advantages.infocards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .advantages.infocards { grid-template-columns: 1fr; } }

/* Mission list */
.mission-list { list-style: disc; padding-left: 18px; display: grid; gap: 8px; color: var(--muted); }
.mission-list li { line-height: 1.5; }

/* Mission infographic cards */
.mission-cards { grid-template-columns: repeat(2, 1fr); }
.mission-cards li { display: grid; grid-template-columns: 44px 1fr; gap: 12px; align-items: center; }
.mission-cards .ico { width: 44px; height: 44px; border-radius: 999px; display: grid; place-items: center; background: #121820; border: 1px solid rgba(255,255,255,0.08); box-shadow: inset 0 0 0 2px rgba(165,255,47,0.12); font-size: 20px; }
.mission-cards .txt { font-weight: 600; color: var(--text); }
@media (max-width: 680px) { .mission-cards { grid-template-columns: 1fr; } }

/* Poster grid for pricing/rules */
.poster-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.poster-grid img { width: 100%; height: auto; display: block; border-radius: 12px; }
@media (max-width: 840px) { .poster-grid { grid-template-columns: 1fr; } }

/* Simple table */
.table { display: grid; border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; overflow: hidden; }
.t-row { display: grid; grid-template-columns: 1.2fr 140px 120px 1.6fr; }
.t-row > div { padding: 10px 12px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.t-head > div { background: #0c1218; color: var(--muted); font-weight: 700; }
.table.small .t-row { grid-template-columns: 1fr 160px; }
.two-col { columns: 2; column-gap: 20px; }
@media (max-width: 900px) { .t-row { grid-template-columns: 1fr 120px 100px 1fr; } .two-col { columns: 1; } }

/* Rules list */
.rules-list { list-style: disc; padding-left: 18px; display: grid; gap: 6px; color: var(--muted); }

.hero-title-sm { font-size: clamp(1.4rem, 1.6vw + 1rem, 2rem); font-weight: 800; }

/* Rules accordion */
.rules-acc details { border-top: 1px solid rgba(255,255,255,0.06); padding: 10px 0; }
.rules-acc details:first-child { border-top: none; }
.rules-acc summary { cursor: pointer; list-style: none; font-weight: 800; }
.rules-acc summary::-webkit-details-marker { display: none; }

/* Footer contacts */
.contact-list { list-style: none; display: grid; gap: 6px; color: var(--muted); padding-left: 0; }
.contact-list a { color: var(--muted); text-decoration: none; }
.contact-list a:hover { color: var(--primary); }

.icon-img { width: 18px; height: 18px; vertical-align: -3px; margin-right: 6px; filter: drop-shadow(0 0 2px rgba(0,0,0,0.4)); }

/* Partners */
.partners-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.partner { display: flex; align-items: center; gap: 10px; padding: 14px; text-decoration: none; color: var(--text); }
.partner img { width: 20px; height: 20px; }
.partner-badge { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 6px; background: rgba(165,255,47,0.15); color: var(--primary); font-weight: 900; }
@media (max-width: 980px) { .partners-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .partners-grid { grid-template-columns: 1fr; } }

.mission-ico { width: 32px; height: 32px; object-fit: contain; filter: drop-shadow(0 0 6px rgba(0,0,0,0.6)); }
.mission-fig { width: 64px; height: 64px; object-fit: contain; margin-left: auto; opacity: 0.9; }
@media (max-width: 680px) { .mission-fig { display: none; } }
