:root {
  --bg: #0a1116;
  --bg-soft: #0f1820;
  --panel: #0f1d25;
  --panel-2: #132430;
  --card: #eef9f4;
  --card-2: #d7f4e6;
  --ink: #dbfff1;
  --text: #d7efe7;
  --muted: #93b9ab;
  --line: rgba(135, 255, 200, 0.12);
  --accent: #7bff8e;
  --accent-2: #d5ff5d;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}
* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Trebuchet MS", Arial, sans-serif;
  color: var(--text);
  background:
    linear-gradient(rgba(123,255,142,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123,255,142,0.06) 1px, transparent 1px),
    radial-gradient(circle at top right, rgba(213,255,93,0.16), transparent 24%),
    linear-gradient(180deg, #0a1116 0%, #0d151b 100%);
  background-size: 28px 28px, 28px 28px, auto, auto;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; height: auto; }
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 50;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  color: #111;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 22;
  padding: 12px 16px 0;
}
.header-shell {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(10, 17, 22, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-logo {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  box-shadow: 0 16px 30px rgba(123,255,142,0.16);
}
.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.brand-copy strong {
  font: 800 1.5rem/1 Georgia, "Times New Roman", serif;
  letter-spacing: -0.04em;
  color: #effff7;
}
.brand-copy span:last-child {
  color: var(--muted);
  font-size: 0.92rem;
}
.primary-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.primary-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #cde7dc;
  font-weight: 700;
}
.primary-nav a.is-active,
.primary-nav a:hover {
  background: rgba(123,255,142,0.12);
  color: #f0fff8;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.language-select {
  min-width: 92px;
  padding: 10px 30px 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7fff9;
  color: #0f181e;
  font-weight: 800;
}
.language-select option {
  color: #111;
  background: #fff;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0a1116;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(123,255,142,0.24);
}
.button-alt {
  background: linear-gradient(135deg, #12212b, #1c2e38);
  color: #e9fff5;
  box-shadow: none;
  border: 1px solid var(--line);
}
.menu-toggle {
  display: none;
  min-height: 44px;
  padding: 10px 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #12212b;
  color: #ebfff6;
  font-weight: 800;
}
.page-shell {
  max-width: 1220px;
  margin: 0 auto;
  padding: 20px 16px 110px;
}
.crumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 8px 2px 18px;
  color: var(--muted);
  font-size: 0.94rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 22px;
  align-items: stretch;
}
.hero-card,
.panel,
.media-shell {
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.hero-card {
  padding: 30px;
  background:
    radial-gradient(circle at top right, rgba(123,255,142,0.14), transparent 30%),
    linear-gradient(180deg, #11212a 0%, #162833 100%);
  border: 1px solid var(--line);
}
.eyebrow {
  margin: 0 0 14px;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #b5ff65;
  font-weight: 900;
}
h1 {
  margin: 0;
  font: 800 clamp(2.18rem, 5.8vw, 5rem)/0.94 Georgia, "Times New Roman", serif;
  letter-spacing: -0.055em;
  color: #f1fff8;
  max-width: 920px;
}
.lead {
  margin: 18px 0 0;
  color: #cbe6db;
  font-size: clamp(1rem, 1.88vw, 1.16rem);
  line-height: 1.74;
  max-width: 760px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.hero-note {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(123,255,142,0.12), rgba(213,255,93,0.12));
  color: #e7fff3;
  font-weight: 700;
}
.hero-side {
  display: grid;
  gap: 16px;
}
.media-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #0f1d25, #122631);
}
.hero-video,
.hero-image {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.fact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.fact-list li {
  padding: 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, #152630, #13212b);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.fact-list span {
  display: block;
  margin-bottom: 6px;
  color: #90b5a6;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.fact-list strong {
  color: #f0fff7;
  font-size: 0.98rem;
}
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  margin-top: 22px;
}
.panel {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #10202a 0%, #13242f 100%);
}
.main-column > .panel {
  padding: 28px;
}
.side-column {
  display: grid;
  gap: 18px;
  align-content: start;
}
.side-panel,
.image-panel {
  padding: 18px;
}
.image-panel {
  overflow: hidden;
}
.main-column h2,
.cta-panel h2,
.side-column h2 {
  margin: 0 0 14px;
  font: 800 clamp(1.78rem, 2.95vw, 2.7rem)/1 Georgia, "Times New Roman", serif;
  letter-spacing: -0.04em;
  color: #f0fff8;
}
.main-column h3,
.side-column h3 {
  margin: 0 0 10px;
  font: 800 1.16rem/1.25 Georgia, "Times New Roman", serif;
  color: #f0fff8;
}
.main-column p,
.side-column p,
.cta-panel p {
  margin: 0 0 16px;
  color: #cce6db;
  font-size: 1.02rem;
  line-height: 1.72;
}
.table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 10px 0 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(6, 14, 18, 0.42);
}
table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}
th,
td {
  padding: 15px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(123,255,142,0.1);
  vertical-align: top;
  color: #e7fff2;
}
th {
  background: rgba(123,255,142,0.1);
  color: #d7ff88;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 8px 0 28px;
}
.focus-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #142630, #10202a);
}
.related-links,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.related-links {
  margin: 10px 0 28px;
}
.related-links a,
.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(123,255,142,0.1);
  color: #effff8;
  font-weight: 800;
}
.faq-list {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}
.faq-list details {
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #142630, #11212b);
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  color: #f0fff8;
}
.faq-list summary::-webkit-details-marker { display: none; }
.cta-panel {
  margin-top: 8px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(123,255,142,0.12), rgba(213,255,93,0.08));
}
.bullet-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: #cde6dc;
  line-height: 1.68;
}
.site-footer {
  padding: 0 16px 28px;
}
.footer-shell {
  max-width: 1220px;
  margin: 0 auto;
  padding: 24px 26px;
  border-radius: 28px;
  background: #081015;
  color: #b3d0c3;
  border: 1px solid var(--line);
}
.footer-links {
  margin-top: 16px;
}
.float-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 18;
}
@media (max-width: 1060px) {
  .header-shell {
    grid-template-columns: 1fr auto;
  }
  .primary-nav {
    grid-column: 1 / -1;
    display: none;
    justify-content: flex-start;
    padding-top: 4px;
  }
  .primary-nav.is-open {
    display: flex;
  }
  .menu-toggle {
    display: inline-flex;
  }
}
@media (max-width: 980px) {
  .hero-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }
  .focus-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .site-header {
    padding: 10px 10px 0;
  }
  .header-shell {
    gap: 12px;
    padding: 11px 12px;
  }
  .brand-logo {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }
  .brand-copy strong {
    font-size: 1.24rem;
  }
  .brand-copy span:last-child {
    font-size: 0.82rem;
  }
  .desktop-cta {
    display: none;
  }
  .language-select {
    min-width: 80px;
    padding: 9px 26px 9px 10px;
    font-size: 0.82rem;
  }
  .menu-toggle {
    padding: 9px 10px;
  }
  .page-shell {
    padding: 16px 10px 100px;
  }
  .hero-card,
  .main-column > .panel,
  .side-panel,
  .image-panel,
  .cta-panel {
    padding: 20px;
    border-radius: 24px;
  }
  .media-shell {
    border-radius: 24px;
  }
  .hero-video,
  .hero-image {
    min-height: 230px;
  }
  .fact-list {
    grid-template-columns: 1fr;
  }
  .float-cta {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  .float-cta .button {
    width: 100%;
  }
}
