:root {
  color-scheme: dark;
  --bg: #090d16;
  --panel: #111827;
  --panel-strong: #172033;
  --text: #f7fbff;
  --muted: #aebbd0;
  --line: rgba(255, 255, 255, 0.14);
  --violet: #8b5cf6;
  --cyan: #22d3ee;
  --amber: #fbbf24;
  --green: #34d399;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(34, 211, 238, 0.16), transparent 34rem),
    linear-gradient(135deg, #090d16 0%, #121623 55%, #0a0f1b 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.hero {
  min-height: 92vh;
  padding: 28px;
}

.topbar,
.hero-inner,
.section,
.footer {
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

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

.hero-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 52px;
  min-height: calc(92vh - 76px);
  padding: 48px 0 24px;
}

.hero-copy,
.hero-media {
  min-width: 0;
}

.hero-copy {
  max-width: 560px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  overflow-wrap: normal;
  word-break: keep-all;
}

p,
dd,
a {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  font-size: clamp(54px, 7.5vw, 104px);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  margin: 26px 0 0;
  color: #dce7f8;
  font-size: clamp(18px, 2.2vw, 24px);
}

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

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--text);
  color: #111827;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.hero-media {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #050812;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.section {
  padding: 82px 0;
}

.section.band {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  padding-right: max(20px, calc((100vw - 1180px) / 2));
  background: rgba(255, 255, 255, 0.045);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.content-grid article,
.feature-list article {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 24, 39, 0.72);
}

.content-grid p,
.feature-list p,
.footer p {
  margin: 0;
  color: var(--muted);
}

.content-grid p + p {
  margin-top: 14px;
}

.feature-number {
  display: block;
  margin-bottom: 14px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
}

.media-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.media-item {
  position: relative;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel);
  text-decoration: none;
}

.media-item.large {
  grid-row: span 2;
  min-height: 540px;
}

.media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-item span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(5, 8, 18, 0.86);
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

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

.gallery-item {
  position: relative;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel);
  text-decoration: none;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.gallery-item:hover img {
  transform: scale(1.025);
}

.gallery-item span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(5, 8, 18, 0.86);
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.factsheet {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.factsheet div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  background: var(--panel-strong);
}

.factsheet dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.factsheet dd {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.factsheet a {
  color: var(--green);
}

.footer {
  padding: 32px 0 48px;
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
    padding: 20px 0;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .hero-inner,
  .content-grid,
  .feature-list,
  .media-grid,
  .gallery-grid,
  .factsheet {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    gap: 32px;
    padding-top: 54px;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
  }

  .hero-media {
    position: relative;
    z-index: 1;
  }

  .media-item,
  .media-item.large,
  .gallery-item,
  .gallery-item.wide {
    grid-column: auto;
    min-height: 280px;
  }

  .factsheet div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    max-height: 560px;
    object-fit: contain;
  }
}
