:root {
  --navy: #003b82;
  --navy-dark: #002f69;
  --blue: #00448f;
  --orange: #f7a800;
  --yellow: #fff0b9;
  --yellow-soft: #fff4cf;
  --cyan: #54d7dc;
  --text: #101e38;
  --muted: #4d5564;
  --line: #d9dee8;
  --white: #ffffff;

  --page-width: 1120px;

  --radius: 7px;

  --shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}


/* ============================================================
   GLOBAL
   ============================================================ */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  background: #fff;
  color: var(--text);

  font-family: "Nunito Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.45;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}


/* ============================================================
   SECTION WIDTH
   ============================================================ */

.section-shell {
  width: min(var(--page-width), calc(100% - 80px));
  margin-inline: auto;
}


/* ============================================================
   TOP MOVING ANNOUNCEMENT BAR
   ============================================================ */

.top-announcement {
  width: 100%;
  height: 25px;

  background: #f9a900;

  overflow: hidden;
  position: relative;

  display: flex;
  align-items: center;
}

.announcement-track {
  display: flex;

  width: max-content;

  animation: announcement-scroll 30s linear infinite;
}

.announcement-content {
  display: flex;
  align-items: center;

  flex-shrink: 0;
}

.announcement-content span {
  display: inline-block;

  white-space: nowrap;

  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 400;

  color: #111;

  margin-right: 40px;
}

@keyframes announcement-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  height: 112px;

  border-bottom: 1px solid #ddd;

  background: #fff;
}

.header-inner {
  width: min(1080px, calc(100% - 80px));

  height: 100%;

  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 35px;
}

.brand {
  display: flex;
  align-items: center;

  gap: 12px;

  min-width: 230px;
}

.brand-copy {
  display: flex;
  flex-direction: column;

  line-height: 1;
}

.brand-copy strong {
  color: var(--blue);

  font-family: Montserrat, sans-serif;

  font-size: 19px;
  font-weight: 800;
}

.brand-copy span {
  margin-top: 5px;

  color: #667084;

  font-size: 10px;
}


/* ============================================================
   MAIN NAVIGATION
   ============================================================ */

/* Desktop navigation container */
.main-nav {
  display: flex;
  align-items: center;

  gap: 2px;

  padding: 13px 18px;

  background: var(--navy-dark);

  border: 2px solid var(--orange);

  border-radius: 34px;

  color: #fff;

  position: relative;
}


/* Navigation links wrapper */
.nav-menu {
  display: flex;
  align-items: center;

  gap: 2px;
}


/* Navigation links */
.main-nav a {
  position: relative;

  padding: 8px 13px;

  color: #fff;

  font-size: 11px;

  white-space: nowrap;

  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}


/* Navigation hover */
.main-nav a:hover {
  color: var(--orange);
}


/* Register button */
.main-registerbtn a:hover {
  color: #fff;
}

.main-nav .nav-register {
  padding: 8px 13px;

  border: 1px solid #fff;

  border-radius: 5px;
}


/* ============================================================
   HAMBURGER
   ============================================================ */

.hamburger {
  display: none;

  width: 42px;
  height: 42px;

  padding: 8px;

  border: 1px solid var(--orange);

  border-radius: 8px;

  background: transparent;

  cursor: pointer;

  flex-direction: column;

  justify-content: center;
  align-items: center;

  gap: 5px;
}

.hamburger span {
  display: block;

  width: 23px;
  height: 2px;

  background: #fff;

  border-radius: 5px;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}


/* ============================================================
   LEARNSMART LOGO
   ============================================================ */

.learnsmart-link {
  display: inline-block;

  text-decoration: none;
  cursor: pointer;
}

.learnsmart-logo {
  display: block;

  width: 90px;
  height: auto;
}


/* ============================================================
   HERO
   ============================================================ */

.hero {
  min-height: 515px;

  display: grid;

  grid-template-columns: 1fr 1.03fr;

  align-items: center;

  gap: 50px;

  padding-block: 55px 65px;
}

.eyebrow {
  margin: 0 0 7px;

  color: var(--orange);

  font-family: Montserrat, sans-serif;

  font-size: 10px;
  font-weight: 700;

  text-transform: uppercase;
}

.eyebrow.blue {
  color: var(--blue);
}

.eyebrow.yellow {
  color: #ffb000;
}

.hero h1 {
  margin: 0;

  color: var(--navy);

  font-family: Montserrat, sans-serif;

  font-size: clamp(42px, 4.2vw, 57px);

  line-height: 1.12;

  letter-spacing: -1.8px;

  font-weight: 800;
}

