/* Inuio — Custom styles */

* { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Brand tokens ─────────────────────────────────────────────── */
:root {
  --teal:       #00A896;
  --teal-dark:  #008a7a;
  --teal-light: #e6f7f5;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Nav link hover */
a[href^="#"]:hover { text-decoration: none; }

/* Consistent transition duration across all interactive elements */
a, button { transition-duration: 200ms; }

/* ── Primary CTA buttons — Koru Teal ─────────────────────────── */
.btn-teal {
  display: inline-block;
  background: var(--teal);
  color: #ffffff !important;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: background 200ms ease, transform 150ms ease, box-shadow 200ms ease;
  text-decoration: none;
}
.btn-teal:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,168,150,0.30);
}

/* ── Teal accent text ─────────────────────────────────────────── */
.text-teal { color: var(--teal); }

/* ── Teal icon fill / stroke ──────────────────────────────────── */
.icon-teal { color: var(--teal); }

/* ── Stat highlight ───────────────────────────────────────────── */
.stat-teal { color: var(--teal) !important; }

/* ── Hero background graphic ──────────────────────────────────── */
.hero-graphic {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  opacity: 0.18;
  pointer-events: none;
  user-select: none;
}
@media (max-width: 900px) {
  .hero-graphic { display: none; }
}

/* ── Hero staggered entrance ──────────────────────────────────── */
.hero-item {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.hero-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Scroll-triggered reveal ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Product card icon wrapper ────────────────────────────────── */
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

/* ── Trust icon wrapper ───────────────────────────────────────── */
.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
