/* ======= RESET & BASE ======= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0d2645;
  color: #F5EFE0;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.hidden { display: none !important; }

/* ======= TOKENS ======= */
:root {
  --navy: #143358;
  --navy-deep: #0d2645;
  --cream: #F5EFE0;
  --cream-dim: rgba(245,239,224,0.62);
  --cream-faint: rgba(245,239,224,0.07);
  --cream-border: rgba(245,239,224,0.12);
  --coral: #F26B5E;
  --coral-glow: rgba(242,107,94,0.22);
  --teal: #5DA8A3;
}

/* ======= UTILITIES ======= */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  opacity: 0.80;
  margin-bottom: 12px;
}
.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

/* ======= SCROLL ANIMATIONS ======= */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }

/* ======= NAV ======= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,38,69,0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--cream-border);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 1px 20px rgba(0,0,0,0.25); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-logo { width: 36px; height: 36px; border-radius: 10px; }
.nav-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.nav-actions { display: flex; align-items: center; gap: 6px; }
.nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream-dim);
  padding: 8px 10px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  display: none;
}
.nav-link:hover { color: var(--cream); background: var(--cream-faint); }
.nav-sep {
  width: 1px; height: 20px;
  background: var(--cream-border);
  margin: 0 6px;
  display: none;
}
.nav-cta {
  padding: 9px 20px;
  background: var(--coral);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 10px;
  transition: opacity 0.2s;
  box-shadow: 0 4px 16px var(--coral-glow);
}
.nav-cta:hover { opacity: 0.88; }
@media (min-width: 768px) {
  .nav-link { display: inline-flex; }
  .nav-sep { display: block; }
}
@media (max-width: 767px) { .nav-link { display: none; } }

/* ======= HERO V2 ======= */
.hero-v2 {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--navy-deep);
}
.hero-v2 > video {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: blur(8px);
  transform: scale(1.08);
  opacity: 0.38;
}
.hero-v2::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(130deg,
    rgba(13,38,69,0.82) 0%,
    rgba(13,38,69,0.65) 45%,
    rgba(242,107,94,0.22) 100%);
  z-index: 1;
}
.hero-v2 .hv-wrap {
  position: relative; z-index: 2;
  max-width: 1120px; margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.hv-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #ffc8b6;
  background: rgba(242,107,94,0.15);
  border: 1px solid rgba(242,107,94,0.35);
  padding: 8px 14px; border-radius: 999px;
  margin-bottom: 22px;
}
.hv-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #F26B5E;
  box-shadow: 0 0 10px #F26B5E;
  animation: hv-blink 2s infinite;
}
@keyframes hv-blink { 50% { opacity: 0.35; } }
.hv-title {
  font-size: 3rem; font-weight: 800;
  line-height: 1.02; letter-spacing: -0.04em;
  color: var(--cream);
  margin-bottom: 22px;
}
.hv-title .line2 {
  background: linear-gradient(110deg, var(--cream) 0%, var(--coral) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  display: inline-block;
}
.hv-lead {
  font-size: 1.05rem;
  color: var(--cream-dim);
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 28px;
}
.hv-lead b { color: var(--cream); font-weight: 700; }
.hv-cta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 20px; }
.hv-proof {
  display: flex; align-items: center; gap: 14px;
  margin-top: 30px; padding-top: 26px;
  border-top: 1px solid rgba(245,239,224,0.10);
  max-width: 500px;
}
.hv-pstat { display: flex; flex-direction: column; }
.hv-pstat .n {
  font-size: 1.6rem; font-weight: 800; line-height: 1;
  color: var(--cream); letter-spacing: -0.02em;
}
.hv-pstat .n .u { color: var(--coral); font-size: 1.1rem; }
.hv-pstat .l {
  font-size: 10px; color: var(--cream-dim);
  letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 600; margin-top: 4px;
}
.hv-psep { width: 1px; height: 34px; background: rgba(245,239,224,0.12); }