.hero h2 {
  margin: 25px 0 10px;

  color: #f2a300;

  font-family: Montserrat, sans-serif;

  font-size: 19px;
  font-weight: 600;
}

.hero-description {
  max-width: 515px;

  margin: 0;

  color: #343c4a;

  font-size: 12px;

  line-height: 1.7;
}


/* ============================================================
   BUTTONS
   ============================================================ */

.hero-actions {
  display: flex;

  gap: 18px;

  flex-wrap: wrap;

  margin-top: 19px;
}

.btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 12px;

  min-height: 35px;

  padding: 7px 13px;

  border-radius: 7px;

  font-size: 10px;
  font-weight: 800;

  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}


/* BUTTON HOVER EFFECT */

.btn:hover {
  transform: translateY(-2px);

  box-shadow: 0 5px 12px rgba(0, 59, 130, 0.12);
}

.btn span {
  font-size: 18px;

  line-height: 0;
}

.btn-outline-orange {
  border: 1px solid var(--orange);

  color: var(--blue);
}

.btn-outline-orange:hover {
  background: var(--orange);

  color: #15233c;
}

.btn-outline-blue {
  border: 1px solid var(--blue);

  color: var(--blue);
}

.btn-outline-blue:hover {
  background: var(--blue);

  color: #fff;
}

.btn-dark-outline {
  border: 1px solid var(--orange);

  color: #fff;
}

.btn-dark-outline:hover {
  background: var(--orange);

  color: #15233c;
}


/* ============================================================
   HERO STATS
   ============================================================ */

.hero-stats {
  display: flex;
  align-items: center;

  gap: 33px;

  margin-top: 27px;
}

.stat {
  display: flex;
  align-items: center;

  gap: 8px;

  color: #202a38;

  font-size: 9px;

  line-height: 1.1;
}

.stat strong {
  font-weight: 800;
}

.stat-icon-placeholder {
  width: 30px;
  height: 30px;

  display: inline-block;

  flex: 0 0 30px;
}


/* ============================================================
   HERO IMAGE
   ============================================================ */

.hero-visual {
  position: relative;

  display: flex;

  justify-content: flex-end;

  width: 100%;
}

.hero-main-image {
  position: relative;

  width: min(575px, 100%);
  height: 500px;

  object-fit: cover;
  object-position: center;

  display: block;

  border-radius: 110px 0 0 110px;

  border-top: 2px solid var(--orange);
  border-left: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);

  background: #fff;

  box-shadow:
    0 8px 25px rgba(0, 59, 130, 0.06);

  overflow: hidden;
}


/* ============================================================
   OLD IMAGE PLACEHOLDER
   ============================================================ */

.image-placeholder {
  position: relative;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      rgba(0, 59, 130, 0.06),
      rgba(247, 168, 0, 0.08)
    );

  border: 1px dashed rgba(0, 59, 130, 0.25);

  color: #738098;

  display: grid;

  place-items: center;

  text-align: center;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 0.8px;
}

.hero-image-placeholder {
  width: min(575px, 100%);
  height: 500px;

  border-radius: 110px 0 0 110px;
}


/* ============================================================
   SECTION TITLES
   ============================================================ */

.section-title {
  margin: 0 0 30px;

  color: var(--navy);

  font-family: Montserrat, sans-serif;

  font-size: clamp(22px, 2.2vw, 30px);

  font-weight: 800;

  line-height: 1.2;
}

.section-title.left {
  text-align: left;
}


/* ============================================================
   WHY THIS COMPETITION MATTERS
   ============================================================ */

.why {
  padding-block: 20px 56px;
}

.three-cards {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: clamp(24px, 3.5vw, 42px);

  align-items: stretch;
}

.feature-card {
  width: 100%;
  min-width: 0;

  height: 280px;

  padding: 12px 15px 14px;

  border: 3px solid;

  border-radius: 7px;

  display: flex;

  flex-direction: column;

  overflow: hidden;

  background: #fff;
}

.orange-border {
  border-color: var(--orange);
}

.blue-border {
  border-color: var(--blue);
}


/* CARD IMAGES */

.feature-card img {
  width: 100%;
  height: 165px;

  display: block;

  flex-shrink: 0;

  object-fit: contain;

  object-position: center;

  border-radius: 4px;
}


/* CARD HEADINGS */

