/* =========================================================
   NOF STUDENT REPORT
   Completely isolated CSS
   No global selectors
========================================================= */

.nof-student-report {
  --nof-primary: #f0b120;
  --nof-primary-dark: #111111;
  --nof-primary-light: #faf6ea;

  --nof-green: #0b8f50;
  --nof-green-light: #e9f8f0;

  --nof-orange: #f0b120;
  --nof-orange-light: #faf6ea;

  --nof-blue: #3978d6;
  --nof-blue-light: #edf4ff;

  --nof-purple: #7756d8;
  --nof-purple-light: #f2eeff;

  --nof-red: #d9534f;
  --nof-red-light: #fdecea;

  --nof-text: #111111;
  --nof-text-light: #4b5563;
  --nof-border: #e5e7eb;
  --nof-bg: #f7f6f2;
  --nof-white: #ffffff;

  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px;

  color: var(--nof-text);
  background: var(--nof-bg);

  font-family:
    "Inter",
    "Segoe UI",
    Arial,
    sans-serif;

  line-height: 1.45;

  box-sizing: border-box;
}

.nof-student-report *,
.nof-student-report *::before,
.nof-student-report *::after {
  box-sizing: border-box;
}

/* =========================================================
   HEADER
========================================================= */

.nof-student-report__header {
  min-height: 76px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 16px 22px;

  background: var(--nof-white);

  border: 1px solid var(--nof-border);
  border-radius: 16px;

  box-shadow: 0 4px 20px rgba(18, 27, 54, 0.05);
}

.nof-student-report__header-left {
  display: flex;
  align-items: center;
  gap: 13px;
}

.nof-student-report__brand-mark {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  background: var(--nof-primary);

  border-radius: 12px;
}

.nof-student-report__brand {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: var(--nof-primary-dark);
}

.nof-student-report__brand-subtitle {
  margin-top: 2px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;

  color: var(--nof-text-light);
}

.nof-student-report__header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nof-student-report__brand-tagline {
  margin-top: 2px;

  font-size: 10.5px;
  font-weight: 600;

  color: var(--nof-text-light);
}

.nof-student-report__powered-by {
  display: flex;
  align-items: center;
  gap: 8px;

  padding-left: 14px;

  border-left: 1px solid var(--nof-border);
}

.nof-student-report__powered-by span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;

  color: var(--nof-text-light);
}

.nof-student-report__nof-badge {
  width: 30px;
  height: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  background: var(--nof-orange);

  border-radius: 50%;

  font-size: 9px;
  font-weight: 900;
}

.nof-student-report__nof-name {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.3px;

  color: var(--nof-primary-dark);
}

.nof-student-report__session-badge {
  padding: 8px 13px;

  border-radius: 30px;

  font-size: 12px;
  font-weight: 700;

  color: var(--nof-primary);
  background: var(--nof-primary-light);
}

.nof-student-report__report-date {
  font-size: 12px;
  color: var(--nof-text-light);
}

/* =========================================================
   PROFILE
========================================================= */

.nof-student-report__profile-summary {
  margin-top: 18px;
  overflow: hidden;

  background: #ffffff;
  border: 1px solid var(--nof-border);
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(23, 28, 114, 0.1);
}

.nof-student-report__profile {
  position: relative;
  overflow: hidden;
 height: 180px;
  padding: 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  background:
    linear-gradient(
      120deg,
      #ffffff 0%,
      #fffdf7 44%,
      #f8e1e2 76%,
      #e1def3 100%
    );

  border-radius: 18px;

  color: var(--nof-primary-dark);

  box-shadow: none;
}

.nof-student-report__profile-main {
  position: relative;
  z-index: 3;

  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.nof-student-report__avatar {
  width: 72px;
  height: 72px;

  flex: 0 0 72px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--nof-primary);

  background: rgba(255, 255, 255, 0.72);

  border: 1px solid rgba(23, 28, 114, 0.16);
  border-radius: 50%;
}

.nof-student-report__avatar {
  position: relative;

  overflow: visible;
}

.nof-student-report__avatar img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  border-radius: 50%;
}

.nof-student-report__avatar-badge {
  position: absolute;

  right: -3px;
  bottom: -3px;

  width: 22px;
  height: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  background: #ffd166;

  border: 2px solid #ffffff;
  border-radius: 50%;
}

.nof-student-report__profile-info {
  min-width: 0;
}

.nof-student-report__profile-info h1 {
  display: flex;
  align-items: center;
  gap: 9px;
}

.nof-student-report__profile-ids {
  margin-top: 8px;

  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.nof-student-report__profile-ids span {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  font-size: 11px;

  color: rgba(17, 17, 17, 0.72);
}

.nof-student-report__eyebrow {
  display: block;

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;

  color: var(--nof-text-light);
}

.nof-student-report__profile .nof-student-report__eyebrow {
  color: rgba(17, 17, 17, 0.62);
}

.nof-student-report__profile-info h1 {
  margin: 3px 0 8px;

  font-size: 29px;
  font-weight: 800;

  color: var(--nof-primary-dark);
}

.nof-student-report__profile-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.nof-student-report__profile-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  font-size: 12px;
  color: rgba(17, 17, 17, 0.88);
}

.nof-student-report__profile-status {
  position: relative;
  z-index: 3;

  min-width: 205px;

  display: flex;
  align-items: center;
  gap: 12px;

  padding: 14px 17px;

  background: rgba(255, 255, 255, 0.58);

  border: 1px solid rgba(23, 28, 114, 0.14);

  border-radius: 13px;
}

.nof-student-report__status-icon {
  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--nof-primary);
  background: rgba(255, 255, 255, 0.72);

  border-radius: 10px;
}

.nof-student-report__profile-mountain {
     position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 131%;
    overflow: hidden;
    opacity: 1;
    pointer-events: none;
    background: linear-gradient(110deg, rgba(35, 42, 136, 0.02), rgba(245, 214, 220, 0.72));
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.18) 10%, #000000 25%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.18) 10%, #000000 25%);
}
.nof-student-report__profile-mountain img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% bottom;
}

.nof-student-report__profile-mountain-sky,
.nof-student-report__profile-mountain-sun,
.nof-student-report__profile-mountain-cloud,
.nof-student-report__profile-mountain-range,
.nof-student-report__profile-mountain-main,
.nof-student-report__profile-mountain-facet,
.nof-student-report__profile-mountain-pole,
.nof-student-report__profile-mountain-flag,
.nof-student-report__profile-mountain-person,
.nof-student-report__profile-mountain-tree {
  position: absolute;
}

.nof-student-report__profile-mountain-sky {
  inset: 0;
  background:
    radial-gradient(circle at 57% 38%, rgba(255, 237, 149, 0.56), transparent 13%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.06) 4%, rgba(255, 250, 240, 0.48) 38%, rgba(249, 219, 224, 0.84) 72%, rgba(217, 216, 240, 0.86));
}

