:root {
  --fp-blue: #2200fc;
  --fp-blue-dark: #1200c9;
  --fp-pink: #ff1ef2;
  --fp-pink-soft: #ffe8fc;
  --fp-ink: #1a202c;
  --fp-nav: #2d3748;
  --fp-muted: #64748b;
  --fp-soft: #f9fafb;
  --fp-lilac: #f0eeff;
  --fp-border: #e5e7eb;
  --fp-dark: #0c0940;
  --fp-shadow-soft: 0 4px 10px rgba(0, 0, 0, .06);
  --fp-shadow-card: 0 14px 34px rgba(31, 20, 114, .11);
  --fp-radius-sm: 10px;
  --fp-radius: 20px;
  --fp-radius-lg: 32px;
  --fp-page: min(100%, 1440px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--fp-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

.landing-page {
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.landing-alert {
  position: fixed;
  z-index: 40;
  top: 16px;
  right: 16px;
  width: min(384px, calc(100vw - 32px));
  border: 1px solid #bde7d1;
  border-radius: 12px;
  background: #eefbf3;
  color: #19623d;
  padding: 14px 16px;
  font-weight: 800;
  box-shadow: var(--fp-shadow-card);
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  column-gap: 28px;
  align-items: center;
  min-height: 72px;
  padding: 14px 80px;
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .04);
}

.brand img {
  width: 232px;
  height: 37px;
  object-fit: contain;
}

.brand {
  display: block;
  flex: 0 0 auto;
  width: 232px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.site-nav a {
  color: var(--fp-nav);
  font-size: 15px;
  font-weight: 400;
  line-height: 22.5px;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--fp-blue);
}

.site-nav a.is-active {
  color: var(--fp-blue);
  font-weight: 800;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-actions .prepify-language-switcher {
  margin: 0;
}

.header-actions .prepify-language-switcher .form-select {
  min-height: 41px;
  min-width: 108px;
  border: 1px solid rgba(5, 0, 255, .18);
  border-radius: var(--fp-radius-sm);
  padding: 8px 32px 8px 12px;
  color: var(--fp-blue);
  font-size: 14px;
  font-weight: 700;
  background-color: #ffffff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 41px;
  border-radius: var(--fp-radius-sm);
  border: 1px solid transparent;
  padding: 10px 25px;
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--fp-blue);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(34, 0, 252, .25);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--fp-blue-dark);
}

.btn-secondary {
  border-color: var(--fp-blue);
  color: var(--fp-blue);
  background: #ffffff;
}

.header-actions .btn-secondary {
  border-width: 2px;
  padding-right: 24px;
  padding-left: 24px;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: #f7f6ff;
}

.btn-with-icon {
  gap: 12px;
}

.btn-with-icon img {
  width: 20px;
  height: 20px;
}

.nav-toggle {
  display: none;
}

@media (max-width: 1279px) and (min-width: 1101px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
    column-gap: 16px;
    padding: 14px 28px;
  }

  .brand {
    width: 184px;
  }

  .brand img {
    width: 184px;
    height: 29px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
    width: 42px;
    height: 42px;
    border: 1px solid var(--fp-border);
    border-radius: 10px;
    background: #ffffff;
    align-items: center;
    justify-content: center;
  }

  .nav-toggle span:not(.sr-only) {
    width: 18px;
    height: 2px;
    background: var(--fp-blue);
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    display: none;
    gap: 18px;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-top: 16px;
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .header-actions {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    gap: 8px;
  }

  .header-actions .btn {
    padding: 9px 16px;
    font-size: 13px;
  }
}

.landing-section {
  position: relative;
  width: 100%;
  padding: 64px 80px;
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-align: center;
}

.section-heading h1,
.section-heading h2 {
  margin: 0;
  color: var(--fp-ink);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.5;
}

.section-heading p {
  margin: 0;
  max-width: 640px;
  color: var(--fp-muted);
  font-size: 16px;
  line-height: 24px;
}

.section-heading-dark h1,
.section-heading-dark h2,
.section-heading-dark p {
  color: #ffffff;
}

.section-heading-dark p {
  opacity: .82;
}

.home-hero {
  position: relative;
  height: 580px;
  overflow: hidden;
  padding: 90px 80px;
  background: #ffffff;
  box-sizing: border-box;
}

.home-hero-copy {
  position: relative;
  z-index: 2;
  width: 475px;
  padding-top: 0;
}

.home-hero-copy h1 {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  color: #202438;
  font-size: 96px;
  font-weight: 800;
  font-style: normal;
  line-height: .815;
  letter-spacing: 0;
}

.home-hero-copy h1 span {
  font-weight: 300;
  font-style: italic;
}

.home-hero-copy h1 br {
  display: none;
}

.home-hero-copy h1 strong {
  display: block;
  font-weight: 900;
}

.home-hero-copy h1 strong i {
  color: var(--fp-blue);
  font-style: normal;
}

.home-hero-copy h1 strong:last-of-type i {
  color: var(--fp-pink);
}

.home-hero-copy h1 strong:last-child,
.home-hero-copy h1 span:nth-of-type(2) {
  color: var(--fp-blue);
}

.home-hero-copy p {
  margin: 30px 0 28px;
  color: #546179;
  font-size: 17px;
  line-height: 27.2px;
}

.home-hero-copy p strong {
  color: #52607c;
  font-weight: 900;
}

.home-hero-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-grid {
  position: absolute;
  top: 74px;
  left: 428px;
  width: 490px;
  height: 490px;
  object-fit: cover;
  object-position: right center;
  opacity: .5;
}

.home-blue-dot-grid {
  display: none;
}

.home-student-frame {
  position: absolute;
  left: min(688px, 47.78vw);
  top: min(26px, 1.81vw);
  z-index: 1;
  width: min(752px, 52.22vw);
  height: min(554px, 38.47vw);
  overflow: hidden;
}

.home-student-hero {
  position: absolute;
  left: -70.81%;
  top: -9.03%;
  width: 200.53%;
  max-width: none;
  height: 146.57%;
  object-fit: fill;
}

.home-decor {
  position: absolute;
  width: 76px;
  height: 76px;
  object-fit: contain;
  filter: saturate(1.2);
}

.home-decor-one {
  top: 208px;
  right: 646px;
}

.home-decor-two {
  top: 120px;
  right: 492px;
  width: 48px;
  height: 48px;
}

@media (min-width: 1500px) {
  .home-student-frame {
    right: 0;
    left: auto;
  }
}

.intro-band {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 255px;
  padding: 15px 40px;
  background: var(--fp-blue);
  box-sizing: border-box;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(91, 63, 232, .25);
}

.intro-band-decor {
  position: absolute;
  background: #ffffff;
  pointer-events: none;
}

.intro-band-dot-one,
.intro-band-dot-two {
  border-radius: 999px;
}

.intro-band-dot-one {
  left: 59px;
  top: 70px;
  width: 48px;
  height: 48px;
  opacity: .2;
}

.intro-band-dot-two {
  right: 238px;
  bottom: 53px;
  width: 64px;
  height: 64px;
  opacity: .15;
}

.intro-band-square {
  right: 84.75px;
  top: 63px;
  width: 45.255px;
  height: 45.255px;
  background: transparent;
}

.intro-band-square::before {
  position: absolute;
  inset: 0;
  width: 32px;
  height: 32px;
  margin: auto;
  background: #ffffff;
  content: "";
  opacity: .25;
  transform: rotate(45deg);
}

.intro-band p {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 1226px;
  color: #ffffff;
  font-size: 36px;
  font-weight: 300;
  line-height: 60px;
  text-align: center;
}

.intro-band strong {
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
}

.home-cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 261px;
  gap: 32px;
  align-items: stretch;
  align-content: start;
  min-height: 520px;
  padding: 80px;
  background: #ffffff;
}

.cards-decor {
  position: absolute;
  display: block;
  pointer-events: none;
}

.cards-dot-one {
  left: 40px;
  top: -9px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #9587ff;
}

.cards-square-one {
  left: calc(100% - 165px);
  top: -52px;
  width: 23px;
  height: 23px;
  background: var(--fp-blue);
}

.cards-square-two {
  left: -46px;
  top: 184px;
  width: 25px;
  height: 25px;
  background: var(--fp-blue);
  opacity: .75;
}

