@charset "UTF-8";
:root {
  /* Brand */
  --aha-primary: #0097cf;
  --aha-primary-hover: #26a7d6;
  --aha-primary-dark: #00475e;
  --aha-dark-blue: #001d26;
  --aha-cerise: #d63066;
  /* Neutrals */
  --aha-gray-100: #f8f9fa;
  --aha-gray-300: #e0dede;
  --aha-gray-700: #495057;
  /* Gradient */
  --aha-gradient-blue: linear-gradient(to right, #0096c8, #006a92);
  /* Structure */
  --aha-radius: 10px;
  --aha-radius-pill: 3.75rem;
  --aha-shadow: 0 0 12px rgb(0 0 0 / 25%);
  --aha-text-shadow: 0 4px 4px rgb(0 0 0 / 25%);
  /* Typography */
  --aha-font-display: "Uni Neue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --aha-font-base: "Helvetica Neue", Helvetica, Arial, sans-serif;
  /* Semantic */
  --text-body: #222;
  --text-muted: var(--aha-gray-700);
  --surface-page: var(--aha-gray-100);
  --surface-card: #fff;
  --border-subtle: var(--aha-gray-300);
  /* Status */
  --color-success: #1a7f37;
  --color-error: #c01048;
}

@font-face {
  font-family: "Uni Neue";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/UniNeueBold-MbqB7RG.woff2") format("woff2");
}
@font-face {
  font-family: "Uni Neue";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/UniNeueBold-MbqB7RG.woff2") format("woff2");
}
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: var(--aha-font-base);
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1 0 auto;
}

/* aha headings: display face, h1/h2 italic */
h1, h2, h3 {
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-family: var(--aha-font-display);
  font-weight: 700;
}

h1 {
  font-size: 2.2rem;
  font-weight: 800;
  font-style: italic;
}

h2 {
  font-size: 1.6rem;
  font-style: italic;
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--aha-primary-dark);
}

a:hover {
  color: var(--aha-primary);
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

main.container {
  padding-top: 40px;
  padding-bottom: 64px;
}

.text-muted {
  color: var(--text-muted);
}

.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.label-short {
  display: none;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--aha-primary);
  margin-bottom: 12px;
}

.badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: var(--aha-radius-pill);
  background: rgba(0, 151, 207, 0.12);
  color: var(--aha-primary-dark);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.flash {
  padding: 14px 18px;
  border-radius: var(--aha-radius);
  margin-bottom: 20px;
  font-weight: 500;
}

.flash-success {
  background: #e6f4ea;
  color: var(--color-success);
}

.flash-error {
  background: #fde7ec;
  color: var(--color-error);
}

.flash-info {
  background: #e5f4f9;
  color: var(--aha-primary-dark);
}

@media (max-width: 900px) {
  .label-full {
    display: none;
  }
  .label-short {
    display: inline;
  }
  h1 {
    font-size: 1.8rem;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--aha-font-display);
  font-weight: 700;
  font-size: 17px;
  padding: 8px 24px;
  border: 2px solid transparent;
  border-radius: var(--aha-radius-pill);
  text-decoration: none;
  text-align: center;
  line-height: 1.5;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}
.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--aha-primary);
  border-color: var(--aha-primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--aha-primary-hover);
  border-color: var(--aha-primary-hover);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  border-color: var(--aha-primary);
  color: var(--aha-primary);
}
.btn-secondary:hover {
  background: var(--aha-primary);
  border-color: var(--aha-primary);
  color: #fff;
}

.btn-lg {
  font-size: 1.5rem;
  padding: 0.375rem 1.5rem;
  min-width: 240px;
}

.btn-sm {
  font-size: 0.9rem;
  padding: 4px 14px;
}

.card {
  background: var(--surface-card);
  border-radius: var(--aha-radius);
  box-shadow: var(--aha-shadow);
  padding: 28px;
  margin-bottom: 20px;
}

