:root {
  --bg: #0b0f1f;
  --bg-soft: #111731;
  --surface: #171e3d;
  --text: #ecf1ff;
  --muted: #b3bfdc;
  --accent: #26e0c5;
  --accent-dark: #14bba2;
  --stroke: #2a345f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #070a16 0%, #0d1430 45%, #0b0f1f 100%);
  color: var(--text);
  line-height: 1.55;
}

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

.zoomable-image {
  cursor: zoom-in;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section--muted {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section__heading {
  margin-bottom: 24px;
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(30px, 4vw, 52px);
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

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

a {
  color: var(--accent);
}

a:hover {
  color: #6ff3df;
}

ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

ol {
  margin: 12px 0 0;
  padding-left: 22px;
  color: var(--muted);
}

.hero {
  padding: 72px 0 44px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 22px;
  align-items: center;
}

.hero__content {
  min-width: 0;
}

.hero__lead {
  max-width: 72ch;
}

.hero__badges {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero__badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

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

.hero__actions .btn--accent {
  min-width: 240px;
  text-align: center;
}

.hero__preview {
  margin: 22px 0 0;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.hero__preview img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.hero__card,
.card,
.kpi {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 20px;
}

.hero__card h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.btn {
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 18px;
  transition: 0.2s ease;
  border: 1px solid transparent;
  display: inline-block;
}

.btn--accent {
  background: var(--accent);
  color: #081227;
}

.btn--accent:hover {
  background: var(--accent-dark);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.45);
}

.btn--lg {
  padding: 14px 26px;
  font-size: 17px;
}

.cards {
  display: grid;
  gap: 16px;
}

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

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

.card--bordered {
  border-width: 2px;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  border-radius: 10px;
  background: rgba(38, 224, 197, 0.14);
  border: 1px solid rgba(38, 224, 197, 0.32);
  font-size: 18px;
}

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

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

.showcase__item {
  margin: 0;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  overflow: hidden;
}

.showcase__item img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.showcase__item figcaption {
  padding: 12px 14px 16px;
  color: var(--muted);
  font-size: 14px;
}

.mini-gallery {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.mini-gallery img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--stroke);
}

.section--cta {
  padding-top: 54px;
  padding-bottom: 80px;
}

.cta {
  text-align: center;
  max-width: 860px;
}

.cta p {
  margin: 14px auto 22px;
  max-width: 72ch;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
}

.image-lightbox--open {
  display: flex;
}

.image-lightbox__img {
  max-width: min(96vw, 1700px);
  max-height: 92vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.image-lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 960px) {
  .hero__grid,
  .cards--3,
  .cards--2,
  .kpi-grid,
  .showcase,
  .mini-gallery {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 52px 0;
  }
}