.cards-square-muted-one {
  left: calc(100% - 83px);
  top: -20px;
  width: 21px;
  height: 21px;
  border-radius: 1px;
  background: #e5e7eb;
  opacity: .6;
}

.cards-triangle-one {
  left: calc(100% - 121px);
  top: -68px;
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-bottom: 19px solid #4b5563;
}

.cards-triangle-two {
  left: -25px;
  top: 86px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 13px solid #1e293b;
  opacity: .7;
  transform: rotate(30deg);
}

.cards-dot-two {
  left: 28px;
  top: 281px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #9587ff;
}

.cards-star-one {
  left: calc(50% + 52px);
  top: 276px;
  width: 21px;
  height: 21px;
}

.home-cards article,
.steps-grid article,
.audience-grid article,
.subject-grid article,
.institution-card-grid article,
.ai-card-grid article,
.security-grid article,
.plan-grid article {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: var(--fp-shadow-soft);
}

.home-cards article {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11.3px;
  min-height: 240px;
  height: 100%;
  padding: 40px;
  text-align: center;
}

.home-cards .home-card-icon,
.audience-column h2 span,
.steps-grid i,
.audience-grid i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.home-cards .home-card-icon {
  background: linear-gradient(135deg, #0705fe 0%, #4f46e5 100%);
}

.steps-grid i {
  background: var(--fp-blue);
}

.audience-column h2 span,
.audience-grid i {
  background: linear-gradient(135deg, #3b28cc 0%, #4f46e5 100%);
}

.home-cards .home-card-icon {
  width: 64px;
  height: 64px;
}

.home-cards .home-card-icon img {
  width: 32px;
  height: 32px;
}

.home-cards h2 {
  margin: 12.7px 0 0;
  color: var(--fp-ink);
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
}

.home-cards p,
.steps-grid p,
.audience-grid p,
.institution-card-grid p,
.ai-card-grid p,
.security-grid p,
.plan-grid p {
  margin: 0;
  color: var(--fp-muted);
  font-size: 15px;
  line-height: 22.5px;
}

.university-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 728px);
  gap: 0;
  align-items: center;
  min-height: 630px;
  background: #ffffff;
  padding: 64px 50px;
}

.university-art {
  position: relative;
  min-height: 502px;
  overflow: visible;
}

.university-art > img:first-child {
  position: absolute;
  left: 50%;
  top: -64px;
  width: 754px;
  height: 623px;
  object-fit: cover;
  object-position: 72% center;
  transform: translateX(-50%);
}

.university-copy h2 {
  margin: 0;
  color: var(--fp-ink);
  font-size: 38px;
  font-weight: 700;
  line-height: 49.4px;
}

.university-copy p {
  margin: 20px 0 24px;
  color: var(--fp-muted);
  font-size: 16px;
  line-height: 25.6px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #2d3748;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.check-list img {
  width: 24px;
  height: 24px;
  margin-top: 0;
  flex: 0 0 24px;
  padding: 4px;
  border-radius: 999px;
  background: #0b08fc;
  box-sizing: border-box;
}

.faq-section {
  background: #ffffff;
}

.faq-section .section-heading h2 {
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 16px;
  width: min(900px, 100%);
  margin: 42px auto 0;
}

.faq-list details {
  border: 1px solid var(--fp-border);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--fp-shadow-soft);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 20px 24px;
  cursor: pointer;
  color: var(--fp-ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "";
  width: 32px;
  height: 32px;
  background-image: url("/img/prepify/front-page/home-faq-chevron.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  border-radius: 999px;
  background-color: var(--fp-blue);
  transform: rotate(180deg);
  transition: transform .18s ease;
  flex: 0 0 32px;
}

.faq-list details[open] summary::after {
  transform: rotate(0deg);
}

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--fp-muted);
  font-size: 15px;
  line-height: 24px;
}

.platform-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  min-height: 680px;
  padding: 80px;
  background: var(--fp-dark);
}

.platform-preview {
  width: min(1200px, 100%);
  aspect-ratio: 16 / 9;
  border: 32px solid #ffffff;
  border-radius: var(--fp-radius-lg);
  overflow: hidden;
  background: #000000;
  box-shadow: 0 0 30px rgba(79, 70, 229, .4);
}

.platform-preview iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.platform-start-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  border-radius: var(--fp-radius-sm);
  background: var(--fp-pink);
  padding: 15px;
  color: #f9fafb;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  box-shadow: 0 4px 10px rgba(91, 63, 232, .25);
}

.platform-start-btn:hover,
.platform-start-btn:focus-visible {
  background: #e900d9;
}

.platform-start-btn img {
  width: 20px;
  height: 20px;
}

.how-section {
  display: flex;
  flex-direction: column;
  gap: 48px;
  min-height: 420px;
  overflow: hidden;
  background: #ffffff;
}

.section-grid-left {
  position: absolute;
  left: -325px;
  top: 0;
  width: 675px;
  height: 435px;
  object-fit: cover;
  opacity: .5;
  z-index: 0;
  pointer-events: none;
}

.steps-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}

.steps-grid article {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  min-height: 280px;
  padding: 32px;
  text-align: center;
}

.steps-grid .step-create {
  z-index: 2;
}

.steps-grid .step-avatar::after {
  content: none;
}

.steps-grid span {
  display: none;
}

.steps-grid i {
  width: 48px;
  height: 48px;
  margin: 0;
  background: linear-gradient(135deg, #0705fe 0%, #4f46e5 100%);
}

.steps-grid .step-avatar i {
  background: transparent;
}

.steps-grid i img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.steps-grid article:nth-child(3) i img {
  width: 48px;
  height: 48px;
}

.how-section .section-heading {
  position: relative;
  z-index: 1;
}

.how-section .section-heading h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 60px;
}

.steps-grid h3 {
  margin: 9px 0 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 33px;
}

.steps-grid p {
  max-width: 360px;
}

.audience-grid h3,
.subject-grid h3,
.institution-card-grid h3,
.ai-card-grid h3,
.security-grid h3,
.plan-grid h2 {
  margin: 0 0 10px;
  color: var(--fp-ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.audience-section {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 128px;
  align-items: start;
  min-height: 480px;
  background: #ffffff;
}

.audience-section::before {
  content: none;
}

.audience-section::after {
  content: none;
}

.audience-column h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 32px;
  color: var(--fp-ink);
  font-size: 36px;
  line-height: 54px;
}

.audience-column h2 span {
  width: 48px;
  height: 48px;
}

.audience-column h2 img,
.audience-grid i img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
}

.teacher-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(2, minmax(0, 275px));
  gap: 32px;
  width: 100%;
}

.audience-column-teachers {
  position: relative;
}

.audience-grid article {
  min-height: 160px;
  padding: 24px;
  background: var(--fp-lilac);
}

.audience-grid i {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
}

.subjects-section {
  position: relative;
  display: flex;
  min-height: 1058px;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 80px;
  background: #ffffff;
  overflow: hidden;
}

.subjects-section .section-heading {
  position: relative;
  z-index: 1;
  gap: 12px;
}

.subjects-section .section-heading h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 60px;
}

.subjects-section .section-heading p {
  max-width: none;
}

.subject-decor {
  position: absolute;
  left: clamp(8px, calc(50% - 720px + var(--decor-x)), calc(100% - var(--decor-w, 32px) - 8px));
  top: var(--decor-y);
  z-index: 0;
  display: block;
  pointer-events: none;
}

.subject-corner-dot {
  border-radius: 999px;
  background: #d8ccff;
  opacity: .8;
}

.subject-corner-dot-one {
  --decor-w: 16px;
  width: 16px;
  height: 16px;
}

.subject-corner-dot-two {
  --decor-w: 24px;
  width: 24px;
  height: 24px;
}

.subject-dot-md {
  --decor-w: 27.632px;
  width: 27.632px;
  height: 27.632px;
  border-radius: 999px;
  background: #6366f1;
  opacity: .7;
}

.subject-dot-lg {
  --decor-w: 32.237px;
  width: 32.237px;
  height: 32.237px;
  border-radius: 999px;
  background: #6366f1;
  opacity: .65;
}

.subject-square-sm,
.subject-square-md,
.subject-square-lg {
  border-radius: 1.151px;
}

