:root {
  --bg: #06070f;
  --bg-alt: #0a0c1c;
  --surface: #10122a;
  --surface-2: #161a3d;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --primary: #5b7dff;
  --primary-2: #7c8cff;
  --secondary: #a855f7;
  --secondary-2: #c084fc;
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --gradient-soft: linear-gradient(
    135deg,
    rgba(91, 125, 255, 0.15),
    rgba(168, 85, 247, 0.15)
  );
  --text: #f5f6fc;
  --text-dim: #a9adcf;
  --text-mute: #6c709a;
  --success: #2ee6a6;
  --radius: 18px;
  --radius-sm: 12px;
  --ff-display: "Space Grotesk", sans-serif;
  --ff-body: "Inter", sans-serif;
  --shadow-glow: 0 0 60px rgba(91, 125, 255, 0.25);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  overflow-x: hidden;
  line-height: 1.5;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
h1,
h2,
h3,
h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-2);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gradient);
}
.section {
  position: relative;
  padding: 120px 0;
}
.section-tight {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }
}

.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.bg-glow span {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
}
.bg-glow .g1 {
  width: 600px;
  height: 600px;
  background: var(--primary);
  top: -200px;
  left: -150px;
  animation: float1 18s ease-in-out infinite;
}
.bg-glow .g2 {
  width: 500px;
  height: 500px;
  background: var(--secondary);
  bottom: -150px;
  right: -100px;
  animation: float2 22s ease-in-out infinite;
}
.bg-glow .g3 {
  width: 400px;
  height: 400px;
  background: var(--primary-2);
  top: 40%;
  left: 50%;
  animation: float3 26s ease-in-out infinite;
  opacity: 0.18;
}
@keyframes float1 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(60px, 80px);
  }
}
@keyframes float2 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-50px, -60px);
  }
}
@keyframes float3 {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -40px);
  }
}
.noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  transition:
    padding 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    backdrop-filter 0.35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 14px 0;
  background: rgba(6, 7, 15, 0.75);
  backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--border);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.brand img {
  height: 34px;
  width: auto;
}
.brand .fallback-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.95rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav-links a {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text-dim);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease;
  border-radius: 2px;
}
.nav-links a:hover {
  color: var(--text);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  transition:
    transform 0.3s cubic-bezier(0.2, 0.9, 0.3, 1.3),
    box-shadow 0.3s ease,
    background 0.3s ease,
    filter 0.3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 0 0 rgba(91, 125, 255, 0);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 8px 30px rgba(91, 125, 255, 0.45),
    0 8px 30px rgba(168, 85, 247, 0.25);
}
.btn-primary:active {
  transform: translateY(0) scale(0.98);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-strong);
  color: var(--text);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}
.btn-sm {
  padding: 10px 20px;
  font-size: 0.83rem;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
}
.hamburger span {
  width: 18px;
  height: 2px;
  background: var(--text);
  margin: 0 auto;
  transition:
    transform 0.35s ease,
    opacity 0.25s ease;
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(6, 7, 15, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    visibility 0.4s;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-menu a {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text);
}
.mobile-menu .btn {
  margin-top: 10px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding-top: 100px;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media video,
.hero-media .poster-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media .poster-fallback {
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(91, 125, 255, 0.35),
      transparent 55%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(168, 85, 247, 0.35),
      transparent 55%
    ),
    linear-gradient(160deg, #0a0c1c, #050611 70%);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 7, 15, 0.55) 0%,
    rgba(6, 7, 15, 0.35) 40%,
    rgba(6, 7, 15, 0.9) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  padding: 0 24px;
}
.hero-content .eyebrow {
  justify-content: center;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.05;
  margin-bottom: 22px;
  animation: riseIn 1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero h1 .grad {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--text-dim);
  max-width: 620px;
  margin: 0 auto 40px;
  animation: riseIn 1s 0.15s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: riseIn 1s 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-mute);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-cue .line {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--text-mute), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

.showcase {
  position: relative;
  padding: 90px 0 110px;
}
.showcase-inner {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 16/8;
  background: linear-gradient(150deg, #11142c, #191033);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-glow);
}
.showcase-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 0.55;
}
.showcase-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 7, 15, 0.15),
    rgba(6, 7, 15, 0.85)
  );
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1.4);
}
.play-btn::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  animation: pulseRing 2.4s ease-out infinite;
}
.play-btn::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(168, 85, 247, 0.35);
  animation: pulseRing 2.4s ease-out 0.8s infinite;
}
@keyframes pulseRing {
  0% {
    transform: scale(0.9);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.play-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
  margin-left: 4px;
}
.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--gradient);
  border-color: transparent;
  box-shadow: 0 0 40px rgba(91, 125, 255, 0.6);
}
.showcase-caption {
  position: absolute;
  left: 32px;
  bottom: 28px;
  z-index: 3;
}
.showcase-caption h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.showcase-caption p {
  color: var(--text-dim);
  font-size: 0.9rem;
}

