/* ── Google Font ── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
  --brand-bg:       #0b1e2d;
  --brand-orange-1: #f5a10a;
  --brand-orange-2: #e07200;
  --brand-orange-3: #f7c04a;
  --brand-grey:     #3a4f5c;
  --brand-grey-mid: #2a3d4a;
  --text-light:     #e8f0f5;
  --text-muted:     #7a9db5;
  --accent-green:   #2d9e6b;
}

/* ══════════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════════ */
@keyframes blobDrift1 {
  0%   { transform: translate(0px,   0px);  }
  33%  { transform: translate(12px, -16px); }
  66%  { transform: translate(-8px,  10px); }
  100% { transform: translate(0px,   0px);  }
}
@keyframes blobDrift2 {
  0%   { transform: translate(0px,  0px);   }
  33%  { transform: translate(-14px, 12px); }
  66%  { transform: translate( 10px, -8px); }
  100% { transform: translate(0px,  0px);   }
}
@keyframes floatCard {
  0%   { transform: translateY(0px)   rotate(0deg); }
  50%  { transform: translateY(-18px) rotate(0deg);  }
  100% { transform: translateY(0px)   rotate(0deg); }
}
@keyframes livePulse {
  0%,100% { opacity: 1;   }
  50%     { opacity: 0.3; }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0);    }
}
@keyframes fadeSlideLeft {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0);    }
}

/* ══════════════════════════════════════════
   HERO WRAPPER
══════════════════════════════════════════ */
.hero-section {
  position:    relative;
  overflow:    hidden;
  min-height:  100vh;
  background:  var(--brand-bg);
  font-family: 'Poppins', sans-serif;
  display:     flex;
  align-items: center;
}

/* ══════════════════════════════════════════
   BLOBS
══════════════════════════════════════════ */
.blob {
  position:       absolute;
  pointer-events: none;
  z-index:        0;
  border-radius:  50%;
  filter:         blur(2px);
}

/* Top-left — orange, from the good version */
.blob-tl {
  width:      600px;
  height:     600px;
  top:        -220px;
  left:       -200px;
  opacity:    0.90;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(245, 161, 10, 0.82)  0%,
    rgba(224, 114,  0, 0.60) 45%,
    rgba(224, 114,  0, 0.00) 75%
  );
  animation:   blobDrift1 16s ease-in-out infinite;
  will-change: transform;
}

/* Bottom-right — grey (replaces the orange one) */
.blob-br {
  width:      420px;
  height:     420px;
  bottom:     -150px;
  right:      -140px;
  opacity:    0.72;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(58,  79, 92, 0.85)  0%,
    rgba(42,  61, 74, 0.60) 48%,
    rgba(28,  46, 58, 0.00) 75%
  );
  animation:   blobDrift2 20s ease-in-out infinite 2.5s;
  will-change: transform;
}

/* ══════════════════════════════════════════
   INNER CONTENT
══════════════════════════════════════════ */
.hero-inner {
  position: relative;
  z-index:  1;
  width:    100%;
  padding:  80px 5vw;
}

/* ══════════════════════════════════════════
   LEFT COLUMN — TEXT
══════════════════════════════════════════ */
.hero-text { animation: fadeSlideUp 0.75s ease both; }

