@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap");

:root {
  --black: #000;
  --white: #fff;
  --paper: #f5f5fa;
  --yellow: #ffdb58;
  --muted: #a2a2a8;
  --edge: #353535;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
input,
select {
  font: inherit;
}

.page-shell {
  width: min(100%, 1024px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 62px 88px;
  border-inline: 1px solid var(--edge);
  background: var(--black);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 172px;
  padding: 32px 36px 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}

.brand img {
  width: 76px;
  height: 76px;
  border-radius: 12px;
  object-fit: cover;
}

.brand > span {
  display: grid;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  line-height: 0.82;
  letter-spacing: -0.07em;
}

.brand small {
  margin-top: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: -0.04em;
  text-align: right;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-size: clamp(1.1rem, 2.6vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  text-decoration: none;
  white-space: nowrap;
}

.phone-link svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero {
  padding-top: 0;
}

.hero-panel {
  padding: 64px 66px 48px;
  background: var(--paper);
  color: var(--black);
}

.hero-panel h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3rem, 6.3vw, 4.8rem);
  font-weight: 750;
  line-height: 1.02;
  letter-spacing: -0.065em;
}

.hero-panel p {
  max-width: 730px;
  margin: 40px 0 0;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.hero-rule {
  height: 18px;
  background: var(--yellow);
}

.scholarship-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 22px;
  padding: 60px 14px 0;
}

.info-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 170px;
  padding: 22px 30px;
  border: 2px solid var(--black);
  background: var(--white);
  color: var(--black);
}

.info-card-copy {
  display: grid;
  gap: 16px;
}

.info-card strong {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.info-card span {
  color: #3b3b3e;
  font-size: clamp(2.4rem, 4.6vw, 3.8rem);
  font-weight: 750;
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.info-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: var(--white);
  font-weight: 800;
}

.certificate-icon {
  position: relative;
  width: 68px;
  height: 54px;
  border-radius: 8px;
  background: linear-gradient(135deg, #4787a8 0 28%, #f7b83c 28% 40%, #ff8b32 40% 82%, #f2d24c 82%);
  color: transparent;
  transform: rotate(-3deg);
}

.certificate-icon::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -18px;
  width: 18px;
  height: 32px;
  background: linear-gradient(135deg, #ff5f63 50%, #f5c43e 50%);
  clip-path: polygon(0 0, 100% 12%, 68% 100%, 38% 72%, 0 100%);
}

.info-card-scholarship .info-card-copy {
  display: contents;
  order: 0;
}

.info-card-scholarship .info-card-copy span {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 5px solid #eab900;
  border-radius: 50%;
  color: var(--white);
  background: #efbd00;
  box-shadow: inset 0 0 0 4px var(--white), 0 0 0 3px #eab900;
  font-size: 1.15rem;
  letter-spacing: -0.04em;
}

.info-card-scholarship {
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
}

.info-card-scholarship .info-card-copy strong {
  align-self: center;
}

.info-card-value .info-card-copy span {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
}

.rupee-icon {
  color: #e58c00;
  background: #ffbd25;
  border: 5px solid #ffd75d;
  box-shadow: inset 0 0 0 3px #ee9500, 0 0 0 2px #ed9a00;
  font-size: 2.8rem;
  line-height: 1;
}

.offline-card {
  grid-column: 1 / -1;
  display: grid;
  justify-items: center;
  padding: 54px 28px 60px;
  border: 2px solid #bdbdc1;
  background: var(--white);
  color: var(--black);
  text-align: center;
}

.clock-icon {
  position: relative;
  width: 106px;
  height: 106px;
  margin-bottom: 24px;
  border: 9px solid #f0ac3b;
  border-radius: 50%;
  background: #eaf7f9;
  box-shadow: inset 0 0 0 4px #1c5170, 0 0 0 6px #f4b64b;
}

.clock-icon::before,
.clock-icon::after,
.clock-icon span::before,
.clock-icon span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3px;
  height: 34px;
  border-radius: 99px;
  background: #295473;
  transform-origin: 50% 100%;
}

.clock-icon::before {
  transform: translate(-50%, -100%) rotate(0deg);
}

.clock-icon::after {
  height: 28px;
  transform: translate(-50%, -100%) rotate(128deg);
  background: #e65f63;
}

.clock-icon span::before {
  height: 4px;
  transform: translate(-50%, -50%);
  background: #295473;
}

.clock-icon span::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: #295473;
}

.offline-card > strong {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.offline-dates {
  display: grid;
  gap: 4px;
  margin-top: 40px;
  color: var(--black);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.045em;
}

.offline-dates b {
  font-weight: 750;
}

.offline-dates em {
  margin: 14px 0;
  font-size: 1.9rem;
  font-style: normal;
}

.offline-card p {
  margin: 42px 0 0;
  color: var(--black);
  font-size: clamp(1.15rem, 2.3vw, 1.65rem);
  font-style: italic;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.gims-title-band {
  grid-column: 1 / -1;
  padding: 42px 22px;
  background: #242424;
  color: var(--yellow);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 750;
  line-height: 1.18;
  letter-spacing: -0.055em;
  text-align: center;
}

.test-features {
  display: grid;
  margin: 0 14px;
}

.test-feature {
  display: grid;
  justify-items: center;
  gap: 24px;
  padding: 56px 20px 52px;
  border-bottom: 1px solid #727272;
  text-align: center;
}

.test-feature:last-child {
  border-bottom: 0;
}

.test-feature svg {
  width: 56px;
  height: 56px;
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.test-feature h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.55rem, 3.3vw, 2.2rem);
  font-weight: 450;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.about-gims {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 26px;
  margin: 0 14px;
  padding: 68px 40px 36px;
  overflow: hidden;
  background: var(--white);
  color: var(--black);
  text-align: center;
}

.about-gims-intro h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  line-height: 1;
  letter-spacing: -0.07em;
}

.about-gims-intro p {
  margin: 25px 0 0;
  font-size: clamp(1.35rem, 3vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.045em;
}

.about-gims-portrait {
  position: relative;
  display: grid;
  place-items: end center;
  width: min(100%, 360px);
  height: 405px;
  margin: 22px auto 0;
  overflow: hidden;
}

.about-gims-portrait img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.about-gims-story {
  max-width: 780px;
}

.about-gims-story h3,
.gims-detail-block h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3.3vw, 2.6rem);
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: -0.055em;
}

.about-gims-story p,
.gims-detail-block p {
  margin: 28px auto 0;
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
  line-height: 1.42;
  letter-spacing: -0.035em;
}

.gims-detail-block {
  position: relative;
  width: 100%;
  max-width: 820px;
  padding: 46px 10px 48px;
}

.gims-detail-block::before,
.gims-detail-block::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 82px;
  height: 92px;
  opacity: 0.9;
  background-image: radial-gradient(var(--yellow) 2px, transparent 2px);
  background-size: 22px 22px;
}

.gims-detail-block::before {
  top: 22px;
  right: -10px;
}

.gims-detail-block::after {
  bottom: 14px;
  left: -22px;
}

.detail-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-size: 2.1rem;
  font-weight: 900;
}

.gims-detail-block h3,
.gims-detail-block p {
  position: relative;
  z-index: 1;
}

.enrol-button {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 78px;
  margin-top: 12px;
  border: 2px solid var(--black);
  border-radius: 16px;
  background: var(--yellow);
  color: var(--black);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  text-decoration: none;
}

