.hero-section {
  min-height: 581px;
  padding: 35px 0 0;
  background: linear-gradient(var(--off-white) 0 567px, var(--white) 567px 100%);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 107px;
  text-align: center;
}

.hero-copy h1 {
  width: 1055px;
  margin: 0;
  color: var(--navy);
  font-family: "Faculty Glyphic", Georgia, serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 70px;
}

.mobile-title {
  display: none;
}

.hero-lede {
  width: 782px;
  margin: 42px 0 0;
  color: var(--black);
  font-size: 20px;
  line-height: 34px;
}

.goal-card {
  width: 819px;
  margin: 34px 0 0;
  padding: 28px 42px;
  border-radius: 18.626px;
  background: var(--navy);
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  line-height: 34px;
}

.difference-section {
  padding: 116px 0 88px;
  text-align: center;
}

.difference-section h2 {
  margin: 0 0 69px;
  color: var(--navy);
  font-size: 24px;
  font-weight: 800;
  line-height: 29.4px;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 33px;
}

.difference-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.difference-item img {
  width: 75px;
  height: 75px;
}

.difference-item h3 {
  margin: 28px 0 0;
  color: var(--rose);
  font-size: 21px;
  font-weight: 800;
  line-height: 28px;
}

.difference-item p {
  width: 295px;
  margin: 0;
  color: var(--black);
  font-size: 18px;
  line-height: 30px;
}

.navy-section {
  padding: 85px 0 89px;
  background: var(--navy);
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 122px;
}

.approach-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 34px;
  align-items: start;
  color: var(--white);
}

.approach-item:nth-child(2) {
  gap: 37px;
}

.approach-item img {
  width: 100px;
  height: 100px;
}

.approach-item h2 {
  margin: 0;
  color: var(--gold);
  font-size: 24px;
  font-weight: 800;
  line-height: 29.4px;
}

.approach-item p,
.approach-item li {
  color: var(--white);
  font-size: 18px;
  line-height: 30px;
}

.approach-item p {
  margin: 0 0 29px;
}

.approach-item p:last-child {
  margin-bottom: 0;
}

.approach-item strong {
  font-weight: 700;
}

.focus-list {
  color: var(--white);
  font-size: 18px;
  line-height: 30px;
}

.focus-list strong {
  display: block;
  margin-bottom: 4px;
  font-weight: 700;
  white-space: nowrap;
}

.focus-list ul {
  margin: 0;
  padding-left: 22px;
}

.focus-list li {
  line-height: 30px;
}

.important-card {
  width: 1132px;
  min-height: 168px;
  margin-top: 84px;
  padding: 28px 30px 30px;
  border-radius: 8.869px;
  background: var(--rose);
  color: var(--white);
  text-align: center;
}

.important-card h2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--gold);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.27;
}

.important-icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url("assets/important-yellow-icon.png") center / contain no-repeat;
  filter: drop-shadow(0.25px 0 0 var(--gold)) drop-shadow(-0.25px 0 0 var(--gold)) drop-shadow(0 0.25px 0 var(--gold)) drop-shadow(0 -0.25px 0 var(--gold));
}

.important-card p {
  margin: 0;
  color: var(--white);
  font-size: 18px;
  line-height: 30px;
}

.important-card h2 + p {
  margin-top: 2px;
}

.site-footer {
  padding: 45px 0 36px;
  background: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 177px 380px 1fr;
  gap: 112px;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--navy);
}

.footer-logo {
  width: 177px;
}

.watermark {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
  margin: 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
}

.lock-icon {
  display: inline-flex;
  width: 26px;
  height: 37px;
  transform: translateY(1px);
}

.lock-icon svg {
  width: 26px;
  height: 37px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 25px 72px;
  justify-content: end;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
}

.footer-nav a:hover {
  color: var(--rose);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 452px 1fr;
  gap: 11px;
  padding-top: 27px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
}

.footer-bottom p {
  margin: 0;
  line-height: 14px;
}

