/* Rostops Lunar - liquid glass + editorial photo layouts */

:root {
  --primary: 15 23 42;
  --primary-hover: 30 41 59;
  --secondary: 123 163 196;
  --secondary-hover: 107 147 180;
  --accent: 168 196 220;
  --glass-accent: 125 211 252;
  --bg: 11 17 32;
  --surface: 20 28 46;
  --surface-raised: 26 36 56;
  --border: 36 48 71;
  --text: 232 238 244;
  --text-muted: 139 156 179;
  --on-primary: 255 255 255;

  --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(139, 180, 217, 0.04);
  --shadow-elevated: 0 8px 28px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(139, 180, 217, 0.06);
  --shadow-glass: 0 1px 0 rgba(255, 255, 255, 0.08) inset, 0 12px 40px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(125, 211, 252, 0.06);

  --glass-bg: rgba(20, 28, 46, 0.55);
  --glass-bg-strong: rgba(20, 28, 46, 0.78);
  --glass-bg-soft: rgba(20, 28, 46, 0.35);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-border-outer: rgba(125, 211, 252, 0.1);
  --glass-highlight: rgba(255, 255, 255, 0.1);
  --glass-blur: 32px;
  --glass-saturate: 160%;

  --ambient-1: rgba(125, 211, 252, 0.14);
  --ambient-2: rgba(59, 130, 246, 0.1);
  --ambient-3: rgba(107, 143, 175, 0.12);

  --font-ui: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial,
    sans-serif;
  --max: 1180px;
  --nav-h: 4.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: rgb(var(--bg));
  color: rgb(var(--text));
  font-family: var(--font-ui);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

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

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

h1,
h2,
h3 {
  font-family: var(--font-ui);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: rgb(var(--glass-accent));
  color: rgb(15 23 42);
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

/* Glass */
.glass,
.glass-strong,
.glass-soft,
.glass-nav {
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-glass);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
}

.glass {
  background: var(--glass-bg);
}

.glass-strong {
  background: var(--glass-bg-strong);
  backdrop-filter: blur(calc(var(--glass-blur) + 8px)) saturate(var(--glass-saturate));
  -webkit-backdrop-filter: blur(calc(var(--glass-blur) + 8px)) saturate(var(--glass-saturate));
}

.glass-soft {
  background: var(--glass-bg-soft);
  box-shadow: 0 1px 0 var(--glass-highlight) inset, 0 4px 16px rgb(var(--text) / 0.04);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}

.glass-nav {
  background: var(--glass-bg-strong);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .glass,
  .glass-strong,
  .glass-soft,
  .glass-nav {
    background: rgb(var(--surface));
  }
}

@media (prefers-reduced-transparency: reduce) {
  .glass,
  .glass-strong,
  .glass-soft,
  .glass-nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgb(var(--surface));
  }
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Nav */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 0.85rem 0;
}

.site-header.is-scrolled .nav-shell {
  box-shadow: var(--shadow-elevated);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0.85rem 0.65rem 1rem;
  border-radius: 1.15rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.brand img {
  width: 2rem;
  height: 2rem;
  border-radius: 0.55rem;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgb(var(--text-muted));
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: rgb(var(--text));
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg-soft);
  color: rgb(var(--text));
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: currentColor;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
}

.nav-toggle span::before {
  top: -5px;
}

.nav-toggle span::after {
  top: 5px;
}

.mobile-nav {
  display: none;
  margin-top: 0.65rem;
  padding: 1rem;
  border-radius: 1rem;
  flex-direction: column;
  gap: 0.85rem;
}

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

.mobile-nav a {
  font-weight: 500;
  color: rgb(var(--text-muted));
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.65rem;
  padding: 0.65rem 1.15rem;
  border-radius: 0.85rem;
  font-family: inherit;
  font-size: 0.925rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgb(var(--secondary) / 0.35);
}

.btn-primary {
  background: rgb(var(--glass-accent));
  color: rgb(15 23 42 / 0.92);
}

.btn-primary:hover {
  background: rgb(168 196 220);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: rgb(var(--text));
  border-color: var(--glass-border);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-lg {
  min-height: 3.1rem;
  padding: 0.85rem 1.45rem;
  font-size: 1rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.text-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-weight: 600;
  color: rgb(var(--glass-accent));
  letter-spacing: -0.01em;
}

.text-link:hover {
  color: #fff;
}

/* Hero - full-bleed photo */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 2rem) 0 4.5rem;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.05);
  will-change: transform;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 17, 32, 0.55) 0%, rgba(11, 17, 32, 0.35) 35%, rgba(11, 17, 32, 0.88) 78%, rgb(11, 17, 32) 100%),
    linear-gradient(90deg, rgba(11, 17, 32, 0.72) 0%, rgba(11, 17, 32, 0.25) 55%, rgba(11, 17, 32, 0.45) 100%);
}