.nof-student-report__profile-mountain-sun {
  top: 29%;
  left: 55%;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fffdf0;
  box-shadow: 0 0 16px rgba(255, 240, 170, 0.7);
}

.nof-student-report__profile-mountain-cloud {
  height: 6px;
  border-radius: 50%;
  background: rgba(246, 192, 200, 0.62);
}

.nof-student-report__profile-mountain-cloud::before,
.nof-student-report__profile-mountain-cloud::after {
  content: "";
  position: absolute;
  bottom: 1px;
  border-radius: 50%;
  background: inherit;
}

.nof-student-report__profile-mountain-cloud::before {
  left: 20%;
  width: 18px;
  height: 11px;
}

.nof-student-report__profile-mountain-cloud::after {
  left: 48%;
  width: 24px;
  height: 14px;
}

.nof-student-report__profile-mountain-cloud--one {
  top: 25%;
  right: 10%;
  width: 62px;
}

.nof-student-report__profile-mountain-cloud--two {
  top: 34%;
  right: 31%;
  width: 52px;
  opacity: 0.68;
}

.nof-student-report__profile-mountain-range {
  bottom: -3%;
  clip-path: polygon(0 100%, 8% 65%, 18% 75%, 28% 53%, 39% 72%, 50% 48%, 62% 70%, 74% 44%, 85% 67%, 100% 100%);
}

.nof-student-report__profile-mountain-range--one {
  left: 0;
  width: 70%;
  height: 48%;
  background: #c3b9d7;
}

.nof-student-report__profile-mountain-range--two {
  left: 22%;
  width: 73%;
  height: 57%;
  background: #a19ec7;
  clip-path: polygon(0 100%, 12% 74%, 23% 57%, 34% 69%, 46% 42%, 58% 65%, 70% 36%, 82% 57%, 92% 45%, 100% 100%);
}

.nof-student-report__profile-mountain-range--three {
  right: -8%;
  width: 62%;
  height: 65%;
  background: #7f80ac;
  clip-path: polygon(0 100%, 15% 67%, 29% 52%, 42% 66%, 56% 36%, 69% 58%, 82% 31%, 91% 53%, 100% 100%);
}

.nof-student-report__profile-mountain-main {
  right: 5%;
  bottom: -9%;
  z-index: 2;
  width: 57%;
  height: 78%;
  background: #202e68;
  clip-path: polygon(0 100%, 12% 76%, 25% 65%, 38% 51%, 49% 37%, 60% 25%, 72% 8%, 80% 0, 87% 23%, 100% 100%);
}

