/* ══════════════════════════════════════════════
   NOVAHFALCONS — LANDING HUB  (LIGHT VERSION)
   White brightness canvas · Brand teal energy
   ══════════════════════════════════════════════ */

/* ── BASE ── */
.landing-body {
  background: #e8f4f7;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

/* ══════════════════════════════════════
   FULL-BLEED BACKGROUND
   ══════════════════════════════════════ */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    175deg,
    rgba(255, 255, 255, 0.78)  0%,
    rgba(255, 255, 255, 0.58) 28%,
    rgba(230, 248, 252, 0.42) 52%,
    rgba(255, 255, 255, 0.52) 72%,
    rgba(240, 250, 252, 0.60) 100%
  );
}
.bg-teal-wash {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 8% 12%,  rgba(0,90,110,0.10)  0%, transparent 70%),
    radial-gradient(ellipse 60% 55% at 72% 48%,  rgba(46,142,173,0.13) 0%, transparent 68%),
    radial-gradient(ellipse 40% 35% at 88% 88%,  rgba(0,124,147,0.10)  0%, transparent 70%),
    radial-gradient(ellipse 65% 50% at 38% 38%,  rgba(255,255,255,0.30) 0%, transparent 75%);
}

/* ── ANIMATED ORBS ── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  will-change: transform;
}
.orb-1 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(0,124,147,0.22) 0%, transparent 70%);
  top: -10%; left: -8%;
  animation: orbFloat1 20s ease-in-out infinite;
}
.orb-2 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(46,142,173,0.18) 0%, transparent 70%);
  top: 55%; right: -5%;
  animation: orbFloat2 25s ease-in-out infinite;
}
.orb-3 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(0,90,110,0.16) 0%, transparent 70%);
  bottom: 5%; left: 20%;
  animation: orbFloat3 18s ease-in-out infinite 3s;
}
.orb-4 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(67,196,224,0.14) 0%, transparent 70%);
  top: 30%; left: 55%;
  animation: orbFloat4 26s ease-in-out infinite;
}
@keyframes orbFloat1 {
  0%,100% { transform: translate(0,0) scale(1);       }
  33%      { transform: translate(60px,80px) scale(1.1);  }
  66%      { transform: translate(-40px,50px) scale(0.93); }
}
@keyframes orbFloat2 {
  0%,100% { transform: translate(0,0) scale(1);        }
  40%      { transform: translate(-70px,-60px) scale(1.15); }
  70%      { transform: translate(40px,-30px) scale(0.9);   }
}
@keyframes orbFloat3 {
  0%,100% { transform: translate(0,0) scale(1);       }
  50%      { transform: translate(80px,-70px) scale(1.2); }
}
@keyframes orbFloat4 {
  0%,100% { transform: translate(0,0) scale(1);        }
  30%      { transform: translate(-50px,60px) scale(1.1);  }
  65%      { transform: translate(60px,-40px) scale(0.88); }
}

/* Particle canvas */
.particle-canvas {
  position: fixed;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

/* ══════════════════════════════════════
   TOP BAR
   ══════════════════════════════════════ */
.landing-topbar {
  position: relative; z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 52px 24px;
}
.landing-logo {
  height: 50px; width: auto;
  object-fit: contain; display: block;
  mix-blend-mode: multiply;
}
.landing-topbar-right { display: flex; align-items: center; gap: 16px; }

.live-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.05em;
  color: #3d4f5c;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(0,90,110,0.14);
  backdrop-filter: blur(10px);
  padding: 5px 14px; border-radius: 100px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e;
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0   rgba(34,197,94,.5); }
  70%  { box-shadow: 0 0 0 7px rgba(34,197,94, 0); }
  100% { box-shadow: 0 0 0 0   rgba(34,197,94, 0); }
}

/* ══════════════════════════════════════
   MAIN
   ══════════════════════════════════════ */
.landing-main {
  position: relative; z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 40px 32px;
  gap: 32px;
}

/* ══════════════════════════════════════
   HERO TEXT
   ══════════════════════════════════════ */
