.ced-hero-section {
  /* Local design tokens for this hero only */
  --ced-bg: #04060d;
  --ced-bg2: #080c1a;
  --ced-accent: #3a7bfd;
  --ced-accent2: #00d4ff;
  --ced-text: #f0f4ff;
  --ced-muted: #8898b0;
  --ced-font: "Urbanist", sans-serif;
  --ced-font-display: "Urbanist", sans-serif;
padding-top: 4rem;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  overflow-x: hidden;
  overflow-y: visible;
  background: var(--ced-bg);
  color: var(--ced-text);
  font-family: var(--ced-font);
}

/* Big ghost brand text background */
.ced-hero-ghost-brand {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ced-font-display);
  font-size: clamp(80px, 14vw, 200px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Blue glow left */
.ced-hero-glow-left {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 70vh;
  background: radial-gradient(ellipse at top left, rgba(58, 123, 253, 0.35) 0%, transparent 65%);
  pointer-events: none;
}

/* Canvas sphere */
canvas#ced-hero-sphere {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-10%, -50%);
  pointer-events: none;
  z-index: 1;
}

/* Hero content */
.ced-hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 48px 80px;
  max-width: 680px;
}

@media (max-width: 768px) {
  .ced-hero-content {
    padding-inline: 24px;
  }
}

.ced-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(58, 123, 253, 0.12);
  border: 1px solid rgba(58, 123, 253, 0.3);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ced-accent2);
  margin-bottom: 28px;
}

.ced-hero-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ced-accent2);
  box-shadow: 0 0 8px var(--ced-accent2);
  animation: ced-pulse-dot 2s infinite;
}

@keyframes ced-pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.ced-hero-title {
  font-family: var(--ced-font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: var(--ced-text);
  line-height: 1.22;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  padding-bottom: 0.14em;
  overflow: visible;
  display: inline-block;
}

.ced-hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--ced-accent) 0%, var(--ced-accent2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  padding-right: 0.08em;
}

.ced-hero-sub {
  font-size: 1.05rem;
  color: var(--ced-muted);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 44px;
}

.ced-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ced-btn-primary {
  background: linear-gradient(135deg, var(--ced-accent), var(--ced-accent2));
  color: #ffffff;
  border: none;
  border-radius: 100px;
  padding: 14px 32px;
  font-family: var(--ced-font-display);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  box-shadow: 0 0 32px rgba(58, 123, 253, 0.4);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ced-btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.ced-btn-ghost {
  background: transparent;
  color: var(--ced-muted);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 14px 28px;
  font-family: var(--ced-font);
  font-size: 0.9rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ced-btn-ghost:hover {
  color: var(--ced-text);
  border-color: rgba(255, 255, 255, 0.35);
}

/* Stats row */
.ced-hero-stats {
  position: absolute;
  bottom: 48px;
  right: 48px;
  z-index: 2;
  display: flex;
  gap: 48px;
}

.ced-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ced-hero-stat-num {
  font-family: var(--ced-font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  background: linear-gradient(90deg, var(--ced-text) 60%, var(--ced-muted) 100%);
  -webkit-background-clip: text;
 
  background-clip: text;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.ced-hero-stat-num sup {
  font-size: 0.55em;
  -webkit-text-fill-color: var(--ced-accent2);
  color: var(--ced-accent2);
}

.ced-hero-stat-label {
  font-size: 0.75rem;
  color: var(--ced-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
  max-width: 90px;
}

/* Simple fade-up reveal used inside hero */
.ced-fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: ced-fadeUp 0.8s ease forwards;
}

.ced-fade-up:nth-child(1) {
  animation-delay: 0.1s;
}

.ced-fade-up:nth-child(2) {
  animation-delay: 0.25s;
}

.ced-fade-up:nth-child(3) {
  animation-delay: 0.4s;
}

.ced-fade-up:nth-child(4) {
  animation-delay: 0.55s;
}

@keyframes ced-fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .ced-hero-stats {
    position: static;
    margin: 40px auto 0;
    padding: 0 24px 40px;
    gap: 24px;
  }
}

