: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;
  align-items: center;
  min-height: 72px;
  padding: 14px 80px;
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .04);
}

.brand img {
  width: 105px;
  height: 33px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.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,
.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;
}

.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;
}

.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-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: contain;
  opacity: .5;
}

.home-student-hero {
  position: absolute;
  right: -6px;
  bottom: 0;
  width: 760px;
  height: 528px;
  object-fit: contain;
  object-position: right bottom;
}

.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;
}

.intro-band {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 255px;
  padding: 15px 40px;
  background: var(--fp-blue);
  box-sizing: border-box;
}

.intro-band::before,
.intro-band::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, .22);
}

.intro-band::before {
  left: 74px;
  top: 70px;
  width: 44px;
  height: 44px;
}

.intro-band::after {
  right: 284px;
  bottom: 46px;
  width: 60px;
  height: 60px;
}

.intro-band p {
  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));
  gap: 32px;
  align-items: stretch;
  min-height: 520px;
  padding-top: 96px;
  background: #ffffff;
}

.cards-decor {
  position: absolute;
  display: block;
  pointer-events: none;
}

.cards-dot-one {
  left: 132px;
  top: 84px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #9587ff;
}

.cards-square-one {
  left: 326px;
  top: 38px;
  width: 23px;
  height: 23px;
  background: var(--fp-blue);
}

.cards-square-two {
  left: 42px;
  top: 268px;
  width: 25px;
  height: 25px;
  background: var(--fp-blue);
  opacity: .75;
}

.cards-triangle-one {
  left: 374px;
  top: 25px;
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-bottom: 19px solid #4b5563;
}

.cards-triangle-two {
  left: 72px;
  top: 174px;
  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: 114px;
  bottom: 64px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #9587ff;
}

.cards-dot-three {
  left: 182px;
  top: 102px;
  width: 25px;
  height: 25px;
  border-radius: 999px;
  background: #6366f1;
  opacity: .7;
}

.cards-star-one {
  left: 332px;
  bottom: 54px;
  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 {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 280px;
  padding: 44px 30px;
  text-align: center;
}

.home-cards article > span,
.audience-column h2 span,
.steps-grid i,
.audience-grid i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--fp-blue);
  border-radius: 999px;
}

.home-cards article > span {
  width: 64px;
  height: 64px;
}

.home-cards article > span img {
  width: 32px;
  height: 32px;
}

.home-cards h2 {
  margin: 24px 0 10px;
  color: var(--fp-ink);
  font-size: 24px;
  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, 612px) 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: -50px;
  top: -64px;
  width: 754px;
  height: 623px;
  object-fit: cover;
  object-position: 72% center;
}

.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: flex-start;
  color: #4a5568;
  font-size: 16px;
  line-height: 24px;
}

.check-list img {
  width: 24px;
  height: 24px;
  margin-top: 0;
  flex: 0 0 24px;
  padding: 4px;
  border-radius: 999px;
  background: var(--fp-blue);
  box-sizing: border-box;
}

.faq-section {
  background: #ffffff;
}

.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: 700;
  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(0deg);
  transition: transform .18s ease;
  flex: 0 0 32px;
}

.faq-list details[open] summary::after {
  transform: rotate(180deg);
}

.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 / 10;
  border: 32px solid #ffffff;
  border-radius: var(--fp-radius-lg);
  background: var(--fp-soft);
  box-shadow: 0 0 30px rgba(79, 70, 229, .4);
}

.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;
  min-height: 345px;
  padding: 32px;
  text-align: center;
}

.steps-grid .step-create {
  z-index: 2;
}

.steps-grid .step-avatar::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 174px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #e0d7ff;
}

.steps-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 999px;
  background: var(--fp-blue);
  color: #ffffff;
  font-size: 32px;
  font-weight: 900;
  line-height: 48px;
}

.steps-grid i {
  width: 48px;
  height: 48px;
  margin: 11px 0 9px;
}

