@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&family=Oswald:wght@400;500;700&display=swap");

:root {
  --bg: #07141c;
  --bg-soft: #10212d;
  --panel: rgba(13, 30, 41, 0.82);
  --panel-strong: #122938;
  --line: rgba(255, 255, 255, 0.1);
  --text: #ecf2f5;
  --muted: #aebdc7;
  --accent: #ff8f32;
  --accent-soft: rgba(255, 143, 50, 0.16);
  --accent-second: #58c1a8;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
  --radius: 24px;
  --radius-sm: 16px;
  --site-width: min(1160px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(88, 193, 168, 0.16), transparent 26%),
    radial-gradient(circle at top right, rgba(255, 143, 50, 0.14), transparent 24%),
    linear-gradient(180deg, #041018 0%, #081923 44%, #06131c 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 85%);
}

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

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

.site-shell {
  width: var(--site-width);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(6, 19, 28, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header__inner {
  width: var(--site-width);
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand__mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--accent), #ffb347);
  color: #08131a;
  box-shadow: 0 10px 30px rgba(255, 143, 50, 0.28);
}

.brand__text {
  display: grid;
  gap: 2px;
}

.brand__title {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 1.15rem;
}

.brand__subtitle {
  color: var(--muted);
  font-size: 0.83rem;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 12px;
}

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

.site-nav a {
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 999px;
  transition: 180ms ease;
}

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

.hero {
  padding: 84px 0 48px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 28px;
  align-items: center;
}

.hero__grid > *,
.page-hero__grid > *,
.page-summary > *,
.story-grid > * {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #ffd2ad;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.hero h1,
.page-hero h1 {
  margin: 18px 0 16px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 62ch;
}

.hero__actions,
.cta-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button {
  background: linear-gradient(135deg, var(--accent), #fcb05d);
  color: #091219;
  box-shadow: 0 16px 36px rgba(255, 143, 50, 0.22);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.button:hover,
.button-secondary:hover {
  transform: translateY(-2px);
}

.hero-card,
.content-card,
.stat-card,
.feature-card,
.process-step,
.gallery-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  overflow: hidden;
}

.hero-card__media {
  background:
    linear-gradient(180deg, rgba(255, 143, 50, 0.16), rgba(88, 193, 168, 0.08)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent);
  padding: 18px;
}

.hero-card__body {
  padding: 22px 24px 26px;
}

.hero-card__body h2,
.page-summary h2,
.section-heading h2 {
  margin: 0 0 10px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-transform: uppercase;
  line-height: 1.05;
}

.hero-card__body h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
}

.microcopy {
  color: var(--muted);
  line-height: 1.7;
}

.section {
  padding: 24px 0 66px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.grid-3,
.grid-2,
.gallery-grid,
.metrics {
  display: grid;
  gap: 18px;
}

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

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

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

.metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.content-card,
.feature-card,
.process-step,
.gallery-card,
.stat-card {
  padding: 24px;
}

.feature-card__icon,
.process-step__index {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 143, 50, 0.14);
  color: #ffd2ad;
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.content-card h3,
.feature-card h3,
.process-step h3,
.gallery-card h3,
.stat-card h3 {
  margin: 0 0 12px;
  font-size: 1.14rem;
}

.quote-card {
  padding: 26px;
  border-left: 4px solid var(--accent);
}

.quote-card p {
  margin: 0;
  color: var(--text);
  font-size: 1.12rem;
  line-height: 1.8;
}

.quote-card strong {
  color: #ffd2ad;
}

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

.data-table th,
.data-table td {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
}

.data-table th {
  color: var(--muted);
  font-weight: 600;
  width: 36%;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.note {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--muted);
}

.list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.list li {
  position: relative;
  padding-left: 18px;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.page-hero {
  padding: 72px 0 36px;
}

.page-hero__grid,
.page-summary {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 24px;
  align-items: center;
}

.page-summary {
  margin-top: 22px;
}

.media-frame {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(88, 193, 168, 0.1), rgba(255, 143, 50, 0.12)),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  color: #ffd2ad;
}

.cta-panel {
  margin: 18px 0 80px;
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 143, 50, 0.18), rgba(88, 193, 168, 0.1)),
    rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 40px;
}

.site-footer__inner {
  width: var(--site-width);
  margin: 0 auto;
  padding: 22px 0 44px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero__grid,
  .page-hero__grid,
  .page-summary,
  .grid-2,
  .story-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .site-header__inner {
    min-height: 72px;
    position: relative;
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(7, 20, 28, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero,
  .page-hero {
    padding-top: 52px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .section-heading,
  .site-footer__inner {
    display: block;
  }
}

@media (max-width: 560px) {
  .grid-3,
  .gallery-grid,
  .metrics {
    grid-template-columns: 1fr;
  }

  .content-card,
  .feature-card,
  .process-step,
  .gallery-card,
  .hero-card__body,
  .cta-panel,
  .stat-card {
    padding: 20px;
  }
}