.narrow-card {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Landing variants */
.card--topic {
  margin-bottom: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card--topic h3 {
  margin: 0;
  font-size: 22px;
}
.card--topic p {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 300;
  color: var(--text-muted);
}

.card--price {
  margin-bottom: 0;
  padding: 36px;
  box-shadow: none;
  border: 2px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.card--price p {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 300;
  color: var(--text-muted);
}

.card--highlight {
  border-color: var(--aha-primary);
}

.card__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aha-primary);
}
.card--price .card__eyebrow {
  color: var(--text-muted);
}
.card--highlight .card__eyebrow {
  color: var(--aha-primary);
}

/* Beats the variant p rules above */
.card p.card__price {
  font-family: var(--aha-font-display);
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  color: inherit;
}

@media (max-width: 900px) {
  .card--topic {
    padding: 24px;
    gap: 10px;
  }
  .card--topic h3 {
    font-size: 19px;
  }
  .card--topic p {
    font-size: 15px;
  }
  .card--topic .card__eyebrow,
  .card--price .card__eyebrow {
    font-size: 12px;
  }
  .card--price {
    padding: 28px 24px;
    gap: 12px;
  }
  .card--price p {
    font-size: 15px;
  }
  .card p.card__price {
    font-size: 32px;
  }
}
label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

input[type=text], input[type=email], select, textarea {
  width: 100%;
  padding: 11px 14px;
  font: inherit;
  color: inherit;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--aha-radius);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--aha-primary);
  box-shadow: 0 0 0 3px rgba(0, 151, 207, 0.2);
}

.form-row {
  margin-bottom: 20px;
}

.form-row:last-child {
  margin-bottom: 0;
}

.form-help {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 4px 0 0;
}

.form-error {
  font-size: 0.9rem;
  color: var(--color-error);
  margin: 4px 0;
}

/* Choice groups (checkboxes / radios) */
.choice-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.choice-group.choice-inline {
  flex-direction: row;
  gap: 24px;
}

.choice-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-weight: 400;
  cursor: pointer;
}

.choice-item input {
  width: 18px;
  height: 18px;
  accent-color: var(--aha-primary);
}

.access-code-input {
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
}

.navbar {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 10;
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.navbar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-body);
  font-family: var(--aha-font-display);
  font-weight: 700;
}
.navbar__mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--aha-primary);
  color: #fff;
  font-size: 13px;
}
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
}
.navbar__nav > a:not(.btn) {
  text-decoration: none;
  font-weight: 500;
  color: var(--text-muted);
}
.navbar__nav > a:not(.btn):hover {
  color: var(--aha-primary);
}

