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

:root {
  --ink: #0c1220;
  --slate: #0f172a;
  --accent: #00d4b0;
  --soft: #dff6ff;
}

body {
  min-height: 100vh;
  font-family: "Manrope", system-ui, sans-serif;
  color: #fff;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 212, 176, 0.12), transparent 26%),
    radial-gradient(circle at 82% 14%, rgba(64, 198, 255, 0.14), transparent 28%),
    linear-gradient(135deg, #1a2741 0%, #1f2f4d 52%, #15253d 100%);
  -webkit-font-smoothing: antialiased;
}

.glass {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 20%, rgba(0, 212, 176, 0.25), transparent 40%);
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
}

.glass > * {
  position: relative;
  z-index: 1;
}

.section-head {
  position: relative;
  padding-bottom: 0.45rem;
}

.section-head::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, #00d4b0, #4dd0ff);
  border-radius: 999px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  letter-spacing: 0.01em;
}

@media print {
  body {
    background: #fff;
    color: #111;
    font-size: 12px;
  }
  .glass,
  .glass::before {
    all: unset;
    display: block;
    color: inherit;
  }
  a,
  a:visited {
    color: inherit;
    text-decoration: none;
  }
  .section-head::after {
    background: #333;
  }
  .pill {
    border: 1px solid #333;
    background: transparent;
    color: #111;
  }
}