.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,
.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: 64px;
  align-items: start;
  min-height: 480px;
  background: #ffffff;
}

.audience-section::before {
  content: "";
  position: absolute;
  top: 78px;
  bottom: 86px;
  left: 50%;
  width: 2px;
  background: var(--fp-blue);
  transform: translateX(-50%);
}

.audience-section::after {
  content: "";
  position: absolute;
  right: 54px;
  bottom: 42px;
  width: 270px;
  height: 270px;
  background-image: url("/img/prepify/front-page/features-mesh-final.png");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: .5;
  pointer-events: 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: 275.5px;
  width: 275.5px;
}

.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;
  min-height: 520px;
  background: var(--fp-soft);
  overflow: hidden;
}

.subject-decor {
  position: absolute;
  display: block;
  pointer-events: none;
}

.subject-dot-one {
  left: 58px;
  top: 56px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #d9ccff;
}

.subject-dot-two {
  left: 114px;
  top: 178px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #9587ff;
}

.subject-dot-three {
  right: 94px;
  bottom: 56px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #d8c8ff;
}

.subject-square-one {
  left: 314px;
  top: 80px;
  width: 28px;
  height: 28px;
  background: var(--fp-blue);
}

.subject-square-two {
  left: 386px;
  top: 112px;
  width: 26px;
  height: 26px;
  background: #eceff2;
}

.subject-square-three {
  right: 242px;
  top: 78px;
  width: 20px;
  height: 20px;
  background: #eceff2;
}

.subject-square-four {
  right: 24px;
  top: 220px;
  width: 25px;
  height: 25px;
  background: var(--fp-blue);
}

.subject-triangle-one {
  left: 362px;
  top: 58px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 22px solid #4b5563;
}

.subject-triangle-two {
  right: 88px;
  top: 96px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 12px solid #4b5563;
  transform: rotate(30deg);
}

.subject-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  margin-top: 44px;
}

.subject-grid article {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-height: 246px;
  padding: 28px 18px 22px;
  text-align: center;
}

.subject-grid img {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: var(--fp-blue);
  padding: 14px;
  object-fit: contain;
  box-sizing: border-box;
}

.subject-grid p {
  min-height: 62px;
  margin: 0;
  border-radius: 6px;
  background: var(--fp-lilac);
  padding: 10px 8px;
  color: #3729d8;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
}

.subject-grid span {
  color: var(--fp-blue);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1;
}

.subject-grid a {
  color: var(--fp-blue);
  font-size: 12px;
  font-weight: 800;
}

.compare-section {
  min-height: 560px;
  background: #ffffff;
}

.compare-section .section-heading p {
  display: none;
}

.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;
  line-height: 36px;
}

.compare-grid p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 14px 0;
  color: #4a5568;
  font-size: 15px;
  line-height: 1.45;
}

.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-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;
}

.institutions-section {
  min-height: 1598px;
  padding-top: 64px;
  background: #f4f2ff;
}