@media (max-width: 900px) {
  .navbar__nav {
    gap: 12px;
  }
  .navbar__nav .btn {
    font-size: 14px;
    padding: 6px 16px;
  }
  .navbar__nav--landing > a:not(.btn) {
    display: none;
  }
}
.footer {
  background: var(--aha-dark-blue);
  color: rgba(255, 255, 255, 0.7);
  padding: 32px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-top: auto;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer__brand img {
  height: 28px;
  width: auto;
}
.footer__brand p {
  margin: 0;
  max-width: 56ch;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 300;
}
.footer__links {
  display: flex;
  gap: 24px;
  font-size: 14px;
}
.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.footer__links a:hover {
  color: #fff;
}

@media (max-width: 900px) {
  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 32px 24px;
  }
  .footer__brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer__brand img {
    height: 24px;
  }
  .footer__brand p {
    font-size: 13px;
  }
  .footer__links {
    font-size: 13px;
  }
}
.section {
  padding: 88px 56px;
}
.section--muted {
  background: var(--aha-gray-300);
}
.section__inner {
  max-width: 1168px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.section__head {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.section__head h2, .section__inner > h2 {
  margin: 0;
  font-size: 40px;
}
.section__lead {
  margin: 0;
  max-width: 60ch;
  font-size: 19px;
  line-height: 1.5;
  font-weight: 300;
  color: var(--text-muted);
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cta-row span {
  font-size: 15px;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .section {
    padding: 56px 24px;
  }
  .section__inner {
    gap: 28px;
  }
  .section__head {
    gap: 10px;
  }
  .section__head h2, .section__inner > h2 {
    font-size: 28px;
  }
  .section__lead {
    font-size: 16px;
  }
  .cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .cta-row span {
    font-size: 14px;
  }
}
.hero {
  position: relative;
  background: var(--aha-dark-blue);
  padding: 88px 56px 72px;
  overflow: hidden;
  /* AI-image disclosure (Art. 50 EU AI Act) */
}
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 25%;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.hero__ai-note {
  position: absolute;
  right: 12px;
  bottom: 8px;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.hero__content {
  position: relative;
  display: flex;
  min-height: 460px;
  align-items: center;
  max-width: 1168px;
  margin: 0 auto;
}
.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  max-width: 52%;
}
.hero__eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: var(--aha-text-shadow);
}
.hero h1 {
  margin: 0;
  color: #fff;
  font-size: 62px;
  line-height: 1.02;
  text-transform: uppercase;
  text-shadow: var(--aha-text-shadow);
  text-wrap: pretty;
}
.hero__lead {
  margin: 0;
  max-width: 44.8ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: 21px;
  line-height: 1.5;
  font-weight: 300;
  text-wrap: pretty;
}
.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.hero__facts {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
}

/* Mobile per design 3a */
@media (max-width: 900px) {
  .hero {
    padding: 56px 24px 48px;
  }
  .hero__image {
    object-position: 62% 25%;
  }
  .hero__scrim {
    background: rgba(0, 0, 0, 0.5);
  }
  .hero__content {
    min-height: 0;
  }
  .hero__copy {
    max-width: 100%;
    gap: 20px;
  }
  .hero__eyebrow {
    font-size: 12px;
    letter-spacing: 0.1em;
  }
  .hero h1 {
    font-size: 34px;
    line-height: 1.08;
  }
  .hero__lead {
    font-size: 16px;
  }
  .hero__cta {
    gap: 14px;
  }
  .hero__facts {
    gap: 16px;
    font-size: 14px;
  }
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.steps__item {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 22px;
  border-top: 3px solid var(--aha-primary);
}
.steps__item h3 {
  margin: 0;
  font-size: 22px;
}
.steps__item p {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 300;
  color: var(--text-muted);
  text-align: justify;
}
.steps__number {
  font-family: var(--aha-font-display);
  font-weight: 700;
  font-size: 40px;
  color: var(--aha-primary);
  line-height: 1;
}

@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .steps__item {
    gap: 10px;
    padding-top: 18px;
  }
  .steps__item h3 {
    font-size: 19px;
  }
  .steps__item p {
    font-size: 15px;
  }
  .steps__number {
    font-size: 32px;
  }
}
.topics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .topics {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.outcomes {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  grid-template-areas: "head list" "quote list";
  column-gap: 64px;
  row-gap: 24px;
  align-items: start;
  align-content: start;
  max-width: 1168px;
  margin: 0 auto;
}
.outcomes__head {
  grid-area: head;
}
.outcomes__list {
  grid-area: list;
  display: flex;
  flex-direction: column;
}
.outcomes__item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--border-subtle);
}
.outcomes__item:last-child {
  border-bottom: 1px solid var(--border-subtle);
}
.outcomes__item span {
  font-family: var(--aha-font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--aha-primary);
  min-width: 32px;
}
.outcomes__item p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 300;
}
.outcomes__quote {
  grid-area: quote;
  margin: 0;
  border-left: 3px solid var(--aha-primary);
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.outcomes__quote p {
  margin: 0;
  font-family: var(--aha-font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 22px;
  line-height: 1.35;
}
.outcomes__quote cite {
  font-style: normal;
  font-size: 15px;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .outcomes {
    grid-template-columns: 1fr;
    grid-template-areas: "head" "list" "quote";
    row-gap: 28px;
  }
  .outcomes__item {
    gap: 16px;
    padding: 16px 0;
  }
  .outcomes__item span {
    font-size: 16px;
    min-width: 28px;
  }
  .outcomes__item p {
    font-size: 16px;
  }
  .outcomes__quote {
    padding-left: 20px;
    gap: 8px;
  }
  .outcomes__quote p {
    font-size: 19px;
  }
  .outcomes__quote cite {
    font-size: 14px;
  }
}
.prices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .prices {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
  /* Round +/- indicator, shown on mobile instead of the pill (3a) */
}
.faq__item {
  background: var(--surface-card);
  border-radius: var(--aha-radius);
  box-shadow: var(--aha-shadow);
  padding: 24px 32px;
}
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  cursor: pointer;
  list-style: none;
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__item[open] .faq__more {
  display: none;
}
.faq__item p {
  margin: 20px 0 0;
  max-width: 80ch;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 300;
}
.faq__question {
  font-family: var(--aha-font-display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.2;
}
.faq__more {
  flex: none;
  background: var(--aha-primary);
  color: #fff;
  border-radius: var(--aha-radius-pill);
  padding: 8px 28px;
  font-size: 20px;
  line-height: 1.4;
  white-space: nowrap;
  transition: background-color 0.4s ease;
}
.faq__toggle {
  display: none;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--aha-primary);
  color: #fff;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
}
.faq__toggle::before {
  content: "+";
}
.faq__item[open] .faq__toggle::before {
  content: "−";
}
.faq__item summary:hover .faq__more, .faq__item summary:hover .faq__toggle {
  background: var(--aha-primary-hover);
}

@media (max-width: 900px) {
  .faq {
    gap: 12px;
  }
  .faq__item {
    padding: 18px 20px;
  }
  .faq__item summary {
    gap: 16px;
  }
  .faq__item p {
    margin-top: 14px;
    font-size: 15px;
  }
  .faq__question {
    font-size: 18px;
    line-height: 1.25;
  }
  .faq__more {
    display: none;
  }
  .faq__toggle {
    display: inline-flex;
  }
}
.cta-box {
  background: var(--aha-gradient-blue);
  color: #fff;
}
.cta-box .section__inner {
  align-items: center;
  gap: 24px;
  text-align: center;
}
.cta-box h2 {
  margin: 0;
  font-size: 44px;
  max-width: 24ch;
}
.cta-box p {
  margin: 0;
  max-width: 48ch;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
}
.cta-box a:not(.btn) {
  color: #fff;
}
.cta-box a:not(.btn):hover {
  color: #fff;
}

@media (max-width: 900px) {
  .cta-box h2 {
    font-size: 28px;
  }
  .cta-box p {
    font-size: 16px;
  }
  .cta-box .section__inner {
    gap: 20px;
  }
}
.spinner {
  width: 32px;
  height: 32px;
  margin: 0 auto 20px;
  border: 3px solid var(--border-subtle);
  border-top-color: var(--aha-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.progress {
  height: 8px;
  max-width: 380px;
  margin: 0 auto 14px;
  background: var(--border-subtle);
  border-radius: var(--aha-radius-pill);
  overflow: hidden;
}

.progress-bar {
  width: 0;
  height: 100%;
  background: var(--aha-primary);
  border-radius: inherit;
  transition: width 0.4s ease;
}

.module-list {
  max-width: 420px;
  margin: 20px auto 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.module-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-muted);
}

.module-item:last-child {
  border-bottom: none;
}

.module-item.is-active {
  color: var(--text-body);
  font-weight: 500;
}

.module-item.is-done {
  color: var(--text-body);
}

.module-marker {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 2px solid var(--border-subtle);
  border-radius: 50%;
}

.module-item.is-active .module-marker {
  border-color: var(--aha-primary);
  border-top-color: transparent;
  animation: spin 0.8s linear infinite;
}

.module-item.is-done .module-marker {
  border-color: var(--color-success);
  background: var(--color-success) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='M3.5 8.5l3 3 6-7'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* Course content (preview + employee course) */
.case-block {
  border-top: 1px solid var(--border-subtle);
  padding-top: 20px;
  margin-top: 24px;
}

.case-heading {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.case-step {
  margin-bottom: 0.8em;
}

.ai-answer {
  margin: 0 0 0.8em;
  padding: 14px 18px;
  background: var(--surface-page);
  border-left: 3px solid var(--aha-primary);
  border-radius: 0 var(--aha-radius) var(--aha-radius) 0;
  font-style: italic;
}

.ai-answer-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--aha-primary-dark);
  margin-bottom: 4px;
}

.takeaway {
  margin: 16px 0 0;
  padding: 14px 18px;
  background: rgba(214, 48, 102, 0.08);
  border-radius: var(--aha-radius);
  color: var(--aha-cerise);
  font-weight: 650;
}

.quiz-preview {
  margin-top: 24px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
}

.quiz-preview summary {
  cursor: pointer;
  font-weight: 600;
}

.quiz-question {
  margin-top: 16px;
}

.quiz-question p {
  margin-bottom: 0.4em;
}

.quiz-options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.quiz-options li {
  padding: 4px 0 4px 26px;
  position: relative;
}

.quiz-options li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--border-subtle);
  border-radius: 50%;
}

.quiz-options li.is-correct {
  color: var(--color-success);
  font-weight: 600;
}

.quiz-options li.is-correct::before {
  border-color: var(--color-success);
  background: var(--color-success);
}

/* Employee course */
.module-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.module-header .badge {
  margin-bottom: 0;
}

.course-progress {
  margin-bottom: 20px;
  text-align: center;
}

.course-progress .progress {
  margin-top: 8px;
  max-width: none;
}

.course-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

/* Quiz + completion */
.quiz-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 24px;
}