.founder-masterclass {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(250px, 0.65fr);
  align-items: center;
  gap: 42px;
  margin: 58px 14px 0;
  padding: 64px 56px;
  border-radius: 44px;
  background: linear-gradient(115deg, #050505, #181818);
  color: var(--white);
}

.masterclass-copy {
  min-width: 0;
}

.masterclass-eyebrow {
  margin: 0 0 26px;
  color: var(--yellow);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.masterclass-copy h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.8rem, 6.3vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

.masterclass-copy > p:not(.masterclass-eyebrow) {
  max-width: 760px;
  margin: 30px 0 0;
  color: #f0f0f0;
  font-size: clamp(1.1rem, 2.25vw, 1.55rem);
  line-height: 1.45;
  letter-spacing: -0.035em;
}

.masterclass-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.masterclass-tags span {
  padding: 10px 18px;
  border: 1px solid rgba(255, 219, 88, 0.38);
  border-radius: 999px;
  background: rgba(255, 219, 88, 0.18);
  color: var(--yellow);
  font-size: 1rem;
  font-weight: 700;
}

.masterclass-mentor {
  display: grid;
  justify-items: center;
  min-width: 0;
  padding: 28px 22px 20px;
  border-radius: 38px;
  background: var(--yellow);
  color: var(--black);
  text-align: center;
}

.mentor-photo {
  display: grid;
  place-items: end center;
  width: min(100%, 250px);
  height: 250px;
  overflow: hidden;
  border-radius: 50%;
  background: #ececec;
}

.mentor-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.masterclass-mentor h3 {
  margin: 22px 0 0;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.masterclass-mentor p {
  margin: 12px 0 0;
  color: #554c18;
  font-size: 1rem;
  font-weight: 700;
}

.genesis-difference {
  display: grid;
  gap: 28px;
  margin: 54px 14px 0;
  padding: 64px 0 36px;
  background: var(--white);
  color: var(--black);
  text-align: center;
}

.difference-intro {
  padding: 0 44px;
}

.difference-intro h2 {
  margin: 0;
  color: #263c44;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.07em;
}

.difference-intro > p {
  max-width: 820px;
  margin: 30px auto 0;
  font-size: clamp(1.45rem, 3.2vw, 2.4rem);
  font-weight: 550;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.045em;
}

.difference-copy {
  max-width: 790px;
  margin: 54px auto 0;
}

.difference-copy p {
  margin: 0;
  font-size: clamp(1.25rem, 2.7vw, 2rem);
  line-height: 1.48;
  letter-spacing: -0.035em;
}

.difference-image-wrap {
  position: relative;
  width: calc(100% - 56px);
  max-width: 800px;
  margin: 14px auto 30px;
  padding: 12px;
  background: var(--yellow);
}

.difference-image-wrap::after {
  content: "";
  position: absolute;
  right: -12px;
  bottom: -12px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--yellow);
  pointer-events: none;
}

.difference-image-wrap img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.difference-card {
  position: relative;
  width: calc(100% - 44px);
  margin-inline: auto;
  padding: 62px 42px 68px;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.difference-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: -12px;
  width: 12px;
  height: 100%;
  background: var(--yellow);
}

.difference-card h3 {
  margin: 0;
  color: var(--yellow);
  font-size: clamp(1.75rem, 3.6vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.055em;
}

.difference-card p {
  max-width: 720px;
  margin: 30px auto 0;
  color: var(--white);
  font-size: clamp(1.25rem, 2.7vw, 1.95rem);
  line-height: 1.45;
  letter-spacing: -0.035em;
}

.difference-close {
  max-width: 820px;
  margin: 28px auto 0;
  padding: 0 28px;
  color: var(--black);
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  line-height: 1.25;
  letter-spacing: -0.045em;
}

.genesis-stats {
  width: calc(100% - 48px);
  max-width: 920px;
  margin: 38px auto 0;
}

.genesis-stats h2 {
  display: grid;
  place-items: center;
  min-height: 116px;
  margin: 0 0 54px;
  padding: 20px 24px;
  border: 2px solid var(--black);
  border-radius: 22px;
  background: var(--yellow);
  color: var(--black);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.genesis-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 28px;
}

.genesis-stat-card {
  display: grid;
  grid-template-rows: 126px auto 76px;
  min-height: 330px;
  overflow: hidden;
  border: 2px solid var(--black);
  border-radius: 58px 58px 0 0;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.genesis-stat-visual {
  display: grid;
  place-items: end center;
  padding-bottom: 10px;
}

.genesis-stat-visual svg {
  width: 78px;
  height: 78px;
  fill: var(--yellow);
  stroke: var(--yellow);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.genesis-stat-card > strong {
  align-self: center;
  padding: 8px 12px;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.07em;
}

.genesis-stat-card > span {
  display: grid;
  place-items: center;
  padding: 14px 16px;
  background: var(--yellow);
  color: #102f42;
  font-size: clamp(1rem, 2.3vw, 1.45rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.genesis-faq {
  width: calc(100% - 28px);
  max-width: 920px;
  margin: 86px auto 0;
  color: var(--black);
  text-align: left;
}

.genesis-faq > h2 {
  margin: 0;
  padding: 0 0 58px;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.07em;
  text-align: center;
}

.genesis-faq-list {
  border-top: 1px solid #d0d0d0;
}

.genesis-faq details {
  border-inline: 1px solid #d0d0d0;
  border-bottom: 1px solid #d0d0d0;
  background: var(--white);
}

.genesis-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 108px;
  padding: 24px 34px;
  cursor: pointer;
  list-style: none;
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.genesis-faq summary::-webkit-details-marker {
  display: none;
}

.genesis-faq summary b {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--black);
}

.genesis-faq summary b::before,
.genesis-faq summary b::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 4px;
  border-radius: 4px;
  background: var(--yellow);
}

.genesis-faq summary b::after {
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.genesis-faq details[open] summary b::after {
  transform: rotate(0deg);
}

.faq-answer {
  padding: 0 34px 34px;
  background: #f8f7f1;
}

.faq-answer p {
  max-width: 820px;
  margin: 0;
  padding-top: 30px;
  font-size: clamp(1.15rem, 2.8vw, 1.65rem);
  line-height: 1.5;
  letter-spacing: -0.035em;
}

.genesis-results {
  width: calc(100% - 28px);
  max-width: 920px;
  margin: 88px auto 0;
  padding: 68px 38px 74px;
  border-radius: 34px;
  background: #050505;
  color: var(--white);
  text-align: center;
}

.results-heading h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.07em;
}

.results-heading p {
  margin: 28px 0 0;
  color: var(--yellow);
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.05em;
}

.results-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 760px;
  margin: 88px auto 0;
}

.results-highlights article {
  display: grid;
  gap: 8px;
  padding: 0 24px 24px;
  border-right: 1px solid #777;
}

.results-highlights article:nth-child(2) {
  border-right: 0;
}

.results-highlights article:nth-child(3) {
  grid-column: 1 / -1;
  margin-top: 34px;
  border: 0;
}

.results-highlights span {
  font-size: clamp(1.1rem, 2.5vw, 1.65rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.results-highlights strong {
  color: var(--yellow);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.results-spotlight {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 16px;
  margin-top: 62px;
}

.results-spotlight article {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 170px;
  padding: 34px 10px 14px;
  border: 2px solid #767676;
  border-radius: 50% 50% 44% 44%;
  background: radial-gradient(circle at 50% 45%, #fff 0 36%, #e6e6e6 37% 43%, transparent 44%), #121212;
  color: var(--black);
}

.results-spotlight article::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 4px;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--yellow);
}

.results-spotlight b {
  position: absolute;
  top: 4px;
  left: 12px;
  z-index: 1;
  color: var(--black);
  font-size: 0.8rem;
}

.results-spotlight strong {
  z-index: 1;
  font-size: clamp(1.15rem, 2.5vw, 1.75rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.results-spotlight span {
  z-index: 1;
  margin-top: 8px;
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.05;
}

.genesis-share-cta {
  position: relative;
  width: calc(100% - 28px);
  max-width: 920px;
  min-height: 410px;
  margin: 86px auto 0;
  overflow: hidden;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 219, 88, 0.96) 0%, rgba(255, 219, 88, 0.75) 38%, rgba(255, 255, 255, 0.96) 100%),
    url("assets/gims.jpeg") center / cover;
  color: var(--black);
}

.share-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(255, 255, 255, 0.68) 72%, var(--white) 100%);
}

.share-cta-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 66px 38px 72px;
  text-align: center;
}

.share-cta-eyebrow {
  margin: 0;
  font-size: clamp(2.1rem, 4.2vw, 3.1rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.065em;
}

.share-cta-content h2 {
  margin: 22px 0 0;
  color: var(--white);
  font-size: clamp(1.9rem, 4.2vw, 2.9rem);
  line-height: 1;
  letter-spacing: -0.055em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.share-cta-content > p:not(.share-cta-eyebrow) {
  max-width: 700px;
  margin: 26px auto 0;
  color: var(--black);
  font-size: clamp(1.05rem, 2.3vw, 1.35rem);
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.share-register-button,
.share-whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 250px);
  min-height: 52px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.share-register-button {
  margin-top: 24px;
  border: 1px solid var(--yellow);
  background: var(--yellow);
  color: var(--black);
}

.share-whatsapp-button {
  gap: 10px;
  margin-top: 16px;
  border: 1px solid #e4e4e4;
  background: var(--white);
  color: var(--black);
}

.share-whatsapp-button span {
  color: #00bf63;
  font-size: 1.55rem;
  line-height: 1;
}

.share-register-button:hover,
.share-whatsapp-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
}

.registration {
  padding: 54px 96px 0;
  text-align: center;
}

.registration-intro h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.065em;
}

.registration-intro p {
  margin: 42px 0 68px;
  font-size: clamp(1.9rem, 3.8vw, 2.85rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.06em;
}

.registration-form {
  display: grid;
  gap: 38px;
  text-align: left;
}

.registration-form > label input,
.registration-form > label select {
  width: 100%;
  height: 102px;
  padding: 0 28px;
  border: 2px solid #e9e9ec;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  font-weight: 450;
  letter-spacing: -0.045em;
}

.registration-form > label select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #e9e9ec 50%), linear-gradient(135deg, #e9e9ec 50%, transparent 50%);
  background-position: calc(100% - 28px) 47%, calc(100% - 18px) 47%;
  background-size: 10px 10px, 10px 10px;
  background-repeat: no-repeat;
}

.registration-form input::placeholder,
.registration-form select:invalid {
  color: var(--muted);
  opacity: 1;
}

.registration-form select option {
  color: var(--black);
}

.registration-form > label input:focus,
.registration-form > label select:focus {
  border-color: var(--yellow);
}

.exam-mode-field {
  display: grid;
  gap: 16px;
  margin-top: 4px;
}

.exam-mode-field > p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.25rem, 2.7vw, 1.9rem);
  font-weight: 650;
  letter-spacing: -0.04em;
}

.exam-mode-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.exam-mode-option {
  position: relative;
  display: grid;
  min-height: 92px;
  cursor: pointer;
}

.exam-mode-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.exam-mode-option > span {
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 18px 20px;
  border: 2px solid #57575b;
  color: var(--muted);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.exam-mode-option strong {
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  line-height: 1;
}

.exam-mode-option small {
  font-size: 0.95rem;
  line-height: 1.1;
}

.exam-mode-option input:checked + span {
  border-color: var(--yellow);
  background: rgba(255, 219, 88, 0.16);
  color: var(--white);
  box-shadow: inset 0 0 0 2px var(--yellow);
}

.exam-mode-option input:focus-visible + span {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}

.fixed-registration-fee {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 8px 8px 0;
  padding: 18px 20px;
  border: 2px solid var(--yellow);
  background: rgba(255, 219, 88, 0.12);
  color: var(--white);
  font-size: clamp(1.25rem, 2.7vw, 1.9rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.fixed-registration-fee.is-waived {
  border-color: #66d5b3;
  background: linear-gradient(135deg, rgba(102, 213, 179, .16), rgba(124, 216, 232, .1));
}

.fixed-registration-fee.is-waived > span {
  background: #66d5b3;
  color: #071426;
}

.fixed-registration-fee > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
}

.fee-options {
  display: grid;
  gap: 26px;
  margin: 10px 8px 0;
}

.fee-option {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  gap: 12px;
  color: var(--muted);
  font-size: clamp(1.35rem, 2.7vw, 2.1rem);
  line-height: 1.22;
  letter-spacing: -0.04em;
  cursor: pointer;
}

.fee-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.custom-check {
  width: 23px;
  height: 23px;
  margin-top: 5px;
  border: 2px solid var(--muted);
}

.fee-option input:checked + .custom-check {
  border-color: var(--yellow);
  background: var(--yellow);
  box-shadow: inset 0 0 0 5px var(--black);
}

.fee-option:has(input:focus-visible) .custom-check {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}

.submit-button {
  min-height: 98px;
  border: 0;
  border-radius: 28px 28px 0 0;
  background: var(--yellow);
  color: var(--black);
  font-size: clamp(1.6rem, 3.8vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.submit-button:hover,
.submit-button:focus-visible {
  background: #ffe992;
  transform: translateY(-3px);
}

.form-message {
  min-height: 24px;
  margin: -16px 0 -20px;
  color: var(--yellow);
  font-size: 0.9rem;
  text-align: center;
}

.payment-result {
  margin: 24px 0 0;
  padding: 24px;
  border: 1px solid var(--yellow);
  background: #181818;
  color: var(--white);
  text-align: center;
}

.payment-result h3,
.payment-result p {
  margin: 0;
}

.payment-result h3 {
  color: var(--yellow);
  font-size: 1.45rem;
}

.payment-result p {
  margin-top: 10px;
  color: #eeeeee;
  font-size: 1rem;
  line-height: 1.45;
}

.payment-result.success {
  border-color: #3bc982;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 700px) {
  .page-shell {
    padding: 0 24px 52px;
  }

  .site-header {
    min-height: 132px;
    padding: 26px 0 28px;
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .brand > span {
    font-size: 1.65rem;
  }

  .brand small {
    margin-top: 7px;
    font-size: 0.72rem;
  }

  .phone-link {
    gap: 7px;
    font-size: 0;
  }

  .phone-link svg {
    width: 32px;
    height: 32px;
  }

  .phone-link::after {
    content: "+91 76960 16405";
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: -0.05em;
  }

  .hero-panel {
    padding: 34px 24px 32px;
  }

  .hero-panel h1 {
    font-size: clamp(2.35rem, 10vw, 3.8rem);
  }

  .hero-panel p {
    margin-top: 28px;
    font-size: clamp(1.25rem, 5.2vw, 1.65rem);
  }

  .hero-rule {
    height: 12px;
  }

  .scholarship-info {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 34px 0 0;
  }

  .info-card {
    min-height: 132px;
    padding: 18px 20px;
  }

  .info-card strong {
    font-size: 1.42rem;
  }

  .info-card span {
    font-size: 2.55rem;
  }

  .info-icon {
    transform: scale(0.82);
  }

  .info-card-scholarship .info-card-copy span {
    position: static;
    width: 66px;
    height: 66px;
    margin: 0;
    font-size: 1rem;
  }

  .info-card-scholarship .info-card-copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 14px;
  }

  .info-card-scholarship .info-card-copy strong {
    max-width: 190px;
  }

  .offline-card {
    padding: 42px 18px 44px;
  }

  .clock-icon {
    width: 86px;
    height: 86px;
    border-width: 7px;
  }

  .offline-dates {
    margin-top: 28px;
    font-size: 1.28rem;
  }

  .offline-dates em {
    margin: 10px 0;
  }

  .offline-card p {
    margin-top: 30px;
    font-size: 1rem;
  }

  .gims-title-band {
    padding: 30px 16px;
    font-size: 1.7rem;
  }

  .test-features {
    margin: 0;
  }

  .test-feature {
    gap: 18px;
    padding: 42px 12px 38px;
  }

  .test-feature svg {
    width: 48px;
    height: 48px;
  }

  .test-feature h3 {
    font-size: 1.45rem;
  }

  .about-gims {
    gap: 20px;
    margin: 0;
    padding: 44px 18px 22px;
  }

  .about-gims-intro h2 {
    font-size: 2.35rem;
  }

  .about-gims-intro p {
    margin-top: 16px;
    font-size: 1.3rem;
  }

  .about-gims-portrait {
    width: min(100%, 270px);
    height: 305px;
    margin-top: 12px;
  }

  .about-gims-story h3,
  .gims-detail-block h3 {
    font-size: 1.55rem;
  }

  .about-gims-story p,
  .gims-detail-block p {
    margin-top: 18px;
    font-size: 1.08rem;
  }

  .gims-detail-block {
    padding: 34px 4px 36px;
  }

  .detail-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 20px;
  }

  .enrol-button {
    min-height: 64px;
    margin-top: 4px;
  }

  .founder-masterclass {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 38px 0 0;
    padding: 42px 22px 28px;
    border-radius: 28px;
  }

  .masterclass-eyebrow {
    margin-bottom: 18px;
    font-size: 0.85rem;
  }

  .masterclass-copy h2 {
    font-size: 2.8rem;
    line-height: 0.98;
  }

  .masterclass-copy > p:not(.masterclass-eyebrow) {
    margin-top: 22px;
    font-size: 1.08rem;
  }

  .masterclass-tags {
    gap: 8px;
    margin-top: 22px;
  }

  .masterclass-tags span {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .masterclass-mentor {
    padding: 22px 18px 18px;
    border-radius: 26px;
  }

  .mentor-photo {
    width: 190px;
    height: 190px;
  }

  .masterclass-mentor h3 {
    margin-top: 16px;
    font-size: 1.65rem;
  }

  .masterclass-mentor p {
    margin-top: 8px;
    font-size: 0.9rem;
  }

  .genesis-difference {
    gap: 20px;
    margin: 38px 0 0;
    padding: 42px 0 24px;
  }

  .difference-intro {
    padding: 0 18px;
  }

  .difference-intro h2 {
    font-size: 2.35rem;
  }

  .difference-intro > p {
    margin-top: 18px;
    font-size: 1.22rem;
  }

  .difference-copy {
    margin-top: 30px;
  }

  .difference-copy p {
    font-size: 1.08rem;
    line-height: 1.5;
  }

  .difference-image-wrap {
    width: calc(100% - 34px);
    margin: 10px auto 20px;
    padding: 7px;
  }

  .difference-image-wrap::after {
    right: -7px;
    bottom: -7px;
  }

  .difference-card {
    width: calc(100% - 28px);
    padding: 42px 24px 48px;
  }

  .difference-card::after {
    right: -7px;
    width: 7px;
  }

  .difference-card h3 {
    font-size: 1.7rem;
  }

  .difference-card p {
    margin-top: 20px;
    font-size: 1.08rem;
  }

  .difference-close {
    padding: 0 18px;
    font-size: 1.25rem;
  }

  .genesis-stats {
    width: calc(100% - 26px);
    margin-top: 30px;
  }

  .genesis-stats h2 {
    min-height: 82px;
    margin-bottom: 26px;
    padding: 16px 12px;
    border-radius: 16px;
    font-size: 1.65rem;
  }

  .genesis-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px 12px;
  }

  .genesis-stat-card {
    grid-template-rows: 92px auto 58px;
    min-height: 225px;
    border-radius: 30px 30px 0 0;
  }

  .genesis-stat-visual {
    padding-bottom: 4px;
  }

  .genesis-stat-visual svg {
    width: 52px;
    height: 52px;
  }

  .genesis-stat-card > strong {
    font-size: 1.8rem;
  }

  .genesis-stat-card > span {
    padding: 8px 6px;
    font-size: 0.86rem;
  }

  .genesis-faq {
    width: calc(100% - 18px);
    margin-top: 56px;
  }

  .genesis-faq > h2 {
    padding-bottom: 30px;
    font-size: 2.45rem;
  }

  .genesis-faq summary {
    min-height: 82px;
    gap: 12px;
    padding: 18px 18px;
    font-size: 1.25rem;
  }

  .genesis-faq summary b {
    width: 44px;
    height: 44px;
  }

  .genesis-faq summary b::before,
  .genesis-faq summary b::after {
    width: 16px;
    height: 3px;
  }

  .faq-answer {
    padding: 0 18px 22px;
  }

  .faq-answer p {
    padding-top: 20px;
    font-size: 1.05rem;
    line-height: 1.5;
  }

  .genesis-results {
    width: calc(100% - 18px);
    margin-top: 56px;
    padding: 42px 16px 48px;
    border-radius: 24px;
  }

  .results-heading h2 {
    font-size: 2.55rem;
  }

  .results-heading p {
    margin-top: 18px;
    font-size: 1.25rem;
  }

  .results-highlights {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 52px;
  }

  .results-highlights article,
  .results-highlights article:nth-child(2),
  .results-highlights article:nth-child(3) {
    grid-column: auto;
    margin-top: 0;
    padding: 0 8px 24px;
    border-right: 0;
    border-bottom: 1px solid #777;
  }

  .results-highlights article:last-child {
    border-bottom: 0;
  }

  .results-spotlight {
    grid-template-columns: 1fr 1fr;
    gap: 34px 14px;
    margin-top: 44px;
  }

  .results-spotlight article {
    min-height: 138px;
    padding-top: 28px;
  }

  .results-spotlight article::before {
    width: 44px;
    height: 44px;
  }

  .results-spotlight b {
    top: 1px;
    left: 10px;
    font-size: 0.68rem;
  }

  .results-spotlight span {
    font-size: 0.68rem;
  }

  .genesis-share-cta {
    width: calc(100% - 18px);
    margin: 56px auto 0;
    border-radius: 24px;
  }

  .share-cta-content {
    max-width: 620px;
    padding: 52px 22px 56px;
  }

  .share-cta-eyebrow {
    font-size: 2rem;
  }

  .share-cta-content h2 {
    font-size: 1.65rem;
  }

  .share-cta-content > p:not(.share-cta-eyebrow) {
    margin-top: 22px;
    font-size: 1.05rem;
  }

  .share-register-button,
  .share-whatsapp-button {
    width: min(100%, 280px);
    min-height: 54px;
    font-size: 1.1rem;
  }

  .registration {
    padding: 38px 0 0;
  }

  .registration-intro h2 {
    font-size: clamp(2.15rem, 10vw, 3.2rem);
  }

  .registration-intro p {
    margin: 24px 0 42px;
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .registration-form {
    gap: 24px;
  }

  .registration-form > label input,
  .registration-form > label select {
    height: 72px;
    padding: 0 18px;
    font-size: 1.2rem;
  }

  .fee-options {
    gap: 20px;
    margin: 8px 2px 0;
  }

  .fixed-registration-fee {
    gap: 10px;
    margin: 8px 2px 0;
    padding: 14px 12px;
    font-size: 1.15rem;
  }

  .fixed-registration-fee > span {
    width: 28px;
    height: 28px;
  }

  .exam-mode-options {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .exam-mode-option {
    min-height: 76px;
  }

  .exam-mode-option > span {
    padding: 14px 16px;
  }

  .exam-mode-option strong {
    font-size: 1.25rem;
  }

  .exam-mode-option small {
    font-size: 0.86rem;
  }

  .fee-option {
    grid-template-columns: 24px 1fr;
    font-size: 1.15rem;
  }

  .custom-check {
    width: 20px;
    height: 20px;
  }

  .submit-button {
    min-height: 72px;
    border-radius: 20px 20px 0 0;
    font-size: 1.6rem;
  }

  .payment-result {
    padding: 20px 16px;
  }
}

/* Immersive GIMS hero: editorial type, actionable controls and interactive facts. */
.hero-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(44px, 6vw, 76px) clamp(28px, 7vw, 82px) clamp(36px, 5vw, 60px);
  background:
    radial-gradient(circle at 84% 16%, rgba(255, 219, 88, .34), transparent 25%),
    radial-gradient(circle at 8% 92%, rgba(107, 180, 255, .19), transparent 32%),
    linear-gradient(135deg, #f8fbff 0%, #fffdf3 52%, #edf8ff 100%);
  font-family: "DM Sans", sans-serif;
}

.hero-panel::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(8, 31, 57, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 31, 57, .035) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), transparent 78%);
  content: "";
}

.hero-panel::after {
  position: absolute;
  z-index: -1;
  top: 32px;
  right: 42px;
  width: 88px;
  height: 88px;
  border: 18px solid rgba(255, 219, 88, .48);
  border-radius: 50%;
  content: "";
  transition: transform .45s ease;
}

.hero-panel:hover::after {
  transform: rotate(18deg) scale(1.08);
}

.hero-panel .hero-event-name {
  justify-content: flex-start;
  width: fit-content;
  margin: 0 0 24px;
  padding: 7px 12px 7px 8px;
  border: 1px solid rgba(8, 31, 57, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 8px 22px rgba(8, 31, 57, .06);
  color: #53677c;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(.74rem, 1.3vw, .9rem);
  backdrop-filter: blur(8px);
}

.hero-event-name strong {
  padding: 5px 9px;
  border-radius: 999px;
  background: #081f39;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: .9em;
  letter-spacing: .035em;
}

.hero-panel h1 {
  max-width: 800px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(3rem, 6.5vw, 5.15rem);
  font-weight: 800;
  line-height: .96;
  letter-spacing: -.072em;
  text-wrap: balance;
}

.hero-panel .hero-audience {
  width: fit-content;
  margin-top: 25px;
  padding-left: 28px;
  color: #081f39;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(.78rem, 1.35vw, .98rem);
  letter-spacing: .09em;
}

.hero-panel .hero-audience::before {
  position: absolute;
  width: 18px;
  height: 3px;
  margin: .6em 0 0 -28px;
  border-radius: 3px;
  background: #e3b414;
  content: "";
}

.hero-panel .hero-supporting-copy {
  max-width: 700px;
  margin-top: 14px;
  color: #50677f;
  font-size: clamp(1rem, 1.85vw, 1.32rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -.02em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 27px;
}

.hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: .86rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.hero-actions a span {
  margin-left: 12px;
  font-size: 1.15em;
  transition: transform .2s ease;
}

.hero-actions a:hover,
.hero-actions a:focus-visible {
  transform: translateY(-3px);
}

.hero-actions a:hover span {
  transform: translateX(4px);
}

.hero-primary-action {
  background: #081f39;
  box-shadow: 0 12px 24px rgba(8, 31, 57, .18);
  color: #fff;
}

.hero-primary-action:hover,
.hero-primary-action:focus-visible {
  box-shadow: 0 16px 30px rgba(8, 31, 57, .25);
}

.hero-secondary-action {
  border: 1px solid rgba(8, 31, 57, .17);
  background: rgba(255, 255, 255, .72);
  color: #081f39;
}

.hero-panel .hero-key-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 38px;
}

.hero-key-facts a {
  position: relative;
  display: flex;
  min-height: 108px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 16px 14px;
  border: 1px solid rgba(8, 31, 57, .11);
  border-radius: 16px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 9px 24px rgba(8, 31, 57, .06);
  color: #081f39;
  text-decoration: none;
  backdrop-filter: blur(9px);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.hero-key-facts a::after {
  position: absolute;
  right: -28px;
  bottom: -35px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(255, 219, 88, .42);
  content: "";
  transition: transform .3s ease;
}

.hero-key-facts a:hover,
.hero-key-facts a:focus-visible {
  z-index: 1;
  border-color: rgba(8, 31, 57, .3);
  box-shadow: 0 18px 34px rgba(8, 31, 57, .13);
  transform: translateY(-7px);
}

.hero-key-facts a:hover::after {
  transform: scale(1.35);
}

.hero-key-facts small {
  margin-bottom: 7px;
  color: #668099;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.hero-key-facts strong {
  position: relative;
  z-index: 1;
  max-width: 90%;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(.72rem, 1.15vw, .9rem);
  line-height: 1.25;
  letter-spacing: -.018em;
}

.hero-key-facts i {
  position: absolute;
  top: 10px;
  right: 12px;
  color: rgba(8, 31, 57, .16);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 800;
}

@media (max-width: 720px) {
  .hero-panel {
    padding: 30px 18px 24px;
  }

  .hero-panel::after {
    top: 52px;
    right: -24px;
    width: 72px;
    height: 72px;
    border-width: 14px;
  }

  .hero-panel .hero-event-name {
    display: inline-flex;
    margin-bottom: 20px;
    padding-right: 9px;
    font-size: .69rem;
  }

  .hero-panel h1 {
    max-width: 96%;
    font-size: clamp(2.25rem, 11vw, 3.35rem);
    line-height: .98;
    letter-spacing: -.067em;
  }

  .hero-panel .hero-audience {
    margin-top: 20px;
    font-size: .72rem;
  }

  .hero-panel .hero-supporting-copy {
    max-width: 96%;
    margin-top: 12px;
    font-size: .95rem;
    line-height: 1.42;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 22px;
  }

  .hero-actions a {
    min-height: 45px;
    padding: 0 12px;
    font-size: .72rem;
  }

  .hero-panel .hero-key-facts {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 26px;
  }

  .hero-key-facts a {
    min-height: 100px;
    padding: 14px 12px;
    border-radius: 14px;
  }

  .hero-key-facts strong {
    font-size: .72rem;
  }
}

/* Keep the registration heading and form in normal flow after the expanded hero. */
.registration .registration-intro {
  position: relative;
  z-index: 0;
  display: grid;
  justify-items: center;
  padding: 4px 12px 0;
  text-align: center;
}

.registration .registration-intro::before {
  position: absolute;
  z-index: -1;
  top: -40px;
  bottom: 0;
  left: 50%;
  width: 100vw;
  background: #071426;
  content: "";
  transform: translateX(-50%);
}

.registration .registration-intro h2 {
  margin: 0;
  line-height: 1.08;
}

.registration .registration-intro p {
  margin: 9px 0 0;
  line-height: 1.25;
}

.registration .registration-form {
  position: relative;
  z-index: 1;
  margin-top: 36px;
}

.test-feature p {
  max-width: 250px;
  margin: 8px 0 0;
  color: #5b6f84;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(.7rem, 1.1vw, .84rem);
  font-weight: 600;
  line-height: 1.35;
}

@media (max-width: 720px) {
  .registration .registration-form {
    margin-top: 26px;
  }

  .test-features .test-feature:first-of-type {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 4px 12px;
    min-height: 128px;
  }

  .test-features .test-feature:first-of-type svg {
    grid-row: 1 / span 2;
  }

  .test-features .test-feature:first-of-type h3,
  .test-features .test-feature:first-of-type p {
    grid-column: 2;
    width: auto;
    max-width: none;
    margin: 0;
    text-align: left;
  }
}

.test-features .test-feature p {
  color: #b8cbe0;
}

.gims-exam-gallery {
  margin-top: 14px;
  padding: clamp(22px, 4vw, 36px);
  overflow: hidden;
  border: 1px solid #d7e2ee;
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 218, 74, .21), transparent 28%),
    linear-gradient(145deg, #fff, #f2f7fb);
  color: #071426;
}

.gims-exam-gallery-heading {
  max-width: 720px;
}

.gims-exam-gallery-heading > span {
  color: #957000;
  font-family: "DM Sans", sans-serif;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.gims-exam-gallery-heading h2 {
  margin: 6px 0 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.45rem, 2.8vw, 2.15rem);
  line-height: 1.06;
  letter-spacing: -.05em;
  text-wrap: balance;
}

.gims-exam-gallery-heading p {
  margin: 8px 0 0;
  color: #60758a;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(.8rem, 1.3vw, .96rem);
  line-height: 1.4;
}

.gims-exam-gallery-track {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, minmax(0, .72fr));
  gap: 10px;
  height: clamp(220px, 31vw, 330px);
  margin-top: 20px;
}

.gims-exam-photo {
  position: relative;
  min-width: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(7, 20, 38, .12);
  border-radius: 16px;
  background: #dce7ef;
}

.gims-exam-photo::after {
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(to top, rgba(7, 20, 38, .28), transparent);
  content: "";
  pointer-events: none;
}

.gims-exam-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .4s ease, filter .4s ease;
}

.gims-exam-photo-featured img {
  object-position: center 48%;
}

.gims-exam-photo:hover img {
  filter: saturate(1.07) contrast(1.03);
  transform: scale(1.045);
}

@media (max-width: 720px) {
  .gims-exam-gallery {
    padding: 22px 13px 14px;
  }

  .gims-exam-gallery-track {
    display: flex;
    gap: 9px;
    height: 300px;
    overflow-x: auto;
    padding: 1px 1px 9px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    overscroll-behavior-inline: contain;
  }

  .gims-exam-photo,
  .gims-exam-photo-featured {
    flex: 0 0 min(78vw, 278px);
    height: 280px;
    scroll-snap-align: start;
  }

  .gims-exam-photo-featured {
    flex-basis: min(86vw, 310px);
  }
}

.info-card-value .info-card-copy .scholarship-range {
  max-width: 100%;
  font-size: clamp(1.35rem, 2.7vw, 2.2rem);
  line-height: 1;
  text-wrap: balance;
}

.cash-prizes {
  grid-column: 1 / -1;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  display: grid;
  grid-template-columns: minmax(190px, .82fr) minmax(0, 2.35fr);
  gap: 14px;
  align-items: stretch;
  padding: 14px;
  border: 1px solid #d7e2ee;
  border-radius: 18px;
  background:
    radial-gradient(circle at 0 0, rgba(255, 216, 74, .25), transparent 35%),
    linear-gradient(145deg, #fff, #f0f6fb);
  box-shadow: 0 12px 26px rgba(37, 68, 105, .09);
}

.cash-prizes-heading {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4px 8px;
}

.cash-prizes-heading > span {
  color: #987200;
  font-family: "DM Sans", sans-serif;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.cash-prizes-heading h2 {
  margin: 5px 0 0;
  color: #071426;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.05rem, 1.9vw, 1.4rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.cash-prizes-heading p {
  margin: 6px 0 0;
  color: #61758b;
  font-family: "DM Sans", sans-serif;
  font-size: .72rem;
  line-height: 1.3;
}

.cash-prize-track {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(98px, 1fr));
  gap: 8px;
}

.cash-prize-card {
  position: relative;
  display: grid;
  min-height: 96px;
  align-content: center;
  overflow: hidden;
  padding: 11px 10px;
  border: 1px solid rgba(7, 20, 38, .1);
  border-radius: 13px;
  background: rgba(255, 255, 255, .88);
  color: #071426;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.cash-prize-card::after {
  position: absolute;
  right: -19px;
  bottom: -25px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 216, 74, .33);
  content: "";
}

.cash-prize-card:hover {
  z-index: 1;
  border-color: rgba(190, 142, 0, .45);
  box-shadow: 0 10px 20px rgba(37, 68, 105, .12);
  transform: translateY(-4px);
}

.cash-prize-card small {
  color: #718399;
  font-family: "DM Sans", sans-serif;
  font-size: .56rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.cash-prize-card strong {
  margin-top: 1px;
  color: #c08b00;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.25rem;
  line-height: 1;
}

.cash-prize-card b {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: .9rem;
}

.cash-prize-winner {
  border-color: rgba(190, 142, 0, .32);
  background: linear-gradient(145deg, #fff8d9, #fff);
}

.gims-resources {
  margin-top: 14px;
  padding: clamp(24px, 4vw, 38px) clamp(18px, 4vw, 34px);
  overflow: hidden;
  border: 1px solid #d7e2ee;
  border-radius: 20px;
  background:
    radial-gradient(circle at 95% 5%, rgba(255, 216, 74, .23), transparent 27%),
    linear-gradient(135deg, #f7fbff, #fffdf3);
  color: #071426;
}

.gims-date-options {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  width: min(100%, 570px);
  margin: 17px auto 0;
}

.fixed-registration-fee > div {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.genesis-stats .genesis-stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.share-cta-content .final-cta-summary {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.final-cta-summary span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(7, 20, 38, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: #071426;
  font-family: "DM Sans", sans-serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .02em;
}

@media (max-width: 700px) {
  .genesis-stats .genesis-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .genesis-stats .genesis-stat-card:last-child {
    grid-column: 1 / -1;
  }
}

.fixed-registration-fee strong {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 8px;
  align-items: center;
}

.fixed-registration-fee strong em {
  padding: 3px 7px;
  border-radius: 999px;
  background: #ffda4a;
  color: #071426;
  font-size: .64rem;
  font-style: normal;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.fixed-registration-fee small {
  color: #b7c9dc;
  font-size: .68rem;
  font-weight: 600;
}

.gims-date-options > div {
  display: grid;
  gap: 4px;
  min-height: 74px;
  align-content: center;
  padding: 12px 14px;
  border: 1px solid #d7e2ee;
  border-radius: 14px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 9px 20px rgba(37, 68, 105, .08);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.gims-date-options > div:hover {
  border-color: rgba(7, 20, 38, .28);
  box-shadow: 0 14px 25px rgba(37, 68, 105, .13);
  transform: translateY(-4px);
}

.gims-date-options small {
  color: #76899c;
  font-family: "DM Sans", sans-serif;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.gims-date-options b {
  color: #071426;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(.85rem, 1.6vw, 1.05rem);
}

.gims-date-options > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #071426;
  color: #ffda4a;
  font-family: "DM Sans", sans-serif;
  font-size: .6rem;
  font-weight: 800;
}

@media (max-width: 720px) {
  .gims-date-options {
    grid-template-columns: 1fr;
    gap: 7px;
    margin-top: 13px;
  }

  .gims-date-options > div {
    min-height: 60px;
    padding: 9px 12px;
  }

  .gims-date-options > span {
    width: auto;
    height: auto;
    background: transparent;
    color: #718399;
  }
}

.gims-resources-heading {
  max-width: 680px;
}

.gims-resources-heading > span {
  color: #947000;
  font-family: "DM Sans", sans-serif;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.gims-resources-heading h2 {
  margin: 6px 0 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  line-height: 1.05;
  letter-spacing: -.055em;
}

.gims-resources-heading p {
  margin: 8px 0 0;
  color: #5e7288;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(.85rem, 1.35vw, 1rem);
  line-height: 1.4;
}

.gims-resource-track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.gims-resource-card {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 0 13px;
  min-width: 0;
  padding: 17px;
  overflow: hidden;
  border: 1px solid rgba(7, 20, 38, .11);
  border-radius: 17px;
  background: rgba(255, 255, 255, .85);
  box-shadow: 0 12px 24px rgba(37, 68, 105, .08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.gims-resource-card::after {
  position: absolute;
  right: -32px;
  bottom: -42px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(124, 216, 232, .15);
  content: "";
}

.gims-resource-card-sample::after {
  background: rgba(255, 216, 74, .22);
}

.gims-resource-card:hover {
  border-color: rgba(7, 20, 38, .25);
  box-shadow: 0 18px 32px rgba(37, 68, 105, .13);
  transform: translateY(-5px);
}

.gims-resource-icon {
  display: grid;
  grid-row: 1 / span 2;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: #071426;
  color: #ffda4a;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
}

.gims-resource-copy {
  min-width: 0;
}

.gims-resource-copy small {
  color: #73869a;
  font-family: "DM Sans", sans-serif;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.gims-resource-copy h3 {
  margin: 4px 0 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.gims-resource-copy p {
  margin: 7px 0 0;
  color: #5e7288;
  font-family: "DM Sans", sans-serif;
  font-size: .76rem;
  line-height: 1.4;
}

.gims-resource-button {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 16px;
  padding: 0 13px;
  border-radius: 11px;
  background: #071426;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: .75rem;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}

button.gims-resource-button:hover,
button.gims-resource-button:focus-visible {
  background: #173653;
  transform: translateY(-2px);
}

.gims-resource-button.is-pending {
  cursor: not-allowed;
  opacity: .72;
}

.gims-resource-status {
  margin: 11px 0 0;
  color: #75879a;
  font-family: "DM Sans", sans-serif;
  font-size: .66rem;
  text-align: center;
}

.gims-exam-photo picture,
.about-gims-portrait picture,
.neiv-image-frame picture {
  display: block;
  width: 100%;
  height: 100%;
}

body.modal-open {
  overflow: hidden;
}

.sample-papers-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}

.sample-papers-modal[hidden] {
  display: none;
}

.sample-papers-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 15, 29, .76);
  backdrop-filter: blur(5px);
}

.sample-papers-dialog {
  position: relative;
  width: min(720px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  padding: clamp(24px, 4vw, 38px);
  overflow-y: auto;
  border: 1px solid rgba(86, 184, 214, .35);
  border-radius: 24px;
  background: #f8fafc;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .35);
}

.sample-papers-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #071426;
  color: #fff;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.sample-papers-heading small {
  color: #947000;
  font: 800 .68rem/1 "DM Sans", sans-serif;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.sample-papers-heading h2 {
  margin: 8px 48px 0 0;
  color: #071426;
  font: 800 clamp(1.5rem, 4vw, 2.25rem)/1.08 "Plus Jakarta Sans", sans-serif;
  letter-spacing: -.045em;
}

.sample-papers-heading p {
  margin: 9px 0 0;
  color: #5e7288;
  font: 500 .9rem/1.45 "DM Sans", sans-serif;
}

.sample-papers-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.sample-papers-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px 10px;
  align-items: center;
  padding: 17px;
  border: 1px solid #d9e2ea;
  border-radius: 14px;
  background: #fff;
  color: #071426;
  text-decoration: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.sample-papers-list a:hover,
.sample-papers-list a:focus-visible {
  border-color: #56b8d6;
  box-shadow: 0 10px 24px rgba(37, 68, 105, .12);
  transform: translateY(-2px);
}

.sample-papers-list span {
  font: 700 .86rem/1.3 "Plus Jakarta Sans", sans-serif;
}

.sample-papers-list strong {
  grid-row: 1 / span 2;
  grid-column: 2;
  padding: 6px 9px;
  border-radius: 8px;
  background: #ffda4a;
  font: 800 .7rem/1 "DM Sans", sans-serif;
}

.sample-papers-list em {
  color: #527089;
  font: 700 .68rem/1.2 "DM Sans", sans-serif;
  font-style: normal;
}

@media (max-width: 600px) {
  .sample-papers-modal {
    padding: 12px;
  }

  .sample-papers-dialog {
    max-height: calc(100vh - 24px);
    padding: 24px 16px 20px;
    border-radius: 18px;
  }

  .sample-papers-list {
    grid-template-columns: 1fr;
    gap: 9px;
  }
}

.neiv-story {
  display: grid;
  grid-template-columns: minmax(190px, .72fr) minmax(0, 1.55fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
  margin-top: 14px;
  padding: clamp(24px, 4.5vw, 44px);
  overflow: hidden;
  border: 1px solid #d7e2ee;
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 8%, rgba(124, 216, 232, .2), transparent 30%),
    linear-gradient(135deg, #071426, #102b48);
  box-shadow: 0 18px 38px rgba(7, 20, 38, .2);
  color: #fff;
}

.neiv-story-visual {
  position: relative;
  display: grid;
  justify-items: center;
}

.neiv-image-frame {
  display: grid;
  width: min(100%, 238px);
  aspect-ratio: 4 / 5;
  place-items: end center;
  overflow: hidden;
  border: 2px solid rgba(255, 218, 74, .8);
  border-radius: 24px 24px 70px 24px;
  background:
    radial-gradient(circle at 50% 85%, rgba(255, 218, 74, .42), transparent 38%),
    linear-gradient(145deg, #f8fbff, #ddecf6);
}

.neiv-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 14px 16px rgba(7, 20, 38, .2));
  transition: transform .35s ease;
}

.neiv-story:hover .neiv-image-frame img {
  transform: scale(1.035);
}

.neiv-story-visual > span {
  position: relative;
  margin-top: -16px;
  padding: 8px 13px;
  border-radius: 999px;
  background: #ffda4a;
  box-shadow: 0 8px 18px rgba(7, 20, 38, .25);
  color: #071426;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: .7rem;
  font-weight: 800;
}

.neiv-story-eyebrow {
  width: fit-content;
  margin: 0;
  padding: 6px 10px;
  border: 1px solid rgba(255, 218, 74, .55);
  border-radius: 999px;
  background: rgba(255, 218, 74, .13);
  color: #ffe36f;
  font-family: "DM Sans", sans-serif;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .11em;
  line-height: 1;
  text-transform: uppercase;
}

.neiv-story-copy h2 {
  max-width: 650px;
  margin: 8px 0 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -.065em;
  text-wrap: balance;
}

.neiv-achievements {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 23px;
}

.neiv-achievements article {
  display: grid;
  gap: 5px;
  min-height: 94px;
  align-content: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 15px;
  background: rgba(255, 255, 255, .075);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.neiv-achievements article:hover {
  border-color: rgba(255, 218, 74, .55);
  background: rgba(255, 255, 255, .12);
  transform: translateY(-4px);
}

.neiv-achievements strong {
  color: #ffda4a;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  line-height: 1;
}

.neiv-achievements span {
  color: #d5e2ef;
  font-family: "DM Sans", sans-serif;
  font-size: .72rem;
  line-height: 1.3;
}

.neiv-story-message {
  margin-top: 20px;
  padding-left: 14px;
  border-left: 3px solid #ffda4a;
}

.neiv-story-message strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: .92rem;
  text-transform: uppercase;
}

.neiv-story-message p {
  margin: 4px 0 0;
  color: #c7d7e6;
  font-family: "DM Sans", sans-serif;
  font-size: .82rem;
}

@media (max-width: 720px) {
  .neiv-story {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 17px 14px;
    border-radius: 18px;
  }

  .neiv-image-frame {
    width: 112px;
    aspect-ratio: 4 / 5;
    border-radius: 16px 16px 42px 16px;
  }

  .neiv-story-visual > span {
    max-width: 102px;
    margin-top: -10px;
    padding: 6px 8px;
    font-size: .56rem;
    text-align: center;
  }

  .neiv-story-eyebrow {
    padding: 5px 8px;
    font-size: .64rem;
    letter-spacing: .07em;
  }

  .neiv-story-copy h2 {
    margin-top: 5px;
    font-size: clamp(1.25rem, 6.4vw, 1.65rem);
    line-height: 1.06;
  }

  .neiv-achievements {
    grid-template-columns: 1fr;
    gap: 7px;
    margin-top: 13px;
  }

  .neiv-achievements article {
    min-height: 65px;
    padding: 10px;
  }

  .neiv-achievements strong {
    font-size: 1.1rem;
  }

  .neiv-achievements span {
    font-size: .62rem;
  }

  .neiv-story-message {
    grid-column: 1 / -1;
    margin-top: 13px;
  }

  .neiv-story-message strong {
    font-size: .7rem;
  }

  .neiv-story-message p {
    font-size: .68rem;
  }
}

@media (max-width: 720px) {
  .gims-resources {
    padding: 23px 13px 15px;
  }

  .gims-resource-track {
    display: flex;
    gap: 9px;
    overflow-x: auto;
    padding: 1px 1px 9px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    overscroll-behavior-inline: contain;
  }

  .gims-resource-card {
    flex: 0 0 min(82vw, 286px);
    scroll-snap-align: start;
  }
}

@media (max-width: 720px) {
  .cash-prizes {
    display: block;
    overflow: hidden;
    padding: 14px 12px 12px;
  }

  .cash-prizes-heading {
    padding: 0 2px 12px;
  }

  .cash-prizes-heading p {
    margin-top: 4px;
  }

  .cash-prize-track {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 1px 2px 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    overscroll-behavior-inline: contain;
  }

  .cash-prize-card {
    flex: 0 0 116px;
    min-height: 94px;
    scroll-snap-align: start;
  }
}

@media (max-width: 720px) {
  .info-card-value .info-card-copy .scholarship-range {
    font-size: clamp(1.05rem, 5.3vw, 1.35rem);
  }
}

@media (max-width: 390px) {
  .hero-event-name span {
    display: none;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .submit-button {
    transition: none;
  }
}

/* Final hero cascade guard: this stylesheet contains legacy sections below the original hero rules. */
.hero .hero-panel {
  padding: clamp(44px, 6vw, 76px) clamp(28px, 7vw, 82px) clamp(36px, 5vw, 60px);
}

.hero .hero-event-name strong {
  color: #fff;
}

.hero .hero-key-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: none;
  margin-top: 38px;
}

@media (max-width: 720px) {
  .hero .hero-panel {
    padding: 30px 18px 24px;
  }

  .hero .hero-panel h1 {
    max-width: 96%;
    font-size: clamp(2.25rem, 11vw, 3.35rem);
    line-height: .98;
  }

  .hero .hero-key-facts {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 26px;
  }
}

/* GIMS hero photo treatment: echo the final CTA while keeping all copy readable. */
.hero .hero-panel {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .94) 0%, rgba(255, 253, 242, .88) 52%, rgba(255, 245, 196, .62) 100%),
    url("assets/background_header.jpeg") center 42% / cover no-repeat;
  color: #071426;
}

.hero .hero-panel::before {
  background-image:
    linear-gradient(rgba(7, 20, 38, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 20, 38, .035) 1px, transparent 1px);
}

.hero .hero-panel::after {
  border-color: rgba(255, 219, 88, .62);
}

.hero .hero-panel h1,
.hero .hero-panel .hero-audience {
  color: #071426;
  text-shadow: 0 2px 15px rgba(255, 255, 255, .72);
}

.hero .hero-panel .hero-supporting-copy {
  color: #344c65;
  text-shadow: 0 2px 12px rgba(255, 255, 255, .78);
}

.hero .hero-panel .hero-event-name,
.hero .hero-secondary-action,
.hero .hero-key-facts a {
  border-color: rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .78);
  color: #071426;
  backdrop-filter: blur(12px);
}

.hero .hero-panel .hero-event-name {
  border-color: rgba(7, 20, 38, .14);
  color: #3e556d;
}

.hero .hero-primary-action {
  background: var(--yellow);
  color: #071426;
}

.hero .hero-key-facts small {
  color: #60758a;
}

.hero .hero-key-facts strong {
  color: #071426;
}

.hero .hero-key-facts i {
  color: rgba(7, 20, 38, .18);
}

@media (max-width: 720px) {
  .hero .hero-panel {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .84), rgba(255, 251, 229, .91)),
      url("assets/background_header.jpeg") center / cover no-repeat;
  }

  .hero .hero-event-name {
    width: auto;
    max-width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero .hero-event-name span {
    display: inline;
    font-size: .72rem;
  }
}

/* Registration flow correction after the expanded interactive hero. */
.registration .registration-intro {
  display: grid;
  justify-items: center;
  padding: 4px 12px 0;
  text-align: center;
}

.registration .registration-intro h2 {
  margin: 0;
  line-height: 1.08;
}

.registration .registration-intro p {
  margin: 9px 0 0;
  line-height: 1.25;
}

.registration .registration-form {
  position: relative;
  z-index: 1;
  margin-top: 28px;
}

@media (max-width: 720px) {
  .registration .registration-form {
    margin-top: 20px;
  }
}

/* Visual polish: preserve the Genesis composition while giving each section
   a clearer surface, softer depth, and more deliberate interaction states. */
:root {
  --yellow-soft: rgba(255, 219, 88, 0.16);
  --paper-soft: #fbfbfd;
  --ink-soft: #242428;
}

body {
  background:
    radial-gradient(circle at 50% 0, rgba(255, 219, 88, 0.08), transparent 28rem),
    var(--black);
}

.page-shell {
  position: relative;
  isolation: isolate;
  box-shadow: 0 0 80px rgba(255, 255, 255, 0.025);
}

.page-shell::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 0.7px, transparent 0.7px);
  background-size: 22px 22px;
  content: "";
  opacity: 0.12;
  pointer-events: none;
}

.brand,
.phone-link,
.enrol-button,
.submit-button,
.share-register-button,
.share-whatsapp-button {
  -webkit-tap-highlight-color: transparent;
}

.brand,
.phone-link {
  transition: color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.brand:hover,
.phone-link:hover {
  transform: translateY(-2px);
}

.brand:focus-visible,
.phone-link:focus-visible,
.enrol-button:focus-visible,
.submit-button:focus-visible,
.share-register-button:focus-visible,
.share-whatsapp-button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 5px;
}

.brand img {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.hero-panel {
  border-radius: 24px 24px 0 0;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}

.hero-panel h1,
.registration-intro h2,
.about-gims-intro h2,
.masterclass-copy h2,
.difference-intro h2,
.genesis-faq > h2,
.results-heading h2 {
  text-wrap: balance;
}

.hero-rule {
  box-shadow: 0 9px 24px rgba(255, 219, 88, 0.22);
}

.info-card,
.offline-card,
.gims-title-band,
.test-feature,
.about-gims,
.founder-masterclass,
.genesis-difference,
.genesis-stats,
.genesis-faq,
.genesis-results,
.genesis-share-cta {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.info-card,
.offline-card,
.test-feature,
.genesis-stat-card,
.genesis-faq details,
.results-spotlight article {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.info-card,
.offline-card,
.genesis-stat-card,
.results-spotlight article {
  border-radius: 18px;
}

.info-card:hover,
.offline-card:hover,
.genesis-stat-card:hover,
.results-spotlight article:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.18);
}

.info-card-scholarship,
.info-card-value {
  position: relative;
  overflow: hidden;
}

.info-card-scholarship::before,
.info-card-value::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 219, 88, 0.16), transparent 72%);
  content: "";
  transform: translateX(-100%);
  transition: transform 700ms ease;
}

.info-card-scholarship:hover::before,
.info-card-value:hover::before {
  transform: translateX(100%);
}

.clock-icon {
  box-shadow: inset 0 0 0 4px #1c5170, 0 0 0 6px #f4b64b, 0 14px 24px rgba(240, 172, 59, 0.22);
}

.gims-title-band {
  border-radius: 18px;
  background: linear-gradient(135deg, #202020, #303030);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}

.test-feature {
  position: relative;
}

.test-feature::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--yellow);
  content: "";
  transition: width 240ms ease, left 240ms ease;
}

.test-feature:hover::before {
  left: 25%;
  width: 50%;
}

.test-feature svg,
.detail-icon,
.certificate-icon,
.rupee-icon {
  filter: drop-shadow(0 8px 12px rgba(255, 219, 88, 0.16));
}

.about-gims {
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 219, 88, 0.16), transparent 18rem),
    var(--white);
}

.about-gims-portrait img {
  transition: transform 500ms ease;
}

.about-gims:hover .about-gims-portrait img {
  transform: translateY(-6px) scale(1.02);
}

.enrol-button {
  box-shadow: 0 12px 24px rgba(255, 219, 88, 0.18);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.enrol-button:hover {
  background: #ffe98d;
  box-shadow: 0 16px 30px rgba(255, 219, 88, 0.3);
  transform: translateY(-4px);
}

.founder-masterclass {
  border: 1px solid rgba(255, 219, 88, 0.18);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.3);
}

.masterclass-mentor {
  box-shadow: 0 18px 32px rgba(255, 219, 88, 0.12);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.founder-masterclass:hover .masterclass-mentor {
  box-shadow: 0 24px 42px rgba(255, 219, 88, 0.22);
  transform: rotate(1deg) translateY(-4px);
}

.difference-image-wrap,
.difference-card,
.genesis-stats h2 {
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

.difference-card {
  border-radius: 18px;
}

.genesis-stats h2 {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.genesis-stats h2:hover {
  box-shadow: 0 18px 34px rgba(255, 219, 88, 0.2);
  transform: translateY(-3px);
}

.genesis-faq details:hover {
  border-color: #aaa;
}

.genesis-faq summary:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: -3px;
}

.genesis-faq details[open] {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.genesis-results {
  border: 1px solid #333;
  background: radial-gradient(circle at 50% 0, #2d2d2d, #050505 40%);
}

.results-highlights article {
  transition: transform 220ms ease;
}

.results-highlights article:hover {
  transform: translateY(-4px);
}

.results-spotlight article {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
}

.genesis-share-cta {
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.24);
}

.registration-form > label input,
.registration-form > label select,
.exam-mode-option > span,
.fixed-registration-fee {
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.registration-form > label input:hover,
.registration-form > label select:hover,
.exam-mode-option:hover > span {
  border-color: #8b8b90;
}

.registration-form > label input:focus,
.registration-form > label select:focus {
  box-shadow: 0 0 0 4px rgba(255, 219, 88, 0.14);
  transform: translateY(-2px);
}

.fixed-registration-fee {
  border-radius: 14px;
  box-shadow: 0 12px 22px rgba(255, 219, 88, 0.08);
}

.submit-button {
  box-shadow: 0 16px 30px rgba(255, 219, 88, 0.14);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.submit-button:hover,
.submit-button:focus-visible {
  box-shadow: 0 20px 34px rgba(255, 219, 88, 0.28);
}

@media (min-width: 701px) and (max-width: 980px) {
  .page-shell {
    padding-inline: 34px;
  }

  .site-header {
    min-height: 146px;
    padding-inline: 18px;
  }

  .brand > span {
    font-size: 1.9rem;
  }

  .phone-link {
    font-size: 1.25rem;
  }

  .phone-link svg {
    width: 32px;
    height: 32px;
  }

  .hero-panel {
    padding-inline: 46px;
  }

  .registration {
    padding-inline: 54px;
  }

  .founder-masterclass {
    grid-template-columns: minmax(0, 1.25fr) minmax(210px, 0.75fr);
    gap: 26px;
    padding-inline: 38px;
  }

  .masterclass-copy h2 {
    font-size: clamp(2.8rem, 5.4vw, 4.4rem);
  }

  .difference-intro {
    padding-inline: 30px;
  }
}

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

/* Keep the compact phone action inside the mobile header. */
@media (max-width: 700px) {
  .phone-link {
    width: 32px !important;
    min-width: 32px !important;
    max-width: 32px !important;
    height: 32px;
    flex: 0 0 32px !important;
    justify-content: center;
    overflow: hidden !important;
    white-space: nowrap;
    font-size: 0 !important;
  }

  .phone-link span,
  .phone-link::after {
    display: none !important;
    content: none !important;
  }
}

/* Compact interaction pass: keeps the existing form structure, but makes the
   controls easier to scan, tap, and complete at every viewport size. */
.registration-form {
  max-width: 720px;
  margin-inline: auto;
  gap: 22px;
}

.registration-form > label {
  position: relative;
  display: block;
}

.registration-form > label::after {
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 18px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--yellow), #fff0a6, var(--yellow));
  content: "";
  opacity: 0;
  transform: scaleX(0.18);
  transform-origin: center;
  transition: opacity 180ms ease, transform 240ms ease;
  pointer-events: none;
}

.registration-form > label:focus-within::after {
  opacity: 1;
  transform: scaleX(1);
}

.registration-form > label input,
.registration-form > label select {
  height: 72px;
  padding: 0 20px;
  border: 1px solid #5d5d63;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 8px 20px rgba(0, 0, 0, 0.08);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  letter-spacing: -0.025em;
}

.registration-form > label input::placeholder {
  transition: color 180ms ease, transform 180ms ease;
}

.registration-form > label input:hover,
.registration-form > label select:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
  border-color: #9a9aa0;
}

.registration-form > label input:focus,
.registration-form > label select:focus {
  border-color: var(--yellow);
  background: linear-gradient(135deg, rgba(255, 219, 88, 0.11), rgba(255, 255, 255, 0.04));
  box-shadow: 0 0 0 4px rgba(255, 219, 88, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 12px 24px rgba(0, 0, 0, 0.14);
  transform: translateY(-2px);
}

.registration-form > label input:focus::placeholder {
  color: #d7d7da;
  transform: translateX(3px);
}

.registration-form > label select {
  background-position: calc(100% - 24px) 47%, calc(100% - 14px) 47%, 0 0;
  background-size: 8px 8px, 8px 8px, auto;
  background-image: linear-gradient(45deg, transparent 50%, #e9e9ec 50%), linear-gradient(135deg, #e9e9ec 50%, transparent 50%), linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
}

.registration-form > label select:focus {
  background-image: linear-gradient(45deg, transparent 50%, var(--yellow) 50%), linear-gradient(135deg, var(--yellow) 50%, transparent 50%), linear-gradient(135deg, rgba(255, 219, 88, 0.11), rgba(255, 255, 255, 0.04));
}

.exam-mode-field {
  gap: 12px;
  margin-top: 2px;
}

.exam-mode-field > p {
  font-size: 1rem;
  letter-spacing: -0.015em;
}

.exam-mode-options {
  gap: 12px;
}

.exam-mode-option {
  min-height: 76px;
}

.exam-mode-option > span {
  gap: 4px;
  padding: 14px 16px;
  border-radius: 14px;
}

.exam-mode-option strong {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.exam-mode-option small {
  color: #b8b8be;
  font-size: 0.78rem;
}

.exam-mode-option input:checked + span {
  box-shadow: inset 0 0 0 1px var(--yellow), 0 8px 18px rgba(255, 219, 88, 0.1);
  transform: translateY(-2px);
}

.fixed-registration-fee {
  min-height: 56px;
  margin: 2px 0 0;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 1rem;
}

.fixed-registration-fee > span {
  width: 26px;
  height: 26px;
  font-size: 0.85rem;
}

.submit-button {
  width: min(100%, 420px);
  min-height: 64px;
  margin: 4px auto 0;
  padding: 12px 24px;
  border: 1px solid #ffe98d;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--yellow), #ffe98d);
  font-size: clamp(1.05rem, 1.9vw, 1.35rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  white-space: normal;
}

.submit-button:hover,
.submit-button:focus-visible {
  background: linear-gradient(135deg, #ffe98d, var(--yellow));
  transform: translateY(-3px) scale(1.01);
}

.enrol-button {
  min-height: 62px;
  border-radius: 14px;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
}

.share-register-button,
.share-whatsapp-button {
  min-height: 48px;
  border-radius: 12px;
  font-size: 0.98rem;
}

.payment-result {
  max-width: 720px;
  margin-inline: auto;
  border-radius: 14px;
}

@media (max-width: 700px) {
  .registration-form {
    gap: 16px;
  }

  .registration-form > label input,
  .registration-form > label select {
    height: 62px;
    padding: 0 16px;
    border-radius: 14px;
    font-size: 1rem;
  }

  .registration-form > label::after {
    right: 14px;
    left: 14px;
  }

  .exam-mode-options {
    gap: 10px;
  }

  .exam-mode-option {
    min-height: 68px;
  }

  .exam-mode-option > span {
    padding: 12px 13px;
    border-radius: 12px;
  }

  .exam-mode-option strong {
    font-size: 0.98rem;
  }

  .exam-mode-option small {
    font-size: 0.72rem;
  }

  .fixed-registration-fee {
    min-height: 52px;
    padding: 10px 12px;
    font-size: 0.92rem;
  }

  .submit-button {
    width: 100%;
    min-height: 58px;
    margin-top: 2px;
    padding: 10px 18px;
    border-radius: 14px;
    font-size: 1.02rem;
  }

  .enrol-button {
    min-height: 56px;
    font-size: 1.1rem;
  }

  .share-register-button,
  .share-whatsapp-button {
    min-height: 46px;
    font-size: 0.94rem;
  }
}

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

/* Final scale pass: a tighter premium editorial rhythm across the full page. */
body {
  font-family: "Avenir Next", "Inter", "Segoe UI", sans-serif;
}

.site-header {
  min-height: 128px;
  padding: 24px 30px 26px;
}

.brand img {
  width: 62px;
  height: 62px;
  border-radius: 11px;
}

.brand > span {
  font-size: 1.72rem;
}

.brand small {
  margin-top: 7px;
  font-size: 0.78rem;
}

.phone-link {
  gap: 10px;
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.phone-link svg {
  width: 30px;
  height: 30px;
}

.hero-panel {
  padding: 44px 48px 34px;
}

.hero-panel h1 {
  max-width: 680px;
  font-size: clamp(2.45rem, 5.1vw, 3.8rem);
  line-height: 1.04;
}

.hero-panel p {
  max-width: 650px;
  margin-top: 26px;
  font-size: clamp(1.12rem, 2.2vw, 1.65rem);
}

.hero-rule {
  height: 12px;
}

.scholarship-info {
  gap: 16px 14px;
  padding: 34px 10px 0;
}

.info-card {
  min-height: 132px;
  padding: 16px 20px;
  border-width: 1px;
  border-radius: 16px;
}

.info-card-copy {
  gap: 9px;
}

.info-card strong {
  font-size: clamp(1.15rem, 2.2vw, 1.62rem);
}

.info-card span {
  font-size: clamp(2rem, 3.6vw, 2.9rem);
}

.info-icon {
  width: 52px;
  height: 52px;
}

.certificate-icon {
  width: 55px;
  height: 44px;
}

.info-card-scholarship .info-card-copy span {
  width: 60px;
  height: 60px;
  border-width: 4px;
  font-size: 0.95rem;
}

.rupee-icon {
  font-size: 2.1rem;
}

.offline-card {
  padding: 38px 24px 42px;
  border-width: 1px;
}

.clock-icon {
  width: 84px;
  height: 84px;
  margin-bottom: 18px;
}

.offline-card > strong {
  font-size: clamp(1.85rem, 3.8vw, 2.55rem);
}

.offline-dates {
  margin-top: 26px;
  font-size: clamp(1.12rem, 2.2vw, 1.65rem);
}

.offline-dates em {
  margin: 10px 0;
  font-size: 1.35rem;
}

.offline-card p {
  margin-top: 28px;
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
}

.gims-title-band {
  padding: 28px 18px;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
}

.test-feature {
  gap: 16px;
  padding: 38px 18px 34px;
}

.test-feature svg {
  width: 46px;
  height: 46px;
}

.test-feature h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.72rem);
}

.about-gims {
  gap: 18px;
  padding: 50px 30px 28px;
}

.about-gims-intro h2 {
  font-size: clamp(2.15rem, 4.3vw, 3.35rem);
}

.about-gims-intro p {
  margin-top: 16px;
  font-size: clamp(1.08rem, 2.1vw, 1.65rem);
}

.about-gims-portrait {
  width: min(100%, 290px);
  height: 330px;
  margin-top: 12px;
}

.about-gims-story h3,
.gims-detail-block h3 {
  font-size: clamp(1.45rem, 2.7vw, 2rem);
}

.about-gims-story p,
.gims-detail-block p {
  margin-top: 18px;
  font-size: clamp(1rem, 1.8vw, 1.28rem);
  line-height: 1.48;
}

.gims-detail-block {
  max-width: 720px;
  padding: 34px 8px 36px;
}

.detail-icon {
  width: 66px;
  height: 66px;
  margin-bottom: 18px;
  font-size: 1.7rem;
}

.enrol-button {
  min-height: 56px;
  margin-top: 0;
  font-size: clamp(1rem, 1.8vw, 1.28rem);
}

.founder-masterclass {
  gap: 28px;
  margin-top: 42px;
  padding: 46px 42px;
  border-radius: 30px;
}

.masterclass-eyebrow {
  margin-bottom: 18px;
  font-size: 0.9rem;
}

.masterclass-copy h2 {
  font-size: clamp(2.35rem, 5vw, 4rem);
}

.masterclass-copy > p:not(.masterclass-eyebrow) {
  margin-top: 22px;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
}

.masterclass-tags {
  gap: 8px;
  margin-top: 20px;
}

.masterclass-tags span {
  padding: 8px 13px;
  font-size: 0.85rem;
}

.masterclass-mentor {
  padding: 22px 18px 18px;
  border-radius: 26px;
}

.mentor-photo {
  width: min(100%, 190px);
  height: 190px;
}

.masterclass-mentor h3 {
  margin-top: 16px;
  font-size: 1.45rem;
}

.masterclass-mentor p {
  margin-top: 8px;
  font-size: 0.86rem;
}

.genesis-difference {
  gap: 18px;
  margin-top: 40px;
  padding: 48px 0 28px;
}

.difference-intro {
  padding-inline: 30px;
}

.difference-intro h2 {
  font-size: clamp(2.15rem, 4.4vw, 3.35rem);
}

.difference-intro > p {
  margin-top: 20px;
  font-size: clamp(1.12rem, 2.2vw, 1.7rem);
}

.difference-copy {
  max-width: 700px;
  margin-top: 34px;
}

.difference-copy p,
.difference-card p {
  font-size: clamp(1rem, 1.9vw, 1.35rem);
}

.difference-image-wrap {
  width: calc(100% - 44px);
  max-width: 700px;
  margin: 8px auto 20px;
  padding: 8px;
}

.difference-card {
  width: calc(100% - 34px);
  padding: 42px 30px 46px;
}

.difference-card h3 {
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
}

.difference-card p {
  margin-top: 20px;
}

.difference-close {
  max-width: 700px;
  padding-inline: 20px;
  font-size: clamp(1.08rem, 2vw, 1.55rem);
}

.genesis-stats {
  max-width: 860px;
  margin-top: 30px;
}

.genesis-stats h2 {
  min-height: 84px;
  margin-bottom: 34px;
  padding: 14px 20px;
  border-radius: 16px;
  font-size: clamp(1.7rem, 3.4vw, 2.45rem);
}

.genesis-stats-grid {
  gap: 28px 18px;
}

.genesis-stat-card {
  grid-template-rows: 100px auto 60px;
  min-height: 248px;
  border-radius: 34px 34px 0 0;
}

.genesis-stat-visual svg {
  width: 62px;
  height: 62px;
}

.genesis-stat-card > strong {
  font-size: clamp(1.75rem, 3.6vw, 2.65rem);
}

.genesis-stat-card > span {
  padding: 10px 12px;
  font-size: clamp(0.85rem, 1.7vw, 1.1rem);
}

.genesis-faq {
  max-width: 860px;
  margin-top: 60px;
}

.genesis-faq > h2 {
  padding-bottom: 36px;
  font-size: clamp(2.25rem, 4.8vw, 3.7rem);
}

.genesis-faq summary {
  min-height: 82px;
  padding: 18px 24px;
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
}

.genesis-faq summary b {
  width: 46px;
  height: 46px;
}

.faq-answer {
  padding: 0 24px 24px;
}

.faq-answer p {
  padding-top: 20px;
  font-size: clamp(0.98rem, 1.8vw, 1.2rem);
}

.genesis-results {
  max-width: 860px;
  margin-top: 62px;
  padding: 50px 30px 58px;
}

.results-heading h2 {
  font-size: clamp(2.15rem, 4.8vw, 3.6rem);
}

.results-heading p {
  margin-top: 18px;
  font-size: clamp(1.12rem, 2.2vw, 1.65rem);
}

.results-highlights {
  max-width: 700px;
  margin-top: 58px;
}

.results-highlights span {
  font-size: clamp(0.95rem, 1.8vw, 1.25rem);
}

.results-highlights strong {
  font-size: clamp(1.18rem, 2.4vw, 1.55rem);
}

.results-spotlight {
  gap: 22px 14px;
  margin-top: 46px;
}

.results-spotlight article {
  min-height: 138px;
}

.results-spotlight strong {
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.genesis-share-cta {
  max-width: 860px;
  min-height: 340px;
  margin-top: 62px;
}

.share-cta-content {
  padding: 52px 28px 56px;
}

.share-cta-eyebrow {
  font-size: clamp(1.7rem, 3.5vw, 2.45rem);
}

.share-cta-content h2 {
  margin-top: 16px;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.share-cta-content > p:not(.share-cta-eyebrow) {
  margin-top: 18px;
  font-size: clamp(0.95rem, 1.7vw, 1.15rem);
}

.registration {
  padding-top: 42px;
}

.registration-intro h2 {
  font-size: clamp(2.05rem, 4.5vw, 3.3rem);
}

.registration-intro p {
  margin: 22px 0 42px;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
}

@media (max-width: 700px) {
  .site-header {
    min-height: 112px;
    padding: 20px 0 22px;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .brand > span {
    font-size: 1.42rem;
  }

  .brand small {
    font-size: 0.64rem;
  }

  .phone-link svg {
    width: 28px;
    height: 28px;
  }

  .hero-panel {
    padding: 28px 20px 26px;
    border-radius: 18px 18px 0 0;
  }

  .hero-panel h1 {
    font-size: clamp(2rem, 8.7vw, 3rem);
  }

  .hero-panel p {
    margin-top: 20px;
    font-size: 1.05rem;
  }

  .scholarship-info {
    gap: 12px;
    padding-top: 24px;
  }

  .info-card {
    min-height: 108px;
    padding: 13px 15px;
    border-radius: 14px;
  }

  .info-card strong {
    font-size: 1.05rem;
  }

  .info-card span {
    font-size: 1.95rem;
  }

  .info-card-scholarship .info-card-copy span {
    width: 52px;
    height: 52px;
    font-size: 0.78rem;
  }

  .offline-card {
    padding: 30px 15px 34px;
  }

  .clock-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 14px;
  }

  .offline-card > strong {
    font-size: 1.75rem;
  }

  .offline-dates {
    margin-top: 20px;
    font-size: 1.05rem;
  }

  .offline-card p {
    margin-top: 22px;
    font-size: 0.9rem;
  }

  .gims-title-band {
    padding: 22px 14px;
    font-size: 1.35rem;
  }

  .test-feature {
    padding: 30px 10px 28px;
  }

  .test-feature h3 {
    font-size: 1.18rem;
  }

  .about-gims {
    padding: 34px 14px 20px;
  }

  .about-gims-intro h2 {
    font-size: 2rem;
  }

  .about-gims-intro p {
    font-size: 1.05rem;
  }

  .about-gims-portrait {
    width: min(100%, 230px);
    height: 255px;
  }

  .about-gims-story h3,
  .gims-detail-block h3 {
    font-size: 1.3rem;
  }

  .about-gims-story p,
  .gims-detail-block p {
    font-size: 0.96rem;
  }

  .gims-detail-block {
    padding: 26px 3px 28px;
  }

  .detail-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 14px;
  }

  .founder-masterclass {
    gap: 22px;
    margin-top: 28px;
    padding: 32px 18px 22px;
    border-radius: 22px;
  }

  .masterclass-copy h2 {
    font-size: 2.25rem;
  }

  .masterclass-copy > p:not(.masterclass-eyebrow) {
    font-size: 0.96rem;
  }

  .genesis-difference {
    margin-top: 28px;
    padding-top: 34px;
  }

  .difference-intro {
    padding-inline: 14px;
  }

  .difference-intro h2 {
    font-size: 2rem;
  }

  .difference-intro > p {
    font-size: 1rem;
  }

  .difference-copy p,
  .difference-card p {
    font-size: 0.96rem;
  }

  .difference-card {
    padding: 32px 20px 36px;
  }

  .difference-card h3 {
    font-size: 1.35rem;
  }

  .difference-close {
    font-size: 1.05rem;
  }

  .genesis-stats {
    margin-top: 22px;
  }

  .genesis-stats h2 {
    min-height: 68px;
    margin-bottom: 20px;
    padding: 12px 10px;
    font-size: 1.42rem;
  }

  .genesis-stats-grid {
    gap: 14px 10px;
  }

  .genesis-stat-card {
    grid-template-rows: 74px auto 48px;
    min-height: 190px;
    border-radius: 24px 24px 0 0;
  }

  .genesis-stat-visual svg {
    width: 44px;
    height: 44px;
  }

  .genesis-stat-card > strong {
    font-size: 1.45rem;
  }

  .genesis-stat-card > span {
    padding: 6px 4px;
    font-size: 0.7rem;
  }

  .genesis-faq {
    margin-top: 42px;
  }

  .genesis-faq > h2 {
    padding-bottom: 24px;
    font-size: 2rem;
  }

  .genesis-faq summary {
    min-height: 68px;
    gap: 10px;
    padding: 14px 14px;
    font-size: 1.05rem;
  }

  .genesis-faq summary b {
    width: 38px;
    height: 38px;
  }

  .faq-answer {
    padding: 0 14px 18px;
  }

  .faq-answer p {
    padding-top: 16px;
    font-size: 0.92rem;
  }

  .genesis-results {
    margin-top: 42px;
    padding: 34px 14px 40px;
    border-radius: 22px;
  }

  .results-heading h2 {
    font-size: 2.05rem;
  }

  .results-heading p {
    font-size: 1.02rem;
  }

  .results-highlights {
    margin-top: 40px;
  }

  .results-highlights span {
    font-size: 0.9rem;
  }

  .results-highlights strong {
    font-size: 1.1rem;
  }

  .results-spotlight {
    gap: 22px 10px;
    margin-top: 36px;
  }

  .results-spotlight article {
    min-height: 116px;
  }

  .results-spotlight strong {
    font-size: 0.95rem;
  }

  .genesis-share-cta {
    min-height: 280px;
    margin-top: 42px;
    border-radius: 22px;
  }

  .share-cta-content {
    padding: 36px 18px 40px;
  }

  .share-cta-eyebrow {
    font-size: 1.65rem;
  }

  .share-cta-content h2 {
    font-size: 1.35rem;
  }

  .share-cta-content > p:not(.share-cta-eyebrow) {
    font-size: 0.9rem;
  }

  .registration {
    padding-top: 30px;
  }

  .registration-intro h2 {
    font-size: 1.95rem;
  }

  .registration-intro p {
    margin: 16px 0 28px;
    font-size: 1.28rem;
  }
}

/* CRED-inspired finish: light editorial canvas, deep ink, and precise accent
   surfaces. This is intentionally scoped to the fresh GIMS 2026 page. */
:root {
  --black: #071426;
  --white: #ffffff;
  --paper: #f4f7fb;
  --yellow: #ffd84a;
  --muted: #748196;
  --edge: #dce4ee;
  --blue-soft: #eaf4ff;
  --blue-line: #cfe2fa;
  --ink: #071426;
}

html {
  background: #071426;
}

body {
  background:
    radial-gradient(circle at 10% 3%, rgba(137, 220, 255, 0.16), transparent 28rem),
    radial-gradient(circle at 95% 18%, rgba(255, 216, 74, 0.12), transparent 24rem),
    #071426;
  color: var(--white);
  font-family: "DM Sans", "Avenir Next", sans-serif;
}

.page-shell {
  width: min(100%, 1160px);
  padding-inline: 56px;
  border-inline: 1px solid rgba(220, 228, 238, 0.16);
  background: linear-gradient(180deg, #071426 0 17%, #f7f9fc 17% 100%);
  box-shadow: 0 0 100px rgba(3, 10, 24, 0.35);
}

.page-shell::before {
  background-image: radial-gradient(rgba(7, 20, 38, 0.12) 0.65px, transparent 0.65px);
  background-size: 24px 24px;
  opacity: 0.08;
}

.site-header {
  min-height: 112px;
  padding: 22px 26px 24px;
}

.brand,
.phone-link {
  color: var(--white);
}

.brand > span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.brand small {
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand img {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.26);
}

.phone-link {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.045em;
}

.hero-panel {
  padding: 48px 52px 36px;
  border-radius: 24px 24px 0 0;
  background:
    radial-gradient(circle at 75% 20%, rgba(255, 216, 74, 0.18), transparent 18rem),
    linear-gradient(135deg, #f7f9fd, #edf5fb);
  box-shadow: 0 22px 46px rgba(5, 19, 38, 0.2);
}

.hero-panel h1,
.registration-intro h2,
.about-gims-intro h2,
.masterclass-copy h2,
.difference-intro h2,
.genesis-faq > h2,
.results-heading h2,
.share-cta-content h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
}

.hero-panel h1 {
  max-width: 720px;
  color: var(--ink);
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  letter-spacing: -0.085em;
}

.hero-panel p {
  max-width: 680px;
  color: #52667d;
  font-size: clamp(1.1rem, 2.1vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.hero-rule {
  height: 10px;
  background: linear-gradient(90deg, var(--yellow), #ffe99a);
  box-shadow: 0 10px 28px rgba(255, 216, 74, 0.26);
}

.registration {
  padding: 46px 82px 0;
  color: var(--white);
}

.registration-intro h2 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  letter-spacing: -0.08em;
}

.registration-intro p {
  margin: 18px 0 38px;
  color: #d6dfec;
  font-size: clamp(1.3rem, 2.8vw, 1.95rem);
  letter-spacing: -0.055em;
}

.registration-form {
  max-width: 720px;
  gap: 16px;
}

.registration-form > label input,
.registration-form > label select {
  height: 64px;
  border: 1px solid #d1deec;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.registration-form > label input::placeholder,
.registration-form select:invalid {
  color: #8d9caf;
}

.registration-form > label input:hover,
.registration-form > label select:hover {
  border-color: #9bb8d7;
  background: rgba(255, 255, 255, 0.09);
}

.registration-form > label input:focus,
.registration-form > label select:focus {
  border-color: #7cd8e8;
  background: rgba(124, 216, 232, 0.1);
  box-shadow: 0 0 0 4px rgba(124, 216, 232, 0.16), 0 12px 24px rgba(0, 0, 0, 0.14);
}

.exam-mode-field > p {
  color: #b7c7d9;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.exam-mode-option > span {
  border-color: #38506c;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.04);
}

.exam-mode-option strong {
  color: #eef5fc;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.exam-mode-option small {
  color: #9eb0c5;
}

.exam-mode-option input:checked + span {
  border-color: var(--yellow);
  background: rgba(255, 216, 74, 0.13);
  box-shadow: inset 0 0 0 1px var(--yellow), 0 8px 18px rgba(255, 216, 74, 0.12);
}

.fixed-registration-fee {
  border-color: #47708e;
  border-radius: 14px;
  background: rgba(124, 216, 232, 0.08);
  color: #eaf4ff;
}

.fixed-registration-fee > span {
  background: var(--yellow);
}

.submit-button {
  width: min(100%, 390px);
  min-height: 58px;
  border: 1px solid #ffe89a;
  border-radius: 14px;
  background: var(--yellow);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  box-shadow: 0 14px 30px rgba(255, 216, 74, 0.2);
}

.submit-button:hover,
.submit-button:focus-visible {
  background: #ffe68a;
  box-shadow: 0 18px 34px rgba(255, 216, 74, 0.32);
  transform: translateY(-3px) scale(1.01);
}

.scholarship-info,
.test-features,
.about-gims,
.genesis-difference,
.genesis-faq,
.genesis-results,
.genesis-share-cta {
  color: var(--ink);
}

.scholarship-info {
  padding-top: 38px;
}

.info-card,
.offline-card {
  border-color: var(--edge);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 30px rgba(42, 70, 104, 0.1);
}

.info-card strong,
.info-card span,
.offline-card > strong,
.offline-dates,
.offline-card p {
  color: var(--ink);
}

.info-card strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
}

.info-card span {
  color: #31445c;
}

.offline-card {
  border-radius: 18px;
}

.gims-title-band {
  border-radius: 18px;
  background: var(--ink);
  color: var(--yellow);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.35rem, 2.7vw, 2rem);
  font-weight: 800;
}

.test-features {
  margin-inline: 14px;
  border-radius: 18px;
  background: var(--ink);
  box-shadow: 0 18px 36px rgba(5, 19, 38, 0.18);
}

.test-feature h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  font-weight: 700;
}

.about-gims {
  margin-inline: 14px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 216, 74, 0.22), transparent 18rem),
    #f7f9fc;
}

.about-gims-intro h2,
.difference-intro h2,
.genesis-faq > h2 {
  color: var(--ink);
  font-size: clamp(2rem, 4.2vw, 3.35rem);
}

.about-gims-intro p,
.about-gims-story p,
.gims-detail-block p,
.difference-copy p,
.difference-close,
.faq-answer p {
  color: #53667c;
}

.about-gims-story h3,
.gims-detail-block h3,
.difference-card h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
}

.enrol-button {
  border-color: var(--ink);
  border-radius: 14px;
  background: var(--yellow);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.founder-masterclass {
  border-color: rgba(124, 216, 232, 0.24);
  border-radius: 26px;
  background: linear-gradient(135deg, #071426, #102b49);
}

.masterclass-copy h2,
.masterclass-mentor h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.masterclass-copy h2 {
  font-size: clamp(2.25rem, 4.8vw, 3.85rem);
}

.masterclass-mentor {
  border-radius: 24px;
  background: var(--yellow);
}

.genesis-difference {
  border-radius: 22px;
  background: #f7f9fc;
}

.difference-intro > p {
  color: #53667c;
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  font-weight: 700;
}

.difference-image-wrap {
  background: var(--yellow);
}

.difference-card {
  border-radius: 18px;
  background: var(--ink);
}

.genesis-stats h2 {
  border-color: var(--ink);
  background: var(--yellow);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
}

.genesis-stat-card {
  border-color: var(--ink);
  border-radius: 34px 34px 0 0;
  background: var(--ink);
}

.genesis-stat-card > strong {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.genesis-stat-card > span {
  background: var(--yellow);
  color: var(--ink);
}

.genesis-faq-list,
.genesis-faq details {
  border-color: var(--edge);
}

.genesis-faq details {
  background: var(--white);
}

.genesis-faq summary {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
}

.genesis-faq summary b {
  background: var(--ink);
}

.faq-answer {
  background: #eef5fb;
}

.genesis-results {
  border-color: #183653;
  border-radius: 24px;
  background: radial-gradient(circle at 50% 0, #183653, #071426 46%);
}

.results-heading h2 {
  font-size: clamp(2rem, 4.3vw, 3.35rem);
}

.results-spotlight article {
  border-color: #7990a9;
}

.genesis-share-cta {
  border-radius: 24px;
  box-shadow: 0 24px 52px rgba(5, 19, 38, 0.18);
}

.share-cta-content h2 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
}

@media (max-width: 700px) {
  .page-shell {
    padding-inline: 22px;
    background: linear-gradient(180deg, #071426 0 10%, #f7f9fc 10% 100%);
  }

  .site-header {
    min-height: 96px;
    padding: 18px 0 20px;
  }

  .brand img {
    width: 50px;
    height: 50px;
    border-radius: 14px;
  }

  .brand > span {
    font-size: 1.32rem;
  }

  .phone-link::after {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.78rem;
  }

  .hero-panel {
    padding: 30px 20px 26px;
  }

  .hero-panel h1 {
    font-size: clamp(2rem, 8.4vw, 2.85rem);
  }

  .hero-panel p {
    font-size: 1rem;
  }

  .registration {
    padding-inline: 10px;
    padding-top: 32px;
  }

  .registration-intro h2 {
    font-size: 1.85rem;
  }

  .registration-intro p {
    font-size: 1.2rem;
  }

  .registration-form > label input,
  .registration-form > label select {
    height: 58px;
    border-radius: 14px;
    font-size: 0.94rem;
  }

  .exam-mode-option strong {
    font-size: 0.92rem;
  }

  .submit-button {
    min-height: 54px;
    font-size: 0.94rem;
  }

  .about-gims-intro h2,
  .difference-intro h2,
  .genesis-faq > h2 {
    font-size: 1.92rem;
  }

  .founder-masterclass {
    border-radius: 22px;
  }

  .masterclass-copy h2 {
    font-size: 2.15rem;
  }
}

/* Interactive scholarship panel: the content stays the same, while the
   hierarchy now reads like a compact, tappable timeline. */
.scholarship-info {
  position: relative;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 34px 10px 0;
}

.scholarship-info::before {
  position: absolute;
  top: 16px;
  left: 50%;
  width: 56px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  content: "";
  opacity: 0.8;
  transform: translateX(-50%);
}

.info-card {
  position: relative;
  min-height: 126px;
  padding: 18px 20px;
  overflow: hidden;
  border: 1px solid #d7e2ee;
  border-radius: 20px;
  background: linear-gradient(145deg, #ffffff, #edf5fb);
  box-shadow: 0 12px 28px rgba(37, 68, 105, 0.1);
  isolation: isolate;
}

.info-card::after {
  position: absolute;
  right: -32px;
  bottom: -42px;
  z-index: -1;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(255, 216, 74, 0.35);
  border-radius: 50%;
  content: "";
  transition: transform 300ms ease, background 300ms ease;
}

.info-card:hover::after {
  background: rgba(255, 216, 74, 0.16);
  transform: scale(1.35);
}

.info-card-copy {
  gap: 8px;
}

.info-card strong {
  color: var(--ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1rem, 2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.065em;
}

.info-card span {
  color: #344c68;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.8rem, 3.4vw, 2.75rem);
  font-weight: 800;
}

.info-card-scholarship .info-card-copy span {
  width: 58px;
  height: 58px;
  border: 3px solid #f0b800;
  background: #ffcf27;
  box-shadow: inset 0 0 0 3px #fff, 0 8px 18px rgba(240, 184, 0, 0.22);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.85rem;
}

.certificate-icon,
.rupee-icon {
  transform: scale(0.78);
}

.offline-card {
  grid-column: 1 / -1;
  position: relative;
  min-height: 330px;
  padding: 38px 28px 40px;
  overflow: hidden;
  border: 1px solid #d7e2ee;
  border-radius: 22px;
  background: linear-gradient(145deg, #ffffff, #f0f7fc);
  box-shadow: 0 18px 38px rgba(37, 68, 105, 0.12);
}

.offline-card::before {
  position: absolute;
  inset: 16px;
  border: 1px dashed rgba(70, 112, 150, 0.22);
  border-radius: 16px;
  content: "";
  pointer-events: none;
}

.offline-card > *,
.offline-card::after {
  position: relative;
  z-index: 1;
}

.offline-card::after {
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(124, 216, 232, 0.35);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 22px rgba(124, 216, 232, 0.05), 0 0 0 44px rgba(124, 216, 232, 0.04);
  pointer-events: none;
}

.clock-icon {
  width: 82px;
  height: 82px;
  margin-bottom: 16px;
  border-width: 7px;
  box-shadow: inset 0 0 0 4px #1c5170, 0 0 0 5px #f4b64b, 0 12px 24px rgba(240, 172, 59, 0.2);
  animation: gims-clock-pulse 3s ease-in-out infinite;
}

.offline-card > strong {
  color: var(--ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.07em;
}

.offline-dates {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 760px;
  margin-top: 24px;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1rem, 2vw, 1.38rem);
  font-weight: 700;
  letter-spacing: -0.045em;
}

.offline-dates b {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid #cfddeb;
  border-radius: 999px;
  background: #eaf4ff;
  color: #233e5d;
  box-shadow: 0 6px 14px rgba(42, 86, 128, 0.08);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.offline-dates b:hover {
  border-color: #f0c72c;
  background: #fff5c8;
  transform: translateY(-2px);
}

.offline-dates em {
  margin: 0 4px;
  color: #8c9caf;
  font-size: 1.1rem;
  font-style: normal;
}

.offline-card p {
  max-width: 680px;
  margin-top: 22px;
  color: #64758a;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(0.92rem, 1.6vw, 1.12rem);
  font-style: normal;
}

@keyframes gims-clock-pulse {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-4px) rotate(2deg);
  }
}

@media (max-width: 700px) {
  .scholarship-info {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 0 0;
  }

  .scholarship-info::before {
    top: 12px;
  }

  .info-card {
    min-height: 102px;
    padding: 14px 15px;
    border-radius: 16px;
  }

  .info-card strong {
    font-size: 1rem;
  }

  .info-card span {
    font-size: 1.85rem;
  }

  .info-card-scholarship .info-card-copy span {
    width: 50px;
    height: 50px;
    font-size: 0.72rem;
  }

  .offline-card {
    min-height: 300px;
    padding: 32px 16px 34px;
    border-radius: 18px;
  }

  .offline-card::before {
    inset: 10px;
    border-radius: 12px;
  }

  .clock-icon {
    width: 70px;
    height: 70px;
  }

  .offline-card > strong {
    font-size: 1.65rem;
  }

  .offline-dates {
    gap: 6px;
    margin-top: 18px;
    font-size: 0.92rem;
  }

  .offline-dates b {
    min-height: 36px;
    padding: 7px 10px;
  }

  .offline-dates em {
    font-size: 0.95rem;
  }

  .offline-card p {
    margin-top: 18px;
    font-size: 0.86rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .clock-icon {
    animation: none;
  }
}

/* Compact registration layout: the same fields and submission flow, arranged
   in a tighter grid on wider screens and a single comfortable column on phones. */
.registration {
  padding: 34px 54px 0;
}

.registration-intro h2 {
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  letter-spacing: -0.075em;
}

.registration-intro p {
  margin: 12px 0 26px;
  font-size: clamp(1.12rem, 2.2vw, 1.55rem);
}

.registration-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 820px;
  gap: 12px 14px;
}

.registration-form > label input,
.registration-form > label select {
  height: 56px;
  padding: 0 16px;
  border-radius: 13px;
  font-size: 0.92rem;
}

.registration-form > label::after {
  right: 14px;
  bottom: 0;
  left: 14px;
}

.exam-mode-field,
.fixed-registration-fee,
.form-message,
.submit-button {
  grid-column: 1 / -1;
}

.exam-mode-field {
  gap: 8px;
  margin-top: 4px;
}

.exam-mode-options {
  gap: 10px;
}

.exam-mode-option {
  min-height: 62px;
}

.exam-mode-option > span {
  padding: 10px 13px;
  border-radius: 12px;
}

.exam-mode-option strong {
  font-size: 0.92rem;
}

.exam-mode-option small {
  font-size: 0.72rem;
}

.fixed-registration-fee {
  min-height: 48px;
  margin: 2px 0 0;
  padding: 9px 13px;
  font-size: 0.9rem;
}

.fixed-registration-fee > span {
  width: 23px;
  height: 23px;
  font-size: 0.76rem;
}

.form-message {
  min-height: 18px;
  margin: -2px 0 -4px;
}

.submit-button {
  min-height: 52px;
  margin-top: 0;
  padding: 10px 20px;
  border-radius: 13px;
  font-size: 0.92rem;
}

@media (max-width: 700px) {
  .registration {
    padding: 28px 8px 0;
  }

  .registration-intro h2 {
    font-size: 1.75rem;
  }

  .registration-intro p {
    margin: 10px 0 22px;
    font-size: 1.08rem;
  }

  .registration-form {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .registration-form > label input,
  .registration-form > label select {
    height: 54px;
    font-size: 0.9rem;
  }

  .exam-mode-field,
  .fixed-registration-fee,
  .form-message,
  .submit-button {
    grid-column: auto;
  }

  .exam-mode-option {
    min-height: 60px;
  }

  .fixed-registration-fee {
    font-size: 0.86rem;
  }

  .submit-button {
    min-height: 50px;
    font-size: 0.9rem;
  }
}

/* Compact glossy feature cards: preserve the existing three-item structure. */
.gims-title-band {
  position: relative;
  min-height: 112px;
  padding: 28px 28px;
  overflow: hidden;
  border: 1px solid rgba(125, 160, 194, 0.24);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 42%),
    linear-gradient(135deg, #071426, #102a47);
  box-shadow: 0 16px 32px rgba(7, 20, 38, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  font-size: clamp(1.2rem, 2.5vw, 1.85rem);
  letter-spacing: -0.06em;
}

.gims-title-band::after {
  position: absolute;
  top: 0;
  left: -30%;
  width: 28%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  content: "";
  transform: skewX(-18deg);
  transition: left 700ms ease;
}

.gims-title-band:hover::after {
  left: 105%;
}

.test-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 14px 0;
  padding: 0;
  border-radius: 22px;
  background: transparent;
  box-shadow: none;
}

.test-feature,
.test-feature:last-child {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  min-height: 164px;
  padding: 28px 20px;
  overflow: hidden;
  border: 1px solid rgba(126, 164, 201, 0.35);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), transparent 45%),
    linear-gradient(135deg, #0c2139, #071426);
  box-shadow: 0 14px 28px rgba(7, 20, 38, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.09);
  text-align: center;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.test-feature::after {
  position: absolute;
  right: -38px;
  bottom: -48px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(255, 216, 74, 0.22);
  border-radius: 50%;
  content: "";
  transition: transform 240ms ease, background 240ms ease;
}

.test-feature:hover {
  border-color: rgba(255, 216, 74, 0.72);
  box-shadow: 0 20px 34px rgba(7, 20, 38, 0.32), 0 0 0 1px rgba(255, 216, 74, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.13);
  transform: translateY(-5px);
}

.test-feature:hover::after {
  background: rgba(255, 216, 74, 0.08);
  transform: scale(1.25);
}

.test-feature::before {
  top: auto;
  right: 22%;
  bottom: 0;
  left: 22%;
  width: 56%;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  opacity: 0.9;
}

.test-feature svg {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  stroke: #f7fbff;
  filter: drop-shadow(0 6px 10px rgba(124, 216, 232, 0.22));
}

.test-feature h3 {
  position: relative;
  z-index: 1;
  max-width: 220px;
  margin: 0;
  color: #f7fbff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1rem, 1.9vw, 1.32rem);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.055em;
}

@media (max-width: 700px) {
  .gims-title-band {
    min-height: 86px;
    padding: 21px 16px;
    border-radius: 16px;
    font-size: 1.1rem;
  }

  .test-features {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 12px 0 0;
  }

  .test-feature,
  .test-feature:last-child {
    grid-template-columns: 50px minmax(0, 1fr);
    justify-items: start;
    gap: 14px;
    min-height: 82px;
    padding: 17px 18px;
    border-radius: 16px;
    text-align: left;
  }

  .test-feature svg {
    width: 34px;
    height: 34px;
  }

  .test-feature h3 {
    max-width: none;
    font-size: 1rem;
  }

  .test-feature::before {
    right: 16%;
    bottom: 0;
    left: 16%;
    width: 68%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gims-title-band::after {
    display: none;
  }
}

/* Compact Discover GIMS panel: preserve the visual language and content while
   reducing the vertical footprint of the story and detail blocks. */
.about-gims {
  gap: 12px;
  margin-top: 18px;
  padding: 34px 28px 22px;
  border-radius: 20px;
}

.about-gims-intro h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.65rem);
  letter-spacing: -0.075em;
}

.about-gims-intro p {
  margin-top: 10px;
  font-size: clamp(0.98rem, 1.8vw, 1.3rem);
}

.about-gims-portrait {
  width: min(100%, 220px);
  height: 238px;
  margin: 6px auto 0;
}

.about-gims-story {
  max-width: 680px;
}

.about-gims-story h3,
.gims-detail-block h3 {
  font-size: clamp(1.18rem, 2.2vw, 1.65rem);
}

.about-gims-story p,
.gims-detail-block p {
  margin-top: 12px;
  font-size: clamp(0.9rem, 1.55vw, 1.08rem);
  line-height: 1.42;
}

.gims-detail-block {
  max-width: 680px;
  padding: 22px 8px 24px;
}

.gims-detail-block::before,
.gims-detail-block::after {
  width: 60px;
  height: 70px;
  background-size: 17px 17px;
}

.gims-detail-block::before {
  top: 10px;
  right: -6px;
}

.gims-detail-block::after {
  bottom: 6px;
  left: -12px;
}

.detail-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.enrol-button {
  min-height: 50px;
  margin-top: 2px;
  font-size: 0.96rem;
}

@media (max-width: 700px) {
  .about-gims {
    gap: 8px;
    margin-top: 12px;
    padding: 26px 14px 16px;
    border-radius: 16px;
  }

  .about-gims-intro h2 {
    font-size: 1.72rem;
  }

  .about-gims-intro p {
    margin-top: 7px;
    font-size: 0.92rem;
  }

  .about-gims-portrait {
    width: min(100%, 175px);
    height: 190px;
    margin-top: 4px;
  }

  .about-gims-story h3,
  .gims-detail-block h3 {
    font-size: 1.08rem;
  }

  .about-gims-story p,
  .gims-detail-block p {
    margin-top: 9px;
    font-size: 0.84rem;
    line-height: 1.4;
  }

  .gims-detail-block {
    padding: 18px 3px 20px;
  }

  .detail-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 9px;
    font-size: 1.2rem;
  }

  .enrol-button {
    min-height: 46px;
    font-size: 0.9rem;
  }
}

/* Center the opening statement while preserving the existing hero panel. */
.hero-panel {
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero-panel h1,
.hero-panel p {
  margin-inline: auto;
}

.hero-panel p {
  max-width: 720px;
}

/* Compact Genesis difference story: keep all four reasons, but reduce the
   image, card padding, and copy scale so the section reads as one concise story. */
.genesis-difference {
  gap: 12px;
  margin-top: 24px;
  padding: 34px 0 24px;
  border-radius: 20px;
}

.difference-intro {
  padding-inline: 24px;
}

.difference-intro h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  letter-spacing: -0.075em;
}

.difference-intro > p {
  max-width: 640px;
  margin-top: 12px;
  font-size: clamp(0.98rem, 1.8vw, 1.3rem);
  line-height: 1.25;
}

.difference-copy {
  max-width: 660px;
  margin-top: 24px;
}

.difference-copy p {
  font-size: clamp(0.9rem, 1.6vw, 1.08rem);
  line-height: 1.42;
}

.difference-image-wrap {
  width: calc(100% - 64px);
  max-width: 620px;
  margin: 4px auto 12px;
  padding: 7px;
}

.difference-image-wrap::after {
  right: -7px;
  bottom: -7px;
}

.difference-card {
  width: calc(100% - 54px);
  max-width: 760px;
  padding: 28px 28px 32px;
  border-radius: 16px;
}

.difference-card::after {
  right: -7px;
  width: 7px;
}

.difference-card h3 {
  font-size: clamp(1.22rem, 2.3vw, 1.7rem);
  letter-spacing: -0.06em;
}

.difference-card p {
  max-width: 620px;
  margin-top: 14px;
  font-size: clamp(0.9rem, 1.6vw, 1.08rem);
  line-height: 1.42;
}

.difference-close {
  max-width: 660px;
  margin-top: 14px;
  font-size: clamp(0.98rem, 1.8vw, 1.3rem);
}

@media (max-width: 700px) {
  .genesis-difference {
    gap: 8px;
    margin-top: 16px;
    padding: 26px 0 18px;
    border-radius: 16px;
  }

  .difference-intro {
    padding-inline: 14px;
  }

  .difference-intro h2 {
    font-size: 1.7rem;
  }

  .difference-intro > p {
    margin-top: 8px;
    font-size: 0.9rem;
  }

  .difference-copy {
    margin-top: 18px;
  }

  .difference-copy p {
    font-size: 0.84rem;
  }

  .difference-image-wrap {
    width: calc(100% - 32px);
    margin: 2px auto 8px;
    padding: 5px;
  }

  .difference-image-wrap::after {
    right: -5px;
    bottom: -5px;
  }

  .difference-card {
    width: calc(100% - 26px);
    padding: 24px 18px 28px;
    border-radius: 14px;
  }

  .difference-card h3 {
    font-size: 1.18rem;
  }

  .difference-card p {
    margin-top: 11px;
    font-size: 0.84rem;
    line-height: 1.4;
  }

  .difference-close {
    margin-top: 8px;
    padding-inline: 14px;
    font-size: 0.9rem;
  }
}

/* Compact Genesis metrics: retain all four proof points in a tighter dashboard. */
.genesis-stats {
  width: calc(100% - 40px);
  max-width: 800px;
  margin-top: 22px;
}

.genesis-stats h2 {
  min-height: 62px;
  margin-bottom: 22px;
  padding: 12px 18px;
  border-radius: 15px;
  font-size: clamp(1.35rem, 2.7vw, 2rem);
  letter-spacing: -0.07em;
}

.genesis-stats-grid {
  gap: 18px 14px;
}

.genesis-stat-card {
  grid-template-rows: 76px auto 48px;
  min-height: 194px;
  border-radius: 28px 28px 0 0;
}

.genesis-stat-visual {
  padding-bottom: 4px;
}

.genesis-stat-visual svg {
  width: 48px;
  height: 48px;
}

.genesis-stat-card > strong {
  padding: 6px 10px;
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
}

.genesis-stat-card > span {
  padding: 8px 10px;
  font-size: clamp(0.78rem, 1.5vw, 1rem);
}

@media (max-width: 700px) {
  .genesis-stats {
    width: calc(100% - 20px);
    margin-top: 16px;
  }

  .genesis-stats h2 {
    min-height: 54px;
    margin-bottom: 14px;
    padding: 10px 8px;
    border-radius: 12px;
    font-size: 1.18rem;
  }

  .genesis-stats-grid {
    gap: 10px 8px;
  }

  .genesis-stat-card {
    grid-template-rows: 62px auto 42px;
    min-height: 162px;
    border-radius: 20px 20px 0 0;
  }

  .genesis-stat-visual svg {
    width: 36px;
    height: 36px;
  }

  .genesis-stat-card > strong {
    font-size: 1.25rem;
  }

  .genesis-stat-card > span {
    padding: 5px 3px;
    font-size: 0.62rem;
  }
}

/* Compact FAQ heading and intro spacing. */
.genesis-faq {
  max-width: 800px;
  margin-top: 38px;
}

.genesis-faq > h2 {
  padding-bottom: 22px;
  font-size: clamp(1.7rem, 3.3vw, 2.55rem);
  letter-spacing: -0.075em;
}

.genesis-faq summary {
  min-height: 68px;
  padding: 14px 20px;
  font-size: clamp(0.98rem, 1.8vw, 1.25rem);
}

.genesis-faq summary b {
  width: 40px;
  height: 40px;
}

.faq-answer {
  padding: 0 20px 20px;
}

.faq-answer p {
  padding-top: 16px;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  line-height: 1.42;
}

@media (max-width: 700px) {
  .genesis-faq {
    width: calc(100% - 8px);
    margin-top: 28px;
  }

  .genesis-faq > h2 {
    padding-bottom: 16px;
    font-size: 1.62rem;
  }

  .genesis-faq summary {
    min-height: 58px;
    padding: 11px 13px;
    font-size: 0.94rem;
  }

  .genesis-faq summary b {
    width: 34px;
    height: 34px;
  }

  .faq-answer {
    padding: 0 13px 16px;
  }

  .faq-answer p {
    padding-top: 13px;
    font-size: 0.84rem;
  }
}
/* Compact results panel: keep the dark theme, restore readable contrast. */
.genesis-results {
  width: calc(100% - 28px);
  max-width: 800px;
  margin-top: 38px;
  padding: 40px 24px 46px;
  border-radius: 22px;
}

.results-heading h2 {
  color: #f7fbff !important;
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
}

.results-heading p {
  color: var(--yellow) !important;
  margin-top: 12px;
  font-size: clamp(1rem, 1.9vw, 1.35rem);
}

.results-highlights {
  max-width: 680px;
  margin-top: 42px;
  gap: 0;
}

.results-highlights article {
  padding: 0 18px 16px;
  border-color: rgba(215, 227, 240, .35);
}

.results-highlights span {
  color: #dce8f5 !important;
  font-size: clamp(.88rem, 1.6vw, 1.08rem);
  font-weight: 500;
}

.results-highlights strong {
  color: var(--yellow) !important;
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
}

.results-highlights article:nth-child(3) {
  margin-top: 18px;
}

.results-spotlight {
  gap: 16px 12px;
  margin-top: 36px;
}

.results-spotlight article {
  min-height: 128px;
  padding: 28px 8px 10px;
  border: 1px solid #7990a9;
  border-radius: 28px;
  background: linear-gradient(145deg, #122941, #08192c);
  color: #f7fbff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .16);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.results-spotlight article::before {
  top: -10px;
  left: 8px;
  width: 40px;
  height: 40px;
}

.results-spotlight b {
  top: 1px;
  left: 16px;
  color: var(--ink) !important;
  font-size: .68rem;
}

.results-spotlight strong {
  color: #f7fbff !important;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.results-spotlight span {
  color: #b8cce0 !important;
  font-size: .7rem;
}

.results-spotlight article:hover {
  border-color: var(--yellow);
  box-shadow: 0 16px 30px rgba(0, 0, 0, .24);
  transform: translateY(-4px);
}

@media (max-width: 700px) {
  .genesis-results {
    width: calc(100% - 18px);
    margin-top: 34px;
    padding: 30px 12px 34px;
    border-radius: 18px;
  }

  .results-heading h2 {
    font-size: 1.85rem;
  }

  .results-heading p {
    font-size: .95rem;
  }

  .results-highlights {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .results-highlights article,
  .results-highlights article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(215, 227, 240, .3);
    padding: 0 8px 13px;
  }

  .results-highlights article + article {
    margin-top: 14px;
  }

  .results-highlights article:nth-child(3) {
    margin-top: 14px;
    border-bottom: 0;
  }

  .results-spotlight {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 10px;
    margin-top: 28px;
  }

  .results-spotlight article {
    min-height: 106px;
    padding: 25px 5px 8px;
    border-radius: 20px;
  }

  .results-spotlight article::before {
    width: 34px;
    height: 34px;
  }

  .results-spotlight b {
    left: 12px;
    font-size: .58rem;
  }

  .results-spotlight strong {
    font-size: .95rem;
  }

  .results-spotlight span {
    font-size: .62rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .results-spotlight article {
    transition: none;
  }
}


/* Compact final CTA: keep the photo visible while making the actions easier to scan. */
.genesis-share-cta {
  width: calc(100% - 28px);
  max-width: 800px;
  min-height: 0;
  margin-top: 46px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 216, 74, .88), rgba(255, 255, 255, .96) 92%),
    url("assets/gims.jpeg") center / cover;
}

.share-cta-overlay {
  background: linear-gradient(180deg, rgba(255, 216, 74, .16), rgba(255, 255, 255, .62) 76%, #fff 100%);
}

.share-cta-content {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 680px;
  padding: 34px 28px 32px;
}

.share-cta-eyebrow,
.share-cta-content h2,
.share-cta-content > p:not(.share-cta-eyebrow) {
  grid-column: 1 / -1;
}

.share-cta-eyebrow {
  color: var(--ink);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -.045em;
}

.share-cta-content h2 {
  margin-top: 8px;
  color: var(--ink);
  font-size: clamp(1.65rem, 3.4vw, 2.45rem);
  letter-spacing: -.045em;
  text-shadow: none;
}

.share-cta-content > p:not(.share-cta-eyebrow) {
  max-width: 610px;
  margin-top: 14px;
  color: #253852;
  font-size: clamp(.9rem, 1.7vw, 1.08rem);
  line-height: 1.35;
  letter-spacing: -.01em;
}

.share-register-button,
.share-whatsapp-button {
  width: 100%;
  min-height: 46px;
  margin-top: 18px;
  border-radius: 13px;
  font-size: .98rem;
  font-weight: 750;
  letter-spacing: -.02em;
  box-shadow: 0 8px 18px rgba(7, 20, 38, .08);
}

.share-register-button {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.share-whatsapp-button {
  margin-top: 18px;
  border-color: rgba(7, 20, 38, .14);
  background: rgba(255, 255, 255, .86);
  color: var(--ink);
}

.share-whatsapp-button span {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 2px solid #00bf63;
  border-radius: 50%;
  font-size: .9rem;
}

.share-register-button:hover,
.share-whatsapp-button:hover {
  box-shadow: 0 12px 24px rgba(7, 20, 38, .18);
  transform: translateY(-3px);
}

@media (max-width: 700px) {
  .genesis-share-cta {
    width: calc(100% - 18px);
    margin-top: 34px;
    border-radius: 18px;
  }

  .share-cta-content {
    grid-template-columns: 1fr;
    padding: 28px 16px 24px;
  }

  .share-cta-eyebrow {
    font-size: 1.28rem;
  }

  .share-cta-content h2 {
    margin-top: 6px;
    font-size: 1.72rem;
  }

  .share-cta-content > p:not(.share-cta-eyebrow) {
    margin-top: 12px;
    font-size: .86rem;
    line-height: 1.38;
  }

  .share-register-button,
  .share-whatsapp-button {
    min-height: 44px;
    margin-top: 14px;
    font-size: .9rem;
  }
}

/* Mobile registration surface: prevent the page background from washing out
   the lower fields while the user moves through the form. */
.registration-form {
  padding: 18px;
  border: 1px solid rgba(125, 160, 194, .24);
  border-radius: 20px;
  background: linear-gradient(145deg, #0d2138, #071426);
  box-shadow: 0 18px 38px rgba(3, 10, 24, .2);
}

.registration-form > label input,
.registration-form > label select {
  color: #f7fbff;
  background: rgba(255, 255, 255, .055);
}

.registration-form > label input::placeholder,
.registration-form select:invalid {
  color: #a9bad0;
  opacity: 1;
}

.exam-mode-field > p {
  margin: 0;
  color: #dce8f5;
}

.exam-mode-option > span {
  color: #f7fbff;
  background: rgba(255, 255, 255, .045);
}

.exam-mode-option small {
  color: #b8cce0;
}

.fixed-registration-fee {
  border-color: #47708e;
  background: rgba(124, 216, 232, .1);
  color: #f7fbff;
}

.form-message {
  color: #ffd84a;
}

@media (max-width: 700px) {
  .registration-form {
    gap: 12px;
    padding: 12px;
    border-radius: 16px;
  }

  .registration-form > label input,
  .registration-form > label select {
    height: 54px;
    padding: 0 14px;
    border-radius: 12px;
    font-size: .92rem;
  }

  .exam-mode-field {
    gap: 7px;
    margin-top: 2px;
  }

  .exam-mode-options {
    gap: 8px;
  }

  .exam-mode-option {
    min-height: 56px;
  }

  .exam-mode-option > span {
    padding: 9px 11px;
    border-radius: 11px;
  }

  .exam-mode-option strong {
    font-size: .88rem;
  }

  .exam-mode-option small {
    font-size: .68rem;
  }

  .fixed-registration-fee {
    min-height: 44px;
    padding: 8px 10px;
    font-size: .8rem;
  }

  .fixed-registration-fee > span {
    width: 22px;
    height: 22px;
    font-size: .72rem;
  }

  .submit-button {
    min-height: 48px;
    font-size: .88rem;
  }
}

/* Final compact premium pass: keeps the existing GIMS structure and flow,
   but gives every surface one consistent editorial scale and interaction language. */
:root {
  --gims-navy: #071426;
  --gims-navy-2: #102b49;
  --gims-blue: #7cd8e8;
  --gims-yellow: #ffda55;
  --gims-paper: #f5f8fc;
  --gims-copy: #52667d;
}

body {
  overflow-x: hidden;
  font-family: "DM Sans", "Avenir Next", sans-serif;
}

h1,
h2,
h3,
button,
.brand > span,
.phone-link,
.registration-form,
.test-feature h3,
.offline-card > strong,
.gims-title-band,
.difference-card h3,
.genesis-faq summary,
.results-heading,
.share-cta-content h2 {
  font-family: "Plus Jakarta Sans", "DM Sans", sans-serif;
}

.page-shell {
  width: min(100%, 1180px);
  padding-inline: clamp(18px, 4vw, 48px);
  background: linear-gradient(180deg, var(--gims-navy) 0 13%, var(--gims-paper) 13% 100%);
}

.site-header {
  min-height: 92px;
  padding: 16px 12px 18px;
}

.brand {
  gap: 10px;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .24);
}

.brand > span {
  font-size: 1.42rem;
  letter-spacing: -.075em;
}

.brand small {
  margin-top: 7px;
  font-size: .66rem;
}

.phone-link {
  gap: 8px;
  font-size: clamp(.82rem, 1.5vw, 1rem);
}

.phone-link svg {
  width: 25px;
  height: 25px;
}

.hero-panel {
  padding: clamp(28px, 4vw, 48px) clamp(22px, 5vw, 58px) 30px;
  border-radius: 20px 20px 0 0;
}

.hero-panel h1 {
  max-width: 680px;
  font-size: clamp(2.25rem, 5vw, 3.9rem);
  line-height: 1.02;
}

.hero-panel p {
  max-width: 650px;
  margin-top: 20px;
  font-size: clamp(.98rem, 1.8vw, 1.3rem);
  line-height: 1.35;
}

.hero-rule {
  height: 8px;
}

/* Client-approved GIMS 2026 hero content hierarchy. */
.hero-panel .hero-event-name {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
  margin: 0 0 18px;
  color: #555861;
  font-size: clamp(.86rem, 1.4vw, 1rem);
  letter-spacing: .01em;
}

.hero-event-name strong {
  color: var(--black);
  font-size: 1.12em;
  letter-spacing: -.02em;
}

.hero-panel .hero-audience {
  margin-top: 18px;
  color: #3b3b3e;
  font-size: clamp(.82rem, 1.4vw, .98rem);
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.hero-panel .hero-supporting-copy {
  margin-top: 9px;
}

.hero-panel .hero-key-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: none;
  margin-top: 22px;
  font-size: .78rem;
  line-height: 1.2;
  letter-spacing: .015em;
}

.hero-key-facts span {
  padding: 8px 11px;
  border: 1px solid rgba(17, 17, 19, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  font-weight: 800;
}

.registration {
  padding: 34px clamp(18px, 6vw, 68px) 0;
}

.registration-intro h2 {
  font-size: clamp(1.72rem, 3.2vw, 2.55rem);
}

.registration-intro p {
  margin: 8px 0 20px;
  color: #c4d2e2;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
}

.registration-form {
  max-width: 820px;
  gap: 10px 12px;
  padding: 16px;
  border: 1px solid rgba(144, 190, 222, .26);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .09), transparent 36%),
    linear-gradient(145deg, #0d2138, #071426);
  box-shadow: 0 20px 40px rgba(3, 10, 24, .24), inset 0 1px 0 rgba(255, 255, 255, .1);
}

.registration-form > label {
  position: relative;
}

.registration-form > label::before {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gims-blue);
  box-shadow: 0 0 0 5px rgba(124, 216, 232, .1), 0 0 14px rgba(124, 216, 232, .45);
  content: "";
  pointer-events: none;
  transform: translateY(-50%);
}

.registration-form > label input,
.registration-form > label select {
  height: 52px;
  padding: 0 15px;
  border: 1px solid rgba(171, 204, 230, .44);
  border-radius: 12px;
  background: rgba(255, 255, 255, .055);
  color: #f7fbff;
  font-size: .86rem;
  font-weight: 600;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.registration-form > label input::placeholder,
.registration-form select:invalid {
  color: #a8bad0;
  opacity: 1;
}

.registration-form > label input:hover,
.registration-form > label select:hover {
  border-color: rgba(124, 216, 232, .78);
  background: rgba(124, 216, 232, .08);
  transform: translateY(-1px);
}

.registration-form > label input:focus,
.registration-form > label select:focus {
  border-color: var(--gims-yellow);
  background: rgba(255, 216, 74, .08);
  box-shadow: 0 0 0 3px rgba(255, 216, 74, .13), 0 10px 18px rgba(0, 0, 0, .16);
  outline: none;
  transform: translateY(-1px);
}

.exam-mode-field {
  gap: 7px;
  margin-top: 4px;
}

.exam-mode-field > p {
  color: #e1ebf6;
  font-size: .78rem;
}

.exam-mode-options {
  gap: 8px;
}

.exam-mode-option {
  min-height: 56px;
}

.exam-mode-option > span {
  padding: 9px 12px;
  border: 1px solid #375472;
  border-radius: 12px;
  background: rgba(255, 255, 255, .045);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.exam-mode-option:hover > span {
  border-color: var(--gims-blue);
  transform: translateY(-1px);
}

.exam-mode-option input:checked + span {
  border-color: var(--gims-yellow);
  background: rgba(255, 216, 74, .13);
  box-shadow: inset 0 0 0 1px var(--gims-yellow), 0 8px 16px rgba(255, 216, 74, .1);
}

.exam-mode-option strong {
  font-size: .82rem;
}

.exam-mode-option small {
  color: #b6c8db;
  font-size: .66rem;
}

.fixed-registration-fee {
  min-height: 44px;
  margin-top: 2px;
  padding: 8px 11px;
  border: 1px solid #47708e;
  border-radius: 12px;
  background: rgba(124, 216, 232, .1);
  color: #f7fbff;
  font-size: .78rem;
}

.fixed-registration-fee > span {
  width: 22px;
  height: 22px;
  font-size: .7rem;
}

.submit-button,
.enrol-button,
.share-register-button,
.share-whatsapp-button {
  border-radius: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: .86rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.submit-button {
  min-height: 48px;
  margin-top: 1px;
  box-shadow: 0 10px 22px rgba(255, 216, 74, .18);
}

.submit-button:hover,
.submit-button:focus-visible,
.enrol-button:hover,
.share-register-button:hover,
.share-whatsapp-button:hover {
  transform: translateY(-2px);
}

.scholarship-info {
  gap: 10px;
  padding: 26px 0 0;
}

.info-card {
  min-height: 104px;
  padding: 15px 17px;
  border-radius: 16px;
  background: linear-gradient(145deg, #fff, #eef5fb);
  box-shadow: 0 12px 24px rgba(37, 68, 105, .09), inset 0 1px 0 rgba(255, 255, 255, .9);
}

.info-card strong {
  font-size: clamp(.9rem, 1.7vw, 1.2rem);
}

.info-card span {
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
}

.certificate-icon,
.rupee-icon {
  transform: scale(.68);
}

.offline-card {
  min-height: 250px;
  padding: 28px 22px 28px;
  border-radius: 18px;
}

.clock-icon {
  width: 68px;
  height: 68px;
  margin-bottom: 12px;
}

.offline-card > strong {
  font-size: clamp(1.35rem, 2.8vw, 2rem);
}

.offline-dates {
  gap: 7px;
  margin-top: 16px;
  font-size: clamp(.88rem, 1.7vw, 1.15rem);
}

.offline-dates b {
  min-height: 36px;
  padding: 7px 11px;
}

.offline-card p {
  margin-top: 16px;
  font-size: .86rem;
}

.gims-title-band {
  min-height: 86px;
  padding: 22px 20px;
  border-radius: 16px;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
}

.test-features {
  gap: 10px;
  margin: 14px 0 0;
}

.test-feature,
.test-feature:last-child {
  min-height: 132px;
  padding: 22px 15px;
  gap: 10px;
  border-radius: 16px;
}

.test-feature svg {
  width: 34px;
  height: 34px;
}

.test-feature h3 {
  font-size: clamp(.88rem, 1.5vw, 1.08rem);
}

.about-gims {
  gap: 8px;
  margin-top: 14px;
  padding: 28px 22px 18px;
  border-radius: 18px;
}

.about-gims-intro h2,
.difference-intro h2,
.genesis-faq > h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.45rem);
}

.about-gims-intro p {
  margin-top: 7px;
  font-size: clamp(.9rem, 1.6vw, 1.1rem);
}

.about-gims-portrait {
  width: min(100%, 190px);
  height: 205px;
}

.about-gims-story h3,
.gims-detail-block h3 {
  font-size: clamp(1.05rem, 1.9vw, 1.4rem);
}

.about-gims-story p,
.gims-detail-block p,
.difference-copy p,
.difference-card p,
.faq-answer p {
  font-size: clamp(.82rem, 1.35vw, .98rem);
  line-height: 1.42;
}

.gims-detail-block {
  padding: 18px 6px 20px;
}

.detail-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 9px;
}

.enrol-button {
  min-height: 44px;
}

.founder-masterclass,
.genesis-difference,
.genesis-results,
.genesis-share-cta {
  border-radius: 20px;
}

.founder-masterclass {
  gap: 20px;
  padding: 28px;
}

.masterclass-copy h2 {
  font-size: clamp(1.85rem, 3.8vw, 3rem);
}

.masterclass-copy > p:not(.masterclass-eyebrow) {
  font-size: clamp(.86rem, 1.45vw, 1rem);
  line-height: 1.4;
}

.masterclass-mentor {
  border-radius: 18px;
}

.genesis-difference {
  gap: 9px;
  margin-top: 18px;
  padding: 28px 0 20px;
}

.difference-intro {
  padding-inline: 20px;
}

.difference-intro > p {
  margin-top: 9px;
  font-size: clamp(.9rem, 1.7vw, 1.15rem);
}

.difference-copy {
  margin-top: 17px;
}

.difference-image-wrap {
  width: calc(100% - 46px);
  max-width: 560px;
  margin: 2px auto 8px;
}

.difference-card {
  width: calc(100% - 42px);
  padding: 22px 22px 25px;
  border-radius: 15px;
}

.difference-card h3 {
  font-size: clamp(1.06rem, 2vw, 1.4rem);
}

.difference-close {
  margin-top: 9px;
  font-size: clamp(.88rem, 1.6vw, 1.12rem);
}

.genesis-stats {
  width: calc(100% - 28px);
  margin-top: 17px;
}

.genesis-stats h2 {
  min-height: 52px;
  margin-bottom: 15px;
  padding: 10px 14px;
  border-radius: 13px;
  font-size: clamp(1.1rem, 2.4vw, 1.7rem);
}

.genesis-stats-grid {
  gap: 12px 10px;
}

.genesis-stat-card {
  grid-template-rows: 62px auto 42px;
  min-height: 158px;
  border-radius: 22px 22px 0 0;
}

.genesis-stat-visual svg {
  width: 38px;
  height: 38px;
}

.genesis-stat-card > strong {
  font-size: clamp(1.2rem, 2.6vw, 1.8rem);
}

.genesis-stat-card > span {
  padding: 6px 6px;
  font-size: clamp(.6rem, 1.3vw, .82rem);
}

.genesis-faq {
  max-width: 800px;
  margin-top: 28px;
}

.genesis-faq > h2 {
  padding-bottom: 15px;
}

.genesis-faq summary {
  min-height: 58px;
  padding: 11px 15px;
  font-size: clamp(.88rem, 1.7vw, 1.12rem);
}

.genesis-faq summary b {
  width: 34px;
  height: 34px;
}

.faq-answer {
  padding: 0 15px 15px;
}

.faq-answer p {
  padding-top: 12px;
}

.genesis-results {
  width: calc(100% - 20px);
  margin-top: 28px;
  padding: 30px 18px 34px;
}

.results-heading h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.55rem);
}

.results-heading p {
  margin-top: 8px;
  font-size: clamp(.9rem, 1.6vw, 1.18rem);
}

.results-highlights {
  margin-top: 28px;
}

.results-spotlight {
  gap: 12px 10px;
  margin-top: 26px;
}

.results-spotlight article {
  min-height: 112px;
  padding: 24px 7px 8px;
  border-radius: 20px;
}

.genesis-share-cta {
  width: calc(100% - 20px);
  margin-top: 32px;
}

.share-cta-content {
  max-width: 660px;
  padding: 28px 22px 26px;
}

.share-cta-eyebrow {
  font-size: clamp(1.15rem, 2.5vw, 1.7rem);
}

.share-cta-content h2 {
  font-size: clamp(1.35rem, 2.8vw, 2rem);
}

.share-cta-content > p:not(.share-cta-eyebrow) {
  margin-top: 10px;
  font-size: clamp(.82rem, 1.45vw, 1rem);
}

@media (min-width: 701px) and (max-width: 980px) {
  .page-shell {
    padding-inline: 26px;
  }

  .registration {
    padding-inline: 28px;
  }
}

@media (max-width: 700px) {
  .page-shell {
    padding-inline: 12px;
    background: linear-gradient(180deg, var(--gims-navy) 0 7%, var(--gims-paper) 7% 100%);
  }

  .site-header {
    min-height: 78px;
    padding: 12px 2px 14px;
  }

  .brand img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .brand > span {
    font-size: 1.18rem;
  }

  .brand small {
    margin-top: 5px;
    font-size: .56rem;
  }

  .phone-link span {
    display: none !important;
  }

  .phone-link::after {
    display: none !important;
    content: none !important;
  }

  .phone-link {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    justify-content: center;
    overflow: hidden !important;
    white-space: nowrap;
  }

  .phone-link svg {
    width: 24px;
    height: 24px;
  }

  .hero-panel {
    padding: 24px 16px 22px;
    border-radius: 15px 15px 0 0;
  }

  .hero-panel h1 {
    font-size: clamp(1.82rem, 8vw, 2.45rem);
  }

  .hero-panel p {
    margin-top: 13px;
    font-size: .9rem;
  }

  .registration {
    padding: 26px 4px 0;
  }

  .registration-intro h2 {
    font-size: 1.58rem;
  }

  .registration-intro p {
    margin: 7px 0 16px;
    font-size: .98rem;
  }

  .registration-form {
    gap: 9px;
    padding: 11px;
    border-radius: 16px;
  }

  .registration-form > label input,
  .registration-form > label select {
    height: 49px;
    padding: 0 13px;
    border-radius: 11px;
    font-size: .82rem;
  }

  .registration-form > label::before {
    right: 12px;
    width: 6px;
    height: 6px;
  }

  .exam-mode-field > p {
    font-size: .74rem;
  }

  .exam-mode-options {
    gap: 7px;
  }

  .exam-mode-option {
    min-height: 52px;
  }

  .exam-mode-option > span {
    padding: 8px 10px;
    border-radius: 10px;
  }

  .exam-mode-option strong {
    font-size: .78rem;
  }

  .exam-mode-option small {
    font-size: .61rem;
  }

  .fixed-registration-fee {
    min-height: 40px;
    padding: 7px 9px;
    font-size: .72rem;
  }

  .fixed-registration-fee > span {
    width: 20px;
    height: 20px;
    font-size: .64rem;
  }

  .submit-button {
    min-height: 46px;
    font-size: .82rem;
  }

  .scholarship-info {
    gap: 9px;
    padding-top: 22px;
  }

  .info-card {
    min-height: 88px;
    padding: 12px 13px;
    border-radius: 14px;
  }

  .info-card strong {
    font-size: .82rem;
  }

  .info-card span {
    font-size: 1.55rem;
  }

  .info-card-scholarship .info-card-copy span {
    width: 45px;
    height: 45px;
    font-size: .65rem;
  }

  .offline-card {
    min-height: 238px;
    padding: 25px 13px 25px;
    border-radius: 16px;
  }

  .offline-card > strong {
    font-size: 1.38rem;
  }

  .offline-dates {
    margin-top: 13px;
    font-size: .82rem;
  }

  .offline-card p {
    font-size: .78rem;
  }

  .gims-title-band {
    min-height: 74px;
    padding: 18px 13px;
    font-size: .98rem;
    border-radius: 14px;
  }

  .test-features {
    gap: 8px;
    margin-top: 10px;
  }

  .test-feature,
  .test-feature:last-child {
    min-height: 68px;
    padding: 13px 14px;
    border-radius: 13px;
  }

  .test-feature h3 {
    font-size: .86rem;
  }

  .about-gims {
    margin-top: 10px;
    padding: 22px 13px 14px;
    border-radius: 15px;
  }

  .about-gims-intro h2,
  .difference-intro h2,
  .genesis-faq > h2 {
    font-size: 1.55rem;
  }

  .about-gims-intro p {
    font-size: .84rem;
  }

  .about-gims-portrait {
    width: min(100%, 155px);
    height: 170px;
  }

  .about-gims-story h3,
  .gims-detail-block h3 {
    font-size: 1rem;
  }

  .about-gims-story p,
  .gims-detail-block p,
  .difference-copy p,
  .difference-card p,
  .faq-answer p {
    font-size: .78rem;
  }

  .founder-masterclass {
    gap: 14px;
    padding: 20px 14px;
    border-radius: 16px;
  }

  .masterclass-copy h2 {
    font-size: 1.75rem;
  }

  .masterclass-copy > p:not(.masterclass-eyebrow) {
    font-size: .8rem;
  }

  .genesis-difference {
    margin-top: 12px;
    padding: 22px 0 16px;
    border-radius: 15px;
  }

  .difference-intro {
    padding-inline: 13px;
  }

  .difference-intro > p {
    font-size: .82rem;
  }

  .difference-image-wrap {
    width: calc(100% - 24px);
  }

  .difference-card {
    width: calc(100% - 20px);
    padding: 19px 15px 21px;
    border-radius: 13px;
  }

  .difference-card h3 {
    font-size: 1.02rem;
  }

  .difference-close {
    padding-inline: 13px;
    font-size: .82rem;
  }

  .genesis-stats {
    width: calc(100% - 12px);
    margin-top: 13px;
  }

  .genesis-stats h2 {
    min-height: 48px;
    margin-bottom: 11px;
    padding: 9px 7px;
    font-size: 1.05rem;
  }

  .genesis-stats-grid {
    gap: 8px 7px;
  }

  .genesis-stat-card {
    grid-template-rows: 52px auto 37px;
    min-height: 138px;
    border-radius: 17px 17px 0 0;
  }

  .genesis-stat-visual svg {
    width: 31px;
    height: 31px;
  }

  .genesis-stat-card > strong {
    font-size: 1.1rem;
  }

  .genesis-stat-card > span {
    padding: 4px 2px;
    font-size: .54rem;
  }

  .genesis-faq {
    width: calc(100% - 2px);
    margin-top: 22px;
  }

  .genesis-faq > h2 {
    padding-bottom: 12px;
  }

  .genesis-faq summary {
    min-height: 52px;
    padding: 9px 11px;
    font-size: .82rem;
  }

  .genesis-faq summary b {
    width: 30px;
    height: 30px;
  }

  .faq-answer {
    padding: 0 11px 13px;
  }

  .genesis-results {
    width: calc(100% - 8px);
    margin-top: 22px;
    padding: 24px 10px 28px;
    border-radius: 16px;
  }

  .results-heading h2 {
    font-size: 1.55rem;
  }

  .results-heading p {
    font-size: .82rem;
  }

  .results-highlights {
    margin-top: 22px;
  }

  .results-spotlight {
    gap: 13px 8px;
    margin-top: 22px;
  }

  .results-spotlight article {
    min-height: 96px;
    padding: 22px 4px 7px;
    border-radius: 16px;
  }

  .results-spotlight article::before {
    width: 30px;
    height: 30px;
  }

  .results-spotlight b {
    left: 11px;
    font-size: .52rem;
  }

  .results-spotlight strong {
    font-size: .86rem;
  }

  .results-spotlight span {
    font-size: .56rem;
  }

  .genesis-share-cta {
    width: calc(100% - 8px);
    margin-top: 24px;
    border-radius: 16px;
  }

  .share-cta-content {
    padding: 22px 13px 20px;
  }

  .share-cta-eyebrow {
    font-size: 1.08rem;
  }

  .share-cta-content h2 {
    font-size: 1.38rem;
  }

  .share-cta-content > p:not(.share-cta-eyebrow) {
    font-size: .78rem;
  }

  .share-register-button,
  .share-whatsapp-button {
    min-height: 42px;
    margin-top: 12px;
    font-size: .82rem;
  }
}

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

/* Final hero cascade guard for the legacy stylesheet order. */
.hero .hero-panel {
  padding: clamp(44px, 6vw, 76px) clamp(28px, 7vw, 82px) clamp(36px, 5vw, 60px);
}

.hero .hero-event-name strong {
  color: #fff;
}

.hero .hero-key-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: none;
  margin-top: 38px;
}

@media (max-width: 720px) {
  .hero .hero-panel {
    padding: 30px 18px 24px;
  }

  .hero .hero-panel h1 {
    max-width: 96%;
    font-size: clamp(2.25rem, 11vw, 3.35rem);
    line-height: .98;
  }

  .hero .hero-key-facts {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 26px;
  }
}