.hero-blobs {
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.hero-blob {
  position: absolute;
  border-radius: 9999px;
  filter: blur(80px);
  opacity: 0.55;
}

.hero-blob-a {
  top: 10%;
  left: -8%;
  width: 24rem;
  height: 24rem;
  background: rgba(125, 211, 252, 0.35);
}

.hero-blob-b {
  bottom: 15%;
  right: -10%;
  width: 28rem;
  height: 28rem;
  background: rgba(59, 130, 246, 0.22);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
}

.hero-copy {
  max-width: 38rem;
}

.hero-eyebrow {
  margin-bottom: 0.85rem;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgb(var(--glass-accent));
}

.hero-brand {
  font-size: clamp(3.6rem, 12vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #fff;
  margin-bottom: 0.65rem;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}

.hero-pitch {
  font-size: clamp(1.35rem, 3vw, 1.95rem);
  font-weight: 600;
  color: #fff;
  text-wrap: balance;
  max-width: 16ch;
  margin-bottom: 1rem;
}

.hero-support {
  max-width: 34rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  text-wrap: balance;
  margin-bottom: 1.75rem;
}

/* Shared section type */
.section {
  padding: 5.5rem 0;
  background: rgb(var(--bg));
}

.section-tight {
  padding-top: 3.5rem;
}

.section-label {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgb(var(--glass-accent));
}

.section-title {
  font-size: clamp(1.85rem, 3.8vw, 2.65rem);
  font-weight: 700;
  color: #fff;
  text-wrap: balance;
  margin-bottom: 0.9rem;
}

.section-lead {
  color: rgb(var(--text-muted));
  font-size: 1.05rem;
  text-wrap: balance;
  max-width: 36rem;
  line-height: 1.65;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.75rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .section-lead {
  margin-inline: auto;
}

/* Intro row */
.intro-row {
  display: grid;
  gap: 2rem;
  align-items: end;
}

@media (min-width: 900px) {
  .intro-row {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3.5rem;
  }
}

.intro-shot {
  margin: 0;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-elevated);
}

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

/* Feature splits - image is the anchor, not a card */
.feature {
  display: grid;
  background: rgb(var(--bg));
}

@media (min-width: 900px) {
  .feature {
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 32rem;
  }

  .feature-flip {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .feature-flip .feature-media {
    order: 2;
  }

  .feature-flip .feature-body {
    order: 1;
  }
}

.feature-dark {
  background: #070b14;
}

.feature-media {
  overflow: hidden;
  min-height: 16rem;
}

.feature-media img {
  width: 100%;
  height: 100%;
  min-height: 16rem;
  object-fit: cover;
}

@media (min-width: 900px) {
  .feature-media,
  .feature-media img {
    min-height: 100%;
  }
}

.feature-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 4rem);
}

.feature-list {
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.55rem;
}

.feature-list li {
  position: relative;
  padding-left: 1rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 9999px;
  background: rgb(var(--glass-accent));
  box-shadow: 0 0 10px rgba(125, 211, 252, 0.55);
}

.detail-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.detail-chips li {
  padding: 0.45rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  background: var(--glass-bg-soft);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
}

/* Use cases - full-screen cards, horizontal slide on vertical scroll */
.use-cases {
  padding: 0;
  background: #070b14;
}

.usecase-pin {
  position: relative;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: #070b14;
}

.usecase-viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.usecase-rail {
  display: flex;
  flex-wrap: nowrap;
  height: 100%;
  width: max-content;
  will-change: transform;
}

.usecase-card {
  position: relative;
  flex: 0 0 100vw;
  width: 100vw;
  height: 100%;
  overflow: hidden;
}

.usecase-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  pointer-events: none;
  user-select: none;
}

.usecase-card-bg--instruments {
  object-position: center bottom;
  height: 115%;
  top: -12%;
  transform: none;
}

.usecase-card-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 11, 20, 0.55) 0%, rgba(7, 11, 20, 0.2) 35%, rgba(7, 11, 20, 0.88) 100%),
    linear-gradient(90deg, rgba(7, 11, 20, 0.55) 0%, transparent 55%);
}

.usecase-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: min(100% - 2.5rem, 40rem);
  margin: 0 auto 5.5rem;
  padding: 1.35rem 1.4rem 1.45rem;
  border-radius: 1.15rem;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-glass);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
}

@media (min-width: 900px) {
  .usecase-card-content {
    left: max(1.5rem, calc((100vw - var(--max)) / 2));
    right: auto;
    margin: 0 0 5.75rem;
    width: min(100% - 3rem, 34rem);
  }
}

.usecase-card-kicker {
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(var(--glass-accent));
  margin-bottom: 0.55rem;
}

.usecase-card-content h3 {
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 700;
  color: #fff;
  text-wrap: balance;
  margin-bottom: 0.55rem;
}

.usecase-card-content > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.85rem;
}

.usecase-card-content ul {
  display: grid;
  gap: 0.4rem;
}