.subject-square-sm {
  --decor-w: 23.027px;
  width: 23.027px;
  height: 23.027px;
}

.subject-square-md {
  --decor-w: 27.632px;
  width: 27.632px;
  height: 27.632px;
}

.subject-square-lg {
  --decor-w: 32.237px;
  width: 32.237px;
  height: 32.237px;
}

.subject-square-blue {
  background: #0000ff;
  opacity: .8;
}

.subject-square-blue-soft {
  opacity: .75;
}

.subject-square-muted {
  background: #e5e7eb;
  opacity: .6;
}

.subject-square-muted-light {
  background: #e5e7eb;
  opacity: .55;
}

.subject-square-soft {
  background: #e5e5e5;
  opacity: .5;
}

.subject-triangle-up {
  --decor-w: 27.632px;
  width: 0;
  height: 0;
  border-right: 13.816px solid transparent;
  border-bottom: 23.027px solid #1e293b;
  border-left: 13.816px solid transparent;
  opacity: .8;
}

.subject-triangle-up-right {
  transform: scaleX(-1);
}

.subject-arrow-right,
.subject-arrow-left {
  --decor-w: 17.72px;
  width: 0;
  height: 0;
  opacity: .7;
}

.subject-arrow-right {
  border-top: 8.44px solid transparent;
  border-bottom: 8.44px solid transparent;
  border-left: 17.72px solid #1e293b;
}

.subject-arrow-left {
  border-top: 8.44px solid transparent;
  border-right: 17.72px solid #1e293b;
  border-bottom: 8.44px solid transparent;
}

.subject-star {
  --decor-w: 20.724px;
  width: 20.724px;
  height: 20.724px;
}

.subject-star img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
}

.subject-grid {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 1281px);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  margin: 0 auto;
}

.subject-grid .subject-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 365px;
  min-height: 365px;
  gap: 12px;
  padding: 32px;
  text-align: center;
}

.subject-icon {
  display: flex;
  width: 80px;
  height: 80px;
  flex: 0 0 80px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #0705fe 0%, #4f46e5 100%);
}

.subject-icon img {
  width: 40px;
  height: 40px;
  max-width: none;
  object-fit: contain;
}

.subject-grid h3 {
  margin: 8px 0 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 33px;
}

.subject-grid .subject-card p {
  display: flex;
  width: 100%;
  min-height: 88px;
  align-items: center;
  justify-content: center;
  margin: 0;
  border-radius: 10px;
  background: #f0eeff;
  padding: 8px 12px;
  color: #3b28cc;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  text-align: left;
}

.subject-grid .subject-card:first-child p,
.subject-grid .subject-card:nth-child(6) p {
  min-height: 106px;
}

.subject-dots {
  display: flex;
  gap: 4px;
  justify-content: center;
  width: 100%;
}

.subject-dots i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #e5e7eb;
}

.subject-dots i.is-active {
  background: linear-gradient(90deg, #3b28cc 0%, #4f46e5 100%);
}

.subject-grid a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding-top: 4px;
  color: #3b28cc;
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
}

.subject-grid a img {
  width: 16px;
  height: 16px;
  max-width: none;
  object-fit: contain;
}

.compare-section {
  min-height: 560px;
  background: #ffffff;
}

.compare-section .section-heading p {
  display: none;
}

.compare-section .section-heading h2 {
  font-weight: 700;
  line-height: 60px;
}

.compare-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 80px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  margin-top: 48px;
}

.compare-grid article {
  min-height: 350px;
  border-radius: 24px;
  border: 1px solid var(--fp-border);
  padding: 36px 42px;
  box-shadow: var(--fp-shadow-card);
}

.compare-grid h3 {
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
}

.compare-grid p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 14px 0;
  color: #4a5568;
  font-size: 15px;
  font-weight: 400;
  line-height: 22.5px;
}

.compare-grid p img {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  padding: 4px;
  border-radius: 999px;
  box-sizing: border-box;
}

.compare-grid article:first-child p img {
  background: #ef4444;
}

.compare-prepify p img {
  background: var(--fp-blue);
}

.compare-prepify p {
  color: #2d3748;
  font-weight: 500;
}

.compare-grid > strong {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 999px;
  background: var(--fp-blue);
  color: #ffffff;
  font-size: 20px;
  line-height: 30px;
}

.compare-prepify {
  border: 2px solid #3b28cc !important;
}

.about-mission-section {
  position: relative;
  overflow: hidden;
  padding-top: 64px;
  padding-bottom: 56px;
  background: #ffffff;
}

.about-mission-section::after {
  position: absolute;
  top: 160px;
  right: 80px;
  width: 200px;
  height: 200px;
  border-radius: 999px;
  background: rgba(7, 5, 254, .1);
  filter: blur(32px);
  content: "";
  pointer-events: none;
}

.about-mission-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 30px;
  width: min(1280px, 100%);
  margin: 0 auto;
}

.about-mission-copy h1,
.about-values-copy h2 {
  margin: 0 0 20px;
  color: var(--fp-ink);
  font-size: 28px;
  font-weight: 700;
  line-height: 42px;
}

.about-mission-copy p {
  margin: 0;
  color: #293044;
  font-family: "ABeeZee", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
}

.about-mission-copy p + p {
  margin-top: 4px;
}

.about-values-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-values-list li {
  position: relative;
  display: grid;
  gap: 2px;
  min-height: 28px;
  padding-left: 34px;
}

.about-values-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--fp-blue);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  content: "\2713";
}

.about-values-list strong {
  color: #293044;
  font-size: 15px;
  font-weight: 700;
  line-height: 22.5px;
}

.about-values-list span {
  color: #293044;
  font-family: "ABeeZee", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22.5px;
}

.institutions-section {
  min-height: 0;
  padding-top: 64px;
  padding-bottom: 72px;
  background: linear-gradient(180deg, #f0eeff 0%, #ffffff 100%);
}

.institutions-section .section-heading h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 63px;
}

.institutions-section .section-heading p {
  font-size: 24px;
  line-height: 24px;
}

.institution-placeholder {
  box-sizing: border-box;
  width: min(1100px, 100%);
  max-width: 100%;
  height: 600px;
  margin: 48px auto 40px;
  border: 2px solid #3b28cc;
  border-radius: 32px;
  background: #ffffff;
  padding: 34px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, .16);
}

.institution-placeholder::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid var(--fp-border);
  border-radius: 12px;
  background: #f9fafb;
}

.institution-educator-panel {
  position: relative;
  box-sizing: border-box;
  width: min(1200px, 100%);
  max-width: 100%;
  margin: 48px auto 0;
  border: 2px solid #3b28cc;
  border-radius: 32px;
  background: #ffffff;
  padding: 34px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, .16);
}

.institution-educator-stage {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  aspect-ratio: 1132 / 1115;
  overflow: hidden;
  border: 4px solid #2200fb;
  border-radius: 12px;
  background: #faf7fe;
}

.institution-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(92, 92, 92, .22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 92, 92, .22) 1px, transparent 1px);
  background-size: 36.5px 41px;
}

.institution-circle {
  position: absolute;
  display: block;
  pointer-events: none;
}

.institution-circle {
  border-radius: 999px;
}

.institution-circle-blue {
  left: 5.09%;
  top: 45.83%;
  width: 30.44%;
  height: 33.39%;
  background: var(--fp-blue);
}

.institution-circle-pink {
  left: 64.82%;
  top: 10.28%;
  width: 30.44%;
  height: 33.39%;
  background: var(--fp-pink);
}

.institution-sparkles {
  position: absolute;
  left: 16.67%;
  top: 10.03%;
  z-index: 3;
  display: block;
  width: 18.39%;
  height: 20.18%;
  object-fit: contain;
  pointer-events: none;
}

.institution-educator-stage > strong {
  position: absolute;
  left: 30.43%;
  top: 33.18%;
  z-index: 2;
  color: var(--fp-blue);
  font-size: clamp(58px, 6vw, 87px);
  font-weight: 900;
  line-height: 1;
}

.institution-avatar {
  position: absolute;
  z-index: 4;
  display: block;
  height: auto;
  max-width: none;
  object-fit: contain;
}

.institution-avatar-female {
  left: -5.39%;
  top: 25.83%;
  width: 49.47%;
}

.institution-avatar-male {
  left: 55.24%;
  top: 0;
  width: 50.53%;
}

