.ci-hero {
  position: relative;
  background: #0B1F3A;
  background: var(--primary, #0B1F3A);
  padding: 88px 0 0;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
}

.ci-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.ci-hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,194,168,0.14) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.4;
}

.ci-hero__bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,194,168,0.16) 0%, transparent 70%);
  top: -180px;
  right: -100px;
  border-radius: 50%;
  filter: blur(90px);
  animation: ciGlowFloat 8s ease-in-out infinite alternate;
}

.ci-hero__bg-glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,80,200,0.1) 0%, transparent 70%);
  bottom: 60px;
  left: -80px;
  border-radius: 50%;
  filter: blur(80px);
  animation: ciGlowFloat 10s ease-in-out infinite alternate-reverse;
}

@keyframes ciGlowFloat {
  from { opacity: 0.55; transform: scale(1); }
  to   { opacity: 1;    transform: scale(1.18); }
}

.ci-hero__bg-shape {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(0,194,168,0.07);
  top: 50%;
  right: -200px;
  transform: translateY(-50%);
  animation: ciShapeSpin 30s linear infinite;
}

@keyframes ciShapeSpin {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}

/* Floating dot accents */
.ci-hero__dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ci-hero__dot {
  position: absolute;
  width: 5px;
  height: 5px;
  background: #00C2A8;
  border-radius: 50%;
  opacity: 0.35;
  animation: ciDotFloat 6s ease-in-out infinite;
}

.ci-hero__dot:nth-child(1) { top: 15%; left: 8%;  animation-delay: 0s;   animation-duration: 6s; }
.ci-hero__dot:nth-child(2) { top: 35%; left: 3%;  animation-delay: 1.2s; animation-duration: 8s; }
.ci-hero__dot:nth-child(3) { top: 65%; left: 12%; animation-delay: 2.4s; animation-duration: 7s; }
.ci-hero__dot:nth-child(4) { top: 20%; right: 5%; animation-delay: 0.8s; animation-duration: 9s; }
.ci-hero__dot:nth-child(5) { top: 75%; right: 8%; animation-delay: 1.8s; animation-duration: 6s; }

@keyframes ciDotFloat {
  0%, 100% { transform: translateY(0);    opacity: 0.35; }
  50%       { transform: translateY(-12px); opacity: 0.7; }
}

.ci-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-bottom: 72px;
}

/* ============================================================
   LEFT — CONTENT
============================================================ */
.ci-hero__content {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* Eyebrow */
.ci-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 700;
  color: #00C2A8;
  color: var(--secondary, #00C2A8);
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.ci-hero__eyebrow-line {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #00C2A8;
  background: var(--secondary, #00C2A8);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Title */
.ci-hero__title {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0;
}

.ci-hero__title em {
  font-style: normal;
  color: #00C2A8;
  color: var(--secondary, #00C2A8);
  position: relative;
  display: inline-block;
}

.ci-hero__title em::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00C2A8, transparent);
  border-radius: 2px;
}

/* Description */
.ci-hero__desc {
  font-size: 15.5px;
  color: rgba(255,255,255,0.62);
  line-height: 1.8;
  margin: 0;
  max-width: 500px;
}

/* Source pills */
.ci-hero__sources {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ci-hero__sources-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.ci-hero__sources-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.ci-hero__source-pill {
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 5px 13px;
  border-radius: 20px;
  letter-spacing: 0.03em;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  cursor: default;
}

.ci-hero__source-pill:hover {
  background: rgba(0,194,168,0.14);
  border-color: rgba(0,194,168,0.35);
  color: #00C2A8;
}

/* CTA group */
.ci-hero__cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ci-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.ci-hero__btn--primary {
  background: #00C2A8;
  background: var(--secondary, #00C2A8);
  color: #ffffff;
  box-shadow: 0 8px 28px rgba(0,194,168,0.35);
}

.ci-hero__btn--primary:hover {
  background: #00a891;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0,194,168,0.45);
}

.ci-hero__btn--primary svg {
  transition: transform 0.2s;
}

.ci-hero__btn--primary:hover svg {
  transform: translateX(4px);
}

.ci-hero__btn--outline {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.18);
}

.ci-hero__btn--outline:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.32);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Trust strip */
.ci-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.ci-hero__trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  padding: 6px 13px;
  border-radius: 20px;
  letter-spacing: 0.02em;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  cursor: default;
}

.ci-hero__trust-badge svg {
  color: #00C2A8;
  flex-shrink: 0;
}

.ci-hero__trust-badge:hover {
  background: rgba(0,194,168,0.08);
  border-color: rgba(0,194,168,0.2);
  color: rgba(255,255,255,0.8);
}
.ci-hero__visual {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.ci-hero__video-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
}

/* Corner accent lines */
.ci-hero__corner {
  position: absolute;
  width: 36px;
  height: 36px;
  pointer-events: none;
  z-index: 2;
}

.ci-hero__corner--tl {
  top: -8px;
  left: -8px;
  border-top: 3px solid #00C2A8;
  border-left: 3px solid #00C2A8;
  border-radius: 4px 0 0 0;
}

.ci-hero__corner--br {
  bottom: -8px;
  right: -8px;
  border-bottom: 3px solid #00C2A8;
  border-right: 3px solid #00C2A8;
  border-radius: 0 0 4px 0;
}

/* 16:9 responsive iframe */
.ci-hero__iframe-box {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0,0,0,0.4),
    0 0 0 1px rgba(0,194,168,0.15);
}

.ci-hero__iframe-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
}

