@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #061018;
  --bg-soft: #0b1a27;
  --panel: rgba(7, 21, 33, 0.78);
  --panel-strong: rgba(6, 17, 27, 0.94);
  --line: rgba(174, 214, 242, 0.14);
  --text: #eff7fd;
  --muted: #9eb7c9;
  --accent: #69f0c5;
  --accent-cool: #76cfff;
  --accent-warm: #ffd37d;
  --max: 1240px;
  --radius: 26px;
  --radius-small: 18px;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(105, 240, 197, 0.14), transparent 26%),
    radial-gradient(circle at top right, rgba(118, 207, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #061018 0%, #091725 42%, #061018 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 78%);
}

body::after {
  background:
    radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 25%), rgba(118, 207, 255, 0.12), transparent 14%),
    radial-gradient(circle at calc(var(--mouse-x, 50%) - 12%) calc(var(--mouse-y, 25%) + 10%), rgba(105, 240, 197, 0.08), transparent 18%);
  transition: background-position 180ms ease;
}

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

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

.shell {
  position: relative;
  z-index: 1;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(22px);
  background: rgba(6, 17, 27, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar-inner,
.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

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

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

.brand-logo {
  height: 34px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1.15) contrast(1.05);
  flex-shrink: 0;
}

.brand span {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.brand strong {
  display: block;
  font-size: 1rem;
}

.nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

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

.nav a:hover,
.nav a:focus-visible,
.nav a.active {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.hero {
  padding: 86px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 30px;
  align-items: stretch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: #dbfff3;
  background: rgba(105, 240, 197, 0.12);
  border: 1px solid rgba(105, 240, 197, 0.18);
}

.hero-copy h1,
.hero-copy h2,
.section-header h2 {
  margin: 18px 0 18px;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-copy h1,
.hero-copy h2 {
  font-size: clamp(3.1rem, 6vw, 6.2rem);
  max-width: 10ch;
}

.hero-copy p,
.section-header p,
.publication-card p,
.capability-card p,
.timeline-card p,
.story-card p,
.value-panel p,
.quote-panel p,
.footer,
.floating-panel p,
.gallery-copy p,
.gallery-card p {
  color: #f1f8fd(--muted);
  line-height: 1.72;
}

.hero-copy p {
  max-width: 60ch;
  font-size: 1.06rem;
  margin: 0 0 26px;
}

.cta-row,
.chips,
.toggle-row,
.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.ghost-button,
.toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 18px;
  font: inherit;
  font-weight: 800;
  border: 1px solid transparent;
  transition: 180ms ease;
  cursor: pointer;
}

.button {
  background: linear-gradient(135deg, var(--accent), var(--accent-cool));
  color: #081118;
  box-shadow: 0 16px 28px rgba(105, 240, 197, 0.18);
}

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

.ghost-button,
.toggle {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.toggle {
  color: var(--muted);
  padding: 11px 15px;
}

.toggle:hover,
.toggle:focus-visible,
.toggle.active {
  color: var(--text);
  background: rgba(118, 207, 255, 0.1);
  border-color: rgba(118, 207, 255, 0.22);
}

.chips {
  margin: 0 0 24px;
}

.chip {
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 0.87rem;
  color: #d9edf9;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-kpis,
.grid-3,
.grid-4,
.publication-grid,
.story-grid,
.timeline-grid,
.gallery-grid,
.value-metrics {
  display: grid;
  gap: 18px;
}

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

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

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

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

.story-grid {
  grid-template-columns: 0.94fr 1.06fr;
}

.gallery-grid {
  grid-template-columns: 1.18fr 0.82fr 0.82fr;
}

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

.panel,
.stat-card,
.publication-card,
.story-card,
.value-panel,
.capability-card,
.timeline-card,
.quote-panel,
.gallery-card,
.impact-band,
.media-stage,
.floating-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-card,
.publication-card,
.story-card,
.value-panel,
.capability-card,
.timeline-card,
.quote-panel,
.gallery-card,
.floating-panel {
  position: relative;
  overflow: hidden;
}

.stat-card,
.capability-card,
.timeline-card,
.gallery-card,
.story-card,
.value-panel,
.quote-panel,
.floating-panel {
  padding: 22px;
}

.story-card,
.value-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
}

.stat-card::before,
.publication-card::before,
.story-card::before,
.value-panel::before,
.capability-card::before,
.timeline-card::before,
.gallery-card::before,
.floating-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(105, 240, 197, 0.9), rgba(118, 207, 255, 0.25));
}

.stat-card strong,
.metric strong {
  display: block;
  font-size: 1.16rem;
  margin-bottom: 8px;
}

.section {
  padding: 28px 0 42px;
}

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

.section-header h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  max-width: 12ch;
}

.section-header p {
  margin: 0;
  max-width: 60ch;
}

.publication-card {
  min-height: 350px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background:
    linear-gradient(180deg, rgba(6, 17, 27, 0.1), rgba(6, 17, 27, 0.9)),
    var(--card-image, linear-gradient(135deg, #14314c, #0b1a27));
  background-size: cover;
  background-position: center;
}

.publication-card h3,
.capability-card h3,
.timeline-card h3,
.story-header h3,
.value-panel h3,
.gallery-copy h3,
.quote-panel h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.publication-card .chips {
  margin-top: 18px;
  margin-bottom: 0;
}

.media-stage {
  min-height: 580px;
  position: relative;
  overflow: hidden;
  padding: 20px;
  background:
    linear-gradient(140deg, rgba(118, 207, 255, 0.06), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    rgba(7, 18, 28, 0.92);
}

.media-stage::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: calc(var(--radius) - 10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.ambient-orb {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.3;
}

.ambient-orb.one {
  top: -60px;
  right: -40px;
  background: rgba(118, 207, 255, 0.26);
}

.ambient-orb.two {
  bottom: -80px;
  left: -40px;
  background: rgba(105, 240, 197, 0.18);
}

.media-collage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(240px, 0.72fr);
  grid-template-rows: minmax(212px, 1fr) minmax(176px, 1fr) auto;
  gap: 18px;
  min-height: 520px;
}

.media-shot {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 44px rgba(0, 0, 0, 0.28);
  transform: translate3d(0, 0, 0);
}

.media-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 17, 27, 0.04), rgba(6, 17, 27, 0.28));
  pointer-events: none;
}

.media-shot img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 500ms ease;
}