.institution-placeholder {
  width: min(1100px, 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-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 {
  min-height: 1212px;
  padding: 64px 80px;
  background: #0d073d;
}

.ai-card-grid article {
  align-items: flex-start;
  min-height: 320px;
  padding: 41px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 18px;
  background: #26215a;
  color: #ffffff;
  text-align: left;
}

.ai-card-grid {
  width: min(1280px, 100%);
  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: #3128d8;
}

.ai-card-grid i img {
  width: 28px;
  height: 28px;
}

.ai-card-grid h3 {
  margin-top: 14px;
  color: #ffffff;
}

.ai-card-grid p {
  color: #d3d7f4;
}

.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: 670px minmax(0, 628px);
  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: 473px;
}

.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;
  min-height: 345px;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(135deg, #8b5cf6 0%, #ff24c8 52%, #ff31d5 100%);
  color: #ffffff;
}

.share-preview-logo {
  position: absolute;
  left: 27.63px;
  top: 27.63px;
  width: 82px;
  height: 26px;
  object-fit: contain;
  object-position: left center;
}

.share-preview-student {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 95px;
  height: 95px;
  border-radius: 999px;
  object-fit: cover;
}

.share-preview-visual strong {
  position: absolute;
  top: 78px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 58px;
  line-height: 83px;
}

.share-preview-visual p {
  position: absolute;
  top: 168px;
  left: 0;
  width: 100%;
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
}

.share-preview-trophy {
  position: absolute;
  top: 207px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 55px;
  height: 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: 28px;
  bottom: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  padding: 7px 14px;
  color: #ffffff;
  font-style: normal;
  font-size: 12px;
}

.share-preview-visual b {
  position: absolute;
  left: 28px;
  bottom: 28px;
  width: 83px;
  height: 83px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
}

.student-avatar-grid {
  display: grid;
  grid-template-columns: repeat(9, 48px);
  gap: 8px;
  align-items: center;
  min-height: 164px;
}

.student-avatar-grid img {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  object-fit: cover;
}

.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(3, minmax(0, 1fr));
  gap: 12px;
}

.share-preview-actions span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 82px;
  border: 1px solid #e8deff;
  border-radius: 12px;
  color: #374151;
  font-size: 12px;
  font-weight: 700;
}

.share-preview-actions img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.bundle-hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  padding: 64px 48px 72px;
  background: #f6f4ff;
}

.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: var(--fp-ink);
  font-size: 48px;
  font-weight: 900;
  line-height: 58px;
}

.bundle-hero > div > p {
  margin: 28px auto 0;
  max-width: 680px;
  color: var(--fp-muted);
  font-weight: 600;
}

.bundle-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(260px, 320px));
  gap: 24px;
  align-items: start;
  justify-content: center;
  margin-top: 44px;
  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 18px;
  color: var(--fp-blue);
  font-size: 28px;
  font-weight: 900;
  line-height: 34px;
  text-align: center;
  white-space: nowrap;
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.bundle-card {
  position: relative;
  min-height: 238px;
  border: 2px solid var(--fp-blue);
  border-radius: 14px;
  background: #ffffff;
  padding: 22px 24px 24px;
  box-shadow: 0 16px 34px rgba(34, 0, 252, .08);
}

.bundle-track-free .bundle-card {
  min-height: 172px;
  border-color: #e3e5f2;
}

.bundle-card.is-recommended {
  border: 2px solid var(--fp-blue);
  min-height: 146px;
  padding-top: 34px;
}

.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: 142px;
  border-radius: 999px;
  background: var(--fp-blue);
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  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: #23263d;
  font-size: 15px;
  font-weight: 500;
  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: var(--fp-pink);
  font-size: 16px;
  white-space: nowrap;
}

.bundle-card strong {
  margin-left: auto;
  color: #2722f3;
  font-size: 15px;
  font-weight: 900;
  line-height: 22.5px;
}

.bundle-card li::before {
  content: "";
  background: var(--fp-blue) url("/img/prepify/front-page/features-compare-check-final.svg") center / 16px 16px no-repeat;
  color: transparent;
  font-size: 0;
}

.bundle-help a {
  color: var(--fp-blue);
  font-weight: 900;
  text-decoration: none;
}

.pricing-plan-section {
  min-height: 520px;
  background: #ffffff;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.plan-grid article {
  min-height: 248px;
  border: 0;
  border-radius: 22px;
  padding: 30px;
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(34, 0, 252, .14);
}

.plan-grid article:nth-child(1) {
  background: #0705fe;
}

.plan-grid article:nth-child(2) {
  background: #ff23c8;
}

.plan-grid article:nth-child(3) {
  background: #5b3fe8;
}

.plan-grid article h2 {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  line-height: 30px;
  white-space: nowrap;
}

.plan-grid article p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
  margin: 0 0 14px;
  padding-left: 26px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
}

