:root {
  --fp-ink: #14211f;
  --fp-muted: #5d6b68;
  --fp-green-950: #0a2a27;
  --fp-green-900: #123f3a;
  --fp-green-800: #18534c;
  --fp-green-700: #206a60;
  --fp-green-100: #dceee9;
  --fp-green-50: #f0f8f5;
  --fp-coral: #ef7b65;
  --fp-coral-dark: #c8513f;
  --fp-gold: #dcae47;
  --fp-surface: #ffffff;
  --fp-canvas: #f7f9f8;
  --fp-border: #dce4e1;
  --fp-danger: #a52a2a;
  --fp-radius-sm: .65rem;
  --fp-radius: 1rem;
  --fp-radius-lg: 1.5rem;
  --fp-shadow-sm: 0 4px 18px rgba(18, 63, 58, .07);
  --fp-shadow: 0 18px 50px rgba(18, 63, 58, .11);
  --bs-primary: var(--fp-green-800);
  --bs-primary-rgb: 24, 83, 76;
  --bs-link-color: var(--fp-green-800);
  --bs-link-hover-color: var(--fp-green-950);
  --bs-body-color: var(--fp-ink);
  --bs-body-bg: var(--fp-canvas);
  --bs-border-color: var(--fp-border);
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  background:
    radial-gradient(circle at 90% 0, rgba(220, 238, 233, .55), transparent 24rem),
    var(--fp-canvas);
  color: var(--fp-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  padding-bottom: env(safe-area-inset-bottom);
}

a {
  text-underline-offset: .18em;
  text-decoration-thickness: .08em;
}

img {
  max-width: 100%;
  height: auto;
}

:focus-visible {
  outline: 3px solid #f0a38f !important;
  outline-offset: 3px !important;
  box-shadow: none !important;
}

.skip-link {
  position: fixed;
  z-index: 1100;
  top: .75rem;
  left: .75rem;
  padding: .7rem 1rem;
  border-radius: .5rem;
  background: #fff;
  color: var(--fp-green-950);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform .15s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

#main-content:focus {
  outline: none;
}

.site-header {
  position: relative;
  z-index: 100;
  border-bottom: 1px solid rgba(220, 228, 225, .85);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
}

.navbar {
  min-height: 4.5rem;
  --bs-navbar-color: var(--fp-ink);
  --bs-navbar-hover-color: var(--fp-green-800);
  --bs-navbar-active-color: var(--fp-green-900);
}

.navbar-brand,
.footer-brand {
  color: var(--fp-green-950);
  font-size: 1.05rem;
  letter-spacing: -.02em;
  text-decoration: none;
}

.navbar-brand:hover,
.footer-brand:hover {
  color: var(--fp-green-800);
}

.nav-link {
  border-radius: .6rem;
  font-weight: 600;
  padding: .65rem .8rem !important;
}

.nav-link:hover {
  background: var(--fp-green-50);
}

.nav-cta {
  padding: .67rem 1rem;
}

.nav-account {
  display: flex;
  align-items: center;
  max-width: 13rem;
  gap: .5rem;
  border: 0;
  color: var(--fp-ink);
  font-weight: 650;
}

.nav-account:hover,
.nav-account[aria-expanded="true"] {
  background: var(--fp-green-50);
}

.avatar {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--fp-green-100);
  color: var(--fp-green-900);
  font-size: .8rem;
  font-weight: 800;
}

.dropdown-menu {
  padding: .55rem;
  border-color: var(--fp-border);
  border-radius: .85rem;
}

.dropdown-item {
  min-height: 2.75rem;
  padding: .6rem .75rem;
  border-radius: .5rem;
}

.site-footer {
  border-top: 1px solid var(--fp-border);
  background: #fff;
}

.site-footer a {
  color: var(--fp-muted);
  text-decoration: none;
}

.site-footer li + li {
  margin-top: .45rem;
}

.site-footer a:hover {
  color: var(--fp-green-800);
  text-decoration: underline;
}

.footer-heading {
  color: var(--fp-ink);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.message-stack {
  position: relative;
  z-index: 50;
  padding-top: 1rem;
}

.message-stack .alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 52rem;
  margin-inline: auto;
  border: 0;
  border-radius: .8rem;
}