.media-shot:hover img {
  transform: scale(1.08);
}

.media-shot.large {
  grid-column: 1;
  grid-row: 1 / span 2;
  min-height: 406px;
}

.media-shot.small-top {
  grid-column: 2;
  grid-row: 1;
  min-height: 212px;
}

.media-shot.small-bottom {
  grid-column: 2;
  grid-row: 2;
  min-height: 176px;
}

.media-copy {
  position: relative;
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  justify-self: start;
  margin: 0 0 22px 22px;
  max-width: 340px;
  z-index: 2;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(6, 17, 27, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.media-copy strong {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.media-copy span {
  color: #e4f1f8;
  line-height: 1.6;
}

.floating-panel {
  position: relative;
  z-index: 3;
  max-width: none;
  animation: none;
  min-height: 100%;
}

.floating-panel.top {
  grid-column: 1;
  grid-row: 3;
}

.floating-panel.bottom {
  grid-column: 2;
  grid-row: 3;
}

.floating-panel strong {
  display: block;
  margin-bottom: 8px;
}

.impact-band {
  padding: 18px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background:
    linear-gradient(145deg, rgba(105, 240, 197, 0.1), rgba(118, 207, 255, 0.06)),
    rgba(255, 255, 255, 0.03);
}

.impact-stat strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.impact-stat span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.56;
}

.gallery-card {
  min-height: 240px;
  padding: 0;
}

.gallery-card figure,
.publication-card figure {
  margin: 0;
  height: 100%;
}

.gallery-card img {
  height: 100%;
  object-fit: cover;
}

.gallery-card figcaption {
  position: absolute;
  inset: auto 18px 18px 18px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(6, 17, 27, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.gallery-card strong {
  display: block;
  margin-bottom: 6px;
}

.story-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.story-output {
  display: grid;
  gap: 16px;
  flex: 1;
  align-content: start;
}

.quote-panel {
  background:
    linear-gradient(130deg, rgba(105, 240, 197, 0.12), rgba(118, 207, 255, 0.08)),
    rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 176px;
  padding: 22px;
}

.metric {
  padding: 16px;
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric span,
.caption,
.legend-item {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.56;
}

.publication-card p,
.capability-card p,
.timeline-card p,
.story-header p,
.value-panel > p,
.quote-panel p,
.floating-panel p,
.gallery-card p,
.impact-stat span,
.metric span {
  margin: 0;
}

.caption {
  display: block;
  margin-top: 10px;
}

.hover-offer-card {
  padding: 0;
  min-height: 300px;
}

.offer-visual {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(6, 17, 27, 0.08), rgba(6, 17, 27, 0.48)),
    var(--offer-image);
  background-size: cover;
  background-position: center;
  transition: transform 280ms ease, filter 280ms ease, opacity 240ms ease;
}

.offer-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 17, 27, 0.04), rgba(6, 17, 27, 0.22));
}

.offer-label {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(6, 17, 27, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  color: var(--text);
  font-weight: 800;
}

.offer-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 300px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(6, 17, 27, 0.08), rgba(6, 17, 27, 0.92));
  opacity: 0;
  transition: opacity 240ms ease;
}

