*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #050505;
  --panel: rgba(17, 17, 17, 0.78);
  --panel-strong: rgba(23, 23, 23, 0.92);
  --text: #ffffff;
  --dim: #a7a7a7;
  --muted: #737373;
  --accent: #ff7a00;
  --accent2: #ffb347;
  --border: rgba(255, 255, 255, 0.09);
  --border-accent: rgba(255, 122, 0, 0.28);
  --max: 1120px;
}

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.74), #050505 58%),
    url("hero_bg.webp") center top / cover fixed;
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* === AAA NEON SCROLLBAR === */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #050505;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #fbbf24 0%, #ff7a00 100%);
  border-radius: 99px;
  border: 2px solid #050505;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #f59e0b 0%, #00f2fe 100%);
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.8);
}

a { color: inherit; }

.page-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(5, 5, 5, 0.84);
  border-bottom: 1px solid var(--border);
}

.nav-inner, .wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.nav-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent2);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border-accent);
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--dim);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
}

.nav-links a:hover { color: var(--accent2); }

.hero {
  min-height: 62vh;
  display: grid;
  align-items: end;
  padding: 96px 0 52px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: center;
  gap: 42px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border: 1px solid var(--border-accent);
  border-radius: 999px;
  color: var(--accent2);
  background: rgba(255, 122, 0, 0.09);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
}

h1 {
  max-width: 800px;
  margin-top: 18px;
  font-size: clamp(2.5rem, 7vw, 5.7rem);
  letter-spacing: 0;
}

.lead {
  max-width: 760px;
  margin-top: 22px;
  color: #dedede;
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.hero-media {
  min-height: 330px;
  border: 1px solid var(--border-accent);
  border-radius: 18px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: 0 24px 90px rgba(0,0,0,0.34);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  display: block;
  object-fit: cover;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--border-accent);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 122, 0, 0.13);
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: linear-gradient(135deg, var(--accent), #de6500);
  border-color: transparent;
}

.button svg { width: 18px; height: 18px; }

.section {
  padding: 76px 0;
  border-top: 1px solid var(--border);
}

.section.alt { background: rgba(0, 0, 0, 0.32); }

.section-head {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 30px;
}

.section h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.section p { color: var(--dim); }

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.grid.two { grid-template-columns: repeat(2, 1fr); }

.card, .faq-item, .article-card, .download-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--panel);
  padding: 22px;
}

.card h3, .faq-item h3, .article-card h3, .download-card h3 {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1.15rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.gallery figure {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--panel);
}

.gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 1200 / 760;
  object-fit: cover;
}

.gallery figcaption {
  padding: 14px 16px;
  color: var(--dim);
  font-size: 0.86rem;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.download-card img {
  display: block;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 14px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.status-list {
  display: grid;
  gap: 14px;
}

.status-row {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--panel);
}

.status-pill {
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid var(--border-accent);
  color: var(--accent2);
  background: rgba(255, 122, 0, 0.12);
  font-size: 0.72rem;
  font-weight: 800;
}

.form-card {
  display: grid;
  gap: 12px;
  max-width: 660px;
}

.form-card label {
  color: var(--dim);
  font-size: 0.86rem;
  font-weight: 700;
}

.form-card input, .form-card textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  background: rgba(10, 10, 10, 0.8);
  font: inherit;
}

.form-card textarea {
  min-height: 112px;
  padding-top: 12px;
  resize: vertical;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.metric {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--panel-strong);
  padding: 18px;
}

.metric strong {
  display: block;
  color: var(--accent2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.metric span {
  color: var(--dim);
  font-size: 0.82rem;
}

.article-list {
  display: grid;
  gap: 18px;
}

.article-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  text-decoration: none;
}

.article-card small, .meta {
  color: var(--accent2);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article {
  max-width: 820px;
  margin: 0 auto;
}

.article h2 { margin: 44px 0 14px; }
.article p { margin: 16px 0; }
.article ul { margin: 16px 0 16px 22px; color: var(--dim); }
.article li { margin-bottom: 8px; }

.cta-band {
  margin-top: 34px;
  padding: 26px;
  border: 1px solid var(--border-accent);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,122,0,0.18), rgba(255,179,71,0.05));
}

.footer {
  padding: 36px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer a {
  color: var(--dim);
  text-decoration: none;
  margin-left: 14px;
}

.footer a:hover { color: var(--accent2); }

@media (max-width: 900px) {
  .hero-grid, .grid, .grid.two, .metric-row, .gallery, .faq-list, .download-grid, .status-row { grid-template-columns: 1fr; }
  .hero { padding-top: 70px; }
  .hero-media { min-height: 260px; }
  .hero-media img { min-height: 260px; }
  .nav-inner { align-items: flex-start; flex-direction: column; padding: 15px 0; }
}

@media (max-width: 560px) {
  .article-card { grid-template-columns: 1fr; }
  .actions { flex-direction: column; }
  .button { justify-content: center; }
}