.quiz-fieldset legend {
  font-weight: 600;
  margin-bottom: 4px;
  padding: 0;
}

.result-verdict {
  font-weight: 700;
  margin-bottom: 6px;
}

.result-verdict.is-right {
  color: var(--color-success);
}

.result-verdict.is-wrong {
  color: var(--color-error);
}

.quiz-options li.is-chosen-wrong {
  color: var(--color-error);
}

.quiz-options li.is-chosen-wrong::before {
  border-color: var(--color-error);
}

.acknowledge-box {
  align-items: flex-start;
  background: var(--surface-page);
  border-radius: var(--aha-radius);
  padding: 16px;
  margin-bottom: 20px;
}

.acknowledge-box input {
  margin-top: 4px;
}

.done-mark {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--color-success);
  color: #fff;
  font-size: 30px;
}

.certificate-code {
  font-size: 1.3rem;
  letter-spacing: 0.15em;
}

.access-grid {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}

.access-line {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.access-value {
  background: var(--surface-page);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.95rem;
  word-break: break-all;
}

.access-code {
  font-weight: 700;
  letter-spacing: 0.15em;
}

.qr-code {
  flex-shrink: 0;
  border: 1px solid var(--border-subtle);
  border-radius: var(--aha-radius);
}

.participant-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.participant-table th,
.participant-table td {
  text-align: left;
  padding: 10px 12px 10px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.participant-table th {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.participant-table tr:last-child td {
  border-bottom: none;
}

.status-pill {
  display: inline-block;
  padding: 3px 12px;
  border-radius: var(--aha-radius-pill);
  background: var(--surface-page);
  font-size: 0.85rem;
}

.status-pill.is-done {
  background: #e6f4ea;
  color: var(--color-success);
}

@media (max-width: 900px) {
  .access-grid {
    flex-direction: column;
  }
}

/*# sourceMappingURL=app-7d1043473d.output.css.map */