/* Phone + slides */
.hv-phone-wrap {
  display: flex; justify-content: center;
  position: relative;
  perspective: 1400px;
}
.hv-phone-glow {
  position: absolute;
  width: 520px; height: 520px;
  background: radial-gradient(ellipse at center,
    rgba(242,107,94,0.38) 0%,
    rgba(93,168,163,0.18) 40%,
    transparent 70%);
  z-index: 0; pointer-events: none;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(8px);
}
.hv-phone {
  position: relative; z-index: 1;
  width: 320px; height: 660px;
  background: #F5F0EB;
  border-radius: 40px;
  overflow: hidden;
  box-shadow:
    0 0 0 8px #1c1c1e,
    0 0 0 9px rgba(255,255,255,0.08),
    0 48px 96px rgba(0,0,0,0.60),
    0 16px 48px rgba(242,107,94,0.20);
  transform: perspective(1000px) rotateY(-12deg) rotateX(4deg);
  animation: phone-float 5.5s ease-in-out infinite;
}
.hv-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: hv-slide 12s infinite;
}
.hv-slide-1 { animation-delay: 0s; }
.hv-slide-2 { animation-delay: 4s; }
.hv-slide-3 { animation-delay: 8s; }
@keyframes hv-slide {
  0%   { opacity: 0; }
  4%   { opacity: 1; }
  30%  { opacity: 1; }
  34%  { opacity: 0; }
  100% { opacity: 0; }
}
.hv-cap {
  position: absolute; bottom: 18px;
  left: 50%; transform: translateX(-50%);
  background: rgba(13,38,69,0.90);
  backdrop-filter: blur(12px);
  color: var(--cream);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 999px;
  z-index: 10; white-space: nowrap;
  opacity: 0;
  animation: hv-cap 12s infinite;
}
.hv-cap-1 { animation-delay: 0s; }
.hv-cap-2 { animation-delay: 4s; }
.hv-cap-3 { animation-delay: 8s; }
@keyframes phone-float {
  0%, 100% { transform: perspective(1000px) rotateY(-12deg) rotateX(4deg) translateY(0px); }
  50%       { transform: perspective(1000px) rotateY(-12deg) rotateX(4deg) translateY(-14px); }
}
@keyframes hv-cap {
  0%   { opacity: 0; transform: translateX(-50%) translateY(8px); }
  4%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  30%  { opacity: 1; transform: translateX(-50%) translateY(0); }
  34%  { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  100% { opacity: 0; }
}
@media (min-width: 900px) {
  .hero-v2 .hv-wrap { grid-template-columns: 1.25fr 1fr; gap: 60px; }
  .hv-title { font-size: 3.6rem; }
}

/* ======= BUTTONS ======= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  text-decoration: none;
  font-family: inherit;
}
.btn:hover { transform: translateY(-2px); }
.btn-accent {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 6px 20px var(--coral-glow);
}
.btn-accent:hover { opacity: 0.90; box-shadow: 0 10px 28px var(--coral-glow); }
.btn svg { flex-shrink: 0; }
.btn-label-group { text-align: left; }
.btn-label-main { font-size: 0.95rem; font-weight: 700; display: block; }

/* ======= SOCIAL PROOF ======= */
.social-proof {
  padding: 56px 0;
  border-top: 1px solid var(--cream-border);
  border-bottom: 1px solid var(--cream-border);
  background: rgba(245,239,224,0.03);
}
.social-proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  text-align: center;
}
.social-proof-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream-dim);
  max-width: 260px;
}
.proof-stat { text-align: center; }
.proof-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--coral);
  line-height: 1;
  letter-spacing: -0.02em;
}
.proof-stat-label {
  font-size: 0.75rem;
  color: var(--cream-dim);
  margin-top: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.proof-divider { width: 1px; height: 40px; background: var(--cream-border); }

/* ======= HOW IT WORKS ======= */
.how-it-works { padding: 88px 0; }
.how-header { text-align: center; margin-bottom: 52px; }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
}
.step-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: var(--cream-faint);
  border: 1px solid var(--cream-border);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  transition: background 0.2s, border-color 0.2s;
}
.step-card:hover {
  background: rgba(245,239,224,0.10);
  border-color: rgba(245,239,224,0.18);
}
.step-number {
  flex-shrink: 0;
  width: 46px; height: 46px;
  background: var(--coral);
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  box-shadow: 0 6px 18px var(--coral-glow);
}
.step-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
}
.step-content p {
  font-size: 0.88rem;
  color: var(--cream-dim);
  line-height: 1.6;
}

