/* Enterprise Repositioning CSS */

/* Announcement Bar */
.announcement-bar a:hover {
  text-decoration: none !important;
  opacity: 0.8;
}

/* Hero Section */
.hero-gradient-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.15;
  pointer-events: none;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.orb-1 {
  top: -20%;
  left: -10%;
  width: 50%;
  height: 70%;
  background: radial-gradient(circle, #00e5be 0%, transparent 70%);
  animation: pulse 8s infinite alternate;
}

.orb-2 {
  bottom: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, #00d4ff 0%, transparent 70%);
  animation: pulse 12s infinite alternate-reverse;
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.3;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.1); opacity: 1; }
}

.trust-badges-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 13px;
  color: #94a3b8;
}

.badge-icon {
  height: 14px;
  margin-right: 8px;
  opacity: 0.8;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #00e5be;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 900px;
}

.gradient-text {
  background: linear-gradient(90deg, #00e5be, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 18px;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 760px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.hero-microcopy {
  font-size: 13px;
  color: #64748b;
  max-width: 500px;
  margin-bottom: 64px;
}

/* Architecture Diagram */
.architecture-diagram-container {
  width: 100%;
  max-width: 1000px;
  background: rgba(15,23,42,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.architecture-diagram-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #00e5be, #00d4ff);
}

.arch-layer {
  margin-bottom: 32px;
}

.arch-label {
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-align: left;
}

.arch-nodes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.arch-node {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 14px;
  color: #e2e8f0;
  flex: 1;
  min-width: 120px;
}

.arch-arrow {
  color: #00e5be;
  font-size: 24px;
  margin-bottom: 16px;
}

.governance-layer {
  background: rgba(0,229,190,0.05);
  border: 1px solid rgba(0,229,190,0.2);
  border-radius: 12px;
  padding: 24px;
}

.governance-layer .arch-label {
  color: #00e5be;
}

.arch-node.highlight {
  background: rgba(0,229,190,0.1);
  border: 1px solid rgba(0,229,190,0.3);
  font-weight: 600;
  color: #fff;
  min-width: 200px;
}

.output-nodes .arch-node {
  min-width: 150px;
}

.arch-caption {
  font-size: 13px;
  color: #64748b;
  text-align: left;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
  margin: 0;
}

/* Evidence Teaser */
.evidence-teaser {
  padding: 100px 0;
  background: #060913;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #00e5be;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.capability-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
}

.capability-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(0,229,190,0.3);
  transform: translateY(-4px);
}

.capability-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.capability-card p {
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Enterprise Layout Adjustments */
.btn-large {
  padding: 14px 28px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }
  .arch-node, .arch-node.highlight, .output-nodes .arch-node {
    min-width: 100%;
  }
  .governance-layer {
    padding: 16px;
  }
}


/* Professional text-based marks used instead of emoji icons */
.trust-mark,
.text-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid rgba(0, 229, 190, 0.45);
  background: rgba(0, 229, 190, 0.08);
  color: #00e5be;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
}
.trust-mark {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  margin-right: 8px;
}
.text-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  margin-bottom: 16px;
}
.check-mark {
  display: inline-block;
  width: 7px;
  height: 12px;
  border: solid #00e5be;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-right: 12px;
  flex: 0 0 auto;
}

/* Broader AI governance journey hero */
.journey-paths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 1100px;
  text-align: left;
}
.journey-card {
  min-width: 0;
}
@media (max-width: 900px) {
  .journey-paths { grid-template-columns: 1fr; max-width: 680px; }
}
@media (max-width: 560px) {
  .journey-paths { gap: 16px; }
  .journey-card { padding: 24px !important; }
}