.nof-student-report__profile-mountain-facet {
  z-index: 3;
  bottom: 18%;
  width: 33%;
  height: 48%;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

.nof-student-report__profile-mountain-facet--one { right: 29%; background: #756d9d; }
.nof-student-report__profile-mountain-facet--two { right: 24%; bottom: 30%; width: 25%; height: 40%; background: #c7a8c7; }
.nof-student-report__profile-mountain-facet--three { right: 16%; bottom: 17%; width: 28%; height: 52%; background: #435294; }
.nof-student-report__profile-mountain-facet--four { right: 4%; bottom: 13%; width: 28%; height: 49%; background: #18285e; }

.nof-student-report__profile-mountain-pole {
  top: 8%;
  right: 17.3%;
  z-index: 6;
  width: 2px;
  height: 39%;
  background: #17215b;
}

.nof-student-report__profile-mountain-flag {
  top: 8%;
  right: 12%;
  z-index: 7;
  width: 40px;
  height: 21px;
  background: #d62d24;
  clip-path: polygon(0 0, 100% 12%, 75% 48%, 100% 82%, 0 100%);
}

.nof-student-report__profile-mountain-person {
  top: 31%;
  right: 18.5%;
  z-index: 8;
  width: 12px;
  height: 30px;
}

.nof-student-report__profile-mountain-person-head,
.nof-student-report__profile-mountain-person-body,
.nof-student-report__profile-mountain-person-leg {
  position: absolute;
  display: block;
  background: #151d48;
}

.nof-student-report__profile-mountain-person-head { left: 4px; width: 6px; height: 7px; border-radius: 50%; }
.nof-student-report__profile-mountain-person-body { left: 3px; top: 7px; width: 8px; height: 13px; clip-path: polygon(25% 0, 75% 0, 100% 100%, 0 100%); }
.nof-student-report__profile-mountain-person-leg { top: 19px; width: 3px; height: 11px; transform-origin: top; }
.nof-student-report__profile-mountain-person-leg--left { left: 3px; transform: rotate(10deg); }
.nof-student-report__profile-mountain-person-leg--right { right: 2px; transform: rotate(-10deg); }

.nof-student-report__profile-mountain-tree {
  right: 3%;
  bottom: 1%;
  z-index: 6;
  width: 22px;
  height: 48px;
}

.nof-student-report__profile-mountain-tree span {
  position: absolute;
  left: 50%;
  bottom: 12px;
  width: 0;
  height: 0;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-bottom: 25px solid #17294f;
  transform: translateX(-50%);
}

.nof-student-report__profile-mountain-tree span:nth-child(1) { bottom: 28px; border-left-width: 9px; border-right-width: 9px; border-bottom-width: 19px; }
.nof-student-report__profile-mountain-tree span:nth-child(2) { bottom: 19px; border-left-width: 15px; border-right-width: 15px; border-bottom-width: 25px; }
.nof-student-report__profile-mountain-tree span:nth-child(3) { bottom: 8px; border-left-width: 20px; border-right-width: 20px; border-bottom-width: 30px; }
.nof-student-report__profile-mountain-tree i { position: absolute; left: 9px; bottom: 0; width: 5px; height: 14px; background: #26304c; }

.nof-student-report__profile-status span {
  display: block;

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.9px;

  color: rgba(17, 17, 17, 0.6);
}

.nof-student-report__profile-status strong {
  display: block;

  margin-top: 2px;

  font-size: 16px;

  color: var(--nof-primary-dark);
}

/* =========================================================
   OVERVIEW
========================================================= */

.nof-student-report__overview {
  margin-top: 18px;

  display: grid;
  grid-template-columns: 1.15fr 1fr;

  background: #ffffff;

  border: 1px solid var(--nof-border);
  border-radius: 18px;

  overflow: hidden;

  box-shadow: 0 5px 22px rgba(18, 27, 54, 0.04);
}

.nof-student-report__overview-score {
  min-height: 210px;

  padding: 28px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  background:
    linear-gradient(
      135deg,
      #f6f7ff,
      #ffffff
    );
}

.nof-student-report__overview-score-content {
  min-width: 0;
}

.nof-student-report__overview-score-content .nof-student-report__eyebrow {
  color: var(--nof-text-light);
}

.nof-student-report__big-score {
  margin-top: 2px;

  font-size: 62px;
  line-height: 1;

  font-weight: 850;

  color: var(--nof-primary-dark);
}

.nof-student-report__big-score small {
  font-size: 23px;
  font-weight: 600;

  color: var(--nof-text-light);
}

.nof-student-report__score-label {
  margin-top: 10px;
}

.nof-student-report__positive {
  display: inline-flex;
  align-items: center;
  gap: 4px;

  font-size: 12px;
  font-weight: 700;

  color: var(--nof-green);
}

.nof-student-report__negative {
  display: inline-flex;
  align-items: center;
  gap: 4px;

  font-size: 12px;
  font-weight: 700;

  color: #e0473c;
}

.nof-student-report__score-ring-wrap {
  position: relative;

  width: 126px;
  height: 126px;

  flex: 0 0 126px;
}

.nof-student-report__score-ring {
  width: 100%;
  height: 100%;

  transform: rotate(-90deg);
}

.nof-student-report__score-ring-bg {
  fill: none;
  stroke: #e7eaf2;
  stroke-width: 10;
}

.nof-student-report__score-ring-progress {
  fill: none;
  stroke: var(--nof-green);
  stroke-width: 10;
  stroke-linecap: round;
}

.nof-student-report__score-ring-content {
  position: absolute;

  inset: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.nof-student-report__score-ring-content strong {
  font-size: 23px;
  line-height: 1;

  color: var(--nof-primary-dark);
}

.nof-student-report__score-ring-content span {
  margin-top: 4px;

  font-size: 9px;
  font-weight: 700;

  color: var(--nof-text-light);
}

.nof-student-report__overview-stats {
  padding: 20px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  align-items: center;

  gap: 10px;
}

.nof-student-report__stat-card {
  min-height: 120px;

  padding: 17px 12px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  background: #ffffff;

  border: 1px solid var(--nof-border);
  border-radius: 13px;
}

.nof-student-report__stat-icon {
  width: 38px;
  height: 38px;

  margin-bottom: 11px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;
}

.nof-student-report__stat-icon.purple {
  color: var(--nof-purple);
  background: var(--nof-purple-light);
}

.nof-student-report__stat-icon.green {
  color: var(--nof-green);
  background: var(--nof-green-light);
}

.nof-student-report__stat-icon.orange {
  color: var(--nof-orange);
  background: var(--nof-orange-light);
}

.nof-student-report__stat-icon.blue {
  color: var(--nof-blue);
  background: var(--nof-blue-light);
}

.nof-student-report__stat-card span {
  display: block;

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.6px;

  color: var(--nof-text-light);
}

.nof-student-report__stat-card strong {
  display: block;

  margin-top: 2px;

  font-size: 21px;

  color: var(--nof-text);
}

.nof-student-report__stat-card strong small {
  font-size: 10px;
  font-weight: 500;

  color: var(--nof-text-light);
}

/* =========================================================
   STATS ROW (LeapScore style)
========================================================= */

.nof-student-report__stats-row {
  margin-top: 15px;
  padding: 0 12px 12px;

  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));

  gap: 13px;
}

.nof-student-report__stat-tile {
  position: relative;
  overflow: hidden;

  padding: 18px 16px;

  background: #ffffff;

  border: 1px solid var(--nof-border);
  border-radius: 10px;

  box-shadow: 0 5px 22px rgba(18, 27, 54, 0.04);
  text-align: center;
}

.nof-student-report__stat-tile-label {
  display: flex;
  align-items: center;
  gap: 7px;

  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;

  color: var(--nof-text-light);
  justify-content: center;
}

.nof-student-report__stat-tile-label svg {
  color: var(--nof-primary);
}

.nof-student-report__stat-tile-value {
  margin-top: 12px;

  font-size: 28px;
  font-weight: 850;
  line-height: 1;

  color: var(--nof-text);
}

.nof-student-report__stat-tile-value small {
  font-size: 14px;
  font-weight: 600;

  color: var(--nof-text-light);
}

.nof-student-report__stat-tile-sub {
  margin-top: 8px;

  font-size: 11px;
  font-weight: 700;

  color: var(--nof-text-light);
}

.nof-student-report__stat-tile-sub b {
  color: var(--nof-primary-dark);
}

.nof-student-report__stat-tile-rank-percent {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 800;
  color: var(--nof-primary);
}

.nof-student-report__stat-chip {
  display: inline-block;

  margin-top: 10px;
  padding: 5px 10px;

  font-size: 11px;
  font-weight: 800;

  color: var(--nof-green);
  background: var(--nof-green-light);

  border-radius: 8px;
}

.nof-student-report__stat-tile--leapscore {
  display: flex;
  flex-direction: column;
  isolation: isolate;

  min-height: 174px;
  padding-bottom: 58px;

  background:
    radial-gradient(circle at 86% 82%, rgba(140, 190, 255, 0.52), transparent 34%),
    radial-gradient(circle at 78% 100%, rgba(109, 205, 116, 0.22), transparent 25%),
    linear-gradient(160deg, #fdf6ec, #ffffff);
}

.nof-student-report__stat-tile--leapscore .nof-student-report__stat-tile-value {
  color: var(--nof-orange);
}

.nof-student-report__stat-tile-caption {
  margin-top: auto;
  padding-top: 10px;

  font-size: 10px;
  line-height: 1.5;

  color: var(--nof-text-light);
}

/* =========================================================
   SECTION
========================================================= */

.nof-student-report__section {
  margin-top: 24px;
}

.nof-student-report__section-title {
  display: flex;
  align-items: center;

  gap: 11px;

  margin-bottom: 14px;
  justify-content: center;
}

.nof-student-report__section-title--with-action {
  justify-content: flex-start;
  position: relative;
}

.nof-student-report__section-title--with-action > div:nth-child(2) {
  text-align: left;
}

.nof-student-report__section-title--with-action h2 {
  color: var(--nof-primary-dark);
  text-transform: uppercase;
}

.nof-student-report__section-title--with-action p {
  padding-left: 14px;
  border-left: 2px solid rgba(240, 177, 32, 0.55);
}

.nof-student-report__section-title-action {
  margin-left: auto;
  padding: 9px 16px;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: var(--nof-primary-dark);
  background: #ffffff;
  border: 1px solid var(--nof-border);
  border-radius: 9px;

  font-size: 11px;
  font-weight: 800;
}

.nof-student-report__section-title-action svg {
  color: var(--nof-primary);
}

.nof-student-report__section-title-icon {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--nof-primary);

  background: var(--nof-primary-light);

  border-radius: 10px;
}

.nof-student-report__section-title h2 {
  margin: 0;

  font-size: 19px;
  font-weight: 800;

  color: var(--nof-text);
}

.nof-student-report__section-title p {
  margin: 2px 0 0;

  font-size: 11px;

  color: var(--nof-text-light);
}

/* =========================================================
   SUBJECT CARDS
========================================================= */

.nof-student-report__subject-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 13px;
}

.nof-student-report__subject-card {
  position: relative;

  padding: 17px;

  background: #ffffff;

  border: 1px solid var(--nof-border);
  border-radius: 14px;

  overflow: hidden;
}

.nof-student-report__subject-card::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;
  bottom: 0;

  width: 4px;

  background: var(--nof-primary);
}

.nof-student-report__subject-card--green::before {
  background: var(--nof-green);
}

.nof-student-report__subject-card--blue::before {
  background: var(--nof-blue);
}

.nof-student-report__subject-card--purple::before {
  background: var(--nof-purple);
}

.nof-student-report__subject-card--orange::before {
  background: var(--nof-orange);
}

.nof-student-report__subject-top {
  display: flex;
  align-items: center;

  gap: 10px;
}

.nof-student-report__subject-icon {
  width: 42px;
  height: 42px;

  flex: 0 0 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--nof-primary);

  background: var(--nof-primary-light);

  border-radius: 11px;
}

.nof-student-report__subject-card--green
  .nof-student-report__subject-icon {
  color: var(--nof-green);
  background: var(--nof-green-light);
}

.nof-student-report__subject-card--blue
  .nof-student-report__subject-icon {
  color: var(--nof-blue);
  background: var(--nof-blue-light);
}

.nof-student-report__subject-card--purple
  .nof-student-report__subject-icon {
  color: var(--nof-purple);
  background: var(--nof-purple-light);
}

.nof-student-report__subject-card--orange
  .nof-student-report__subject-icon {
  color: var(--nof-orange);
  background: var(--nof-orange-light);
}

.nof-student-report__subject-name {
  flex: 1;
  min-width: 0;
}

.nof-student-report__subject-name span {
  display: block;

  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1px;

  color: var(--nof-text-light);
}

.nof-student-report__subject-name h3 {
  margin: 2px 0 0;

  font-size: 13px;
  font-weight: 800;

  color: var(--nof-text);

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nof-student-report__subject-score {
  font-size: 20px;
  font-weight: 850;

  color: var(--nof-primary-dark);
}

.nof-student-report__progress {
  width: 100%;
  height: 7px;

  margin-top: 16px;

  overflow: hidden;

  background: #edf0f5;

  border-radius: 20px;
}

.nof-student-report__progress-fill {
  height: 100%;

  border-radius: inherit;

  background:
    linear-gradient(
      90deg,
      var(--nof-primary),
      #5260cc
    );
}

.nof-student-report__subject-card--green
  .nof-student-report__progress-fill {
  background: var(--nof-green);
}

.nof-student-report__subject-card--blue
  .nof-student-report__progress-fill {
  background: var(--nof-blue);
}

.nof-student-report__subject-card--purple
  .nof-student-report__progress-fill {
  background: var(--nof-purple);
}

.nof-student-report__subject-card--orange
  .nof-student-report__progress-fill {
  background: var(--nof-orange);
}

.nof-student-report__progress--focus
  .nof-student-report__progress-fill {
  background: var(--nof-red);
}

.nof-student-report__progress--average
  .nof-student-report__progress-fill {
  background: var(--nof-orange);
}

.nof-student-report__progress--good
  .nof-student-report__progress-fill {
  background: var(--nof-green);
}

.nof-student-report__subject-bottom {
  margin-top: 10px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 8px;
}

.nof-student-report__subject-bottom span {
  font-size: 10px;
  color: var(--nof-text-light);
}

.nof-student-report__subject-bottom strong {
  font-size: 10px;
  color: var(--nof-green);
}

/* =========================================================
   TABLE
========================================================= */

.nof-student-report__table-wrapper {
  width: 100%;

  overflow-x: auto;

  background: #ffffff;

  border: 1px solid var(--nof-border);
  border-radius: 15px;
}

.nof-student-report__table {
  width: 100%;
  min-width: 760px;

  border-collapse: collapse;
}

.nof-student-report__table th {
  padding: 13px 16px;

  text-align: left;

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;

  color: var(--nof-text-light);

  background: #f8f9fc;

  border-bottom: 1px solid var(--nof-border);
}

.nof-student-report__table td {
  padding: 14px 16px;

  font-size: 11px;

  border-bottom: 1px solid #eef0f4;
}

.nof-student-report__table tbody tr:last-child td {
  border-bottom: none;
}

.nof-student-report__table-subject {
  display: flex;
  align-items: center;

  gap: 9px;
}

.nof-student-report__table-number {
  width: 27px;
  height: 27px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--nof-primary);

  background: var(--nof-primary-light);

  border-radius: 8px;

  font-size: 10px;
  font-weight: 800;
}

.nof-student-report__correct {
  display: inline-flex;
  align-items: center;
  gap: 4px;

  color: var(--nof-green);
  font-weight: 800;
}

.nof-student-report__table-progress {
  min-width: 120px;

  display: flex;
  align-items: center;

  gap: 8px;
}

.nof-student-report__table-progress
  .nof-student-report__progress {
  width: 75px;

  margin: 0;

  height: 5px;
}

.nof-student-report__table-progress span {
  font-size: 10px;
  font-weight: 700;
}

.nof-student-report__progress--focus + span {
  color: var(--nof-red);
}

.nof-student-report__progress--average + span {
  color: var(--nof-orange);
}

.nof-student-report__progress--good + span {
  color: var(--nof-green);
}

.nof-student-report__level {
  display: inline-block;

  padding: 5px 9px;

  font-size: 9px;
  font-weight: 800;

  color: var(--nof-green);
  background: var(--nof-green-light);

  border-radius: 20px;
}

.nof-student-report__level--focus {
  color: var(--nof-red);
  background: var(--nof-red-light);
}

.nof-student-report__level--average {
  color: var(--nof-orange);
  background: var(--nof-orange-light);
}

.nof-student-report__level--good {
  color: var(--nof-green);
  background: var(--nof-green-light);
}

/* =========================================================
   INSIGHTS
========================================================= */

.nof-student-report__insights-section {
  margin-top: 24px;

  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 22px;
}

.nof-student-report__insight-column {
  min-width: 0;
}

.nof-student-report__insight-list {
  display: flex;
  flex-direction: column;

  gap: 10px;
}

.nof-student-report__insight-card {
  position: relative;

  min-height: 84px;

  padding: 14px;

  display: flex;
  align-items: flex-start;

  gap: 11px;

  background: #ffffff;

  border: 1px solid var(--nof-border);
  border-radius: 13px;
}

.nof-student-report__insight-icon {
  width: 38px;
  height: 38px;

  flex: 0 0 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--nof-green);
  background: var(--nof-green-light);

  border-radius: 9px;
}

.nof-student-report__insight-card--improvement
  .nof-student-report__insight-icon {
  color: var(--nof-orange);
  background: var(--nof-orange-light);
}

.nof-student-report__insight-card h3 {
  margin: 0;

  font-size: 12px;
  font-weight: 800;
}

.nof-student-report__insight-card p {
  margin: 3px 0 0;

  font-size: 10px;
  line-height: 1.55;

  color: var(--nof-text-light);
}

.nof-student-report__insight-check,
.nof-student-report__insight-arrow {
  margin-left: auto;

  width: 24px;
  height: 24px;

  flex: 0 0 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
}

.nof-student-report__insight-check {
  color: var(--nof-green);
  background: var(--nof-green-light);
}

.nof-student-report__insight-arrow {
  color: var(--nof-orange);
  background: var(--nof-orange-light);
}

/* =========================================================
   ACTION INSIGHT TILES (4-up)
========================================================= */

.nof-student-report__action-insights {
  margin-top: 20px;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 14px;
  align-items: stretch;
}

.nof-student-report__insight-tile {
  position: relative;

  min-height: 438px;

  padding: 16px 16px 24px;

  display: flex;
  flex-direction: column;

  background: #ffffff;

  border: 1px solid var(--nof-border);
  border-radius: 16px;

  overflow: hidden;
}

.nof-student-report__insight-tile-number {
  width: 30px;
  height: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
  font-weight: 800;
  color: #ffffff;

  border-radius: 50%;
}

.nof-student-report__insight-tile-title {
  margin-top: 12px;

  max-width: 185px;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2px;
  line-height: 1.35;
}

.nof-student-report__insight-tile-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;

  margin-top: 8px;

  font-size: 11px;
  line-height: 1.5;

  color: var(--nof-text-light);
}