.institution-card-grid,
.ai-card-grid,
.security-grid,
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 38px;
}

.institution-card-grid {
  width: min(1280px, 100%);
  margin-right: auto;
  margin-left: auto;
  align-items: start;
}

.institution-card-grid article,
.ai-card-grid article,
.security-grid article,
.plan-grid article {
  min-height: 150px;
  padding: 28px;
}

.institution-card-grid article,
.ai-card-grid article,
.security-grid article {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.institution-card-grid i,
.ai-card-grid i,
.security-grid i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--fp-blue);
}

.institution-card-grid i img,
.ai-card-grid i img,
.security-grid i img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.institution-card-grid strong {
  display: block;
  margin-top: 7px;
  color: var(--fp-blue);
  font-size: 20px;
  font-weight: 900;
  line-height: 30px;
}

.institution-card-grid article:nth-child(1) {
  min-height: 303px;
}

.institution-card-grid article:nth-child(2),
.institution-card-grid article:nth-child(5) {
  min-height: 236px;
}

.institution-card-grid article:nth-child(3) {
  min-height: 281px;
}

.institution-card-grid article:nth-child(4) {
  min-height: 272px;
}

.ai-band {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  min-height: 1039px;
  padding: 64px 80px;
  background: #0c0940;
}

.ai-band .section-heading h2 {
  color: #ffffff;
  font-size: 48px;
  font-weight: 800;
  line-height: 72px;
}

.ai-band .section-heading p {
  display: none;
}

.ai-card-grid article {
  align-items: flex-start;
  align-self: start;
  gap: 12px;
  min-height: 320px;
  padding: 41px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 28px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  color: #ffffff;
  text-align: left;
}

.ai-card-grid {
  width: min(1280px, 100%);
  margin-top: 0;
  margin-right: auto;
  margin-left: auto;
  row-gap: 151px;
}

.ai-card-grid article:nth-child(4),
.ai-card-grid article:nth-child(5) {
  grid-column: span 1;
}

.ai-card-grid i {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #3b28cc 0%, #4f46e5 100%);
  box-shadow: 0 0 10px rgba(79, 70, 229, .5);
}

.ai-card-grid i img {
  width: 28px;
  height: 28px;
}

.ai-card-grid h3 {
  margin: 12px 0 0;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
}

.ai-card-grid p {
  color: rgba(255, 255, 255, .85);
  line-height: 24px;
}

.security-section {
  position: relative;
  min-height: 805px;
  overflow: hidden;
  background: #ffffff;
}

