@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,300;1,9..144,400&family=Hanken+Grotesk:wght@300;400;500;600;700&display=swap');

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Hanken Grotesk', 'Helvetica Neue', Arial, sans-serif;
  color: #092E39;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

/* ─── Nav ─── */
#site-nav {
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
}

#site-nav.scrolled {
  background: rgba(255,255,255,0.97) !important;
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 16px rgba(9,46,57,0.07);
  border-color: #e2eaed !important;
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

/* ─── Hero ─── */
.hero-section {
  padding-top: 104px;
  padding-bottom: 50px;
  min-height: auto;
}

@media (min-width: 768px) {
  .hero-section { padding-top: 112px; }
}

.hero-overlay {
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.96) 0%,
    rgba(255,255,255,0.82) 50%,
    rgba(255,255,255,0.18) 100%
  );
}

.hero-badge {
  background: rgba(72,155,178,0.12);
  color: #489BB2;
}

/* ─── Product index links ─── */
.product-index-link {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(9,46,57,0.55);
  transition: color 0.2s ease;
  font-family: inherit;
}

.product-index-link:hover { color: #489BB2; }

.dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(72,155,178,0.4);
  transition: background 0.2s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.product-index-link:hover .dot { background: #489BB2; }

/* ─── Product image wrapper ─── */
.product-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  background: #f3f6f7;
}

@media (min-width: 768px) {
  .product-img-wrap { aspect-ratio: 1/1; }
}

@media (min-width: 1024px) {
  .product-img-wrap { aspect-ratio: 4/3; }
}

.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ─── Benefit dots ─── */
.benefit-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #489BB2;
  flex-shrink: 0;
  margin-top: 8px;
}

/* ─── CTA buttons ─── */
.cta-btn {
  font-family: inherit;
  cursor: pointer;
  border: none;
  display: inline-flex;
}

.view-pricing-btn {
  background: #092E39;
  font-family: inherit;
}

.view-pricing-btn:hover {
  background: rgba(9,46,57,0.88);
}

/* ─── Scroll-reveal animations ─── */
.fade-in-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.reveal-right {
  transform: translateX(32px);
}

.reveal.reveal-left {
  transform: translateX(-32px);
}

.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.reveal.visible + .reveal,
.reveal.visible ~ .reveal {
  transition-delay: 0.15s;
}

/* ─── Container ─── */
.container { max-width: 1280px; width: 100%; margin: 0 auto; }

/* ─── Muted bg ─── */
.bg-muted { background: #f3f6f7; }

/* ─── Utility ─── */
button { cursor: pointer; }