.counters-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.counter-card {
  background: var(--surface);
  padding: 38px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.counter-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-soft);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.counter-card:hover::before {
  opacity: 1;
}
.counter-num {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  z-index: 1;
}
.counter-label {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-top: 8px;
  position: relative;
  z-index: 1;
}
.counters-note {
  text-align: center;
  color: var(--text-mute);
  font-size: 0.8rem;
  margin-top: 22px;
  font-style: italic;
}
@media (max-width: 900px) {
  .counters-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .counters-wrap {
    grid-template-columns: 1fr;
  }
}

.intro {
  text-align: center;
}
.intro h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  max-width: 820px;
  margin: 0 auto 24px;
  line-height: 1.15;
}
.intro p {
  max-width: 640px;
  margin: 0 auto 38px;
  color: var(--text-dim);
  font-size: 1.08rem;
}

.map-wrap {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(91, 125, 255, 0.12),
      transparent 60%
    ),
    var(--surface);
  padding: 10px;
  margin-bottom: 56px;
  overflow: hidden;
}
#leafletMap {
  width: 100%;
  height: 460px;
  border-radius: calc(var(--radius) - 8px);
  background: #eef0e7;
}
@media (max-width: 640px) {
  #leafletMap {
    height: 380px;
  }
}
.map-hint {
  text-align: center;
  color: var(--text-mute);
  font-size: 0.82rem;
  margin-top: 10px;
}

.leaflet-container {
  background: #eef0e7;
  font-family: var(--ff-body);
}
.leaflet-control-attribution {
  background: rgba(255, 255, 255, 0.85) !important;
  color: #5a5d70 !important;
  font-size: 10px !important;
  border-radius: 6px 0 0 0;
}
.leaflet-control-attribution a {
  color: #3a3d55 !important;
}
.leaflet-control-zoom {
  border: none !important;
  box-shadow: 0 4px 14px rgba(20, 20, 40, 0.18) !important;
  border-radius: 10px !important;
  overflow: hidden;
}
.leaflet-control-zoom a {
  background: #fff !important;
  color: #2a2c40 !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  width: 32px !important;
  height: 32px !important;
  line-height: 32px !important;
  font-size: 16px !important;
}
.leaflet-control-zoom a:hover {
  background: #f2f2fb !important;
}
.leaflet-popup-content-wrapper {
  background: #fff;
  color: #1b1c2b;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 14px 40px rgba(20, 20, 40, 0.22);
}
.leaflet-popup-tip {
  background: #fff;
}
.leaflet-popup-content {
  margin: 14px 16px;
  font-size: 0.85rem;
  color: #4a4c66;
}
.leaflet-popup-content b {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 2px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.leaflet-popup-close-button {
  color: #8a8ca0 !important;
}

.pulse-marker {
  position: relative;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.pulse-marker .dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(10, 10, 25, 0.55);
  box-shadow: 0 2px 8px rgba(20, 20, 40, 0.35);
  transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.3, 1.4);
  z-index: 2;
}
.pulse-marker .ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.55;
  animation: markerPulse 2.2s ease-out infinite;
  z-index: 1;
}
.pulse-marker .ring.ring2 {
  animation-delay: 1.1s;
}
.pulse-marker.active .dot {
  transform: translate(-50%, -50%) scale(1.35);
}
.pulse-marker:hover .dot {
  transform: translate(-50%, -50%) scale(1.2);
}
@keyframes markerPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.6);
    opacity: 0;
  }
}
.marker-tag {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: rgba(20, 20, 40, 0.85);
  padding: 3px 9px;
  border-radius: 100px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.pulse-marker:hover .marker-tag,
.pulse-marker.active .marker-tag {
  opacity: 1;
}

.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
@media (max-width: 900px) {
  .loc-grid {
    grid-template-columns: 1fr;
  }
}
.loc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
  cursor: pointer;
}
.loc-card:hover,
.loc-card.highlight {
  transform: translateY(-6px);
  border-color: rgba(91, 125, 255, 0.4);
  box-shadow:
    0 20px 50px rgba(91, 125, 255, 0.15),
    0 0 0 1px rgba(168, 85, 247, 0.15);
}