.hero-text h1 {
  font-size:     clamp(2rem, 4.5vw, 3.2rem);
  font-weight:   700;
  line-height:   1.18;
  color:         var(--text-light);
  margin-bottom: 1.1rem;
}
.hero-text h1 .accent {
  background:              linear-gradient(90deg, var(--brand-orange-1), var(--brand-orange-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip:         text;
}
.hero-text .sub {
  font-size:     1rem;
  color:         var(--text-muted);
  max-width:     480px;
  line-height:   1.7;
  margin-bottom: 1.8rem;
}
.hero-cta-row {
  display:   flex;
  gap:       12px;
  flex-wrap: wrap;
}
.btn-primary-hero {
  background:      linear-gradient(135deg, var(--brand-orange-1), var(--brand-orange-2));
  color:           #fff !important;
  border:          none;
  padding:         12px 28px;
  border-radius:   50px;
  font-size:       0.9rem;
  font-weight:     600;
  cursor:          pointer;
  transition:      filter 0.2s, transform 0.15s;
  text-decoration: none;
  display:         inline-flex;
  align-items:     center;
  gap:             8px;
  box-shadow:      0 4px 20px rgba(229, 115, 0, 0.30);
}
.btn-primary-hero:hover {
  filter:    brightness(1.08);
  transform: translateY(-2px);
  color:     #fff !important;
}
.btn-outline-hero {
  background:      transparent;
  color:           var(--brand-orange-1) !important;
  border:          2px solid rgba(245, 161, 10, 0.70);
  padding:         11px 26px;
  border-radius:   50px;
  font-size:       0.9rem;
  font-weight:     600;
  cursor:          pointer;
  transition:      background 0.2s, transform 0.15s;
  text-decoration: none;
  display:         inline-flex;
  align-items:     center;
}
.btn-outline-hero:hover {
  background: rgba(245, 161, 10, 0.08);
  transform:  translateY(-2px);
}

/* ══════════════════════════════════════════
   RIGHT COLUMN — FLOATING CARD
══════════════════════════════════════════ */
.hero-card-col {
  display:         flex;
  justify-content: center;
  align-items:     center;
  animation:       fadeSlideLeft 0.85s ease 0.2s both;
}
.hero-card-wrapper {
  animation:   floatCard 4.5s ease-in-out infinite;
  transform:   rotate(-1.5deg);
  will-change: transform;
}
.card-float-wrap {
  position: relative;
  display:  inline-block;
}
.hero-card {
  background:      rgba(13, 30, 46, 0.92);
  border-radius:   20px;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.45),
    0  2px  8px rgba(245, 161, 10, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding:         28px 26px;
  width:           300px;
  border:          1px solid rgba(245, 161, 10, 0.14);
  backdrop-filter: blur(16px);
}
.card-verified-badge {
  display:        inline-flex;
  align-items:    center;
  gap:            6px;
  background:     rgba(245, 161, 10, 0.10);
  color:          var(--brand-orange-1);
  font-size:      0.7rem;
  font-weight:    700;
  letter-spacing: 0.04em;
  padding:        4px 10px;
  border-radius:  20px;
  margin-bottom:  14px;
  text-transform: uppercase;
}
.live-dot {
  width:         7px;
  height:        7px;
  border-radius: 50%;
  background:    var(--brand-orange-1);
  display:       inline-block;
  animation:     livePulse 1.8s ease-in-out infinite;
}
.card-id-block {
  width:           100%;
  height:          90px;
  background:      linear-gradient(135deg, var(--brand-orange-1) 0%, var(--brand-orange-2) 100%);
  border-radius:   12px;
  display:         flex;
  align-items:     center;
  justify-content: center;
  margin-bottom:   14px;
  box-shadow:      0 4px 14px rgba(229, 115, 0, 0.25);
}
.card-cert-title {
  font-size:     0.88rem;
  font-weight:   700;
  color:         var(--text-light);
  margin-bottom: 2px;
}
.card-cert-meta {
  font-size:     0.72rem;
  color:         #4a6d85;
  margin-bottom: 14px;
}
.cert-row {
  display:       flex;
  align-items:   center;
  gap:           10px;
  padding:       9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.cert-row:last-of-type { border-bottom: none; }
.cert-icon {
  width:           32px;
  height:          32px;
  border-radius:   8px;
  background:      rgba(245, 161, 10, 0.12);
  color:           var(--brand-orange-1);
  display:         flex;
  align-items:     center;
  justify-content: center;
  font-size:       0.8rem;
  flex-shrink:     0;
}
.cert-info { flex: 1; }
.cert-info .name {
  font-size:   0.8rem;
  font-weight: 700;
  color:       var(--text-light);
}
.cert-info .exp {
  font-size: 0.7rem;
  color:     #4a6d85;
}
.cert-check {
  color:     var(--accent-green);
  font-size: 0.82rem;
}
.card-footer-verified {
  display:     flex;
  align-items: center;
  gap:         6px;
  margin-top:  12px;
  font-size:   0.72rem;
  font-weight: 700;
  color:       var(--accent-green);
}
.card-chip {
  position:      absolute;
  background:    rgba(11, 28, 42, 0.96);
  border-radius: 20px;
  padding:       5px 13px;
  font-size:     0.68rem;
  font-weight:   700;
  box-shadow:    0 4px 14px rgba(0, 0, 0, 0.35);
  white-space:   nowrap;
  z-index:       10;
}
.chip-top {
  top:    -14px;
  right:  -8px;
  color:  var(--brand-orange-1);
  border: 1px solid rgba(245, 161, 10, 0.25);
}
.chip-bottom {
  bottom: -14px;
  left:   -8px;
  color:  #c48a00;
  border: 1px solid rgba(255, 180, 0, 0.20);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 991px) {
  .hero-card-col { margin-top: 48px; }
  .blob-tl { width: 380px; height: 380px; top: -140px; left: -130px; }
  .blob-br { width: 280px; height: 280px; bottom: -100px; right: -90px; }
}