.plan-grid article p::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: 16px;
  font-weight: 900;
  white-space: nowrap;
}

.plan-grid article p::before {
  content: "";
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, .18) url("/img/prepify/front-page/features-compare-check-final.svg") center / 14px 14px no-repeat;
  color: transparent;
  font-size: 0;
}

.success-section {
  background: #ffffff;
}

.success-section .section-heading p {
  display: none;
}

.path-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 34px;
  width: min(1180px, 100%);
  margin: 56px auto 0;
}

.path-track::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 39px;
  height: 2px;
  border-radius: 999px;
  background: #e8deff;
}

.path-track article {
  position: relative;
  z-index: 1;
  text-align: center;
}

.path-track span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  border: 2px solid var(--fp-blue);
  background: #ffffff;
  box-shadow: none;
}

.path-track span::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 999px;
  background: var(--fp-blue);
}

.path-track span::after {
  content: "";
  position: absolute;
  right: 3px;
  top: -3px;
  width: 24px;
  height: 24px;
  border: 3px solid #ffffff;
  border-radius: 999px;
  background: #fbbf24;
}

.path-track span img {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.path-track p {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  margin: 18px auto 10px;
  border-radius: 999px;
  background: #f4f2ff;
  padding: 4px 12px;
  color: var(--fp-blue);
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
}

.path-track strong {
  color: var(--fp-blue);
  font-size: 12px;
  font-weight: 900;
  line-height: 18px;
  border-radius: 999px;
  background: #f4f2ff;
  padding: 4px 12px;
}

.path-track article:nth-child(2) p,
.path-track article:nth-child(4) p {
  color: var(--fp-pink);
}

.path-track article:nth-child(2) strong,
.path-track article:nth-child(4) strong {
  color: var(--fp-pink);
}

.championship-progress {
  width: min(520px, 100%);
  margin: 58px auto 0;
  text-align: center;
}

.championship-progress span {
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e5e7eb;
}

.championship-progress i {
  display: block;
  width: 70%;
  height: 100%;
  border-radius: inherit;
  background: var(--fp-pink);
}

.championship-progress p {
  margin: 10px 0 0;
  color: #64748b;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
}

.rewards-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  gap: 64px;
  align-items: start;
  background: var(--fp-soft);
}

.reward-copy h2 {
  margin: 0 0 24px;
  color: var(--fp-ink);
  font-size: 32px;
  font-weight: 900;
  line-height: 40px;
}

.reward-icons {
  display: grid;
  grid-template-columns: repeat(4, 80px);
  gap: 12px;
  margin-bottom: 24px;
}

.reward-icons img {
  width: 80px;
  height: 80px;
  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: var(--fp-blue);
  padding: 10px;
}

.credit-card {
  display: grid;
  gap: 12px;
  width: min(360px, 100%);
  border-radius: 22px;
  background: var(--fp-blue);
  color: #ffffff;
  padding: 28px;
  box-shadow: var(--fp-shadow-card);
}

.credit-card span {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
}

.leaderboard {
  border-radius: 24px;
  background: #ffffff;
  padding: 28px;
  box-shadow: var(--fp-shadow-card);
}

.leaderboard h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--fp-ink);
  font-size: 28px;
}

.leaderboard h2 img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.leaderboard ol {
  display: grid;
  gap: 9px;
  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: 1px solid var(--fp-blue);
  background: var(--fp-lilac);
}

.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: 900;
}

.leaderboard li:nth-child(1) span,
.leaderboard li:nth-child(2) span,
.leaderboard li:nth-child(3) span {
  background: #fbbf24;
  color: #ffffff;
}

.leaderboard li:nth-child(2) span {
  background: #cbd5e1;
}

.leaderboard li:nth-child(3) span {
  background: #f59e0b;
}

.leaderboard img {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  object-fit: cover;
}

.leaderboard em {
  color: var(--fp-blue);
  font-style: normal;
  font-weight: 800;
}