/* ======= FEATURES ======= */
.features { padding: 88px 0; background: rgba(245,239,224,0.02); }
.features-header { text-align: center; margin-bottom: 52px; }
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.feature-card {
  padding: 28px;
  background: var(--cream-faint);
  border: 1px solid var(--cream-border);
  border-radius: 20px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.feature-card:hover {
  background: rgba(245,239,224,0.10);
  border-color: rgba(245,239,224,0.18);
  transform: translateY(-2px);
}
.feature-icon {
  width: 46px; height: 46px;
  background: var(--coral-glow);
  border: 1px solid rgba(242,107,94,0.28);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f4917f;
  margin-bottom: 18px;
}
.feature-icon.teal {
  background: rgba(93,168,163,0.18);
  border-color: rgba(93,168,163,0.28);
  color: #7dc8c3;
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--cream-dim);
  line-height: 1.6;
}

/* ======= AUDIENCE ======= */
.audience { padding: 88px 0; }
.audience-header { text-align: center; margin-bottom: 52px; }
.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.audience-card {
  padding: 36px;
  background: var(--cream-faint);
  border: 1px solid var(--cream-border);
  border-radius: 24px;
  transition: background 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.audience-card:hover {
  background: rgba(245,239,224,0.10);
  transform: translateY(-2px);
}
.audience-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 24px 24px 0 0;
}
.audience-card.tech::before { background: var(--teal); }
.audience-card.enf::before { background: var(--coral); }
.audience-card-icon {
  width: 52px; height: 52px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.audience-card.tech .audience-card-icon {
  background: rgba(93,168,163,0.15);
  border: 1px solid rgba(93,168,163,0.25);
  color: #7dc8c3;
}
.audience-card.enf .audience-card-icon {
  background: var(--coral-glow);
  border: 1px solid rgba(242,107,94,0.28);
  color: #f4917f;
}
.audience-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}
.audience-card > p {
  font-size: 0.9rem;
  color: var(--cream-dim);
  line-height: 1.7;
  margin-bottom: 20px;
}
.audience-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.audience-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--cream-dim);
}
.audience-list li svg { flex-shrink: 0; color: var(--teal); }

/* ======= SECURITY ======= */
.security { padding: 88px 0; }
.security-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px;
  background: rgba(245,239,224,0.05);
  border: 1px solid var(--cream-border);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}
.security-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(93,168,163,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.security-card .section-label { color: var(--teal); opacity: 1; }
.security-card h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: -0.025em;
}
.security-card > p {
  font-size: 0.95rem;
  color: var(--cream-dim);
  margin-bottom: 28px;
  line-height: 1.7;
}
.security-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.security-checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--cream-dim);
}
.check-icon {
  width: 28px; height: 28px;
  background: rgba(93,168,163,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check-icon svg { color: var(--teal); }

/* ======= CTA FINAL ======= */
.cta-final {
  padding: 88px 0;
  text-align: center;
  background: rgba(245,239,224,0.02);
  border-top: 1px solid var(--cream-border);
}
.cta-final h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--cream);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.cta-final > .container > p {
  font-size: 1rem;
  color: var(--cream-dim);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ======= FOOTER ======= */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--cream-border);
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}
.footer-logo { width: 28px; height: 28px; border-radius: 8px; }
.footer-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--cream);
}
.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.footer-links a {
  font-size: 0.82rem;
  color: var(--cream-dim);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--coral); }
.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream-dim);
  margin-bottom: 14px;
  padding: 7px 16px;
  border: 1px solid var(--cream-border);
  border-radius: 999px;
  transition: color 0.2s, border-color 0.2s;
}
.footer-instagram:hover {
  color: var(--coral);
  border-color: rgba(242,107,94,0.40);
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(245,239,224,0.35);
}

/* ======= RESPONSIVE ======= */
@media (min-width: 640px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .step-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
@media (min-width: 900px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .section-title { font-size: 2.4rem; }
  .cta-final h2 { font-size: 2.6rem; }
}
@media (max-width: 639px) {
  .proof-divider { display: none; }
  .social-proof-inner { gap: 24px; }
  .security-card { padding: 32px 24px; }
}