.usecase-card-content li {
  position: relative;
  padding-left: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  line-height: 1.45;
}

.usecase-card-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 9999px;
  background: rgb(var(--glass-accent));
}

.usecase-chrome {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding:
    calc(var(--nav-h) + 0.85rem)
    max(1.25rem, calc((100vw - var(--max)) / 2))
    1.35rem;
}

.usecase-chrome-top,
.usecase-chrome-bottom,
.usecase-controls,
.usecase-dots button,
.usecase-btn {
  pointer-events: auto;
}

.usecase-chrome-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.usecase-section-title {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  max-width: 16ch;
}

.usecase-controls {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.usecase-btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg-strong);
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.usecase-btn:hover:not(:disabled) {
  background: rgba(125, 211, 252, 0.18);
  border-color: rgba(125, 211, 252, 0.35);
}

.usecase-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.usecase-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgb(var(--secondary) / 0.35);
}

.usecase-chrome-bottom {
  display: grid;
  gap: 0.75rem;
  max-width: 22rem;
}

.usecase-progress {
  height: 3px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.usecase-progress-bar {
  display: block;
  height: 100%;
  width: 25%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgb(var(--glass-accent)), rgb(var(--accent)));
}

.usecase-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.usecase-count {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.7);
  font-variant-numeric: tabular-nums;
}

.usecase-dots {
  display: flex;
  gap: 0.45rem;
  list-style: none;
}

.usecase-dots button {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: 0;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: background 0.25s ease, width 0.25s ease;
}

.usecase-dots button.is-active {
  width: 1.35rem;
  background: rgb(var(--glass-accent));
}

.usecase-dots button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgb(var(--secondary) / 0.35);
}

/* Reduced motion / no-JS friendly stack */
@media (prefers-reduced-motion: reduce) {
  .usecase-pin {
    height: auto;
    overflow: visible;
  }

  .usecase-viewport {
    position: relative;
    overflow: visible;
  }

  .usecase-rail {
    flex-direction: column;
    width: 100%;
    transform: none !important;
  }

  .usecase-card {
    flex-basis: auto;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
  }

  .usecase-chrome {
    position: sticky;
    top: 0;
    height: auto;
    inset: auto;
    padding: calc(var(--nav-h) + 0.75rem) 1.25rem 1rem;
    background: linear-gradient(180deg, rgba(7, 11, 20, 0.92), transparent);
  }
}

/* Details grid */
.details-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .details-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .details-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.detail-block {
  padding: 1.45rem 1.35rem 1.5rem;
  border-radius: 1rem;
  height: 100%;
}

.detail-block h3 {
  font-size: 1.05rem;
  font-weight: 650;
  color: #fff;
  margin-bottom: 0.55rem;
}

.detail-block p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Photo strip */
.strip {
  position: relative;
  min-height: 22rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.strip-media {
  position: absolute;
  inset: 0;
}

.strip-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.strip-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11, 17, 32, 0.92) 0%,
    rgba(11, 17, 32, 0.72) 45%,
    rgba(11, 17, 32, 0.55) 100%
  );
}

.strip-inner {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0;
}

.strip-lead {
  color: rgba(255, 255, 255, 0.7);
}

/* Who */
.who-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 760px) {
  .who-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.who-block {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 22rem;
}

.who-photo {
  position: absolute;
  inset: 0;
}

.who-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.who-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(7, 11, 20, 0.92) 85%);
}

.who-copy {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 1.15rem 1.25rem;
  border-radius: 1rem;
}

.who-copy h3 {
  font-size: 1.35rem;
  font-weight: 650;
  color: #fff;
  margin-bottom: 0.35rem;
}

.who-copy p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}

/* Closing */
.closing {
  padding: 5rem 0 5.5rem;
  background: rgb(var(--bg));
}

.closing-panel {
  padding: clamp(2.25rem, 5vw, 3.5rem);
  text-align: center;
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
}

.closing-panel::before {
  content: "";
  position: absolute;
  inset: auto auto -35% 50%;
  transform: translateX(-50%);
  width: 28rem;
  height: 18rem;
  border-radius: 9999px;
  background: rgba(125, 211, 252, 0.16);
  filter: blur(60px);
  pointer-events: none;
}

.closing-panel > * {
  position: relative;
  z-index: 1;
}

.closing-panel h2 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  text-wrap: balance;
  margin: 0 auto 1rem;
}

.closing-panel p {
  max-width: 34rem;
  margin: 0 auto 1.75rem;
  color: rgba(255, 255, 255, 0.65);
}

.closing-panel .btn-group {
  justify-content: center;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #070b14;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.footer-brand img {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.4rem;
  margin-top: 0.1rem;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  max-width: 26rem;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.35rem;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-meta a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s ease;
}

.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: #fff;
}

/* GSAP initial states (non-reduced-motion) */
[data-animate],
[data-reveal] {
  will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-animate],
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-photo {
    transform: none;
  }
}