.feature-card h3 {
  margin: 10px 0 6px;

  color: var(--blue);

  font-family: Montserrat, sans-serif;

  font-size: clamp(14px, 1.25vw, 17px);

  font-weight: 700;

  line-height: 1.2;
}


/* CARD PARAGRAPHS */

.feature-card p {
  margin: 0;

  color: #293243;

  font-family: Arial, sans-serif;

  font-size: clamp(11px, 1vw, 14px);

  font-weight: 400;

  line-height: 1.4;
}


/* ============================================================
   4-WAY TEST
   ============================================================ */

.four-way {
  display: grid;

  grid-template-columns: 42% 58%;

  align-items: center;

  min-height: 245px;

  margin-top: 25px;

  border: none;
}


/* ============================================================
   ESSAY CHALLENGE
   ============================================================ */

.essay-challenge {
  box-sizing: border-box;

  width: 100%;

  min-height: 157px;

  padding: 25px 30px 22px;

  background: var(--navy);

  color: #fff;

  border-radius: 7px;

  display: flex;

  flex-direction: column;

  justify-content: center;
}

.quote-mark {
  height: 28px;

  margin-bottom: 5px;

  color: var(--orange);

  font-family: Georgia, serif;

  font-size: 58px;

  font-weight: 800;

  line-height: 0.45;
}

.essay-challenge h2 {
  margin: 0 0 8px;

  color: #fff;

  font-family: Montserrat, sans-serif;

  font-size: 26px;

  font-weight: 800;

  line-height: 1.15;
}

.challenge-title {
  margin: 0 0 8px;

  color: var(--orange);

  font-size: 13px;

  font-weight: 700;

  line-height: 1.3;
}

.essay-challenge p:last-child {
  max-width: 430px;

  margin: 0;

  color: #fff;

  font-size: 12px;

  line-height: 1.45;
}


/* ============================================================
   4-WAY TEST PANEL
   ============================================================ */

.test-panel {
  box-sizing: border-box;

  width: 100%;

  padding-left: 35px;
}

.test-panel > h2 {
  width: 100%;

  margin: 0;

  padding: 0 0 8px;

  color: var(--navy);

  border-bottom: 2px solid var(--orange);

  font-family: Montserrat, sans-serif;

  font-size: 20px;

  font-weight: 700;

  line-height: 1.2;
}

.test-grid {
  width: 100%;

  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  margin-top: 12px;
}

.test-item {
  box-sizing: border-box;

  min-width: 0;

  padding: 0 14px;

  border-right: 1px solid #aeb8c8;
}

.test-item:first-child {
  padding-left: 14px;
}

.test-item:last-child {
  border-right: none;
}

.number {
  width: 27px;
  height: 27px;

  margin-bottom: 10px;

  display: inline-grid;

  place-items: center;

  border-radius: 50%;

  background: var(--orange);

  color: #15233c;

  font-size: 11px;

  font-weight: 800;

  line-height: 1;
}

.test-item h3 {
  margin: 0 0 25px;

  color: #222c3e;

  font-family: Arial, sans-serif;

  font-size: 13px;

  font-weight: 600;

  line-height: 1.35;
}

.test-item p {
  margin: 0;

  color: #414b5b;

  font-family: Arial, sans-serif;

  font-size: 11px;

  line-height: 1.45;
}


/* ============================================================
   JUDGING AND INTEGRITY
   ============================================================ */

.judging {
  width: 100%;

  padding: 0 0 15px;
}

.judging .section-shell {
  width: min(var(--page-width), calc(100% - 80px));

  margin-inline: auto;
}

.judging .section-title {
  margin: 0 0 30px;

  color: var(--navy);

  font-family: Montserrat, sans-serif;

  font-size: clamp(24px, 2.1vw, 30px);

  font-weight: 800;

  line-height: 1.15;

  text-align: left;
}

.judging-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 42px;

  align-items: stretch;
}

.judging-card {
  position: relative;

  width: 100%;
  min-width: 0;

  height: 145px;

  padding: 18px 17px;

  border: 3px solid;

  border-radius: 7px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  background: #fff;

  overflow: hidden;
}

.judging-card > div {
  min-width: 0;
}

.judging-card h3 {
  margin: 0 0 10px;

  color: var(--navy);

  font-family: Montserrat, sans-serif;

  font-size: 13px;

  font-weight: 700;

  line-height: 1.25;
}