.nof-student-report__insight-tile-body strong {
  display: block;

  margin: 6px 0 2px;

  font-size: 16px;
  line-height: 1.35;

  color: var(--nof-text);
}

.nof-student-report__insight-tile-subtitle {
  display: block;

  font-size: 10.5px;
  line-height: 1.5;
  color: var(--nof-text-light);
}

.nof-student-report__insight-tile-copy {
  display: block;
  margin-top: 6px;

  font-size: 10.5px;
  line-height: 1.5;
  color: var(--nof-text-light);
}

.nof-student-report__insight-tile-tag {
  display: inline-block;

  margin-top: 8px;
  padding: 3px 9px;

  font-size: 9px;
  font-weight: 800;

  border-radius: 20px;
}

.nof-student-report__bottleneck-visual {
  position: relative;
  width: calc(100% + 32px);
  height: 172px;
  margin: auto -16px -24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(245, 214, 228, 0.8) 100%);
}

.nof-student-report__bottleneck-visual img {
  display: block;
  width: 100%;
  height: 100%;
  /* object-fit: contain; */
  object-position: center bottom;
  opacity: 0.96;
}

.nof-student-report__insight-tile-list {
  margin: 6px 0 0;
  padding: 0;

  list-style: none;

  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nof-student-report__insight-tile-list li {
  display: flex;
  align-items: flex-start;
  gap: 6px;

  font-size: 10.5px;
  line-height: 1.4;

  color: var(--nof-text);
}

.nof-student-report__insight-tile-list svg {
  flex: 0 0 auto;
  margin-top: 2px;
}

.nof-student-report__insight-tile-mountain {
  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 56px;

  opacity: 0.5;
}

.nof-student-report__insight-tile--1 {
  background: linear-gradient(180deg, #ffffff 55%, var(--nof-green-light));
}
.nof-student-report__insight-tile--1 .nof-student-report__insight-tile-number {
  background: var(--nof-green);
}
.nof-student-report__insight-tile--1 .nof-student-report__insight-tile-title {
  color: var(--nof-green);
}

.nof-student-report__insight-tile--low .nof-student-report__insight-tile-title {
  color: var(--nof-red);
}

.nof-student-report__improvement-visual {
  position: relative;
  width: calc(100% + 32px);
  height: 158px;
  margin: auto -16px -24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(220, 244, 231, 0.86));
}

.nof-student-report__improvement-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  opacity: 0.96;
}