.footer-bottom p:last-child {
  text-align: right;
}

@media (max-width: 1400px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 18px 28px;
  }

  .hero-copy h1,
  .hero-lede,
  .goal-card,
  .important-card {
    width: 100%;
  }

  .difference-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-top {
    gap: 28px;
  }

  .footer-nav {
    justify-content: start;
  }

  .footer-bottom p:last-child {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .hero-section {
    padding-top: 24px;
  }

  .brand img {
    width: 184px;
  }

  .hero-copy {
    padding-top: 72px;
  }

  .hero-copy h1 {
    font-size: 42px;
    line-height: 50px;
  }

  .hero-lede,
  .goal-card,
  .difference-item p,
  .approach-item p,
  .approach-item li,
  .important-card p {
    font-size: 16px;
    line-height: 26px;
  }

  .goal-card {
    padding: 24px;
  }

  .difference-grid {
    grid-template-columns: 1fr;
  }

  .approach-item {
    grid-template-columns: 70px 1fr;
    gap: 22px;
  }

  .approach-item img {
    width: 70px;
    height: 70px;
  }

  .important-card h2 {
    font-size: 28px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, max-content);
    gap: 18px 36px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 40px, var(--container));
  }

  .page-shell {
    width: min(100%, 390px);
  }

  .hero-section {
    min-height: 0;
    padding: 20px 0 0;
    background: linear-gradient(var(--off-white) 0 465px, var(--white) 465px 100%);
  }

  .site-header {
    position: relative;
    z-index: 20;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
    min-height: 44px;
  }

  .site-header.menu-open::before {
    position: absolute;
    z-index: -1;
    top: -20px;
    left: -20px;
    width: 390px;
    height: 421px;
    background: var(--off-white);
    content: "";
  }

  .brand img {
    width: 177px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: block;
    width: 44px;
    height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    right: 0;
    display: block;
    width: 44px;
    height: 4px;
    border-radius: 13px;
    background: var(--black);
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .menu-toggle span:nth-child(1) {
    top: 0;
  }

  .menu-toggle span:nth-child(2) {
    top: 18px;
  }

  .menu-toggle span:nth-child(3) {
    top: 36px;
  }

  .site-header.menu-open .menu-toggle span:nth-child(1) {
    top: 18px;
    transform: rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .menu-toggle span:nth-child(3) {
    top: 18px;
    transform: rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    top: 72px;
    left: 33px;
    right: 33px;
    display: grid;
    width: auto;
    gap: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-header.menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    padding: 0;
    border-bottom: 1px solid var(--navy);
    color: var(--black);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    text-align: left;
  }

  .main-nav a:hover,
  .main-nav .active {
    color: var(--black);
    font-weight: 600;
  }

  .main-nav a::after {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: currentColor;
    color: var(--black);
    content: "";
    -webkit-mask: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-6.2212e-05 7.95429V5.91425H9.93812L5.03453 1.42242L6.43823 3.24784e-06L13.1011 6.26985V7.57997L6.43823 13.8498L5.01582 12.4087L9.90068 7.95429H-6.2212e-05Z' fill='%23000'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-6.2212e-05 7.95429V5.91425H9.93812L5.03453 1.42242L6.43823 3.24784e-06L13.1011 6.26985V7.57997L6.43823 13.8498L5.01582 12.4087L9.90068 7.95429H-6.2212e-05Z' fill='%23000'/%3E%3C/svg%3E") center / contain no-repeat;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .sign-in {
    min-width: 0;
    margin-top: 0;
    padding: 0 !important;
    border-radius: 0;
    background: transparent;
    color: var(--black) !important;
    text-align: left !important;
  }

  .sign-in:hover {
    background: transparent;
    color: var(--black) !important;
    font-weight: 600;
  }

  .hero-copy {
    align-items: flex-start;
    padding-top: 31px;
    text-align: left;
  }

  .hero-copy h1 {
    width: 350px;
    font-size: 38.119px;
    line-height: 46.144px;
  }

  .desktop-title {
    display: none;
  }

  .mobile-title {
    display: inline;
  }

  .hero-lede {
    width: 335px;
    margin: 12px 0 0;
    font-size: 16px;
    line-height: 26px;
  }

  .goal-card {
    align-self: center;
    width: 350px;
    margin: 28px auto 0;
    padding: 16px 25px;
    border-radius: 8.869px;
    background: var(--navy);
    font-size: 16px;
    line-height: 26px;
    text-align: center;
  }

  .goal-card strong {
    display: block;
    color: var(--gold);
    font-size: 16px;
    font-weight: 800;
    line-height: 26px;
  }

  .difference-section {
    padding: 60px 0 39px;
    text-align: center;
  }

  .difference-section h2 {
    width: 250px;
    margin: 0 auto 25px;
    font-size: 20px;
    line-height: 26px;
  }

  .difference-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .difference-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    column-gap: 19px;
    row-gap: 0;
    align-items: start;
    padding-inline: 0;
    text-align: left;
    transition:
      transform 180ms ease,
      filter 180ms ease;
  }

  .difference-item:hover,
  .difference-item:focus-within {
    filter: drop-shadow(3px 4px 8px rgba(0, 0, 0, 0.13));
    transform: scale(1.018);
  }

  .difference-item img {
    width: 56px;
    height: 56px;
    grid-row: 1 / span 2;
  }

  .difference-item h3 {
    margin: 0;
    font-size: 16px;
    line-height: 26px;
  }

  .difference-item p {
    grid-column: 2;
    width: auto;
    font-size: 16px;
    line-height: 26px;
  }

  .navy-section {
    padding: 46px 0 38px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .approach-item,
  .approach-item:nth-child(2) {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }

  .approach-item img {
    align-self: center;
    width: 100px;
    height: 100px;
  }

  .approach-item h2 {
    font-size: 22px;
    line-height: 28px;
  }

  .approach-item p,
  .approach-item li,
  .focus-list {
    font-size: 16px;
    line-height: 26px;
  }

  .approach-item p {
    margin-bottom: 25px;
  }

  .focus-list strong {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 26px;
    white-space: normal;
  }

  .focus-list ul {
    display: grid;
    grid-template-columns: max-content max-content;
    gap: 0 38px;
    margin-top: 0;
    padding-left: 21px;
  }

  .important-card {
    width: min(350px, calc(100% - 40px));
    min-height: 0;
    margin-top: 35px;
    padding: 20px 18px 22px;
    border-radius: 8.869px;
  }

  .important-card h2 {
    font-size: 22px;
  }

  .important-icon {
    width: 20px;
    height: 20px;
  }

  .important-card p {
    font-size: 16px;
    line-height: 26px;
  }

  .site-footer {
    padding: 32px 0 31px;
  }

  .footer-top {
    display: flex;
    flex-direction: column;
    gap: 31px;
    align-items: stretch;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .footer-logo {
    order: 2;
    width: 147px;
  }

  .watermark {
    order: 1;
    min-height: 67px;
    padding: 12px 16px;
    border: 0.5px solid var(--navy);
    border-radius: 9.339px;
    grid-template-columns: 26px 1fr;
    gap: 15px;
    align-items: center;
    font-size: 12px;
    line-height: 22px;
  }

  .footer-nav {
    order: 3;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    font-size: 14px;
  }

  .footer-nav a {
    display: flex;
    justify-content: space-between;
    padding: 0;
    border-top: 0.75px solid var(--navy);
    line-height: 35px;
  }

  .footer-nav a::after {
    content: "→";
  }

  .footer-nav a:last-child {
    border-bottom: 0.75px solid var(--navy);
  }

  .footer-bottom {
    display: flex;
    flex-direction: column-reverse;
    gap: 22px;
    padding-top: 24px;
    font-size: 12px;
  }

  .footer-bottom p {
    line-height: 16px;
    text-align: left;
  }

  .footer-bottom p:last-child {
    text-align: center;
  }
}