.judging-card p {
  max-width: 290px;

  margin: 0;

  color: #303847;

  font-family: "Nunito Sans", Arial, sans-serif;

  font-size: 10px;

  font-weight: 400;

  line-height: 1.4;
}

.judging-icon-placeholder {
  align-self: flex-end;

  margin-top: auto;

  color: var(--cyan);

  font-size: 29px;

  line-height: 1;
}


/* ============================================================
   ROTARY DIVIDER
   ============================================================ */

.rotary-divider {
  position: relative;

  width: 100%;
  height: 60px;

  display: flex;
  align-items: center;

  margin: 0;

  overflow: visible;
}

.divider-line {
  height: 8px;

  flex: 1;

  background: var(--orange);
}

.rotary-wheel {
  position: relative;

  z-index: 5;

  width: 100px;
  height: 100px;

  flex: 0 0 100px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #fff;

  border-radius: 50%;
}

.rotary-wheel img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  display: block;

  animation: rotarySpin 3s linear infinite;
}

@keyframes rotarySpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}


/* ============================================================
   WHO CAN JOIN / ELIGIBILITY
   ============================================================ */

.eligibility {
  width: min(var(--page-width), calc(100% - 80px));

  margin-inline: auto;

  padding: 55px 0 60px;
}

.eligibility-box {
  width: 100%;

  min-height: 300px;

  padding: 43px 45px;

  display: grid;

  grid-template-columns: 38% 62%;

  align-items: center;

  background: #ffefb8;

  border-radius: 7px;
}

.eligibility-intro {
  min-width: 0;
}

.eligibility-intro .eyebrow {
  margin: 0 0 9px;

  color: var(--blue);

  font-size: 9px;

  font-weight: 800;

  line-height: 1.2;
}

.eligibility-intro h2 {
  margin: 0 0 10px;

  color: var(--navy);

  font-family: Montserrat, sans-serif;

  font-size: 25px;

  font-weight: 800;

  line-height: 1.15;
}

.eligibility-intro p:last-child {
  max-width: 285px;

  margin: 0;

  color: #303743;

  font-family: "Nunito Sans", Arial, sans-serif;

  font-size: 10px;

  font-weight: 400;

  line-height: 1.45;
}


/* ============================================================
   REQUIREMENTS
   ============================================================ */

.requirements {
  min-width: 0;

  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 7px 12px;
}

.requirement {
  width: 100%;
  min-width: 0;

  min-height: 48px;

  padding: 8px 11px;

  display: flex;

  align-items: center;

  gap: 9px;

  border-radius: 6px;

  background: #fff;

  color: var(--orange);

  font-family: Arial, sans-serif;

  font-size: 19px;

  line-height: 1;
}

.requirement span {
  min-width: 0;

  color: #222c3d;

  font-family: "Nunito Sans", Arial, sans-serif;

  font-size: 10px;

  font-weight: 600;

  line-height: 1.25;
}


/* ============================================================
   PERSPECTIVE
   ============================================================ */

.perspective {
  padding-bottom: 105px;
}

.perspective-banner {
  position: relative;

  min-height: 185px;

  padding: 32px 35px;

  background: var(--navy-dark);

  border-radius: 12px;

  color: #fff;
}

.perspective-banner h2 {
  margin: 0 0 5px;

  font-family: Montserrat, sans-serif;

  font-size: 27px;

  font-weight: 800;

  line-height: 1.05;
}

.perspective-banner p:not(.eyebrow) {
  max-width: 500px;

  margin: 0;

  font-size: 10px;

  line-height: 1.35;
}

.perspective .btn-dark-outline {
  position: absolute;

  right: 26px;
  bottom: 24px;
}


/* ============================================================
   PRIZES
   ============================================================ */

.prizes {
  padding-bottom: 60px;
}

.prize-heading {
  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 18px;

  padding-inline: 29px;
}

.prize-heading h2 {
  margin: 0;

  color: #202d50;

  font-family: Montserrat, sans-serif;

  font-size: 30px;
}

.prize-heading h2 span {
  color: #16254a;
}

.trophy-placeholder {
  font-size: 46px;
}

.prize-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 10px;
}

.prize-card {
  min-height: 110px;

  padding: 14px 17px;

  border: 1px solid #cbd0d9;

  border-radius: 2px;

  display: flex;

  flex-direction: column;

  justify-content: center;
}

.prize-card.first {
  background: #ffe8a0;

  border-color: #f0be36;
}

.prize-card.finalist {
  color: #fff;

  background: var(--navy);

  border-color: var(--navy);
}