.nof-student-report__insight-tile--low .nof-student-report__improvement-visual {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 224, 224, 0.9));
}

.nof-student-report__insight-tile--2 {
  background: linear-gradient(180deg, #ffffff 55%, #fbe9e8);
}
.nof-student-report__insight-tile--2 .nof-student-report__insight-tile-number {
  background: var(--nof-red);
}
.nof-student-report__insight-tile--2 .nof-student-report__insight-tile-title {
  color: var(--nof-red);
}
.nof-student-report__insight-tile--2 .nof-student-report__insight-tile-tag {
  color: var(--nof-red);
  background: #fbe9e8;
}

.nof-student-report__insight-tile--3 {
  background: linear-gradient(180deg, #ffffff 55%, var(--nof-orange-light));
}
.nof-student-report__insight-tile--3 .nof-student-report__insight-tile-number {
  background: var(--nof-orange);
}
.nof-student-report__insight-tile--3 .nof-student-report__insight-tile-title {
  color: var(--nof-orange);
}

.nof-student-report__insight-tile--4 {
  background: linear-gradient(180deg, #ffffff 55%, var(--nof-blue-light));
}
.nof-student-report__insight-tile--4 .nof-student-report__insight-tile-number {
  background: var(--nof-blue);
}
.nof-student-report__insight-tile--4 .nof-student-report__insight-tile-title {
  color: var(--nof-blue);
}

.nof-student-report__insight-tile-result {
  margin-top: 8px;
  padding: 8px 10px;

  background: var(--nof-bg);

  border-radius: 10px;
}

.nof-student-report__insight-tile-result span {
  display: block;

  font-size: 9px;
  font-weight: 700;

  color: var(--nof-text-light);
}

.nof-student-report__insight-tile-result strong {
  display: block;

  margin-top: 2px;

  font-size: 18px;

  color: var(--nof-primary-dark);
}

.nof-student-report__insight-tile-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;

  margin-top: 8px;

  font-size: 10.5px;
  font-weight: 800;

  color: var(--nof-green);
}

.nof-student-report__action-working-visual {
  position: relative;
  width: calc(100% + 32px);
  height: 118px;
  margin: auto -16px -24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(220, 233, 255, 0.85) 100%);
}

.nof-student-report__action-working-visual img {
  display: block;
  width: 100%;
  height: 100%;
  /* object-fit: contain; */
  object-position: center bottom;
  opacity: 0.94;
}

.nof-student-report__action-next-visual {
  position: relative;
  width: calc(100% + 32px);
  height: 172px;
  margin: auto -16px -24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255, 237, 223, 0.94) 100%);
}

.nof-student-report__action-next-visual img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-position: center bottom;
  opacity: 0.96;
  z-index: 1;
}

.nof-student-report__action-next-flag-pole {
  position: absolute;
  right: 18%;
  top: 8%;
  width: 3px;
  height: 31%;
  background: #e45b32;
  z-index: 4;
}

.nof-student-report__action-next-flag {
  position: absolute;
 right: 4%;
    top: 2%;
    width: 43px;
    height: 21px;
  background: #f05a2d;
  clip-path: polygon(0 0, 100% 16%, 78% 43%, 100% 65%, 0 100%);
  z-index: 5;
}