.section-space {
  padding-block: clamp(3.5rem, 8vw, 7rem);
}

.page-shell {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 4.5rem) max(1rem, env(safe-area-inset-left));
}

.page-shell-narrow {
  max-width: 48rem;
}

.eyebrow {
  color: var(--fp-green-700);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.display-title {
  max-width: 20ch;
  font-size: clamp(2rem, 6vw, 3.6rem);
  font-weight: 780;
  letter-spacing: -.045em;
  line-height: 1.08;
}

.lead {
  max-width: 62ch;
  font-size: clamp(1.02rem, 2vw, 1.22rem);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 9vw, 8rem);
  background:
    linear-gradient(115deg, rgba(10, 42, 39, .985), rgba(24, 83, 76, .94)),
    var(--fp-green-900);
  color: #fff;
}

.hero::after {
  position: absolute;
  width: 32rem;
  height: 32rem;
  right: -11rem;
  bottom: -17rem;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(255, 255, 255, .025), 0 0 0 10rem rgba(255, 255, 255, .025);
  content: "";
}

.hero h1 {
  max-width: 14ch;
  font-size: clamp(2.55rem, 8vw, 5.4rem);
  font-weight: 780;
  letter-spacing: -.055em;
  line-height: .98;
}

.hero .lead {
  color: rgba(255, 255, 255, .8) !important;
}

.hero-accent {
  color: #a8dfd3;
}

.hero-panel {
  position: relative;
  z-index: 1;
  padding: clamp(1.15rem, 3vw, 1.75rem);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--fp-radius-lg);
  background: rgba(255, 255, 255, .09);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .2);
  backdrop-filter: blur(10px);
}

.hero-panel .progress {
  height: .55rem;
  background: rgba(255, 255, 255, .15);
}

.hero-panel .progress-bar {
  background: #9ad8ca;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  color: rgba(255, 255, 255, .78);
  font-size: .9rem;
}

.trust-row span::before {
  margin-right: .45rem;
  color: #9ad8ca;
  content: "✓";
  font-weight: 800;
}

.btn {
  min-height: 2.75rem;
  border-radius: .7rem;
  font-weight: 700;
}

.btn-lg {
  min-height: 3.25rem;
  border-radius: .8rem;
}

.btn-primary {
  --bs-btn-bg: var(--fp-green-800);
  --bs-btn-border-color: var(--fp-green-800);
  --bs-btn-hover-bg: var(--fp-green-950);
  --bs-btn-hover-border-color: var(--fp-green-950);
  --bs-btn-active-bg: var(--fp-green-950);
  --bs-btn-active-border-color: var(--fp-green-950);
}

.btn-coral {
  --bs-btn-color: #1d211f;
  --bs-btn-bg: #f5a18f;
  --bs-btn-border-color: #f5a18f;
  --bs-btn-hover-color: #111;
  --bs-btn-hover-bg: #ffb5a5;
  --bs-btn-hover-border-color: #ffb5a5;
}

.btn-soft {
  border-color: var(--fp-green-100);
  background: var(--fp-green-50);
  color: var(--fp-green-900);
}

.btn-soft:hover {
  border-color: var(--fp-green-800);
  background: var(--fp-green-100);
  color: var(--fp-green-950);
}

.surface-card,
.auth-card,
.metric-card,
.question-card,
.summary-card {
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius);
  background: var(--fp-surface);
  box-shadow: var(--fp-shadow-sm);
}