.prize-symbol {
  margin-bottom: 7px;

  font-size: 14px;
}

.prize-card small {
  margin-bottom: 2px;

  font-size: 9px;
}

.prize-card strong {
  font-family: Montserrat, sans-serif;

  font-size: 15px;
}

.prize-note {
  margin: 11px 0 0;

  color: #718099;

  font-size: 9px;
}


/* ============================================================
   FAQ
   ============================================================ */

.faq {
  padding: 15px 25px 70px;

  width: 100%;
}

.centered {
  text-align: center;
}

.faq .eyebrow {
  margin-bottom: 10px;
}

.faq-title {
  margin: 0 0 30px;

  color: var(--navy);

  text-align: center;

  font-family: Montserrat, sans-serif;

  font-size: 31px;

  font-weight: 700;

  line-height: 1.2;
}

.faq-grid {
  width: 100%;

  max-width: 770px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    repeat(2, 370px);

  column-gap: 40px;

  align-items: start;
}

.faq-column {
  display: flex;

  flex-direction: column;

  gap: 21px;

  width: 370px;
}

.faq-item {
  width: 370px;

  background: var(--navy);

  color: #fff;

  border-radius: 11px;

  overflow: hidden;

  border: none;
}

.faq-item summary {
  width: 100%;

  min-height: 40px;

  padding: 10px 13px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 15px;

  cursor: pointer;

  list-style: none;

  user-select: none;

  font-family: Arial, sans-serif;

  font-size: 12.5px;

  font-weight: 700;

  line-height: 1.3;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::marker {
  display: none;
}

.faq-item summary > span:first-child {
  flex: 1;
}

.faq-icon {
  width: 18px;
  height: 18px;

  min-width: 18px;

  border-radius: 50%;

  background: #fff;

  position: relative;

  display: flex;

  align-items: center;
  justify-content: center;

  transition: transform 0.25s ease;
}

.faq-icon::after {
  content: "";

  width: 5px;
  height: 5px;

  border-right: 1.5px solid var(--navy);
  border-bottom: 1.5px solid var(--navy);

  transform: rotate(45deg);

  margin-top: -3px;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 13px 14px;
}

.faq-answer p {
  margin: 0;

  color: #eef5ff;

  font-family: Arial, sans-serif;

  font-size: 10.9px;

  line-height: 1.5;
}


/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  min-height: 140px;

  background: var(--navy);

  color: #fff;
}

.footer-inner {
  width: min(1080px, calc(100% - 80px));

  min-height: 140px;

  margin: auto;

  display: grid;

  grid-template-columns:
    2.1fr 1fr 0.75fr 0.65fr;

  align-items: center;
}

.footer-brand,
.footer-column {
  min-height: 72px;

  padding: 0 18px;

  border-right: 1px solid rgba(255, 255, 255, 0.45);
}

.footer-brand {
  padding-left: 0;

  display: flex;

  align-items: center;

  gap: 18px;
}

.footer-brand p {
  max-width: 230px;

  margin: 0;

  font-size: 8px;

  line-height: 1.35;
}

.footer-logo {
  display: flex;

  align-items: center;

  gap: 8px;

  font-family: Montserrat, sans-serif;

  font-size: 17px;
}

.footer-column h3 {
  margin: 0 0 7px;

  font-size: 8px;

  font-weight: 800;
}

.footer-column p,
.footer-column a {
  display: block;

  margin: 2px 0;

  color: #f4f8ff;

  font-size: 7px;

  line-height: 1.25;
}

.social-row {
  display: flex;

  gap: 10px;

  margin-top: 8px;
}

.social-row a {
  width: 18px;
  height: 18px;

  display: grid;

  place-items: center;

  border: 1px solid #fff;

  border-radius: 50%;

  font-size: 7px;
}


/* ============================================================
   LARGE / MEDIUM SCREENS
   ============================================================ */

@media (max-width: 1100px) {

  .judging .section-shell,
  .eligibility {
    width: calc(100% - 60px);
  }

  .judging-grid {
    gap: 28px;
  }

  .judging-card {
    padding: 16px 15px;
  }

  .judging-card h3 {
    font-size: 12px;
  }

  .judging-card p {
    font-size: 9px;
  }

  .eligibility-box {
    padding: 38px 35px;
  }

  .eligibility-intro h2 {
    font-size: 23px;
  }

  .requirement span {
    font-size: 9px;
  }
}


/* ============================================================
   TABLET — 1000px
   ============================================================ */