.nof-student-report__action-next-flag span {
  position: absolute;
  display: block;
  background: rgba(255, 255, 255, 0.12);
}

.nof-student-report__action-next-flag span:nth-child(1) {
  left: 20px;
  top: 0;
  width: 2px;
  height: 100%;
  transform: skewX(-15deg);
}

.nof-student-report__action-next-flag span:nth-child(2) {
  left: 38px;
  top: 2px;
  width: 2px;
  height: 88%;
  transform: skewX(-12deg);
}

.nof-student-report__action-next-flag span:nth-child(3) {
  left: 52px;
  top: 4px;
  width: 2px;
  height: 75%;
  transform: skewX(-10deg);
}

.nof-student-report__insight-tile-value--up {
  display: block;

  margin: 6px 0 2px;

  font-size: 15px;

  color: var(--nof-green);
}

.nof-student-report__insight-tile-value--down {
  display: block;

  margin: 6px 0 2px;

  font-size: 15px;

  color: var(--nof-red);
}

.nof-student-report__trend-chart {
  margin-top: 10px;
}

.nof-student-report__trend-chart--down .nof-student-report__trend-chart-area {
  fill: var(--nof-red);
}

.nof-student-report__trend-chart--down .nof-student-report__trend-chart-line {
  stroke: var(--nof-red);
}

.nof-student-report__trend-chart--down .nof-student-report__trend-chart-dot {
  stroke: var(--nof-red);
}

.nof-student-report__trend-chart--down .nof-student-report__trend-chart-dot--current {
  fill: var(--nof-red);
}

.nof-student-report__trend-chart--down .nof-student-report__trend-chart-flag {
  fill: var(--nof-red);
  stroke: var(--nof-red);
}

.nof-student-report__trend-chart-svg {
  width: 100%;
  height: 72px;

  overflow: visible;
}

.nof-student-report__trend-chart-area {
  fill: var(--nof-green);
  opacity: 0.12;
}

.nof-student-report__trend-chart-line {
  fill: none;

  stroke: var(--nof-green);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nof-student-report__trend-chart-dot {
  fill: #ffffff;

  stroke: var(--nof-green);
  stroke-width: 2;
}

.nof-student-report__trend-chart-dot--current {
  fill: var(--nof-green);
}

.nof-student-report__trend-chart-flag {
  fill: var(--nof-green);

  stroke: var(--nof-green);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nof-student-report__trend-chart-labels {
  display: flex;
  justify-content: space-between;
  gap: 6px;

  margin-top: 6px;
}

.nof-student-report__trend-chart-label {
  display: flex;
  flex-direction: column;
  align-items: center;

  flex: 1 1 0;

  text-align: center;
}

.nof-student-report__trend-chart-label-month {
  font-size: 7.5px;
  font-weight: 800;
  letter-spacing: 0.2px;

  color: var(--nof-text-light);
}

.nof-student-report__trend-chart-label-score {
  margin-top: 2px;

  font-size: 10px;
  font-weight: 800;

  color: var(--nof-text);
}

/* =========================================================
   QUOTE BANNER
========================================================= */

.nof-student-report__quote-banner {
  position: relative;
  overflow: hidden;

  margin-top: 24px;
  min-height: 70px;
  padding: 14px 22px;

  display: flex;
  align-items: center;
  gap: 14px;

  color: var(--nof-primary-dark);

  background:
    linear-gradient(100deg, #f0efff 0%, #e9e8ff 48%, #dcdafa 100%);

  border-radius: 12px;
}

.nof-student-report__quote-banner-icon {
  width: 40px;
  height: 40px;

  flex: 0 0 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--nof-primary);
  background: rgba(255, 255, 255, 0.72);

  border: 1px solid rgba(23, 28, 114, 0.12);

  border-radius: 50%;
}

.nof-student-report__quote-banner p {
  position: relative;
  z-index: 2;

  margin: 0;

  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.nof-student-report__quote-banner-image {
    position: absolute;
    right: 171px;
    bottom: -24px;
    z-index: 1;
    width: min(58%, 560px);
    height: 194%;
    object-fit: contain;
    object-position: right bottom;
    pointer-events: none;
}

.nof-student-report__leapscore-image {
    position: absolute;
    right: 1px;
    bottom: -1px;
    z-index: 1;
    width: 136px;
    height: 112px;
    object-fit: contain;
    object-position: right bottom;
    filter: saturate(1.35) contrast(1.15);
    opacity: 0.92;
    pointer-events: none;
}

.nof-student-report__stat-tile--leapscore > :not(.nof-student-report__leapscore-image) {
  position: relative;
  z-index: 2;
  text-align: start;
}

/* =========================================================
   10 MONTH JOURNEY
========================================================= */

.nof-student-report__journey-wrap {
  display: grid;

  grid-template-columns: 1fr 200px;

  gap: 16px;

  align-items: stretch;
}

.nof-student-report__journey-card {
  padding: 22px 24px;

  background: #ffffff;

  border: 1px solid var(--nof-border);
  border-radius: 16px;

  box-shadow: 0 5px 22px rgba(18, 27, 54, 0.04);
}

.nof-student-report__journey-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;

  gap: 12px;

  margin-bottom: 26px;
}

.nof-student-report__journey-header h2 {
  margin: 0;

  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;

  color: var(--nof-text);
}

.nof-student-report__journey-legend {
  display: flex;
  align-items: center;

  gap: 16px;
}

.nof-student-report__journey-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  font-size: 11px;
  font-weight: 600;

  color: var(--nof-text-light);
}

.nof-student-report__journey-legend-dot {
  width: 9px;
  height: 9px;

  border-radius: 50%;
}

.nof-student-report__journey-legend-dot--completed {
  background: var(--nof-green);
}

.nof-student-report__journey-legend-dot--current {
  background: var(--nof-primary);
}

.nof-student-report__journey-legend-dot--upcoming {
  background: #d7dae4;
}

.nof-student-report__journey-track {
  position: relative;

  display: flex;

  gap: 0;
}

.nof-student-report__journey-step {
  position: relative;

  flex: 1;

  min-width: 0;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 5px;
}

.nof-student-report__journey-step:not(:last-child)::after {
  content: "";

  position: absolute;

  top: 19px;
  left: 50%;
  right: -50%;

  height: 2px;

  background: #e2e5ee;

  z-index: 0;
}

.nof-student-report__journey-step--completed:not(:last-child)::after {
  background: var(--nof-green);
}

.nof-student-report__journey-step--clickable {
  cursor: pointer;
}

.nof-student-report__journey-step--clickable:hover .nof-student-report__journey-step-circle,
.nof-student-report__journey-step--clickable:focus-visible .nof-student-report__journey-step-circle {
  transform: scale(1.08);
  box-shadow: 0 0 0 3px var(--nof-green-light);
}

.nof-student-report__journey-step--clickable:focus-visible {
  outline: none;
}

.nof-student-report__journey-step-circle {
  position: relative;

  z-index: 1;

  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;

  border: 2px solid #e2e5ee;
  border-radius: 50%;

  font-size: 13px;
  font-weight: 800;

  color: #a4aabb;
}

.nof-student-report__journey-step--completed .nof-student-report__journey-step-circle {
  background: var(--nof-green);
  border-color: var(--nof-green);

  color: #ffffff;
}

.nof-student-report__journey-step--current .nof-student-report__journey-step-circle {
  background: var(--nof-primary);
  border-color: #ffffff;

  color: #ffffff;

  box-shadow: 0 0 0 3px var(--nof-primary);
}

.nof-student-report__journey-step-check {
  position: absolute;

  right: -2px;
  bottom: -2px;

  width: 15px;
  height: 15px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;

  border: 2px solid var(--nof-green);
  border-radius: 50%;

  color: var(--nof-green);
}

.nof-student-report__journey-step--current .nof-student-report__journey-step-check {
  border-color: var(--nof-primary);

  color: var(--nof-primary);
}

.nof-student-report__journey-step-label {
  margin-top: 6px;

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.4px;

  color: var(--nof-text);
}

.nof-student-report__journey-step-date {
  font-size: 9px;

  color: var(--nof-text-light);
}

.nof-student-report__journey-step-score {
  font-size: 10px;
  font-weight: 800;

  color: var(--nof-text-light);
}

.nof-student-report__journey-step--completed .nof-student-report__journey-step-score,
.nof-student-report__journey-step--current .nof-student-report__journey-step-score {
  color: var(--nof-primary-dark);
}

.nof-student-report__journey-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-top: 18px;
  padding-top: 14px;

  border-top: 1px dashed var(--nof-border);
}

