/* ── TEM Tahiti – Custom CSS ─────────────────────────────── */
:root {
  --brand-primary:   #011476;
  --brand-secondary: #4352E0;
  --brand-accent:    #6CE5E8;
  --brand-light:     #E8F6FF;
  --brand-cyan:      #41B8D5;
  --brand-bg:        #F8FAFC;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  color: #0F172A;
  background: var(--brand-bg);
  -webkit-font-smoothing: antialiased;
}

/* ── Utilities ────────────────────────────────────────────── */
.glass {
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.3);
}

.shadow-premium { box-shadow: 0 20px 50px -12px rgba(1,20,118,.12); }

.hero-gradient {
  background: radial-gradient(circle at 70% 30%, #E8F6FF 0%, #F8FAFC 100%);
}

.bento-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #E2E8F0;
  padding: 1.25rem;
  transition: all .3s;
}

.gradient-text {
  background: linear-gradient(to right, #4352E0, #41B8D5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Marquee ────────────────────────────────────────────────── */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-track { animation: marquee 25s linear infinite; }

/* ── Navbar scroll ──────────────────────────────────────────── */
.nav-scrolled {
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.3);
}

/* ── Feature tabs ───────────────────────────────────────────── */
.feature-panel { display: none; }
.feature-panel.active { display: grid; }

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