.leaderboard-action {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 20px;
  border-radius: 16px;
  background: var(--fp-blue);
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
}

.champion-band {
  width: min(1352px, calc(100% - 80px));
  min-height: 154px;
  margin: 0 auto 48px;
  padding: 42px 64px;
  border-radius: 24px;
  background: var(--fp-blue);
}

.champion-band p {
  width: min(1100px, 100%);
  margin: 0 auto;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  text-align: center;
}

.contact-options-section {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  padding: 64px 80px;
  background: var(--fp-soft);
}

.contact-art {
  position: absolute;
  right: 0;
  top: 54px;
  width: 350px;
  height: 435px;
  overflow: hidden;
  opacity: .5;
  pointer-events: none;
}

.contact-art img {
  position: absolute;
  left: -325px;
  top: 0;
  width: 675px;
  height: 452px;
  max-width: none;
  object-fit: contain;
}

.contact-decor {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.contact-blue-square-one {
  right: 374px;
  top: 194px;
  width: 26px;
  height: 26px;
  border-radius: 2px;
  background: var(--fp-blue);
  opacity: .8;
}

.contact-blue-square-two {
  right: 28px;
  top: 244px;
  width: 27px;
  height: 27px;
  border-radius: 2px;
  background: var(--fp-blue);
  opacity: .8;
}

.contact-blue-square-three {
  right: 320px;
  bottom: 0;
  width: 29px;
  height: 29px;
  border-radius: 2px;
  background: var(--fp-blue);
  opacity: .8;
}

.contact-purple-dot-one {
  right: 66px;
  top: 86px;
  width: 33px;
  height: 33px;
  border-radius: 999px;
  background: #6366f1;
  opacity: .7;
}

.contact-purple-dot-two {
  right: 97px;
  bottom: 52px;
  width: 29px;
  height: 29px;
  border-radius: 999px;
  background: #6366f1;
  opacity: .65;
}

.contact-grey-square {
  right: 388px;
  bottom: 16px;
  width: 28px;
  height: 28px;
  border-radius: 2px;
  background: #e5e7eb;
  opacity: .55;
}

.contact-dark-triangle {
  right: 56px;
  bottom: 145px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 14px solid #1e293b;
  opacity: .7;
}

.contact-dark-line {
  right: 358px;
  bottom: 0;
  width: 33px;
  height: 2px;
  background: #1e293b;
  opacity: .75;
}

.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 {
  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 {
  background: #ff00fa;
}

.socials li:first-child a,
.socials li:nth-child(4) a {
  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;
  margin: 0;
  color: var(--fp-muted);
  font-size: 14px;
  line-height: 21px;
  text-align: right;
}

.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);
}

.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;
  }

  .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,
  .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;
  }

  .copyright {
    grid-column: 1 / -1;
    text-align: left;
  }

  .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: auto;
  }

  .home-student-hero {
    right: 0;
    width: min(50vw, 540px);
    height: auto;
  }

  .home-decor-one {
    right: 43%;
  }

  .home-decor-two {
    right: 35%;
  }

  .audience-section,
  .university-section,
  .rewards-section,
  .community-section {
    grid-template-columns: 1fr;
  }

  .subject-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    justify-self: end;
    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 {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 16px;
  }

  .header-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .home-hero {
    min-height: 520px;
    padding-top: 56px;
  }

  .home-hero-copy {
    width: 100%;
  }

  .home-hero-copy h1 {
    font-size: 52px;
  }

  .home-grid {
    width: 380px;
    height: auto;
    opacity: .45;
  }

  .intro-band p {
    font-size: 28px;
    line-height: 40px;
  }

  .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;
  }

  .institution-card-grid article:nth-child(4),
  .institution-card-grid article:nth-child(5) {
    transform: none;
  }

  .compare-grid > strong {
    margin: 0 auto;
  }

  .copyright {
    grid-column: auto;
    text-align: left;
  }
}