.offer-copy h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
}

.hover-offer-card:hover .offer-visual,
.hover-offer-card:focus-within .offer-visual {
  transform: scale(1.03);
  filter: saturate(0.88) brightness(0.78);
}

.hover-offer-card:hover .offer-copy,
.hover-offer-card:focus-within .offer-copy {
  opacity: 1;
}

.hover-offer-card:hover .offer-label,
.hover-offer-card:focus-within .offer-label {
  opacity: 0;
}

.divider {
  height: 1px;
  margin: 22px 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.legend {
  margin-top: 18px;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.legend-dot.primary {
  background: var(--accent);
}

.legend-dot.secondary {
  background: var(--accent-cool);
}

.legend-dot.warm {
  background: var(--accent-warm);
}

.spotlight {
  position: relative;
  overflow: hidden;
}

.spotlight::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(118, 207, 255, 0.12), transparent 24%);
  opacity: 0;
  transition: opacity 200ms ease;
  pointer-events: none;
}

.spotlight:hover::after {
  opacity: 1;
}

.footer {
  padding: 30px 0 58px;
  font-size: 0.93rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px) scale(0.985);
  transition: opacity 600ms ease, transform 700ms ease;
}

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

[data-reveal-delay="1"] {
  transition-delay: 70ms;
}

[data-reveal-delay="2"] {
  transition-delay: 140ms;
}

[data-reveal-delay="3"] {
  transition-delay: 210ms;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1120px) {
  .hero-grid,
  .publication-grid,
  .story-grid,
  .grid-3,
  .grid-4,
  .timeline-grid,
  .gallery-grid,
  .hero-kpis,
  .impact-band,
  .value-metrics {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .hero-copy h2,
  .section-header h2 {
    max-width: none;
  }

  .media-stage {
    min-height: 700px;
  }

  .media-collage {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(320px, auto) minmax(220px, auto) minmax(180px, auto) auto auto;
  }

  .media-shot.large,
  .media-shot.small-top,
  .media-shot.small-bottom,
  .media-copy,
  .floating-panel.top,
  .floating-panel.bottom {
    grid-column: 1;
  }

  .media-shot.large {
    grid-row: 1 / span 2;
    min-height: 420px;
  }

  .media-shot.small-top {
    grid-row: 3;
    min-height: 220px;
  }

  .media-shot.small-bottom {
    grid-row: 4;
    min-height: 180px;
  }

  .media-copy {
    grid-row: 2;
    margin: 0 0 22px 22px;
  }

  .floating-panel.top {
    grid-row: 5;
  }

  .floating-panel.bottom {
    display: none;
  }
}

@media (max-width: 760px) {
  .topbar-inner,
  .container {
    width: min(var(--max), calc(100% - 24px));
  }

  .topbar-inner {
    padding: 12px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
  }

  .hero {
    padding-top: 52px;
  }

  .media-stage {
    min-height: 620px;
    padding: 14px;
  }

  .media-collage {
    grid-template-rows: minmax(260px, auto) minmax(200px, auto) minmax(140px, auto) minmax(140px, auto) auto;
  }

  .media-shot.large {
    min-height: 320px;
  }

  .media-copy {
    margin: 0 14px 14px 14px;
    max-width: calc(100% - 28px);
  }

  .offer-copy {
    opacity: 1;
    min-height: 300px;
    background: linear-gradient(180deg, rgba(6, 17, 27, 0.16), rgba(6, 17, 27, 0.9));
  }

  .offer-label {
    opacity: 0;
  }

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