.landing-hero {
  text-align: center;
  max-width: 760px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-eyebrow {
  display: flex; align-items: center; justify-content: center;
  gap: 14px;
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #2E8EAD;
  margin-bottom: 1.2rem;
}
.eyebrow-line {
  display: block; flex: 1; max-width: 56px; height: 1.5px;
  background: linear-gradient(90deg, transparent, #2E8EAD);
  border-radius: 2px;
}
.eyebrow-line:last-child {
  background: linear-gradient(90deg, #2E8EAD, transparent);
}

.landing-headline {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 900; line-height: 1.1; letter-spacing: -0.03em;
  color: #04111a;
  margin-bottom: 1.2rem;
  text-shadow: none;
}
.headline-gradient {
  background: linear-gradient(135deg, #005a6e 0%, #2E8EAD 60%, #43c4e0 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 12px rgba(46,142,173,0.25));
}

.landing-subline {
  font-size: 1.02rem; color: #3d4f5c;
  line-height: 1.8; margin-bottom: 1.6rem; font-weight: 400;
}
.br-hide { display: block; }

.hero-chips {
  display: flex; gap: 8px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 1.8rem;
}
.hero-chip {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.03em;
  color: #005a6e;
  background: rgba(0,90,110,0.07);
  border: 1px solid rgba(0,90,110,0.18);
  backdrop-filter: blur(8px);
  padding: 5px 14px; border-radius: 100px;
  transition: all 0.2s;
}
.hero-chip:hover { background: rgba(0,90,110,0.13); border-color: rgba(0,90,110,0.30); }

.landing-question {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: white;
  background: linear-gradient(135deg, #005a6e 0%, #007c93 50%, #2E8EAD 100%);
  border: none;
  padding: 11px 28px; border-radius: 100px;
  box-shadow: 0 4px 20px rgba(0,90,110,0.30), 0 8px 32px rgba(46,142,173,0.20),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

/* ══════════════════════════════════════
   HUB GRID  —  5 LIGHT GLASS CARDS
   ══════════════════════════════════════ */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px; width: 100%; max-width: 1200px;
}

.hub-card {
  position: relative;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 18px;
  padding: 22px 18px 18px;
  text-decoration: none;
  display: flex; flex-direction: column; gap: 5px;
  min-height: 220px; overflow: hidden;
  transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.95), 0 6px 24px rgba(0,0,0,0.12), 0 1px 4px rgba(0,0,0,0.06);
}
.hub-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2.5px;
  background: linear-gradient(90deg, var(--cc), rgba(var(--ccr),0.4));
  border-radius: 18px 18px 0 0;
  opacity: 0.7; transition: opacity 0.25s;
}
.hub-card:hover {
  background: rgba(255,255,255,0.92);
  border-color: rgba(var(--ccr), 0.45);
  transform: translateY(-8px) scale(1.02);
  box-shadow: inset 0 1px 0 rgba(255,255,255,1), 0 20px 48px rgba(0,0,0,0.18), 0 0 0 1px rgba(var(--ccr),0.25);
}
.hub-card:hover::before { opacity: 1; }
.hub-card:hover .hub-icon-wrap { background: var(--cc); color: white; box-shadow: 0 4px 16px rgba(var(--ccr),0.4); }
.hub-card:hover .hc-cta { color: var(--cc); }
.hub-card > * { position: relative; z-index: 1; }

.hc-icon-row { display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.hub-icon-wrap {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(var(--ccr), 0.12); border: 1px solid rgba(var(--ccr), 0.22);
  display: flex; align-items: center; justify-content: center;
  color: var(--cc); transition: all 0.25s;
}
.hub-icon { width: 20px; height: 20px; }
.hc-layer { display: none; }

.hc-title {
  font-size: 0.98rem; font-weight: 800; line-height: 1.2;
  letter-spacing: -0.015em; color: #0d1117;
  margin-bottom: 6px; text-align: center;
}
.hc-desc { font-size: 0.74rem; color: #3d4f5c; line-height: 1.6; flex: 1; text-align: center; }
.hc-foot {
  margin-top: 10px; padding-top: 9px;
  border-top: 1px solid rgba(0,90,110,0.1);
  display: flex; flex-direction: column; gap: 3px; align-items: center;
}
.hc-cta { font-size: 0.72rem; font-weight: 700; color: #6b8291; transition: color 0.2s; }
.hc-cta-2 { font-size: 0.68rem; font-weight: 600; color: #6b8291; opacity: 0.6; transition: all 0.2s; }
.hub-card:hover .hc-cta-2 { opacity: 1; color: var(--cc); }

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.landing-footer {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 10px;
  padding: 14px 52px 20px;
  font-size: 0.72rem; color: rgba(255,255,255,0.75);
  background: linear-gradient(90deg,
    #002a35 0%, #004d5e 20%, #005a6e 40%,
    #007c93 60%, #2E8EAD 80%, #43c4e0 100%);
}
.landing-footer a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s; }
.landing-footer a:hover { color: #ffffff; }
.lf-dot { color: rgba(255,255,255,0.30); }

/* ══════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════ */
.fade-in {
  opacity: 0; transform: translateY(16px);
  animation: landingFade 0.8s cubic-bezier(0.4,0,0.2,1) forwards;
}
.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.28s; }
.delay-3 { animation-delay: 0.46s; }
@keyframes landingFade { to { opacity: 1; transform: none; } }

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1100px) { .hub-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 860px) {
  .hub-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .landing-topbar { padding: 18px 24px; }
  .landing-main { padding: 0 20px 24px; gap: 24px; }
  .landing-footer { padding: 12px 24px 16px; }
}
@media (max-width: 560px) {
  .hub-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .hub-card { min-height: 190px; padding: 16px 14px 14px; }
  .landing-headline { font-size: 2.2rem; }
  .landing-topbar { padding: 14px 16px; }
  .landing-main { padding: 0 14px 18px; gap: 18px; }
  .br-hide { display: none; }
}