.surface-card {
  height: 100%;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.feature-icon {
  display: inline-grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: .8rem;
  background: var(--fp-green-100);
  color: var(--fp-green-900);
  font-size: 1.2rem;
  font-weight: 800;
}

.auth-layout {
  min-height: calc(100vh - 4.5rem);
  padding-block: clamp(2rem, 6vw, 5rem);
}

.auth-card {
  width: min(100%, 31rem);
  padding: clamp(1.35rem, 5vw, 2.5rem);
  box-shadow: var(--fp-shadow);
}

.auth-aside {
  padding: clamp(1.5rem, 5vw, 3rem);
  border-radius: var(--fp-radius-lg);
  background: var(--fp-green-950);
  color: white;
}

.form-label,
.form-check-label {
  color: var(--fp-ink);
  font-weight: 650;
}

.required-mark {
  margin-left: .2rem;
  color: var(--fp-danger);
}

.form-field input:not([type="checkbox"]):not([type="radio"]),
.form-field select,
.form-field textarea,
.form-control,
.form-select {
  display: block;
  width: 100%;
  min-height: 3rem;
  padding: .7rem .85rem;
  border: 1px solid #aebbb7;
  border-radius: .65rem;
  background: #fff;
  color: var(--fp-ink);
}

.form-field textarea,
textarea.form-control {
  min-height: 8rem;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.form-control:focus,
.form-select:focus {
  border-color: var(--fp-green-700);
  box-shadow: 0 0 0 .22rem rgba(32, 106, 96, .15);
  outline: 0;
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: var(--fp-danger);
}

.form-check-input {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: .18rem;
  border-color: #84938f;
}

.form-check-input:checked {
  border-color: var(--fp-green-800);
  background-color: var(--fp-green-800);
}

.form-text,
.helptext {
  color: var(--fp-muted);
  font-size: .85rem;
}

.form-text ul,
.helptext ul,
.errorlist {
  margin: .5rem 0 0;
  padding-left: 1.2rem;
}

.errorlist {
  color: var(--fp-danger);
}

.error-summary:focus {
  outline: 3px solid rgba(165, 42, 42, .35);
}

.trial-banner {
  margin-bottom: 1.5rem;
  padding: .9rem 1rem;
  border-radius: .8rem;
  background: var(--fp-green-800);
  color: #fff;
}

.dashboard-welcome {
  position: relative;
  overflow: hidden;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  border-radius: var(--fp-radius-lg);
  background: linear-gradient(115deg, var(--fp-green-950), var(--fp-green-800));
  color: #fff;
}

.dashboard-welcome::after {
  position: absolute;
  width: 13rem;
  height: 13rem;
  right: -4rem;
  bottom: -7rem;
  border: 2rem solid rgba(255, 255, 255, .05);
  border-radius: 50%;
  content: "";
}

.metric-card {
  height: 100%;
  padding: 1.25rem;
}

.metric-label {
  margin-bottom: .3rem;
  color: var(--fp-muted);
  font-size: .8rem;
  font-weight: 750;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.metric-value {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 780;
  letter-spacing: -.04em;
  line-height: 1.1;
}

.mode-card {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 1.3rem;
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius);
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.mode-card:hover {
  border-color: #9ac5ba;
  color: inherit;
  box-shadow: var(--fp-shadow-sm);
  transform: translateY(-2px);
}

.mode-card.is-locked {
  background: #f2f4f3;
  color: var(--fp-muted);
}

.progress-thin {
  height: .5rem;
  border-radius: 1rem;
  background: #e8eeec;
}

.progress-thin .progress-bar {
  border-radius: inherit;
  background: var(--fp-green-700);
}

.setup-card {
  max-width: 50rem;
  margin-inline: auto;
  padding: clamp(1.25rem, 4vw, 2.25rem);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
  gap: .75rem;
}

.choice-tile {
  position: relative;
  min-height: 6rem;
}

.choice-tile input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice-tile label {
  display: flex;
  height: 100%;
  min-height: 6rem;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
  border: 2px solid var(--fp-border);
  border-radius: .8rem;
  background: #fff;
  cursor: pointer;
}

.choice-tile input:checked + label {
  border-color: var(--fp-green-700);
  background: var(--fp-green-50);
  box-shadow: inset 0 0 0 1px var(--fp-green-700);
}

.choice-tile input:focus-visible + label {
  outline: 3px solid #f0a38f;
  outline-offset: 3px;
}

.question-shell {
  padding-block: 1.25rem 3rem;
}

.question-toolbar {
  position: sticky;
  z-index: 20;
  top: 0;
  padding-block: .7rem;
  border-bottom: 1px solid var(--fp-border);
  background: rgba(247, 249, 248, .96);
  backdrop-filter: blur(12px);
}

.question-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.1rem, 4vw, 2.25rem);
}

.question-number {
  color: var(--fp-green-700);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.question-stem {
  max-width: 76ch;
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  font-weight: 600;
  line-height: 1.55;
  white-space: pre-line;
}

.resource-frame {
  position: relative;
  margin-block: 1.5rem;
  padding: .65rem;
  border: 1px solid var(--fp-border);
  border-radius: .85rem;
  background: #eef2f1;
  text-align: center;
}

.resource-frame img {
  max-height: min(65vh, 42rem);
  border-radius: .55rem;
  object-fit: contain;
}

.resource-frame figcaption {
  padding: .65rem .25rem .15rem;
  color: var(--fp-muted);
  font-size: .85rem;
  text-align: left;
}

.zoom-hint {
  position: absolute;
  right: 1rem;
  top: 1rem;
  padding: .35rem .55rem;
  border-radius: .45rem;
  background: rgba(10, 42, 39, .84);
  color: #fff;
  font-size: .72rem;
  pointer-events: none;
}

.answer-list {
  display: grid;
  gap: .7rem;
  margin-block: 1.5rem;
}

.answer-option {
  position: relative;
}

.answer-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.answer-option label {
  display: grid;
  min-height: 3.8rem;
  grid-template-columns: 2.25rem 1fr;
  align-items: center;
  gap: .75rem;
  padding: .72rem .85rem;
  border: 2px solid var(--fp-border);
  border-radius: .8rem;
  background: #fff;
  cursor: pointer;
  line-height: 1.4;
  transition: background .12s ease, border-color .12s ease;
}

.answer-key {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  border-radius: .55rem;
  background: #edf1ef;
  font-weight: 800;
}

.answer-option input:checked + label {
  border-color: var(--fp-green-700);
  background: var(--fp-green-50);
}

.answer-option input:checked + label .answer-key {
  background: var(--fp-green-800);
  color: #fff;
}

.answer-option input:focus-visible + label {
  outline: 3px solid #f0a38f;
  outline-offset: 3px;
}

.answer-option.is-correct label {
  border-color: #26754c;
  background: #e9f7ef;
}

.answer-option.is-incorrect label {
  border-color: #ae493d;
  background: #fff0ed;
}

.answer-review-row {
  display: grid;
  min-height: 3.8rem;
  grid-template-columns: 2.25rem 1fr;
  align-items: center;
  gap: .75rem;
  padding: .72rem .85rem;
  border: 2px solid var(--fp-border);
  border-radius: .8rem;
  background: #fff;
  line-height: 1.4;
}

.answer-option.is-correct .answer-review-row {
  border-color: #26754c;
  background: #e9f7ef;
}

.answer-option.is-incorrect .answer-review-row {
  border-color: #ae493d;
  background: #fff0ed;
}

.answer-option.is-correct .answer-review-row::after,
.answer-option.is-incorrect .answer-review-row::after {
  grid-column: 2;
  font-size: .78rem;
  font-weight: 800;
}

.answer-option.is-correct .answer-review-row::after {
  color: #1f6540;
  content: "Correct answer";
}

.answer-option.is-incorrect .answer-review-row::after {
  color: #8b342b;
  content: "Your answer";
}

.answer-option.is-correct label::after,
.answer-option.is-incorrect label::after {
  justify-self: start;
  grid-column: 2;
  font-size: .78rem;
  font-weight: 800;
}

.answer-option.is-correct label::after {
  color: #1f6540;
  content: "Correct answer";
}

.answer-option.is-incorrect label::after {
  color: #8b342b;
  content: "Your answer";
}

.confidence-group {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.confidence-group input {
  position: absolute;
  opacity: 0;
}

.confidence-group label {
  min-height: 2.75rem;
  padding: .55rem .8rem;
  border: 1px solid #aebbb7;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font-weight: 650;
}

.confidence-group input:checked + label {
  border-color: var(--fp-green-800);
  background: var(--fp-green-800);
  color: #fff;
}

.rationale-panel {
  padding: clamp(1.1rem, 4vw, 2rem);
  border-left: .3rem solid var(--fp-green-700);
  border-radius: 0 var(--fp-radius) var(--fp-radius) 0;
  background: #fff;
  box-shadow: var(--fp-shadow-sm);
}

.distractor-list details {
  padding: .85rem 0;
  border-bottom: 1px solid var(--fp-border);
}

.distractor-list summary {
  cursor: pointer;
  font-weight: 700;
}

.private-notes {
  position: relative;
  z-index: 3;
  padding: 1rem;
  border: 1px solid #dbc98f;
  border-radius: .8rem;
  background: #fffbed;
}

.private-notes textarea {
  background: #fffefa;
}

.timer {
  display: inline-flex;
  min-width: 6.5rem;
  align-items: center;
  justify-content: center;
  padding: .45rem .7rem;
  border: 1px solid var(--fp-border);
  border-radius: .65rem;
  background: #fff;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
}

.timer.is-warning {
  border-color: #d69a3a;
  background: #fff8e9;
  color: #754a04;
}

.timer.is-danger {
  border-color: #b64236;
  background: #fff0ed;
  color: #852c23;
}

.question-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(2.65rem, 1fr));
  gap: .45rem;
}

.question-nav-grid > a,
.question-nav-grid > span {
  display: grid;
  min-height: 2.65rem;
  place-items: center;
  border: 1px solid var(--fp-border);
  border-radius: .5rem;
  background: #fff;
  color: var(--fp-ink);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 700;
}

.question-nav-grid .is-current {
  border-color: var(--fp-green-800);
  background: var(--fp-green-800);
  color: #fff;
}

.question-nav-grid .is-answered {
  border-color: #8ebcaf;
  background: var(--fp-green-100);
}

.question-nav-grid > a {
  position: relative;
}

.question-nav-grid .flag-marker {
  position: absolute;
  top: -.35rem;
  right: -.2rem;
  color: var(--fp-coral-700);
  font-size: .9rem;
  line-height: 1;
  text-shadow: 0 1px 0 #fff;
}

.question-nav-grid .is-current .flag-marker {
  color: #fff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .35);
}

.score-ring {
  display: grid;
  width: 9rem;
  height: 9rem;
  place-items: center;
  margin-inline: auto;
  border: .85rem solid var(--fp-green-100);
  border-top-color: var(--fp-green-700);
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 800;
}

.pricing-card {
  position: relative;
  height: 100%;
  padding: clamp(1.3rem, 4vw, 2rem);
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius-lg);
  background: #fff;
  box-shadow: var(--fp-shadow-sm);
}