.security-grid {
  position: relative;
  z-index: 1;
  width: min(1280px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.security-grid article {
  align-items: flex-start;
  min-height: 260px;
  padding: 38px;
  border: 1px solid var(--fp-border);
  border-radius: 14px;
  background: #ffffff;
  text-align: left;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .05);
}

.security-grid article:nth-child(2) {
  min-height: 277px;
}

.security-grid i {
  width: 64px;
  height: 64px;
  background: var(--fp-blue);
}

.security-grid i img {
  width: 32px;
  height: 32px;
}

.security-grid h3 {
  margin-top: 14px;
}

.security-decor {
  position: absolute;
  pointer-events: none;
}

.security-blue-square-one {
  right: 86px;
  top: 372px;
  width: 28px;
  height: 28px;
  border-radius: 2px;
  background: var(--fp-blue);
  opacity: .82;
}

.security-blue-square-two {
  right: 113px;
  bottom: 150px;
  width: 28px;
  height: 28px;
  border-radius: 2px;
  background: var(--fp-blue);
  opacity: .8;
}

.security-purple-dot {
  right: 90px;
  bottom: 209px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #6366f1;
  opacity: .65;
}

.security-grey-square {
  right: 45px;
  bottom: 184px;
  width: 23px;
  height: 23px;
  border-radius: 2px;
  background: #e5e7eb;
  opacity: .65;
}

.security-dark-triangle {
  right: 0;
  bottom: 105px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 14px solid #1e293b;
  opacity: .7;
}

.community-section {
  min-height: 1034px;
  background: #ffffff;
}

.community-section .section-heading {
  margin-bottom: 48px;
}

.community-panels {
  display: grid;
  grid-template-columns: minmax(0, 1.067fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  width: min(1322px, 100%);
  margin: 0 auto;
}

.share-preview-panel,
.student-community-panel {
  border: 1px solid var(--fp-border);
  border-radius: 20px;
  background: #ffffff;
  padding: 40px;
  box-shadow: var(--fp-shadow-soft);
}

.share-preview-panel {
  min-height: 0;
}

.student-community-panel {
  min-height: 390px;
}

.share-preview-panel h3,
.student-community-panel h3,
.share-result-block h3 {
  margin: 0 0 24px;
  color: var(--fp-ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
}

.share-preview-visual {
  position: relative;
  aspect-ratio: 742 / 345;
  container-type: inline-size;
  min-height: 0;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(155deg, #7c5fff 0%, #ff3fbf 100%);
  color: #ffffff;
}

.share-preview-logo {
  position: absolute;
  left: 3.77%;
  top: 8.01%;
  width: 11.05%;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.share-preview-visual strong {
  position: absolute;
  top: 22.9%;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: clamp(36px, 7.45cqw, 55px);
  line-height: 1.5;
  font-weight: 800;
}

.share-preview-visual p {
  position: absolute;
  top: 50.1%;
  left: 0;
  width: 100%;
  margin: 0;
  color: #ffffff;
  font-size: clamp(12px, 2.1cqw, 16px);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.share-preview-trophy {
  position: absolute;
  top: 59.7%;
  left: 50%;
  display: grid;
  place-items: center;
  width: clamp(42px, 7.45cqw, 55px);
  height: clamp(42px, 7.45cqw, 55px);
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  transform: translateX(-50%);
}

.share-preview-trophy img {
  width: 28px;
  height: 28px;
}

.share-preview-visual em {
  position: absolute;
  right: 3.77%;
  bottom: 8.12%;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  padding: clamp(5px, .94cqw, 7px) clamp(11px, 1.88cqw, 14px);
  color: #ffffff;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(10px, 1.62cqw, 12px);
  line-height: 1.4;
}

.share-preview-student-pill {
  position: absolute;
  left: 3.77%;
  bottom: 8.12%;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 16.58%;
  min-height: 27.82%;
  box-sizing: border-box;
  border-radius: 15px;
  background: rgba(255, 255, 255, .2);
  padding: clamp(6px, 1.08cqw, 8px);
  gap: clamp(3px, .67cqw, 5px);
}

.share-preview-student-pill img {
  width: clamp(46px, 8.09cqw, 60px);
  height: clamp(46px, 8.09cqw, 60px);
  flex: 0 0 clamp(46px, 8.09cqw, 60px);
  border-radius: 999px;
  object-fit: cover;
}

.share-preview-student-pill span {
  max-width: 100%;
  color: #ffffff;
  font-size: clamp(10px, 1.62cqw, 12px);
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.student-avatar-grid {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: clamp(4px, .55vw, 8px);
  align-items: center;
  min-height: 164px;
}

.student-avatar-grid img {
  width: min(48px, 100%);
  height: auto;
  aspect-ratio: 1;
  border-radius: 999px;
  object-fit: cover;
  justify-self: center;
}

.student-community-panel p {
  margin: 12px 0 16px;
  color: var(--fp-muted);
  font-size: 16px;
  line-height: 24px;
}

.community-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.community-tags span {
  border-radius: 999px;
  background: #f0eeff;
  padding: 4px 12px;
  color: #3b28cc;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

.share-result-block {
  width: min(1280px, 100%);
  margin: 52px auto 0;
}

.share-preview-card {
  min-height: 430px;
  border: 1px solid var(--fp-border);
  border-radius: 28px;
  background: #ffffff;
  padding: 28px;
  text-align: center;
  box-shadow: var(--fp-shadow-card);
}

.share-preview-art {
  width: 100%;
  max-height: 160px;
  object-fit: contain;
  margin-bottom: 16px;
}

.share-preview-card h3 {
  margin: 0 0 10px;
  color: var(--fp-ink);
  font-size: 24px;
}

.share-preview-card p {
  margin: 0 auto 22px;
  max-width: 360px;
  color: var(--fp-muted);
}

.share-preview-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.share-preview-actions span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 87px;
  border: 1px solid #e8deff;
  border-radius: 12px;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
}

.share-preview-actions img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

@media (max-width: 1279px) {
  .community-panels {
    grid-template-columns: 1fr;
    width: min(720px, 100%);
  }

  .student-community-panel,
  .student-avatar-grid {
    min-height: 0;
  }
}

.bundle-hero {
  position: relative;
  overflow: hidden;
  min-height: 1027px;
  padding: 64px 44px 72px;
  background: linear-gradient(180deg, #f9fafb 0%, #f0eeff 100%);
}

.bundle-hero-grid {
  position: absolute;
  top: 30px;
  width: 430px;
  height: 288px;
  object-fit: contain;
  opacity: .35;
}

.bundle-hero-grid-left {
  left: -140px;
}

.bundle-hero-grid-right {
  right: -140px;
  transform: rotate(180deg);
}

.bundle-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  width: min(1360px, 100%);
  margin: 0 auto;
}

.bundle-hero h1 {
  margin: 0;
  color: #1a202c;
  font-size: 44px;
  font-weight: 700;
  line-height: 66px;
}

.bundle-help {
  margin: 104px auto 0;
  max-width: 680px;
  color: #64748b;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
}

.bundle-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 320px));
  gap: 24px;
  align-items: start;
  justify-content: center;
  margin-top: 32px;
  text-align: left;
}

.bundle-track-wide {
  grid-column: 1 / -1;
  width: min(660px, 100%);
  margin: 0 auto;
}

.bundle-track {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.bundle-track h2 {
  margin: 0 0 12px;
  color: #1a202c;
  font-size: 22px;
  font-weight: 600;
  line-height: 33px;
  text-align: left;
  white-space: nowrap;
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.bundle-card {
  position: relative;
  min-height: 0;
  box-sizing: border-box;
  border: 0;
  border-radius: 28px;
  background: #ffffff;
  padding: 31px 32px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
}

.bundle-track-free .bundle-card {
  min-height: 206px;
}

.bundle-card.is-recommended {
  min-height: 0;
  border: 2px solid #3b28cc;
  padding-top: 36px;
  box-shadow: 0 8px 24px rgba(59, 40, 204, .15);
}

.bundle-card > span {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  min-width: 116px;
  border-radius: 999px;
  background: #3b28cc;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.bundle-card h3 {
  margin: 0 0 12px;
  color: var(--fp-blue);
  font-size: 18px;
}

.bundle-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.bundle-card li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  color: #2d3748;
  font-size: 15px;
  font-weight: 400;
  line-height: 22.5px;
}

.bundle-card li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 999px;
  background: var(--fp-blue);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.bundle-card b {
  color: #ff34b2;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.bundle-card strong {
  margin-left: auto;
  color: #2722f3;
  font-size: 15px;
  font-weight: 700;
  line-height: 22.5px;
}

.bundle-set-list li {
  display: grid;
  grid-template-columns: 20px 72px minmax(88px, 1fr) auto;
  align-items: center;
  justify-content: stretch;
  column-gap: 8px;
}

.bundle-set-list li::before {
  grid-column: 1;
}

.bundle-set-list li > span {
  grid-column: 2;
  min-width: 0;
  white-space: nowrap;
}

.bundle-set-list li > b {
  grid-column: 3;
  justify-self: start;
}

.bundle-set-list li > strong {
  grid-column: 4;
  justify-self: end;
  margin-left: 0;
}

.bundle-set-note {
  margin: 28px 0 0;
  color: #747474;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.5px;
  text-align: center;
}

.bundle-card li::before {
  content: "";
  background: url("/img/prepify/front-page/pricing-bundle-check-figma.svg") center / 12px 12px no-repeat, linear-gradient(135deg, #3b28cc 0%, #4f46e5 100%);
  color: transparent;
  font-size: 0;
}

.bundle-help a {
  color: #3b28cc;
  font-weight: 500;
  text-decoration: none;
}

.pricing-plan-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  min-height: 526px;
  padding: 40px 80px;
  background: #ffffff;
}

.pricing-plan-section .section-heading h1 {
  color: #1a202c;
  font-size: 42px;
  font-weight: 700;
  line-height: 63px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  width: min(1352px, calc(100vw - 88px));
  margin-top: 0;
}

.plan-grid article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 295px;
  border: 0;
  border-radius: 15px;
  padding: 14px 40px;
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(34, 0, 252, .14);
}

.plan-grid article:nth-child(1) {
  background: linear-gradient(90deg, #0b08fc 0%, #4f3fdd 100%);
}

.plan-grid article:nth-child(2) {
  background: linear-gradient(90deg, #ff1b8c 0%, #ff3cbd 100%);
}

.plan-grid article:nth-child(3) {
  background: linear-gradient(90deg, #6857ff 0%, #4f3fdd 100%);
}

.plan-grid article h2 {
  margin: 0;
  color: #ffffff;
  font-size: 32px;
  font-weight: 800;
  line-height: 72px;
  white-space: nowrap;
}

.plan-grid article p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  position: relative;
  min-height: 22.5px;
  margin: 0 0 16px;
  padding-left: 28px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 22.5px;
}

.plan-grid article p.is-unused::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .22);
  color: #ffffff;
  font-size: 10px;
  font-weight: 900;
}

.plan-grid strong {
  display: inline-flex;
  margin-top: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 22.5px;
  white-space: nowrap;
}

.plan-grid article p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  display: block;
  width: 20px;
  height: 20px;
  background: url("/img/prepify/front-page/pricing-plan-check-figma.svg") center / 20px 20px no-repeat;
  color: transparent;
  font-size: 0;
}

.success-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.success-section .section-heading {
  gap: 0;
  margin-bottom: 24px;
}

.success-section .section-heading h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 63px;
}

.path-track {
  --path-card-width: 220px;
  --path-gap: 60px;
  --path-circle: 180px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, var(--path-card-width));
  column-gap: var(--path-gap);
  row-gap: 34px;
  align-items: start;
  justify-content: center;
  width: min(1340px, calc(100vw - 96px));
  margin: 0 auto;
  overflow: visible;
}

.path-track::before {
  display: none;
}

.path-track article {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: var(--path-card-width);
  text-align: center;
}

.path-track article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: calc((var(--path-circle) / 2) - 2px);
  left: calc(50% + (var(--path-circle) / 2));
  z-index: -1;
  width: var(--path-gap);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #3b28cc 0%, #4f46e5 100%);
}

.path-track span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: var(--path-circle);
  height: var(--path-circle);
  padding: 3px;
  border-radius: 999px;
  border: 3px solid #3b28cc;
  background: #ffffff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
}

.path-track span::before {
  content: "";
  position: absolute;
  inset: auto;
  z-index: 0;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0705fe 0%, #4f46e5 100%);
}

.path-track span::after {
  content: "";
  position: absolute;
  right: -12px;
  top: -12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffd700 0%, orange 100%);
}

.path-track .path-star-icon {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.path-track .path-medal-icon {
  position: absolute;
  right: -4px;
  top: -4px;
  z-index: 3;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.path-track p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 0;
  margin: 0;
  border-radius: 999px;
  background: #f0eeff;
  padding: 4px 12px;
  color: #3b28cc;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  white-space: nowrap;
}

.path-track strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #3b28cc;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  border-radius: 999px;
  background: #f0eeff;
  padding: 4px 12px;
  white-space: nowrap;
}

.path-track article:nth-child(2) p,
.path-track article:nth-child(4) p {
  color: #3b28cc;
}

.path-track article:nth-child(2) strong,
.path-track article:nth-child(4) strong {
  color: #3b28cc;
}

.championship-progress {
  width: min(800px, 100%);
  margin: 64px auto 0;
  text-align: center;
}

.championship-progress span {
  display: block;
  height: 16px;
  overflow: hidden;
  border-radius: 999px;
  background: #e5e7eb;
}

.championship-progress i {
  display: block;
  width: 70%;
  height: 100%;
  border-radius: 15px;
  background: linear-gradient(90deg, #ff1b8c 0%, #ff3cbd 100%);
}

.championship-progress p {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}

.rewards-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(22rem, 30.8rem) minmax(0, 46.2rem);
  gap: 48px;
  align-items: start;
  overflow: hidden;
  background: #ffffff;
}