.nof-student-report__journey-footer-completed {
  font-size: 10px;
  font-weight: 700;

  color: var(--nof-green);
}

.nof-student-report__journey-footer-upcoming {
  font-size: 10px;
  font-weight: 700;

  color: var(--nof-text-light);
}

.nof-student-report__journey-aside {
  padding: 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  gap: 8px;

  background: var(--nof-primary-light);

  border: 1px solid var(--nof-border);
  border-radius: 16px;
}

.nof-student-report__journey-aside-icon {
  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--nof-primary);

  background: #ffffff;

  border-radius: 50%;

  box-shadow: 0 5px 15px rgba(23, 28, 114, 0.12);
}

.nof-student-report__journey-aside strong {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.3px;

  color: var(--nof-primary-dark);
}

.nof-student-report__journey-aside span {
  font-size: 10px;
  font-weight: 600;

  color: var(--nof-text-light);
}

@media (max-width: 991px) {

  .nof-student-report__journey-wrap {
    grid-template-columns: 1fr;
  }

  .nof-student-report__journey-track {
    overflow-x: auto;

    min-width: 760px;
  }

  .nof-student-report__journey-card {
    overflow-x: auto;
  }

}

/* =========================================================
   ACTION PLAN
========================================================= */

.nof-student-report__action-plan {
  margin-top: 24px;

  padding: 22px;

  color: #ffffff;

  background:
    linear-gradient(
      120deg,
      #141a6d,
      #252d91
    );

  border-radius: 16px;

  box-shadow:
    0 10px 30px rgba(23, 28, 114, 0.16);
}

.nof-student-report__action-header {
  display: flex;
  align-items: center;

  gap: 12px;
}

.nof-student-report__action-icon {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;

  background: rgba(255, 255, 255, 0.1);

  border-radius: 12px;
}

.nof-student-report__action-header span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.2px;

  color: rgba(255, 255, 255, 0.65);
}

.nof-student-report__action-header h2 {
  margin: 2px 0 0;

  font-size: 20px;

  color: #ffffff;
}

.nof-student-report__action-grid {
  margin-top: 19px;

  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 12px;
}

.nof-student-report__action-item {
  padding: 15px;

  display: flex;
  gap: 11px;

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 11px;
}

.nof-student-report__action-number {
  font-size: 12px;
  font-weight: 900;

  color: #ffd166;
}

.nof-student-report__action-item strong {
  display: block;

  font-size: 12px;
}

.nof-student-report__action-item p {
  margin: 4px 0 0;

  font-size: 9px;
  line-height: 1.5;

  color: rgba(255, 255, 255, 0.65);
}

/* =========================================================
   FOOTER
========================================================= */

.nof-student-report__footer {
  margin-top: 20px;

  padding: 17px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 15px;

  background: #ffffff;

  border: 1px solid var(--nof-border);

  border-radius: 14px;
}

.nof-student-report__footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nof-student-report__footer-logo {
  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  background: var(--nof-primary);

  border-radius: 9px;
}

.nof-student-report__footer-brand strong {
  display: block;

  font-size: 10px;
  font-weight: 800;
}

.nof-student-report__footer-brand span {
  display: block;

  margin-top: 2px;

  font-size: 8px;

  color: var(--nof-text-light);
}

.nof-student-report__footer-right {
  text-align: right;
}

.nof-student-report__footer-right span {
  display: block;

  font-size: 8px;

  color: var(--nof-text-light);
}