@media (max-width: 1000px) {

  .header-inner {
    width: calc(100% - 40px);
  }

  .main-nav {
    gap: 0;
  }

  .main-nav a {
    padding-inline: 8px;

    font-size: 9px;
  }

  .hero {
    gap: 25px;
  }

  .section-shell {
    width: calc(100% - 50px);
  }

  .three-cards,
  .judging-grid {
    gap: 20px;
  }

  .eligibility-box {
    padding: 30px;
  }

  .footer-inner {
    width: calc(100% - 50px);
  }
}


/* ============================================================
   TABLET — 850px
   ============================================================ */

@media (max-width: 850px) {

  .judging .section-shell,
  .eligibility {
    width: calc(100% - 40px);
  }

  .judging .section-title {
    font-size: 25px;

    margin-bottom: 24px;
  }

  .judging-grid {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));

    gap: 18px;
  }

  .judging-card {
    height: 155px;

    padding: 15px 13px;
  }

  .judging-card h3 {
    font-size: 12px;
  }

  .judging-card p {
    font-size: 9px;
  }

  .judging-icon-placeholder {
    font-size: 25px;
  }


  /* FEATURE CARDS */

  .three-cards {
    gap: 22px;
  }

  .feature-card {
    height: 270px;

    padding: 10px 12px 13px;
  }

  .feature-card img {
    height: 155px;
  }


  /* ROTARY */

  .rotary-divider {
    height: 44px;
  }

  .rotary-wheel {
    width: 72px;
    height: 72px;

    flex-basis: 72px;
  }


  /* ELIGIBILITY */

  .eligibility {
    padding-block: 45px 50px;
  }

  .eligibility-box {
    min-height: 300px;

    padding: 35px 28px;

    grid-template-columns: 35% 65%;
  }

  .eligibility-intro h2 {
    font-size: 22px;
  }

  .eligibility-intro p:last-child {
    font-size: 9px;
  }

  .requirements {
    gap: 7px 10px;
  }

  .requirement {
    min-height: 46px;

    padding: 7px 9px;
  }

  .requirement span {
    font-size: 9px;
  }
}


/* ============================================================
   TABLET / SMALL LAPTOP — 760px
   ============================================================ */

@media (max-width: 760px) {

  .site-header {
    height: auto;
  }

  .header-inner {
    width: calc(100% - 30px);

    min-height: 78px;

    padding-block: 15px;

    flex-direction: row;

    align-items: center;

    justify-content: space-between;

    gap: 15px;
  }


  /* ROTARY LOGO */

  .brand {
    min-width: 0;

    flex: 1;
  }

  .brand img {
    width: 190px !important;

    height: auto;
  }


  /* LEARNSMART */

  .learnsmart-link {
    display: none;
  }


  /* MAIN NAV */

  .main-nav {
    width: auto;

    padding: 7px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: nowrap;

    border-radius: 14px;

    position: relative;
  }


  /* HAMBURGER */

  .hamburger {
    display: flex;

    width: 42px;
    height: 38px;

    padding: 7px;

    border: none;

    background: transparent;
  }


  /* NAV DROPDOWN */

  .nav-menu {
    position: absolute;

    top: calc(100% + 10px);

    right: 0;
    left: auto;

    width: 230px;

    padding: 12px;

    display: flex;

    flex-direction: column;

    align-items: stretch;

    gap: 5px;

    background: var(--navy-dark);

    border: 2px solid var(--orange);

    border-radius: 14px;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transform: translateY(-10px);

    transition:
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s ease;

    z-index: 1000;
  }


  /* OPEN MENU */

  .nav-menu.open {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform: translateY(0);
  }


  /* MOBILE LINKS */

  .nav-menu > a {
    width: 100%;

    padding: 12px 14px;

    border-radius: 7px;

    text-align: left;

    font-size: 13px;
  }

  .nav-menu > a:hover {
    background: rgba(247, 168, 0, 0.15);

    color: var(--orange);
  }


  /* REGISTER */

  .nav-menu .main-registerbtn {
    width: 100%;

    margin-top: 5px;
  }

  .nav-menu .nav-register {
    display: block;

    width: 100%;

    padding: 11px;

    text-align: center;
  }


  /* HAMBURGER -> X */

  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }


  /* HERO */

  .hero {
    grid-template-columns: 1fr;

    padding-top: 40px;
  }


  /* HERO IMAGE */

  .hero-visual {
    justify-content: center;
  }

  .hero-main-image {
    width: 100%;

    height: 340px;

    border-radius: 70px 0 0 70px;

    border-top-width: 2px;
    border-left-width: 2px;
    border-bottom-width: 2px;
  }


  /* OLD PLACEHOLDER */

  .hero-image-placeholder {
    width: 100%;

    height: 340px;
  }


  /* SECTIONS */

  .three-cards,
  .judging-grid,
  .prize-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }


  /* 4-WAY */

  .four-way {
    grid-template-columns: 1fr;

    gap: 30px;

    min-height: 0;
  }

  .essay-challenge {
    border-radius: 7px;
  }

  .test-panel {
    padding-left: 0;
  }

  .test-grid {
    grid-template-columns: 1fr 1fr;
  }

  .test-item:nth-child(2) {
    border-right: none;
  }

  .test-item:nth-child(3),
  .test-item:nth-child(4) {
    border-top: 1px solid #aeb8c8;
  }


  /* ELIGIBILITY */

  .eligibility-box {
    grid-template-columns: 1fr;

    gap: 28px;
  }


  /* PERSPECTIVE */

  .perspective {
    padding-bottom: 55px;
  }

  .perspective-banner {
    min-height: 220px;
  }

  .perspective .btn-dark-outline {
    position: static;

    margin-top: 25px;
  }


  /* PRIZES */

  .prize-heading {
    padding-inline: 0;
  }


  /* FOOTER */

  .footer-inner {
    padding-block: 25px;

    grid-template-columns: 1fr 1fr;

    gap: 20px 0;
  }

  .footer-brand {
    border-right: 0;

    grid-column: 1 / -1;
  }


  /* FAQ */

  .faq {
    padding-left: 20px;

    padding-right: 20px;
  }

  .faq-grid {
    max-width: 370px;

    grid-template-columns: 1fr;

    gap: 21px;
  }

  .faq-column {
    width: 100%;
  }

  .faq-item {
    width: 100%;
  }
}