.rewards-section::before,
.rewards-section::after {
  position: absolute;
  z-index: 0;
  width: 452px;
  height: 452px;
  opacity: .5;
  background-image:
    linear-gradient(rgba(100, 116, 139, .22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 116, 139, .22) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  pointer-events: none;
}

.rewards-section::before {
  right: 0;
  top: 0;
}

.rewards-section::after {
  left: 0;
  bottom: 0;
}

.reward-copy,
.leaderboard {
  position: relative;
  z-index: 1;
}

.reward-copy h2 {
  margin: 0;
  color: var(--fp-ink);
  font-size: 36px;
  font-weight: 700;
  line-height: 54px;
}

.reward-copy p {
  width: min(493px, 100%);
  margin: 16px 0 0;
  color: #64748b;
  font-size: 16px;
  line-height: 24px;
}

.reward-icons {
  display: grid;
  grid-template-columns: repeat(4, 100px);
  gap: 16px;
  width: min(100%, 448px);
  margin: 184px 0 16px;
}

.reward-icons img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 999px;
  background: #e5e7eb;
  box-shadow: 0 10px 20px rgba(34, 0, 252, .08);
}

.reward-icons img:nth-child(-n+4) {
  background: linear-gradient(135deg, #0705fe 0%, #4f46e5 100%);
  padding: 16px;
}

.credit-card {
  display: grid;
  justify-items: center;
  gap: 15px;
  width: min(493px, 100%);
  min-height: 458px;
  border-radius: 24px;
  background: linear-gradient(137deg, #0705fe 0%, #4f46e5 100%);
  color: #ffffff;
  padding: 32px 24px;
  box-shadow: none;
}

.credit-card strong {
  color: #ffffff;
  font-size: 32px;
  font-weight: 800;
  line-height: 72px;
  text-align: center;
}

.credit-card span {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  margin-top: 25px;
  border: 4px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  font-size: 24px;
  font-weight: 700;
}

.leaderboard {
  min-height: 1117px;
  border-radius: 24px;
  background: #ffffff;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.leaderboard-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin: 0 0 24px;
}

.leaderboard-heading > img {
  width: 32px;
  height: 89px;
  flex: 0 0 32px;
  border-radius: 0;
  object-fit: fill;
}

.leaderboard h2 {
  margin: 0;
  color: var(--fp-ink);
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
}

.leaderboard-heading p {
  width: 100%;
  margin: 0;
  color: #747474;
  font-size: 14px;
  line-height: 22.5px;
}

.leaderboard ol {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.leaderboard li {
  display: grid;
  grid-template-columns: 32px 48px 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 72px;
  border-radius: 16px;
  padding: 12px;
  color: #273047;
  background: #ffffff;
}

.leaderboard li.current {
  border: 2px solid #3b28cc;
  background: linear-gradient(90deg, #f0eeff 0%, rgba(240, 238, 255, 0) 100%);
}

.leaderboard li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #e5e7eb;
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
}

.leaderboard li:nth-child(1) span,
.leaderboard li:nth-child(2) span,
.leaderboard li:nth-child(3) span {
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  color: #ffffff;
}

.leaderboard li strong {
  color: #1a202c;
  font-weight: 600;
}

.leaderboard ol img {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  object-fit: cover;
}

.leaderboard em {
  color: #3b28cc;
  font-style: normal;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
}

.leaderboard-action {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 24px;
  border-radius: 16px;
  background: linear-gradient(90deg, #0705fe 0%, #4f46e5 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.champion-band {
  width: min(1352px, calc(100% - 80px));
  min-height: 144px;
  margin: 0 auto 48px;
  padding: 40px;
  border-radius: 24px;
  background: linear-gradient(90deg, #0000ff 0%, #5b3fe8 100%);
  box-shadow: 0 4px 10px rgba(91, 63, 232, .25);
}

.champion-band p {
  width: min(924px, 100%);
  margin: 0 auto;
  color: #ffffff;
  font-family: Poppins, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  text-align: center;
}

.team-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 280px;
  overflow: hidden;
  padding: 85px 80px 86px;
  background: linear-gradient(180deg, #f0eeff 0%, #ffffff 100%);
  text-align: center;
}

.team-hero > div {
  position: relative;
  z-index: 1;
  width: min(768px, 100%);
}

.team-hero h1 {
  margin: 0;
  color: #1a202c;
  font-size: 52px;
  font-weight: 800;
  line-height: 62.4px;
}

.team-hero p {
  width: max-content;
  max-width: calc(100vw - 160px);
  margin: 15px auto 0;
  color: #64748b;
  font-size: 19px;
  font-weight: 400;
  line-height: 28.5px;
  white-space: nowrap;
}

.team-decor {
  position: absolute;
  display: block;
  pointer-events: none;
}

.team-decor-glow {
  left: max(0px, calc(50% - 640px));
  bottom: 40px;
  width: 200px;
  height: 200px;
  border-radius: 999px;
  background: #4f46e5;
  opacity: .1;
  filter: blur(32px);
}

.team-decor-left-dot {
  left: max(24px, calc(50% - 592px));
  top: 80px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #e0d7ff;
}

.team-decor-right-dot {
  right: max(24px, calc(50% - 560px));
  top: 160px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #e0d7ff;
}

.team-main {
  display: grid;
  gap: 64px;
  padding: 48px 48px 88px;
  background: #ffffff;
}

.team-section {
  width: min(1344px, 100%);
  margin: 0 auto;
}

.team-section-heading {
  margin-bottom: 28px;
}

.team-section-heading h2 {
  position: relative;
  display: inline-flex;
  margin: 0;
  color: #1a202c;
  font-size: 32px;
  font-weight: 700;
  line-height: 48px;
}

.team-section-heading h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 80px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #3b28cc 0%, #4f46e5 100%);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.team-grid-leadership {
  grid-template-columns: 1fr;
}

.team-grid-engineers {
  align-items: stretch;
}

.team-card {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  min-height: 300px;
  border: 2px solid transparent;
  border-radius: 24px;
  background: #ffffff;
  padding: 32px;
  box-shadow: 0 12px 20px rgba(59, 40, 204, .15);
}

.team-card-lead {
  grid-template-columns: 320px minmax(0, 1fr);
  min-height: 568px;
  border-radius: 32px;
  padding: 48px;
}

.team-photo-frame {
  position: relative;
  display: block;
  width: 200px;
  height: 200px;
  border-radius: 999px;
  overflow: hidden;
  background: #f4f2ff;
  box-shadow: 0 6px 20px rgba(59, 40, 204, .2);
  flex-shrink: 0;
}

.team-photo-lead-frame {
  width: 320px;
  height: 320px;
  box-shadow: 0 8px 24px rgba(59, 40, 204, .2);
}

.team-photo-frame > .team-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.team-photo-frame > .team-photo-pierre-hajjar {
  top: -8%;
  left: -4.02%;
  width: 108.32%;
  height: 108%;
  object-fit: fill;
}

.team-photo-frame > .team-photo-amina-yaacoub {
  top: .04%;
  left: 0;
  width: 100%;
  height: 120.75%;
  object-fit: fill;
}

.team-photo-frame > .team-photo-amer-deaibess {
  top: -4.63%;
  left: -3%;
  width: 106%;
  height: 107.39%;
  object-fit: fill;
}

.team-photo-frame > .team-photo-rima-al-hayek {
  top: -39.68%;
  left: -15.67%;
  width: 132.93%;
  height: 210.52%;
  object-fit: fill;
}

.team-photo-frame > .team-photo-imad-khoury {
  top: -5.66%;
  left: 0;
  width: 100%;
  height: 128.68%;
  object-fit: fill;
}

.team-photo-frame > .team-photo-barakat-nasser {
  top: -4.86%;
  left: -14.79%;
  width: 140.92%;
  height: 150.76%;
  object-fit: fill;
}

.team-photo-frame > .team-photo-faten-hamdan {
  top: -3.88%;
  left: 0;
  width: 100%;
  height: 104.71%;
  object-fit: fill;
}

.team-photo-frame > .team-photo-nicolas-tayar {
  top: .16%;
  left: -18.98%;
  width: 158.33%;
  height: 141.53%;
  object-fit: fill;
}

.team-photo-frame > .team-photo-naim-saad {
  top: -3.5%;
  left: 0;
  width: 100%;
  height: 133.33%;
  object-fit: fill;
}

.team-photo-frame > .team-photo-jean-pierre-fakhry {
  top: -14.56%;
  left: -7.22%;
  width: 114.44%;
  height: 114.44%;
  object-fit: fill;
}

.team-card h3 {
  margin: 0 0 8px;
  color: #1a202c;
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
}

.team-card-lead h3 {
  font-size: 36px;
  font-weight: 700;
  line-height: 54px;
}

.team-card strong {
  display: block;
  margin-bottom: 16px;
  color: #3b28cc;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
}

.team-card-lead strong {
  margin-bottom: 24px;
  font-size: 22px;
  font-weight: 600;
  line-height: 33px;
}

.team-card p {
  margin: 0;
  color: #64748b;
  font-size: 15px;
  font-weight: 400;
  line-height: 22.5px;
  white-space: pre-line;
}

.team-card-lead p {
  font-size: 16px;
  line-height: 25.6px;
}

.contact-options-section {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  padding: 64px 80px;
  background: var(--fp-soft);
}

.contact-option-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  width: min(764px, 100%);
  margin: 44px auto 0;
}

.contact-option-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 18px;
  align-items: center;
  min-height: 112px;
  border: 1px solid var(--fp-border);
  border-radius: 20px;
  background: #ffffff;
  padding: 28px;
  box-shadow: var(--fp-shadow-soft);
}

.contact-option-card span {
  grid-row: span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--fp-blue);
}

.contact-option-card span img {
  width: 24px;
  height: 24px;
}

.contact-option-card strong {
  color: var(--fp-ink);
  font-size: 20px;
  line-height: 28px;
}

.contact-option-card em {
  color: var(--fp-muted);
  font-style: normal;
  font-size: 15px;
}

.site-footer {
  display: grid;
  grid-template-columns: 284px 284px minmax(0, 1fr) 284px;
  gap: 48px;
  min-height: 280px;
  border-top: 1px solid var(--fp-border);
  background: #ffffff;
  padding: 65px 80px 32px;
}

.footer-brand img {
  width: 125px;
  height: 39px;
  object-fit: contain;
}

.footer-brand p {
  margin: 15px 0 18px;
  color: var(--fp-muted);
  font-size: 14px;
  line-height: 22.4px;
}

.socials {
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.socials a,
.socials .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--fp-blue);
}