.pricing-card.is-featured {
  border: 2px solid var(--fp-green-700);
  box-shadow: var(--fp-shadow);
}

.price {
  font-size: clamp(2.2rem, 6vw, 3.3rem);
  font-weight: 800;
  letter-spacing: -.05em;
}

.one-off-badge {
  display: inline-block;
  padding: .35rem .65rem;
  border-radius: 999px;
  background: var(--fp-green-100);
  color: var(--fp-green-950);
  font-size: .78rem;
  font-weight: 800;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .3rem .55rem;
  border-radius: 999px;
  background: #edf1ef;
  color: var(--fp-muted);
  font-size: .77rem;
  font-weight: 750;
}

.status-badge.is-success {
  background: #e4f4ea;
  color: #1f6540;
}

.status-badge.is-warning {
  background: #fff3d7;
  color: #704708;
}

.table-responsive {
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius);
  background: #fff;
}

.table {
  margin-bottom: 0;
  --bs-table-bg: transparent;
}

.table th {
  color: var(--fp-muted);
  font-size: .76rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.table > :not(caption) > * > * {
  padding: .85rem 1rem;
  border-bottom-color: var(--fp-border);
}

.empty-state {
  padding: clamp(2rem, 7vw, 4rem) 1rem;
  border: 1px dashed #b9c7c3;
  border-radius: var(--fp-radius);
  background: rgba(255, 255, 255, .62);
}

.legal-copy {
  max-width: 72ch;
  font-size: 1rem;
}

.legal-copy h2 {
  margin-top: 2rem;
  font-size: 1.35rem;
}

.network-status {
  position: fixed;
  z-index: 1090;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  max-width: min(24rem, calc(100vw - 2rem));
  padding: .7rem 1rem;
  border-radius: .7rem;
  background: var(--fp-green-950);
  color: #fff;
  box-shadow: var(--fp-shadow);
  font-size: .9rem;
  font-weight: 650;
}

/* Protected learning content remains semantic and screen-reader accessible. */
[data-protected-content] {
  position: relative;
  isolation: isolate;
  -webkit-user-select: none;
  user-select: none;
}

[data-protected-content]::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='170' viewBox='0 0 300 170'%3E%3Cg transform='rotate(-24 150 85)'%3E%3Ctext x='18' y='88' fill='%23123f3a' fill-opacity='.08' font-family='Arial,sans-serif' font-size='14' font-weight='700' letter-spacing='2'%3EFRCEM PROGRESS • LICENSED%3C/text%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  content: "";
  pointer-events: none;
}

