:root {
  --bg: #0b1020;
  --panel: rgba(16, 23, 49, 0.82);
  --text: #eef3ff;
  --muted: #b7c3e0;
  --line: rgba(255, 255, 255, 0.12);
  --saffron: #ff9f1c;
  --green: #33d17a;
  --blue: #77a8ff;
  --glow: 0 0 30px rgba(119, 168, 255, 0.18);
  --radius: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 159, 28, 0.12), transparent 20%),
    radial-gradient(circle at 85% 20%, rgba(51, 209, 122, 0.14), transparent 20%),
    radial-gradient(circle at 50% 0%, rgba(119, 168, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #09101f 0%, #0e1530 55%, #07101d 100%);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(calc(100% - 24px), var(--max));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(7, 13, 28, 0.72);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  position: relative;
  box-shadow: var(--glow);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.brand-mark::before {
  width: 9px;
  height: 9px;
  background: var(--saffron);
}

.brand-mark::after {
  width: 26px;
  height: 26px;
  border: 1px dashed var(--green);
}

.nav-links {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--text);
}

.hero {
  padding: 72px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(119, 168, 255, 0.26);
  background: rgba(19, 28, 57, 0.7);
  color: var(--blue);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

h1 {
  margin-top: 20px;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2.7rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

h1 .saffron {
  color: var(--saffron);
}

h1 .green {
  color: var(--green);
}

.lead {
  margin-top: 22px;
  max-width: 60ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.24s ease;
}

.btn-primary {
  background: linear-gradient(90deg, var(--saffron), #ffb347);
  color: #1d1408;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 159, 28, 0.25);
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.hero-note {
  margin-top: 28px;
  padding: 18px 18px 18px 20px;
  border-left: 3px solid var(--green);
  border-radius: 0 16px 16px 0;
  background: rgba(255, 255, 255, 0.03);
  color: #dce7ff;
  max-width: 55ch;
}

.visual-panel,
.section-card,
.timeline-item,
.stat,
.gallery-card {
  background: linear-gradient(
    180deg,
    rgba(22, 31, 64, 0.88),
    rgba(12, 18, 39, 0.92)
  );
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--glow);
}

.visual-panel {
  overflow: hidden;
}

.visual-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.visual-copy {
  padding: 20px;
}

.visual-copy h2 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.visual-copy p {
  color: var(--muted);
}

.section {
  padding: 34px 0 30px;
}

.section-head {
  margin-bottom: 18px;
}

.section-head span {
  display: inline-block;
  color: var(--blue);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-head h2 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.section-head p {
  margin-top: 10px;
  max-width: 66ch;
  color: var(--muted);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stat {
  padding: 20px;
}

.stat strong {
  display: block;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  color: var(--saffron);
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.journey-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
}

.section-card {
  padding: 22px;
}

.timeline-list {
  display: grid;
  gap: 14px;
}

.timeline-item {
  padding: 18px;
}

.timeline-item small {
  display: inline-block;
  color: var(--saffron);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.timeline-item h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.timeline-item p,
.section-card p {
  color: var(--muted);
}

.quote {
  margin-top: 18px;
  padding: 22px;
  border-radius: var(--radius);
  background: linear-gradient(
    135deg,
    rgba(255, 159, 28, 0.12),
    rgba(119, 168, 255, 0.08)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote blockquote {
  font-size: clamp(1.25rem, 2.2vw, 1.9rem);
  line-height: 1.45;
  font-weight: 600;
}

.quote cite {
  display: inline-block;
  margin-top: 10px;
  color: var(--muted);
  font-style: normal;
}

.legacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

.gallery-stack {
  display: grid;
  gap: 16px;
}

.gallery-card {
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-copy {
  padding: 18px;
}

footer {
  padding: 38px 0 60px;
}

.footer-box {
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(
    135deg,
    rgba(255, 159, 28, 0.12),
    rgba(51, 209, 122, 0.08),
    rgba(119, 168, 255, 0.12)
  );
}

.footer-box h2 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.footer-box p {
  margin-top: 10px;
  color: var(--muted);
  max-width: 65ch;
}

@media (max-width: 980px) {
  .hero-grid,
  .journey-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .legacy-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }

  .stats-grid,
  .legacy-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 40px;
  }
}