.socials li:nth-child(3) a,
.socials li:nth-child(3) .social-icon {
  background: #ff00fa;
}

.socials li:first-child a,
.socials li:first-child .social-icon,
.socials li:nth-child(4) a,
.socials li:nth-child(4) .social-icon {
  background: transparent;
}

.socials img {
  width: 20px;
  height: 20px;
}

.socials li:first-child img,
.socials li:nth-child(4) img {
  width: 36px;
  height: 36px;
}

.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.site-footer h2 {
  margin: 0 0 8px;
  color: var(--fp-ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.site-footer nav a {
  color: var(--fp-muted);
  font-size: 15px;
  line-height: 22.5px;
}

.copyright {
  grid-column: 4;
  align-self: start;
  justify-self: end;
  margin: 0;
  color: var(--fp-muted);
  font-size: 14px;
  line-height: 21px;
  text-align: right;
  white-space: nowrap;
}

.scroll-top {
  position: fixed;
  z-index: 25;
  right: 80px;
  bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--fp-blue);
  box-shadow: 0 10px 15px rgba(0, 0, 0, .12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top img {
  width: 24px;
  height: 24px;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
    column-gap: 16px;
    padding: 14px 28px;
  }

  .brand img {
    width: 184px;
    height: 29px;
  }

  .brand {
    width: 184px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
    width: 42px;
    height: 42px;
    border: 1px solid var(--fp-border);
    border-radius: 10px;
    background: #ffffff;
    align-items: center;
    justify-content: center;
  }

  .nav-toggle span:not(.sr-only) {
    width: 18px;
    height: 2px;
    background: var(--fp-blue);
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    display: none;
    gap: 18px;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-top: 16px;
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .header-actions {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    gap: 8px;
  }

  .header-actions .btn {
    padding: 9px 16px;
    font-size: 13px;
  }

  .home-hero,
  .landing-section,
  .platform-hero,
  .ai-band,
  .bundle-hero,
  .team-hero,
  .team-main,
  .contact-options-section,
  .site-footer,
  .champion-band {
    padding-left: 32px;
    padding-right: 32px;
  }

  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }

  .path-track {
    --path-gap: 0;
    grid-template-columns: repeat(2, var(--path-card-width));
    width: 100%;
    row-gap: 32px;
  }

  .path-track article:not(:last-child)::after {
    display: none;
  }

  .copyright {
    grid-column: 1 / -1;
    text-align: left;
    white-space: normal;
  }

  .home-hero-copy h1 {
    font-size: clamp(52px, 5.8vw, 72px);
    line-height: .88;
  }

  .home-hero-copy {
    width: min(52vw, 500px);
  }

  .home-hero-copy p {
    max-width: 420px;
  }

  .home-grid {
    top: 112px;
    left: 45%;
    width: min(42vw, 420px);
    height: min(42vw, 420px);
    object-fit: cover;
    object-position: right center;
  }

  .home-blue-dot-grid {
    right: 22px;
    width: min(24vw, 260px);
    height: 360px;
    background-size: 58px 60px;
  }

  .home-student-frame {
    left: auto;
    right: -28px;
    top: 40px;
    width: min(52vw, 560px);
    height: min(38vw, 420px);
  }

  .home-decor-one {
    right: 43%;
  }

  .home-decor-two {
    right: 35%;
  }

  .audience-section,
  .university-section,
  .rewards-section,
  .community-section {
    grid-template-columns: 1fr;
  }

  .reward-icons {
    margin-top: 48px;
  }

  .leaderboard {
    min-height: 0;
  }

  .subject-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .team-grid,
  .team-card,
  .team-card-lead {
    grid-template-columns: 1fr;
  }

  .team-photo-frame,
  .team-photo-lead-frame {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 12px 20px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    justify-self: end;
    grid-column: 2;
    grid-row: 1;
    width: 42px;
    height: 42px;
    border: 1px solid var(--fp-border);
    border-radius: 10px;
    background: #ffffff;
    align-items: center;
    justify-content: center;
  }

  .nav-toggle span:not(.sr-only) {
    width: 18px;
    height: 2px;
    background: var(--fp-blue);
  }

  .site-nav,
  .header-actions {
    grid-column: 1 / -1;
    display: none;
  }

  body.nav-open .site-nav,
  body.nav-open .header-actions {
    display: flex;
  }

  body.nav-open .site-nav {
    grid-row: 2;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 16px;
  }

  .header-actions {
    grid-row: 3;
    align-items: stretch;
    flex-direction: column;
    width: 100%;
    padding-top: 14px;
  }

  .header-actions .prepify-language-switcher,
  .header-actions .prepify-language-switcher .form-select,
  .header-actions .btn {
    width: 100%;
  }

  .platform-preview {
    border-width: 12px;
    border-radius: 18px;
  }

  .home-hero {
    height: auto;
    min-height: 0;
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .home-hero-copy {
    width: 100%;
  }

  .home-hero-copy h1 {
    font-size: 52px;
  }

  .home-grid {
    left: auto;
    right: 0;
    width: min(68vw, 260px);
    height: min(68vw, 260px);
    object-fit: cover;
    object-position: right center;
    opacity: .45;
  }

  .home-blue-dot-grid {
    top: 142px;
    right: -80px;
    width: 190px;
    height: 240px;
    background-size: 44px 46px;
    opacity: .16;
  }

  .home-student-frame {
    left: 50%;
    right: auto;
    top: auto;
    bottom: -16px;
    display: block;
    width: min(92vw, 360px);
    height: min(68vw, 268px);
    transform: translateX(-50%);
  }

  .home-student-hero {
    left: -70.81%;
    top: -9.03%;
    width: 200.53%;
    height: 146.57%;
  }

  .home-hero {
    min-height: 675px;
    padding-bottom: 292px;
  }

  .university-section {
    row-gap: 24px;
  }

  .university-art {
    width: min(100%, 340px);
    min-height: 320px;
    margin: 0 auto;
    overflow: hidden;
  }

  .university-art > img:first-child {
    top: 0;
    width: 320px;
    max-width: none;
    height: 320px;
    object-fit: cover;
    object-position: 73% center;
  }

  .cards-triangle-one {
    display: none;
  }

  .intro-band p {
    font-size: 24px;
    line-height: 36px;
  }

  .intro-band {
    height: auto;
    min-height: 255px;
    padding: 44px 32px;
  }

  .intro-band strong {
    font-size: 34px;
    line-height: 36px;
  }

  .intro-band-dot-one {
    left: 24px;
    top: 28px;
  }

  .intro-band-dot-two {
    right: 34px;
    bottom: 24px;
    width: 50px;
    height: 50px;
  }

  .intro-band-square {
    right: 20px;
    top: 42px;
  }

  .home-cards,
  .steps-grid,
  .audience-section,
  .audience-grid,
  .subject-grid,
  .compare-grid,
  .institution-card-grid,
  .ai-card-grid,
  .security-grid,
  .plan-grid,
  .path-track,
  .bundle-columns,
  .bundle-grid,
  .rewards-section,
  .community-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .pricing-plan-section {
    align-items: stretch;
    gap: 28px;
    min-height: 0;
    overflow: hidden;
    padding: 36px 20px;
  }

  .pricing-plan-section .section-heading h1 {
    font-size: clamp(36px, 11vw, 48px);
    line-height: 1.14;
    text-align: left;
  }

  .plan-grid {
    width: 100%;
    max-width: 100%;
    gap: 20px;
  }

  .plan-grid article {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    min-height: 250px;
    overflow: hidden;
    padding: 28px 28px;
  }

  .plan-grid article h2 {
    margin-bottom: 24px;
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.12;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .plan-grid article p {
    flex-wrap: wrap;
    min-width: 0;
    gap: 12px;
    justify-content: flex-start;
    font-size: clamp(18px, 5vw, 22px);
    line-height: 1.25;
  }

  .plan-grid strong {
    flex: 0 0 auto;
    margin-left: auto;
    font-size: clamp(18px, 5vw, 22px);
    line-height: 1.25;
  }

  .success-section .section-heading h2 {
    font-size: 34px;
    line-height: 44px;
    white-space: normal;
  }

  .path-track {
    --path-circle: 150px;
    --path-card-width: min(100%, 220px);
    width: 100%;
    justify-items: center;
  }

  .path-track p {
    white-space: normal;
  }

  .championship-progress {
    margin-top: 40px;
  }

  .subjects-section .subject-decor {
    display: none;
  }

  .home-cards {
    grid-auto-rows: auto;
    min-height: 0;
    padding: 56px 24px;
  }

  .home-cards article {
    min-height: 240px;
  }

  .home-cards .cards-decor {
    display: none;
  }

  .security-dark-triangle {
    display: none;
  }

  .rewards-section::before,
  .rewards-section::after {
    width: 260px;
    height: 260px;
    background-size: 36px 36px;
  }

  .reward-icons {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
  }

  .reward-icons img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .credit-card {
    min-height: 0;
    padding: 28px 18px;
  }

  .credit-card strong {
    font-size: 24px;
    line-height: 1.35;
  }

  .credit-card span {
    width: 88px;
    height: 88px;
    margin-top: 12px;
    font-size: 20px;
  }

  .leaderboard {
    padding: 22px;
  }

  .leaderboard li {
    grid-template-columns: 32px 40px minmax(0, 1fr);
  }

  .leaderboard li em {
    grid-column: 3;
  }

  .institution-card-grid article:nth-child(4),
  .institution-card-grid article:nth-child(5) {
    transform: none;
  }

  .about-mission-section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .about-mission-section::after {
    display: none;
  }

  .about-mission-copy h1,
  .about-values-copy h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .about-mission-copy p,
  .about-values-list span {
    font-size: 14px;
    line-height: 22px;
  }

  .institutions-section {
    padding-top: 44px;
    padding-bottom: 52px;
  }

  .institution-educator-panel {
    margin-top: 28px;
    border-radius: 20px;
    padding: 14px;
  }

  .institution-educator-stage {
    min-height: 440px;
    border-width: 3px;
  }

  .institution-circle-blue {
    left: -28px;
    top: auto;
    bottom: 32px;
    width: 188px;
    height: 188px;
  }

  .institution-circle-pink {
    left: auto;
    right: -16px;
    top: 66px;
    width: 176px;
    height: 176px;
  }

  .institution-educator-stage > strong {
    top: 52%;
    left: 0;
    z-index: 3;
    width: 100%;
    font-size: clamp(26px, 8vw, 34px);
    text-align: center;
    text-shadow: 0 2px 0 #ffffff, 0 -2px 0 #ffffff, 2px 0 0 #ffffff, -2px 0 0 #ffffff;
  }

  .institution-avatar-female {
    left: 0;
    top: auto;
    bottom: 16px;
    width: 118px;
  }

  .institution-avatar-male {
    left: auto;
    right: 18px;
    top: 26px;
    width: 120px;
  }

  .institution-sparkles {
    left: 72px;
    top: 88px;
    width: 118px;
    height: 128px;
  }

  .compare-grid > strong {
    margin: 0 auto;
  }

  .copyright {
    grid-column: auto;
    text-align: left;
  }

  .community-panels,
  .share-preview-actions {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .share-preview-panel,
  .student-community-panel {
    min-height: 0;
    padding: 22px;
    overflow: hidden;
  }

  .share-preview-panel h3,
  .student-community-panel h3,
  .share-result-block h3 {
    margin-bottom: 18px;
    font-size: 21px;
    line-height: 28px;
  }

  .share-preview-visual {
    width: 100%;
    aspect-ratio: auto;
    min-height: 315px;
  }

  .share-preview-visual strong {
    top: 72px;
    font-size: 42px;
    line-height: 58px;
  }

  .share-preview-visual p {
    top: 137px;
    padding: 0 18px;
    font-size: 15px;
    line-height: 21px;
  }

  .share-preview-trophy {
    top: 166px;
  }

  .share-preview-visual em {
    right: 16px;
    bottom: 16px;
    max-width: 126px;
    padding: 6px 12px;
    font-size: 11px;
    line-height: 15px;
    text-align: center;
  }

  .share-preview-student-pill {
    left: 16px;
    bottom: 16px;
    width: 104px;
    min-height: 84px;
    padding: 7px 7px 8px;
    gap: 4px;
  }

  .share-preview-student-pill img {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .share-preview-student-pill span {
    font-size: 11px;
    line-height: 15px;
  }

  .share-preview-logo {
    left: 18px;
    top: 18px;
    width: 76px;
    height: 24px;
  }

  .share-preview-trophy {
    width: 48px;
    height: 48px;
  }

  .share-preview-trophy img {
    width: 25px;
    height: 25px;
  }

  .student-avatar-grid {
    grid-template-columns: repeat(auto-fit, minmax(40px, 1fr));
    gap: 8px;
    min-height: 0;
  }

  .student-avatar-grid img {
    width: 40px;
    height: 40px;
  }

  .site-footer {
    padding-bottom: 96px;
  }

  .scroll-top {
    right: 20px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    width: 44px;
    height: 44px;
  }

  .team-hero {
    min-height: 280px;
    padding-top: 56px;
    padding-bottom: 48px;
  }

  .team-hero h1 {
    font-size: 46px;
  }

  .team-hero p {
    width: min(672px, 100%);
    max-width: 100%;
    font-size: 17px;
    line-height: 27px;
    white-space: normal;
  }

  .team-main {
    gap: 42px;
    padding-top: 44px;
    padding-bottom: 56px;
  }

  .team-section-heading h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .team-card,
  .team-card-lead {
    gap: 18px;
    min-height: 0;
    padding: 22px;
  }

  .team-photo-frame,
  .team-photo-lead-frame {
    width: 116px;
    height: 116px;
  }

  .team-card h3 {
    font-size: 22px;
    line-height: 28px;
  }

  .team-card p {
    font-size: 14px;
    line-height: 23px;
  }
}

@media (max-width: 480px) {
  .brand {
    display: none;
    width: 0;
  }

  .brand img {
    display: none;
  }
}