.identity-watermark-fixed {
  position: fixed;
  z-index: 9;
  right: .7rem;
  bottom: .55rem;
  max-width: 18rem;
  color: rgba(18, 63, 58, .2);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .06em;
  overflow: hidden;
  pointer-events: none;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

[data-protected-content] > * {
  position: relative;
  z-index: 3;
}

.identity-watermark {
  position: absolute;
  z-index: 4;
  width: 48%;
  color: rgba(18, 63, 58, .075);
  font-size: clamp(.55rem, 1vw, .7rem);
  font-weight: 800;
  letter-spacing: .05em;
  pointer-events: none;
  text-transform: uppercase;
  transform: rotate(-18deg);
  white-space: nowrap;
}

.identity-watermark-2,
.identity-watermark-4,
.identity-watermark-6 {
  transform: rotate(-25deg);
}

[data-private-notes],
[data-private-notes] *,
.allow-copy,
.allow-copy * {
  -webkit-user-select: text !important;
  user-select: text !important;
}

[data-protected-content] img {
  -webkit-touch-callout: none;
}

.protection-notice {
  color: var(--fp-muted);
  font-size: .78rem;
}

.print-protection-message {
  display: none;
}

@media (min-width: 768px) {
  .answer-option label {
    padding: .9rem 1rem;
  }

  .question-shell {
    padding-block: 2rem 4rem;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: .7rem;
    padding: .7rem;
    border: 1px solid var(--fp-border);
    border-radius: .9rem;
    background: #fff;
    box-shadow: var(--fp-shadow-sm);
  }

  .nav-account {
    width: 100%;
    max-width: none;
    justify-content: flex-start;
    padding-inline: .8rem;
  }
}

@media (max-width: 575.98px) {
  .page-shell {
    padding-inline: .9rem;
  }

  .hero .btn {
    width: 100%;
  }

  .question-card {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    margin-inline: -.9rem;
  }

  .question-toolbar .btn-label {
    display: none;
  }

  .timer {
    min-width: 5.4rem;
    font-size: .88rem;
  }

  .table-responsive-card table,
  .table-responsive-card tbody,
  .table-responsive-card tr,
  .table-responsive-card td {
    display: block;
    width: 100%;
  }

  .table-responsive-card thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .table-responsive-card tr {
    padding: .8rem 1rem;
    border-bottom: 1px solid var(--fp-border);
  }

  .table-responsive-card td {
    display: grid;
    grid-template-columns: minmax(7rem, 40%) 1fr;
    gap: .6rem;
    padding: .3rem 0;
    border: 0;
  }

  .table-responsive-card td::before {
    color: var(--fp-muted);
    content: attr(data-label);
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .03em;
    text-transform: uppercase;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  body.content-protection-active > * {
    display: none !important;
  }

  body.content-protection-active::before {
    display: block;
    max-width: 42rem;
    margin: 4rem auto;
    padding: 2rem;
    border: 2px solid #333;
    content: "Printing protected FRCEM Progress question content is disabled. Your private notes remain available in your account.";
    font-family: sans-serif;
    font-size: 16pt;
  }

  body:not(.content-protection-active) {
    background: #fff;
  }

  body:not(.content-protection-active) .site-header,
  body:not(.content-protection-active) .site-footer,
  body:not(.content-protection-active) .btn,
  body:not(.content-protection-active) .network-status {
    display: none !important;
  }
}
