@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Barlow+Condensed:wght@400;500;700&display=swap');

:root {
  --bg-main: #041a2c;
  --bg-surface: #08253e;
  --bg-soft: #0d324f;
  --text-main: #f3f7fb;
  --text-muted: #b5c5d6;
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.06);
  --accent: #f4d35e;
  --accent-2: #34d1bf;
  --accent-3: #ee964b;
  --ok: #42d392;
  --danger: #ff6b6b;
  --shadow: 0 18px 46px rgba(2, 10, 22, 0.4);
  --max-w: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 8% 10%, rgba(52, 209, 191, 0.22), transparent 36%),
    radial-gradient(circle at 88% 12%, rgba(244, 211, 94, 0.18), transparent 42%),
    linear-gradient(160deg, #031321 0%, #05243c 45%, #03111f 100%);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--max-w), 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(2, 14, 26, 0.83);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

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

.brand img {
  width: 178px;
  height: auto;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text-main);
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 14px;
  font-size: 0.95rem;
  color: var(--text-muted);
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.12);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  background: linear-gradient(95deg, var(--accent) 0%, var(--accent-3) 100%);
  color: #0d1321;
}

.btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--text-main);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.07);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 19, 33, 0.84) 0%, rgba(3, 19, 33, 0.5) 58%, rgba(3, 19, 33, 0.3) 100%),
    linear-gradient(180deg, rgba(2, 14, 26, 0.06), rgba(2, 14, 26, 0.72));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: end;
  padding: 68px 0 70px;
}

.hero-kicker {
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.page-head h1 {
  font-family: 'Barlow Condensed', 'Trebuchet MS', sans-serif;
  letter-spacing: 0.02em;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 0.98;
  margin: 14px 0 18px;
  text-transform: uppercase;
}

.hero p {
  color: #d5deea;
  max-width: 720px;
}

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

.hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 12px;
}

.fact-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(4, 20, 36, 0.55);
  backdrop-filter: blur(4px);
  border-radius: 10px;
  padding: 12px;
}

.fact-card strong {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 4px;
  color: var(--accent);
}

section {
  padding: 74px 0;
}

.section-title {
  margin: 0;
  font-family: 'Barlow Condensed', 'Trebuchet MS', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.section-intro {
  color: var(--text-muted);
  max-width: 820px;
  margin-top: 14px;
}

.cards-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: linear-gradient(165deg, rgba(10, 42, 70, 0.72), rgba(4, 20, 33, 0.88));
  box-shadow: var(--shadow);
  padding: 12px;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(244, 211, 94, 0.6);
}

.card .icon {
  width: 48px;
  height: 48px;
}

.card h3 {
  margin: 14px 0 10px;
  font-size: 1.15rem;
}

.card p {
  margin: 0;
  color: var(--text-muted);
}

.band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.ticker {
  overflow: hidden;
  white-space: nowrap;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 1.55rem;
  padding: 14px 0;
}

.ticker-track {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 22s linear infinite;
}

.page-head {
  padding: 70px 0 44px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(175deg, rgba(3, 20, 36, 0.72), rgba(6, 28, 44, 0.18));
}

.page-head p {
  color: var(--text-muted);
  max-width: 860px;
}

.banner {
  margin-top: 30px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
}

.banner img {
  width: 100%;
  height: clamp(280px, 44vw, 480px);
  object-fit: cover;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.panel {
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: rgba(7, 30, 48, 0.6);
  padding: 14px;
}

.panel h3,
.panel h2 {
  margin-top: 0;
}

.list {
  margin: 0;
  padding-left: 22px;
  color: var(--text-muted);
}

.list li {
  margin-bottom: 8px;
}

.timeline {
  position: relative;
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.timeline-item {
  position: relative;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 12px 14px 12px 20px;
  background: rgba(5, 24, 40, 0.66);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 18px;
  bottom: 18px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.stat-box {
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.stat-box b {
  display: block;
  font-size: 1.65rem;
  color: var(--accent-2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

address {
  font-style: normal;
  color: var(--text-muted);
}

.policy {
  max-width: 900px;
}

.compact-wrap {
  max-width: 980px;
}

.rich-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mini-card {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(7, 30, 48, 0.46);
  padding: 10px;
}

.mini-card h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
}

.mini-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.policy-summary {
  margin-top: 22px;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 12px;
  background: rgba(7, 30, 48, 0.48);
}

.policy-anchor-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--text-muted);
  columns: 2;
  column-gap: 24px;
}

.policy-anchor-list li {
  margin-bottom: 6px;
}

.policy h2,
.policy h3 {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

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

.policy table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}

.policy th,
.policy td {
  border: 1px solid var(--line);
  padding: 10px;
  text-align: left;
  vertical-align: top;
  color: var(--text-muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(3, 15, 26, 0.88);
  padding-top: 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 20px;
  padding-bottom: 20px;
}

.footer-grid p,
.footer-grid li,
.footer-grid a {
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 14px 0 24px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.page-home .card,
.page-contact .card,
.page-home .panel,
.page-contact .panel,
.page-home .mini-card,
.page-contact .mini-card,
.page-home .fact-card,
.page-contact .fact-card {
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.07);
  border-radius: 10px;
}

.page-home .card,
.page-contact .card {
  padding: 14px;
}

.page-home .panel,
.page-contact .panel {
  padding: 14px;
}

.page-home .mini-card,
.page-contact .mini-card,
.page-home .fact-card,
.page-contact .fact-card {
  padding: 12px;
}

.page-home .cards-grid,
.page-contact .cards-grid,
.page-home .rich-grid,
.page-contact .rich-grid {
  gap: 12px;
}

.page-home .compact-wrap,
.page-contact .compact-wrap {
  max-width: 940px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .two-col,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .stats,
  .rich-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    right: 4vw;
    top: 70px;
    width: min(420px, 92vw);
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(4, 20, 34, 0.96);
    padding: 10px;
    transform-origin: top right;
    transform: scale(0.96);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }
}

@media (max-width: 640px) {
  section {
    padding: 56px 0;
  }

  .hero h1,
  .page-head h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .cards-grid,
  .stats,
  .hero-facts,
  .rich-grid {
    grid-template-columns: 1fr;
  }

  .policy-anchor-list {
    columns: 1;
  }
}
