:root {
  --qualco-blue: #005fa3;
  --qualco-teal: #b7e0d3;
  --qualco-dark: #005b96;
  --qualco-surface: #0f2140;
  --qualco-border: rgba(255, 255, 255, 0.08);
  --qualco-muted: rgba(255, 255, 255, 0.55);
}

@font-face {
  font-family: 'Fontfabric';
  src: url('font/Fontfabric_reg.otf') format('opentype');
  font-weight: 400;
  font-display: swap;
}

body {
  font-family: 'Fontfabric', sans-serif;
  background-color: var(--qualco-dark);
  color: #e8edf4;
  min-height: 100vh;
}

.bg-mesh {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(0, 95, 163, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 90% 100%, rgba(0, 194, 168, 0.2) 0%, transparent 70%),
    var(--qualco-dark);
  z-index: 0;
  pointer-events: none;
}

.page-wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  border-bottom: 1px solid var(--qualco-border);
  /*background: rgba(10, 22, 40, 0.7);*/
  background: #24314d;
  backdrop-filter: blur(12px);
}

.badge-ir {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(0, 194, 168, 0.12);
  color: var(--qualco-teal);
  border: 1px solid rgba(0, 194, 168, 0.35);
  border-radius: 50px;
  padding: 0.25rem 0.8rem;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--qualco-teal);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.15;
  color: #ffffff;
}

.hero-meta {
  font-size: 0.95rem;
  color: var(--qualco-muted);
}

.teal-divider {
  width: 48px;
  height: 3px;
  background: var(--qualco-teal);
  border-radius: 2px;
}

.info-card {
  background: var(--qualco-surface);
  border: 1px solid var(--qualco-border);
  border-radius: 16px;
  padding: 1.75rem;
  height: 100%;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.info-card:hover {
  border-color: rgba(0, 194, 168, 0.4);
  box-shadow: 0 0 28px rgba(0, 194, 168, 0.07);
}

.card-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--qualco-teal);
  margin-bottom: 1.2rem;
}

.speaker-row {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--qualco-border);
}

.speaker-row:last-child {
  border-bottom: none;
}

.speaker-name {
  font-weight: 600;
  color: #fff;
  font-size: 0.95rem;
}

.speaker-role {
  font-size: 0.82rem;
  color: var(--qualco-muted);
  margin-top: 0.1rem;
}

.btn-webcast {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #00c2a8, #009e8a);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.75rem;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(0, 194, 168, 0.28);
}

.btn-webcast:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  color: #fff;
}

.site-footer {
  border-top: 1px solid var(--qualco-border);
  font-size: 0.78rem;
  color: var(--qualco-muted);
}

.fade-up {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.55s ease forwards;
}

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

.delay-2 {
  animation-delay: 0.2s;
}

.delay-4 {
  animation-delay: 0.44s;
}