.nof-student-report__footer-right strong {
  display: block;

  margin-top: 2px;

  font-size: 10px;

  color: var(--nof-primary);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

  .nof-student-report {
    padding: 18px;
  }

  .nof-student-report__subject-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nof-student-report__overview {
    grid-template-columns: 1fr;
  }

  .nof-student-report__overview-score {
    border-bottom: 1px solid var(--nof-border);
  }

  .nof-student-report__stats-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nof-student-report__action-insights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

/* =========================================================
   TABLET SMALL
========================================================= */

@media (max-width: 991px) {

  .nof-student-report__profile {
    align-items: flex-start;
    flex-direction: column;
  }

  .nof-student-report__profile-status {
    width: 100%;
  }

  .nof-student-report__overview-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .nof-student-report__insights-section {
    grid-template-columns: 1fr;
  }

  .nof-student-report__action-grid {
    grid-template-columns: 1fr;
  }

  .nof-student-report__stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .nof-student-report {
    padding: 10px;
  }

  .nof-student-report__header {
    padding: 13px;

    align-items: flex-start;

    flex-direction: column;

    gap: 12px;
  }

  .nof-student-report__header-left {
    width: 100%;
  }

  .nof-student-report__header-right {
    width: 100%;

    justify-content: space-between;
  }

  .nof-student-report__brand {
    font-size: 13px;
  }

  .nof-student-report__brand-subtitle {
    font-size: 8px;
  }

  .nof-student-report__brand-mark {
    width: 42px;
    height: 42px;
  }

  .nof-student-report__profile {
    position: relative;
    min-height: 164px;
    padding: 18px;
  }

  .nof-student-report__profile-main {
    position: relative;
    z-index: 3;
    width: 100%;
    align-items: flex-start;
  }

  .nof-student-report__profile-info {
    flex: 1 1 auto;
    min-width: 0;
  }

  .nof-student-report__profile-mountain {
    z-index: 1;
    width: 64%;
    opacity: 0.52;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.12) 18%, #000000 52%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.12) 18%, #000000 52%);
  }

  .nof-student-report__profile-mountain-flag,
  .nof-student-report__profile-mountain-pole,
  .nof-student-report__profile-mountain-person,
  .nof-student-report__profile-mountain-tree {
    opacity: 0.72;
  }

  .nof-student-report__avatar {
    width: 55px;
    height: 55px;
    flex-basis: 55px;
  }

  .nof-student-report__profile-info h1 {
    font-size: 22px;
  }

  .nof-student-report__profile-meta {
    gap: 7px 12px;
  }

  .nof-student-report__profile-meta span {
    font-size: 10px;
  }

  .nof-student-report__profile-ids {
    gap: 5px 10px;
  }

  .nof-student-report__profile-ids span {
    font-size: 9px;
  }

  .nof-student-report__overview-score {
    padding: 20px;

    gap: 15px;
  }

  .nof-student-report__big-score {
    font-size: 48px;
  }

  .nof-student-report__score-ring-wrap {
    width: 100px;
    height: 100px;

    flex-basis: 100px;
  }

  .nof-student-report__overview-stats {
    padding: 12px;

    grid-template-columns: 1fr;
  }

  .nof-student-report__stat-card {
    min-height: 85px;

    display: grid;
    grid-template-columns: 40px 1fr;

    align-items: center;

    column-gap: 10px;
  }

  .nof-student-report__stat-icon {
    margin: 0;
  }

  .nof-student-report__subject-grid {
    grid-template-columns: 1fr;
  }

  .nof-student-report__stats-row {
    grid-template-columns: 1fr;
  }

  .nof-student-report__action-insights {
    grid-template-columns: 1fr;
  }

  .nof-student-report__insight-tile {
    min-height: 400px;
  }

  .nof-student-report__bottleneck-visual,
  .nof-student-report__improvement-visual,
  .nof-student-report__action-next-visual,
  .nof-student-report__action-working-visual {
    height: 145px;
  }

  .nof-student-report__powered-by {
    padding-left: 0;
    border-left: none;
  }

  .nof-student-report__quote-banner {
    min-height: 76px;
    padding: 12px 14px;
    gap: 9px;
  }

  .nof-student-report__quote-banner p {
    max-width: 62%;
    font-size: 10px;
  }

  .nof-student-report__quote-banner-image {
    width: 62%;
    opacity: 0.72;
  }

  .nof-student-report__section-title h2 {
    font-size: 16px;
  }

  .nof-student-report__section-title--with-action {
    flex-wrap: wrap;
  }

  .nof-student-report__section-title--with-action .nof-student-report__section-title-action {
    width: 100%;
    margin-left: 0;
    justify-content: center;
  }

  .nof-student-report__section-title p {
    font-size: 9px;
  }

  .nof-student-report__journey-card {
    padding: 16px;
  }

  .nof-student-report__action-plan {
    padding: 17px;
  }

  .nof-student-report__action-header h2 {
    font-size: 17px;
  }

  .nof-student-report__footer {
    align-items: flex-start;

    flex-direction: column;
  }

  .nof-student-report__footer-right {
    text-align: left;
  }

}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .nof-student-report__profile-main {
    width: 100%;
  }

  .nof-student-report__profile {
    min-height: 184px;
    padding: 16px;
  }

  .nof-student-report__profile-mountain {
    width: 58%;
    opacity: 0.3;
  }

  .nof-student-report__profile-info {
    overflow-wrap: anywhere;
  }

  .nof-student-report__profile-meta span,
  .nof-student-report__profile-ids span {
    max-width: 100%;
  }

  .nof-student-report__profile-info h1 {
    font-size: 19px;
  }

  .nof-student-report__profile-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .nof-student-report__overview-score {
    align-items: flex-start;
    flex-direction: column;
  }

  .nof-student-report__score-ring-wrap {
    align-self: center;
  }

  .nof-student-report__subject-card {
    padding: 14px;
  }

  .nof-student-report__insight-card {
    padding: 12px;
  }

  .nof-student-report__insight-card p {
    font-size: 9px;
  }

}

/* =========================================================
   BACK BUTTON
========================================================= */

.nof-student-report__back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  margin-bottom: 16px;
  padding: 9px 16px;

  font-size: 13px;
  font-weight: 700;
  color: var(--nof-primary);

  background: var(--nof-white);

  border: 1px solid var(--nof-border);
  border-radius: 10px;

  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.nof-student-report__back-btn:hover {
  background: var(--nof-primary-light);
  border-color: var(--nof-primary);
}

/* =========================================================
   LOADING STATE
========================================================= */

.nof-student-report__loading {
  min-height: 60vh;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 16px;
}

.nof-student-report__loading p {
  font-size: 14px;
  font-weight: 600;
  color: var(--nof-text-light);
}

.nof-student-report__spinner {
  width: 44px;
  height: 44px;

  border: 4px solid var(--nof-primary-light);
  border-top-color: var(--nof-primary);
  border-radius: 50%;

  animation: nof-student-report-spin 0.8s linear infinite;
}

@keyframes nof-student-report-spin {
  to {
    transform: rotate(360deg);
  }
}

/* =========================================================
   STATUS SCREEN (ERROR / NOT FOUND / INVALID)
========================================================= */

.nof-student-report__status {
  min-height: 70vh;

  display: flex;
  align-items: center;
  justify-content: center;
}

.nof-student-report__status-card {
  width: 100%;
  max-width: 420px;

  padding: 40px 32px;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  background: var(--nof-white);

  border: 1px solid var(--nof-border);
  border-radius: 18px;

  box-shadow: 0 8px 30px rgba(18, 27, 54, 0.06);
}

.nof-student-report__status-icon {
  width: 68px;
  height: 68px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--nof-primary);
  background: var(--nof-primary-light);

  border-radius: 50%;

  margin-bottom: 18px;
}

.nof-student-report__status-card h2 {
  margin: 0 0 8px;

  font-size: 19px;
  font-weight: 800;
  color: var(--nof-text);
}

.nof-student-report__status-card p {
  margin: 0 0 24px;

  font-size: 13.5px;
  line-height: 1.6;
  color: var(--nof-text-light);
}

.nof-student-report__status-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nof-student-report__status-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 10px 18px;

  font-size: 13px;
  font-weight: 700;
  color: var(--nof-primary);

  background: var(--nof-white);

  border: 1px solid var(--nof-border);
  border-radius: 10px;

  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.nof-student-report__status-btn:hover {
  background: var(--nof-primary-light);
  border-color: var(--nof-primary);
}

.nof-student-report__status-btn--primary {
  color: var(--nof-white);
  background: var(--nof-primary);
  border-color: var(--nof-primary);
}

.nof-student-report__status-btn--primary:hover {
  background: var(--nof-primary-dark);
  border-color: var(--nof-primary-dark);
}