/* ============================================================
   PHONE — 650px
   ============================================================ */

@media (max-width: 650px) {

  .section-shell {
    width: calc(100% - 30px);
  }


  /* JUDGING */

  .judging {
    padding-bottom: 5px;
  }

  .judging .section-shell,
  .eligibility {
    width: calc(100% - 28px);
  }

  .judging .section-title {
    font-size: 23px;

    margin-bottom: 20px;
  }

  .judging-grid {
    grid-template-columns: 1fr;

    gap: 16px;
  }

  .judging-card {
    height: auto;

    min-height: 150px;

    padding: 18px 16px;
  }

  .judging-card h3 {
    font-size: 15px;

    margin-bottom: 8px;
  }

  .judging-card p {
    max-width: 100%;

    font-size: 12px;

    line-height: 1.45;
  }

  .judging-icon-placeholder {
    font-size: 27px;
  }


  /* ROTARY DIVIDER */

  .rotary-divider {
    height: 42px;
  }

  .divider-line {
    height: 6px;
  }

  .rotary-wheel {
    width: 68px;
    height: 68px;

    flex-basis: 68px;
  }


  /* ELIGIBILITY */

  .eligibility {
    padding-block: 35px 45px;
  }

  .eligibility-box {
    min-height: 0;

    padding: 30px 22px;

    display: grid;

    grid-template-columns: 1fr;

    gap: 25px;
  }

  .eligibility-intro h2 {
    font-size: 24px;
  }

  .eligibility-intro p:last-child {
    max-width: 100%;

    font-size: 12px;
  }

  .requirements {
    grid-template-columns: 1fr;

    gap: 8px;
  }

  .requirement {
    min-height: 50px;

    padding: 9px 12px;
  }

  .requirement span {
    font-size: 12px;

    line-height: 1.3;
  }


  /* WHY CARDS */

  .why {
    padding-block: 18px 40px;
  }

  .section-title {
    margin-bottom: 22px;
  }

  .three-cards {
    grid-template-columns: 1fr;

    gap: 20px;
  }

  .feature-card {
    height: auto;

    min-height: 300px;

    padding: 14px;
  }

  .feature-card img {
    width: 100%;

    height: 190px;
  }

  .feature-card h3 {
    margin-top: 12px;

    margin-bottom: 7px;

    font-size: 17px;
  }

  .feature-card p {
    font-size: 14px;

    line-height: 1.45;
  }


  /* 4-WAY TEST */

  .four-way {
    display: flex;

    flex-direction: column;

    gap: 30px;

    margin-top: 25px;
  }

  .essay-challenge {
    width: 100%;

    min-height: 0;

    padding: 24px 22px;

    border-radius: 7px;
  }

  .quote-mark {
    font-size: 56px;
  }

  .essay-challenge h2 {
    font-size: 23px;
  }

  .challenge-title {
    font-size: 13px;
  }

  .essay-challenge p:last-child {
    max-width: none;

    font-size: 13px;

    line-height: 1.5;
  }


  /* TEST PANEL */

  .test-panel {
    width: 100%;

    padding: 0;
  }

  .test-panel > h2 {
    font-size: 20px;

    padding-bottom: 8px;
  }


  /* TWO COLUMNS */

  .test-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    margin-top: 15px;
  }

  .test-item {
    padding: 12px 15px 20px;

    border-right: 1px solid #aeb8c8;

    border-bottom: 1px solid #aeb8c8;
  }

  .test-item:nth-child(2),
  .test-item:nth-child(4) {
    border-right: none;
  }

  .test-item:nth-child(3),
  .test-item:nth-child(4) {
    border-bottom: none;
  }

  .number {
    width: 30px;
    height: 30px;

    margin-bottom: 11px;

    font-size: 11px;
  }

  .test-item h3 {
    margin-bottom: 18px;

    font-size: 14px;

    line-height: 1.35;
  }

  .test-item p {
    font-size: 12px;

    line-height: 1.45;
  }


  /* FAQ */

  .faq {
    padding-left: 15px;

    padding-right: 15px;
  }

  .faq-title {
    font-size: 26px;
  }

  .faq-item summary {
    min-height: 42px;

    padding: 11px 12px;

    font-size: 9px;
  }
}