/* Floating pills */
.ci-hero__pill {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(11,31,58,0.88);
  border: 1px solid rgba(0,194,168,0.28);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
  white-space: nowrap;
}

.ci-hero__pill--top {
  top: -16px;
  left: 20px;
}

.ci-hero__pill--bottom {
  bottom: 80px;
  right: -12px;
  color: rgba(255,255,255,0.8);
}

.ci-hero__pill--bottom svg {
  color: #00C2A8;
  flex-shrink: 0;
}

.ci-hero__pill-dot {
  width: 7px;
  height: 7px;
  background: #00C2A8;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(0,194,168,0.9);
  animation: ciPillPulse 2s ease-in-out infinite;
}

@keyframes ciPillPulse {
  0%, 100% { box-shadow: 0 0 4px rgba(0,194,168,0.8); }
  50%       { box-shadow: 0 0 14px rgba(0,194,168,1), 0 0 28px rgba(0,194,168,0.3); }
}

/* Floating profile card */
.ci-hero__profile-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #0B1F3A;
  background: var(--primary, #0B1F3A);
  border: 1px solid rgba(0,194,168,0.22);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.28);
  min-width: 190px;
  backdrop-filter: blur(8px);
  transition: transform 0.3s;
}

.ci-hero__profile-card:hover {
  transform: translateY(-3px);
}

.ci-hero__profile-avatar {
  width: 38px;
  height: 38px;
  background: rgba(0,194,168,0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00C2A8;
  flex-shrink: 0;
  border: 1px solid rgba(0,194,168,0.25);
}

.ci-hero__profile-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.ci-hero__profile-info strong {
  font-size: 12.5px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.ci-hero__profile-info span {
  font-size: 11px;
  color: rgba(255,255,255,0.48);
  font-weight: 500;
}

.ci-hero__profile-badge {
  width: 24px;
  height: 24px;
  background: rgba(0,194,168,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00C2A8;
  flex-shrink: 0;
  border: 1px solid rgba(0,194,168,0.3);
}

.ci-hero__scroll {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 0 32px;
  margin-top: auto;
}

.ci-hero__scroll span {
  font-size: 10.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.ci-hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(0,194,168,0.6), transparent);
  animation: ciScrollLine 2s ease-in-out infinite;
}

@keyframes ciScrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

@media (max-width: 1280px) {
  .ci-hero__inner { gap: 48px; }
  .ci-hero__title { font-size: clamp(30px, 3.5vw, 48px); }
}
@media (max-width: 1024px) {
  .ci-hero {
    padding: 72px 0 0;
    min-height: auto;
  }

  .ci-hero__inner {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-bottom: 48px;
  }

  /* Content first on tablet */
  .ci-hero__content { order: 1; }
  .ci-hero__visual  { order: 2; justify-content: center; }

  .ci-hero__video-wrap { max-width: 100%; }
  .ci-hero__pill--bottom { right: 0; bottom: 60px; }
  .ci-hero__profile-card { left: 0; bottom: -16px; }
  .ci-hero__scroll { display: none; }
}
@media (max-width: 640px) {
  .ci-hero { padding: 56px 0 0; }

  .ci-hero__inner {
    gap: 36px;
    padding-bottom: 36px;
  }

  .ci-hero__title { font-size: clamp(26px, 7vw, 36px); }
  .ci-hero__desc  { font-size: 14.5px; }

  .ci-hero__cta-group { flex-direction: column; }
  .ci-hero__btn { justify-content: center; width: 100%; }

  .ci-hero__sources { flex-direction: column; align-items: flex-start; }

  .ci-hero__pill--top    { left: 10px; top: -12px; font-size: 11px; }
  .ci-hero__pill--bottom { display: none; }

  .ci-hero__profile-card {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 12px;
    min-width: auto;
    width: 100%;
  }

  .ci-hero__corner { width: 24px; height: 24px; }
  .ci-hero__bg-shape { display: none; }
  .ci-hero__trust { gap: 8px; }
}
@media (max-width: 380px) {
  .ci-hero__eyebrow { font-size: 10.5px; }
  .ci-hero__btn { padding: 11px 18px; font-size: 13px; }
  .ci-hero__trust-badge { font-size: 11px; padding: 5px 10px; }
}