.loc-media {
  display: block;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(150deg, #151833, #1c1440);
}
.loc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.loc-card:hover .loc-media img {
  transform: scale(1.08);
}

.loc-body {
  padding: 24px 24px 26px;
}
.loc-name {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.loc-addr {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.loc-stats {
  display: flex;
  gap: 22px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.loc-stat {
  font-size: 0.82rem;
  color: var(--text-dim);
}
.loc-stat b {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.05rem;
  color: var(--text);
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.loc-perk {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--primary-2);
  background: rgba(91, 125, 255, 0.08);
  border: 1px solid rgba(91, 125, 255, 0.2);
  padding: 6px 12px;
  border-radius: 100px;
}
.loc-more {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.5s ease,
    margin-top 0.5s ease;
}
.loc-card.expanded .loc-more {
  max-height: 220px;
  margin-top: 16px;
}
.loc-more p {
  color: var(--text-dim);
  font-size: 0.88rem;
  line-height: 1.6;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.loc-toggle {
  font-size: 0.78rem;
  color: var(--text-mute);
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.loc-toggle svg {
  width: 12px;
  height: 12px;
  transition: transform 0.35s ease;
}
.loc-card.expanded .loc-toggle svg {
  transform: rotate(180deg);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 85, 247, 0.35);
  box-shadow: 0 18px 40px rgba(168, 85, 247, 0.12);
}
.why-icon {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary-2);
}
.why-card h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}
.why-card p {
  color: var(--text-dim);
  font-size: 0.9rem;
}
.why-closing {
  text-align: center;
  margin-top: 60px;
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text);
}
.why-closing .grad {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.network-line {
  text-align: center;
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  max-width: 760px;
  margin: 0 auto 60px;
  color: var(--text-dim);
}
.network-line b {
  color: var(--text);
}

.pricing-showcase {
  margin: 32px 0 80px;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.38fr);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  overflow: hidden;
  background: #040507;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.45);
}
.pricing-poster {
  position: relative;
  padding: 40px 32px;
  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(91, 125, 255, 0.22),
      transparent 38%
    ),
    radial-gradient(
      circle at 65% 36%,
      rgba(168, 85, 247, 0.16),
      transparent 34%
    ),
    linear-gradient(180deg, #07080d 0%, #020204 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  min-height: 100%;
}
.pricing-poster::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 92px;
  height: 2px;
  background: radial-gradient(
    circle,
    rgba(91, 125, 255, 0.85) 0%,
    rgba(124, 140, 255, 0.5) 24%,
    rgba(168, 85, 247, 0.5) 48%,
    transparent 74%
  );
  filter: blur(1px);
}
.pricing-poster-inner {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.pricing-logo {
  width: min(260px, 78%);
  margin: 0 auto 10px;
  filter: drop-shadow(0 0 24px rgba(91, 125, 255, 0.18));
}
.pricing-brand {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
}
.pricing-brand span {
  display: block;
  margin-top: 8px;
  font-size: clamp(1rem, 1.7vw, 1.3rem);
  letter-spacing: 0.55em;
  color: #7c8cff;
}
.pricing-slogan {
  margin-top: 56px;
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
}
.pricing-slogan span {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pricing-year {
  margin-top: 88px;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f1f3ff;
}
.pricing-site {
  margin-top: 48px;
  font-size: 1rem;
  color: #f1f3ff;
}
.pricing-sheet {
  padding: 34px 28px 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0)),
    #050608;
}
.pricing-sheet-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.pricing-title-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #7c8cff;
  background: linear-gradient(
    135deg,
    rgba(91, 125, 255, 0.12),
    rgba(168, 85, 247, 0.12)
  );
  border: 1px solid rgba(124, 140, 255, 0.22);
}
.pricing-title-icon svg {
  width: 28px;
  height: 28px;
}
.pricing-title-text {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
}
.pricing-title-text span {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) repeat(3, minmax(112px, 1fr));
}
.pricing-grid-head {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.pricing-grid-head .pricing-cell {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3c8;
}
.pricing-grid-head .pricing-cell:not(.pricing-cell-location) {
  text-align: center;
}
.pricing-row {
  align-items: stretch;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.pricing-row:last-of-type {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.pricing-cell {
  padding: 20px 12px;
}
.pricing-row .pricing-cell + .pricing-cell {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.pricing-cell-location {
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
.pricing-location-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #7c8cff;
  background: rgba(91, 125, 255, 0.06);
  border: 1px solid rgba(124, 140, 255, 0.18);
}
.pricing-location-mark svg {
  width: 20px;
  height: 20px;
}
.pricing-location-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.pricing-location-copy strong {
  font-family: var(--ff-display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
}
.pricing-location-copy span,
.pricing-location-copy small {
  color: #d6daf1;
  line-height: 1.25;
}
.pricing-location-copy span {
  font-size: 0.88rem;
  text-transform: uppercase;
}
.pricing-location-copy small {
  font-size: 0.82rem;
}
.pricing-price {
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 1.65vw, 1.75rem);
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.pricing-stats {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  overflow: hidden;
}
.pricing-stat {
  padding: 22px 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.015);
}
.pricing-stat + .pricing-stat {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.pricing-stat svg {
  width: 30px;
  height: 30px;
  color: #7c8cff;
}
.pricing-stat strong {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}
.pricing-stat span {
  max-width: 140px;
  font-size: 0.86rem;
  line-height: 1.35;
  color: #c7cbe6;
  text-transform: uppercase;
}
.pricing-footnote {
  margin-top: 18px;
  text-align: right;
  font-size: 0.82rem;
  color: #9ca3c8;
}
.price-note {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.85rem;
  max-width: 640px;
  margin: 20px auto 0;
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}
@media (max-width: 960px) {
  .pkg-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
}
.pkg-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 38px 30px 32px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}
.pkg-card:hover {
  transform: translateY(-8px);
}
.pkg-card.featured {
  border-color: rgba(168, 85, 247, 0.5);
  background: linear-gradient(
    180deg,
    rgba(91, 125, 255, 0.08),
    rgba(168, 85, 247, 0.06) 60%,
    var(--surface)
  );
  box-shadow: 0 25px 60px rgba(124, 92, 255, 0.25);
}
.pkg-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  box-shadow: 0 6px 20px rgba(124, 92, 255, 0.5);
  white-space: nowrap;
}
.pkg-name {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pkg-tagline {
  color: var(--text-dim);
  font-size: 0.88rem;
  margin-bottom: 24px;
  min-height: 40px;
}
.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex: 1;
}
.pkg-features li {
  display: flex;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--text-dim);
  align-items: flex-start;
}
.pkg-features li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--primary-2);
}
.pkg-price {
  margin-bottom: 22px;
}
.pkg-price .from {
  font-size: 0.78rem;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pkg-price .amount {
  font-family: var(--ff-display);
  font-size: 2.3rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pkg-downloads {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 44px;
}
.pkg-cta-line {
  text-align: center;
  max-width: 600px;
  margin: 56px auto 0;
  color: var(--text-dim);
  font-size: 1.02rem;
}
.pkg-custom {
  text-align: center;
  margin-top: 70px;
  padding: 44px 30px;
  border-radius: var(--radius);
  background: var(--gradient-soft);
  border: 1px solid rgba(168, 85, 247, 0.25);
}
.pkg-custom h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.pkg-custom p {
  color: var(--text-dim);
  margin-bottom: 24px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1160px) {
  .pricing-showcase {
    grid-template-columns: 1fr;
  }
  .pricing-poster {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    min-height: 420px;
  }
}

@media (max-width: 860px) {
  .pricing-sheet {
    padding: 28px 18px 22px;
  }
  .pricing-grid {
    grid-template-columns: minmax(0, 1.55fr) repeat(3, minmax(84px, 1fr));
  }
  .pricing-price {
    font-size: 1.2rem;
  }
  .pricing-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-stat:nth-child(3) {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .pricing-stat:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 640px) {
  .pricing-poster {
    display: none;
  }
  .pricing-slogan {
    margin-top: 42px;
  }
  .pricing-year {
    margin-top: 62px;
  }
  .pricing-grid-head {
    display: none;
  }
  .pricing-row {
    grid-template-columns: 1fr;
  }
  .pricing-row .pricing-cell + .pricing-cell {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .pricing-cell {
    padding: 16px 0;
  }
  .pricing-cell-location {
    padding: 18px 0 16px;
  }
  .pricing-price {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 14px 0;
    font-size: 1.15rem;
  }
  .pricing-price::before {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9ca3c8;
  }
  .pricing-row .pricing-price:nth-child(2)::before {
    content: "7 dana";
  }
  .pricing-row .pricing-price:nth-child(3)::before {
    content: "14 dana";
  }
  .pricing-row .pricing-price:nth-child(4)::before {
    content: "30 dana";
  }
  .pricing-stats {
    grid-template-columns: 1fr;
  }
  .pricing-stat + .pricing-stat {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .pricing-footnote {
    text-align: center;
  }
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  text-align: left;
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}
.faq-q .plus {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  flex-shrink: 0;
  position: relative;
  transition:
    transform 0.4s ease,
    background 0.4s ease,
    border-color 0.4s ease;
}
.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--text-dim);
  top: 50%;
  left: 50%;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}
.faq-q .plus::before {
  width: 10px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}
.faq-q .plus::after {
  width: 1.5px;
  height: 10px;
  transform: translate(-50%, -50%);
}
.faq-item.open .faq-q .plus {
  background: var(--gradient);
  border-color: transparent;
  transform: rotate(180deg);
}
.faq-item.open .faq-q .plus::before,
.faq-item.open .faq-q .plus::after {
  background: #fff;
}
.faq-item.open .faq-q .plus::after {
  transform: translate(-50%, -50%) rotate(90deg) scaleY(0);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.faq-a p {
  color: var(--text-dim);
  padding: 0 4px 26px;
  font-size: 0.94rem;
  line-height: 1.7;
  max-width: 680px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}
.contact-info h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin-bottom: 16px;
  line-height: 1.2;
}
.contact-info > p {
  color: var(--text-dim);
  margin-bottom: 36px;
}
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}
.channel:hover {
  transform: translateX(6px);
  border-color: rgba(91, 125, 255, 0.4);
}
.channel .ic {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.channel .ic svg {
  width: 19px;
  height: 19px;
  stroke: var(--primary-2);
}
.channel .lab {
  font-size: 0.75rem;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.channel .val {
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 38px;
  position: relative;
  overflow: hidden;
}
.contact-form::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: var(--gradient);
  opacity: 0.12;
  filter: blur(60px);
  border-radius: 50%;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 520px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.field label {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-weight: 500;
}
.field label .req {
  color: var(--secondary-2);
}
.field input,
.field textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 0.92rem;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(91, 125, 255, 0.06);
  box-shadow: 0 0 0 4px rgba(91, 125, 255, 0.12);
}
.field textarea {
  resize: vertical;
  min-height: 100px;
}
.form-submit {
  width: 100%;
  margin-top: 6px;
  position: relative;
  z-index: 1;
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status {
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--text-dim);
}
.form-status.is-error {
  color: #ef4444;
}

.success-panel {
  display: none;
  text-align: center;
  padding: 20px 6px;
}
.success-panel.show {
  display: block;
  animation: riseIn 0.6s ease both;
}
.success-panel .emoji {
  font-size: 2.6rem;
  margin-bottom: 14px;
}
.success-panel h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.success-panel p {
  color: var(--text-dim);
  font-size: 0.92rem;
  margin-bottom: 6px;
}
.success-panel .sig {
  margin-top: 20px;
  font-family: var(--ff-display);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.success-panel .sig .tag {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  color: var(--text-mute);
  margin-top: 4px;
}

footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 34px;
  position: relative;
  z-index: 1;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 34px;
}
.footer-tagline {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
}
.footer-tagline .grad {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--text-dim);
  font-size: 0.88rem;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: var(--text);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-mute);
  font-size: 0.8rem;
}
.footer-credit-link {
  color: var(--text-dim);
  transition: color 0.3s ease;
}
.footer-credit-link:hover {
  color: var(--primary-2);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 5, 12, 0.9);
  backdrop-filter: blur(10px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s;
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.modal-box {
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16/9;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  background: #000;
}
.modal-overlay.open .modal-box {
  transform: scale(1);
}
.modal-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-close {
  position: absolute;
  top: -46px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-strong);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}
.modal-close:hover {
  background: var(--gradient);
  transform: rotate(90deg);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal-stagger.in > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.in > *:nth-child(1) {
  transition-delay: 0.05s;
}
.reveal-stagger.in > *:nth-child(2) {
  transition-delay: 0.12s;
}
.reveal-stagger.in > *:nth-child(3) {
  transition-delay: 0.19s;
}
.reveal-stagger.in > *:nth-child(4) {
  transition-delay: 0.26s;
}
.reveal-stagger.in > *:nth-child(5) {
  transition-delay: 0.33s;
}

.section-head {
  max-width: 680px;
  margin-bottom: 56px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.15;
}
.section-head p {
  color: var(--text-dim);
  margin-top: 14px;
  font-size: 1.02rem;
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }
  .nav-cta .btn-ghost {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .contact-grid {
    gap: 40px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
.nav-links a.active {
  color: var(--text);
}
.nav-links a.active::after {
  width: 100%;
}
.mobile-menu a.active {
  color: var(--primary-2);
}

.page-header {
  position: relative;
  padding: 168px 0 64px;
  text-align: center;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  height: 320px;
  background: var(--gradient);
  opacity: 0.16;
  filter: blur(90px);
  border-radius: 50%;
  pointer-events: none;
}
.page-header .eyebrow {
  justify-content: center;
}
.page-header h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.2rem);
  line-height: 1.15;
  position: relative;
  z-index: 1;
}
.page-header p {
  color: var(--text-dim);
  max-width: 600px;
  margin: 16px auto 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .page-header {
    padding: 132px 0 48px;
  }
}