/* ============================================================
   VERY SMALL PHONES — 480px
   ============================================================ */

@media (max-width: 480px) {

  .section-shell {
    width: calc(100% - 28px);
  }

  .hero h1 {
    font-size: 39px;
  }

  .hero-stats {
    gap: 15px;

    flex-wrap: wrap;
  }


  /* HERO IMAGE */

  .hero-main-image {
    height: 300px;

    border-radius: 55px 0 0 55px;
  }


  /* REQUIREMENTS */

  .requirements {
    grid-template-columns: 1fr;
  }


  /* TEST */

  .test-grid {
    grid-template-columns: 1fr;
  }

  .test-item,
  .test-item:nth-child(2),
  .test-item:nth-child(3),
  .test-item:nth-child(4) {
    padding: 15px 5px 20px;

    border-right: none;

    border-bottom: 1px solid #aeb8c8;
  }

  .test-item:last-child {
    border-bottom: none;
  }

  .essay-challenge {
    padding: 22px 19px;
  }

  .essay-challenge h2 {
    font-size: 21px;
  }

  .challenge-title {
    font-size: 12px;
  }

  .essay-challenge p:last-child {
    font-size: 12px;
  }

  .test-item h3 {
    font-size: 15px;

    margin-bottom: 12px;
  }

  .test-item p {
    font-size: 13px;
  }


  /* FAQ */

  .faq-title {
    font-size: 25px;
  }


  /* FOOTER */

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-column {
    padding: 16px 0;

    border-right: 0;

    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }
}


/* ============================================================
   SMALL PHONES — 430px
   ============================================================ */

@media (max-width: 430px) {

  .judging .section-shell,
  .eligibility {
    width: calc(100% - 24px);
  }

  .judging .section-title {
    font-size: 21px;
  }

  .judging-card {
    min-height: 145px;

    padding: 16px 14px;
  }

  .judging-card h3 {
    font-size: 14px;
  }

  .judging-card p {
    font-size: 11px;
  }

  .eligibility-box {
    padding: 25px 18px;
  }

  .eligibility-intro h2 {
    font-size: 22px;
  }

  .eligibility-intro p:last-child {
    font-size: 11px;
  }

  .requirement {
    min-height: 48px;
  }

  .requirement span {
    font-size: 11px;
  }

  .rotary-wheel {
    width: 62px;
    height: 62px;

    flex-basis: 62px;
  }
}


/* ============================================================
   EXTRA SMALL PHONES — 400px
   ============================================================ */

@media (max-width: 400px) {

  .feature-card {
    min-height: 285px;
  }

  .feature-card img {
    height: 175px;
  }

  .feature-card h3 {
    font-size: 16px;
  }

  .feature-card p {
    font-size: 13px;
  }
}