@font-face {
    font-family: "AP Geist";
    src:
      url("/share-assets/fonts/Geist-Regular.woff2") format("woff2"),
      url("/share-assets/fonts/Geist-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "AP Geist";
    src:
      url("/share-assets/fonts/Geist-SemiBold.woff2") format("woff2"),
      url("/share-assets/fonts/Geist-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "AP Geist Mono";
    src:
      url("/share-assets/fonts/GeistMono-Regular.woff2") format("woff2"),
      url("/share-assets/fonts/GeistMono-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "AP Anton";
    src:
      url("/share-assets/fonts/Anton-Regular.woff2") format("woff2"),
      url("/share-assets/fonts/Anton-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }

  html,
  body {
    margin: 0;
    min-height: 100%;
    background: rgb(0, 0, 0);
    overflow-x: hidden;
    overflow-y: auto;
  }

  :root {
    --ap-motion-duration: 0.22s;
    --ap-motion-ease: cubic-bezier(0.2, 0.7, 0.2, 1);
    --ap-focus-ring: rgba(106, 155, 255, 0.95);
    --ap-lift-y: -1px;
    --ap-container-max: 1440px;
    --ap-brand-lockup-width: 189px;
    --ap-brand-lockup-height: 36px;
    --ap-card-duration: 980ms;
    --ap-hero-panel-duration: 980ms;
    --ap-badge-duration: 1080ms;
    --ap-item-reveal-duration: 620ms;
    --ap-container-ease: cubic-bezier(0.18, 0.92, 0.28, 1);
    --ap-badge-ease: cubic-bezier(0.2, 0.9, 0.28, 1);
    --ap-achievement-bg-top: #000000;
    --ap-achievement-bg-mid: #081a53;
    --ap-achievement-bg-blue: #2562ff;
    --ap-achievement-stage-gradient:
      linear-gradient(
        180deg,
        var(--ap-achievement-bg-top) 0%,
        var(--ap-achievement-bg-top) 12%,
        var(--ap-achievement-bg-mid) 58%,
        var(--ap-achievement-bg-blue) 100%
      );
    --ap-achievement-card-bg: rgba(0, 0, 0, 0.2);
    --ap-achievement-text-primary: #ffffff;
    --ap-achievement-text-secondary: #ffffffb8;
    --ap-accent-blue: #0a47e4;
    --ap-accent-blue-dark: #051b48;
    --ap-gutter-desktop: 4rem;
    --ap-gutter-tablet: 2rem;
    --ap-gutter-mobile: 1rem;
    --ap-nav-height: 80px;
    --ap-nav-panel-bg: #051b48;
    --ap-nav-panel-border: rgba(255, 255, 255, 0.1);
  }

  @keyframes ap-cta-breathe {
    0% {
      box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14) inset, 0 0 16px rgba(42, 109, 255, 0.34);
    }
    100% {
      box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.24) inset, 0 0 26px rgba(72, 130, 255, 0.52);
    }
  }

  @keyframes ap-link-spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(0deg);
    }
  }

  .ap-root {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    overflow-x: hidden;
    background: var(--ap-achievement-bg-top);
    color: var(--ap-achievement-text-primary);
    font-family: "AP Geist", "Inter", Arial, sans-serif;
  }

  .ap-page {
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    margin: 0 auto;
    box-sizing: border-box;
    background: transparent;
    position: relative;
    display: flex;
    flex-direction: column;
  }

  .ap-skip-link {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 60;
    padding: 10px 14px;
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    font-family: "AP Geist Mono", "AP Geist", "Inter", monospace;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transform: translateY(-180%);
    transition: transform var(--ap-motion-duration) var(--ap-motion-ease);
  }

  .ap-skip-link:focus-visible {
    transform: translateY(0);
    outline: 2px solid var(--ap-focus-ring);
    outline-offset: 2px;
  }

  .ap-nav {
    height: var(--ap-nav-height);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
  }

  .ap-nav::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(5, 27, 72, 0.76);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--ap-motion-duration) var(--ap-motion-ease), visibility var(--ap-motion-duration) var(--ap-motion-ease);
  }

  .ap-nav__inner {
    --ap-nav-side-balance: 15rem;
    width: 100%;
    max-width: var(--ap-container-max);
    margin: 0 auto;
    height: 100%;
    padding: 0 var(--ap-gutter-desktop);
    display: grid;
    grid-template-columns: minmax(var(--ap-nav-side-balance), 1fr) auto minmax(var(--ap-nav-side-balance), 1fr);
    align-items: center;
    column-gap: clamp(16px, 2.4vw, 24px);
    box-sizing: border-box;
    position: relative;
    z-index: 4;
  }

  html.ap-nav-lock,
  body.ap-nav-lock {
    overflow: visible;
    overscroll-behavior: auto;
    touch-action: auto;
  }

  .ap-nav__brand {
    width: var(--ap-brand-lockup-width);
    min-width: var(--ap-brand-lockup-width);
    height: var(--ap-brand-lockup-height);
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    justify-self: start;
    white-space: nowrap;
  }

  .ap-nav__brand-lockup {
    width: var(--ap-brand-lockup-width);
    min-width: var(--ap-brand-lockup-width);
    max-width: 100%;
    height: var(--ap-brand-lockup-height);
    object-fit: contain;
    object-position: left center;
    display: block;
    flex: 0 0 var(--ap-brand-lockup-width);
  }

  .ap-nav__brand img:not(.ap-nav__brand-lockup) {
    width: 36px;
    height: 36px;
    object-fit: contain;
    object-position: left center;
    display: block;
    flex: 0 0 auto;
  }

  .ap-nav__brand span {
    font-family: "AP Geist", "Inter", Arial, sans-serif;
    font-size: 28px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.2px;
    text-transform: none;
    white-space: nowrap;
  }

  .ap-nav__links {
    grid-column: 2;
    align-self: stretch;
    justify-self: center;
    width: max-content;
    max-width: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ap-nav__links-shell {
    width: max-content;
    max-width: 100%;
    min-width: 0;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ap-nav__link-list {
    width: max-content;
    min-width: 0;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
  }

  .ap-nav__actions {
    grid-column: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    justify-self: end;
  }

  .ap-nav__link {
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    font-family: "AP Geist Mono", "AP Geist", "Inter", monospace;
    font-size: 14px;
    font-weight: 400;
    line-height: 19.88px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    opacity: 1;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 2px;
    position: relative;
    transform-origin: center center;
    transform: none;
    will-change: auto;
    transition: opacity var(--ap-motion-duration) var(--ap-motion-ease), color var(--ap-motion-duration) var(--ap-motion-ease), text-shadow var(--ap-motion-duration) var(--ap-motion-ease), transform var(--ap-motion-duration) var(--ap-motion-ease);
  }

  .ap-nav__link::after {
    display: none;
  }

  .ap-nav__cta {
    min-width: 167px;
    height: 48px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-family: "AP Geist Mono", "AP Geist", "Inter", monospace;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    border: 2px solid var(--ap-achievement-bg-blue);
    background: var(--ap-achievement-bg-blue);
    box-shadow: none;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    transform-origin: center center;
    will-change: transform, background;
    transition: color var(--ap-motion-duration) var(--ap-motion-ease), border-color var(--ap-motion-duration) var(--ap-motion-ease), transform var(--ap-motion-duration) var(--ap-motion-ease);
  }

  @media (max-width: 1280px) {
    .ap-nav__inner {
      --ap-nav-side-balance: 8rem;
      padding-left: clamp(2rem, 4vw, 3rem);
      padding-right: clamp(2rem, 4vw, 3rem);
      column-gap: 16px;
    }

    .ap-nav__brand,
    .ap-nav__brand-lockup {
      width: 176px;
      min-width: 176px;
      flex-basis: 176px;
    }

    .ap-nav__link-list {
      gap: clamp(14px, 1.9vw, 24px);
    }

    .ap-nav__links {
      align-self: stretch;
    }

    .ap-nav__links-shell,
    .ap-nav__link-list {
      min-height: 100%;
    }

    .ap-nav__link {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 2px;
    }

    .ap-nav__cta {
      min-width: 140px;
      height: 44px;
      padding: 0 16px;
      font-size: 14px;
      line-height: 17px;
      letter-spacing: 1.2px;
    }

    .ap-footer__legal {
      gap: 18px;
    }

    .ap-footer__copy,
    .ap-footer__legal a {
      font-size: 14px;
      line-height: 20px;
    }

    .ap-footer__legal-links {
      gap: 10px 24px;
    }
  }

  @media (max-width: 1220px) {
    .ap-nav__inner {
      --ap-nav-side-balance: 12.25rem;
      padding-left: clamp(1.5rem, 3vw, 2.25rem);
      padding-right: clamp(1.5rem, 3vw, 2.25rem);
      column-gap: 12px;
    }

    .ap-nav__brand,
    .ap-nav__brand-lockup {
      width: 164px;
      min-width: 164px;
      flex-basis: 164px;
    }

    .ap-nav__link-list {
      gap: clamp(10px, 1.4vw, 16px);
    }

    .ap-nav__link {
      /* keep base font-size until the hamburger menu triggers */
    }

    .ap-nav__actions {
      gap: 8px;
    }

    .ap-nav__links {
      max-width: 100%;
    }

    .ap-nav__cta {
      min-width: 128px;
      height: 42px;
      padding: 0 14px;
      font-size: 13px;
      line-height: 16px;
      letter-spacing: 1.1px;
    }


    .ap-footer__legal {
      gap: 14px;
    }

    .ap-footer__copy,
    .ap-footer__legal a {
      font-size: 13px;
      line-height: 18px;
    }

    .ap-footer__legal-links {
      gap: 8px 16px;
    }
  }

  .ap-nav__toggle {
    width: 48px;
    height: 48px;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: var(--ap-achievement-bg-blue);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
    box-sizing: border-box;
    cursor: pointer;
    color: rgb(255, 255, 255);
    flex: 0 0 auto;
    transition:
      border-color 0.45s ease,
      background-color 0.45s ease,
      transform 0.45s ease;
  }

  .ap-nav__toggle-box {
    width: 28px;
    height: 18px;
    display: block;
    position: relative;
    pointer-events: none;
  }

  .ap-nav__toggle-line {
    width: 100%;
    height: 3px;
    display: block;
    position: absolute;
    left: 0;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
    transition:
      transform 0.5s ease-out,
      opacity 0.35s ease-out,
      top 0.5s ease-out;
  }

  .ap-nav__toggle-line:nth-child(1) {
    top: 0;
  }

  .ap-nav__toggle-line:nth-child(2) {
    top: 7.5px;
  }

  .ap-nav__toggle-line:nth-child(3) {
    top: 15px;
  }

  .ap-nav[data-menu-open="true"] .ap-nav__toggle-line:nth-child(1) {
    top: 7.5px;
    transform: rotate(45deg);
  }

  .ap-nav[data-menu-open="true"] .ap-nav__toggle-line:nth-child(2) {
    opacity: 0;
  }

  .ap-nav[data-menu-open="true"] .ap-nav__toggle-line:nth-child(3) {
    top: 7.5px;
    transform: rotate(-45deg);
  }

  @keyframes ap-nav-dropdown-in {
    from {
      opacity: 0;
      transform: translate3d(0, -10px, 0) scale3d(0.985, 0.96, 1);
    }

    to {
      opacity: 1;
      transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
    }
  }

  .ap-nav__cta::before,
  .ap-hero__cta::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    transform: translateX(-110%);
    transition: transform 0.2s ease;
    pointer-events: none;
  }

  .ap-nav__cta::before {
    background: rgb(255, 255, 255);
  }

  .ap-hero__cta::before {
    background: var(--ap-achievement-bg-blue);
  }

  .ap-hero {
    width: 100%;
    max-width: var(--ap-container-max);
    min-height: auto;
    margin: 0 auto;
    padding-top: 8rem;
    padding-right: var(--ap-gutter-desktop);
    padding-bottom: 5.25rem;
    padding-left: var(--ap-gutter-desktop);
    box-sizing: border-box;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 4rem;
    align-items: stretch;
    position: relative;
    overflow: visible;
    isolation: isolate;
  }

  .ap-nav__inner > *,
  .ap-nav__links,
  .ap-nav__links-shell,
  .ap-nav__link-list,
  .ap-hero > *,
  .ap-footer__inner > *,
  .ap-footer__nav,
  .ap-footer__legal,
  .ap-footer__legal-links {
    min-width: 0;
  }

  .ap-hero::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(50% - 50vw);
    right: calc(50% - 50vw);
    background: var(--ap-achievement-stage-gradient);
    pointer-events: none;
    z-index: -1;
  }

  .ap-badge {
    width: 100%;
    max-width: 100%;
    aspect-ratio: auto;
    min-height: 0;
    height: auto;
    border-radius: 0;
    border: none;
    background: var(--ap-achievement-card-bg);
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    text-align: center;
    box-shadow: none;
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    transform-origin: center bottom;
    will-change: transform, opacity;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    align-self: stretch;
    margin-left: 0;
    margin-right: 0;
  }

  .ap-badge__confetti-layer {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    opacity: 0;
    transition:
      opacity 1.4s cubic-bezier(0.22, 0.74, 0.22, 1),
      filter 1.4s cubic-bezier(0.22, 0.74, 0.22, 1);
    filter: saturate(1) brightness(1);
    overflow: hidden;
    display: block;
    will-change: opacity, filter;
  }

  .ap-badge__confetti-layer > svg {
    width: 100% !important;
    height: 100% !important;
    display: block;
    transform: translate3d(0, 36%, 0) scale(1.18);
    transform-origin: center 92%;
    will-change: transform;
  }

  [data-ap-ref="confetti-layer"][data-ap-confetti="active"] {
    opacity: 1;
  }

  [data-ap-ref="confetti-layer"][data-ap-confetti="active"] > svg,
  [data-ap-ref="confetti-layer"][data-ap-confetti="fading"] > svg {
    animation: ap-confetti-drift 4.9s cubic-bezier(0.22, 0.74, 0.22, 1) 1 both;
  }

  [data-ap-ref="confetti-layer"][data-ap-confetti="fading"] {
    opacity: 0;
    filter: saturate(0.18) brightness(1.08) blur(1.6px);
  }

  @keyframes ap-confetti-drift {
    0% {
      transform: translate3d(0, 38%, 0) scale(1.16);
    }
    20% {
      transform: translate3d(0, 18%, 0) scale(1.22);
    }
    48% {
      transform: translate3d(0, -6%, 0) scale(1.24);
    }
    78% {
      transform: translate3d(0, 8%, 0) scale(1.21);
    }
    100% {
      transform: translate3d(0, 14%, 0) scale(1.18);
    }
  }

  .ap-link-rotor {
    position: relative;
    display: inline-block;
    overflow: hidden;
    height: 1.25em;
    line-height: 1.25em;
    vertical-align: top;
    z-index: 1;
  }

  .ap-link-rotor__face {
    display: inline-block;
    width: 100%;
    text-align: inherit;
    backface-visibility: hidden;
    transition: transform 0.2s ease;
  }

  .ap-link-rotor__face--front {
    transform: translateY(0);
  }

  .ap-link-rotor__face--back {
    position: absolute;
    left: 0;
    top: 100%;
    transform: translateY(0);
  }

  .ap-nav__cta .ap-link-rotor__face--back {
    color: var(--ap-accent-blue);
  }

  .ap-hero__cta .ap-link-rotor__face--back {
    color: rgb(255, 255, 255);
  }

  .ap-badge__inner {
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 2rem;
    box-sizing: border-box;
  }

  .ap-badge__primary {
    flex: 1 1 auto;
    min-height: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .ap-badge__visual {
    width: 100%;
    padding-top: 0;
    display: flex;
    justify-content: center;
    position: relative;
    flex: 0 0 auto;
    overflow: visible;
    perspective: 1400px;
    perspective-origin: 50% 50%;
  }

  .ap-badge__badge-stack {
    width: 45%;
    max-width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    flex: 0 0 auto;
    z-index: 2;
  }

  .ap-badge__halo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(68%, 330px);
    aspect-ratio: 1;
    border-radius: 50%;
    background:
      radial-gradient(
        circle,
        rgba(255, 227, 122, 0.52) 0%,
        rgba(255, 192, 56, 0.18) 34%,
        rgba(42, 109, 255, 0.1) 66%,
        rgba(42, 109, 255, 0) 100%
      );
    transform: translate(-50%, -44%) scale(1);
    opacity: 0.28;
    filter: blur(24px);
    pointer-events: none;
    will-change: transform, opacity, filter;
  }

  .ap-badge__icon {
    width: 100%;
    height: auto;
    aspect-ratio: 119 / 131;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    position: relative;
    z-index: 2;
    transform-origin: center center;
  }

  .ap-badge__flip {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(1) rotateY(0deg);
    transform-origin: center center;
    transform-style: preserve-3d;
    will-change: transform;
  }

  .ap-badge__face {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
  }

  .ap-badge__face--back {
    transform: rotateY(180deg);
  }

  .ap-badge__face img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    display: block;
    filter: saturate(0.96) brightness(0.98) drop-shadow(0 10px 26px rgba(0, 0, 0, 0.22));
  }

  .ap-badge__face--back img {
    transform: scaleX(-1);
    filter: saturate(0.8) brightness(0.9) drop-shadow(0 10px 26px rgba(0, 0, 0, 0.18));
  }

  .ap-badge__face span {
    font-family: "AP Geist Mono", "AP Geist", "Inter", monospace;
    font-size: 56px;
    line-height: 1;
    letter-spacing: 2px;
  }

  .ap-badge__face--back span {
    transform: scaleX(-1);
    opacity: 0.86;
  }

  .ap-badge__content {
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    text-align: center;
    padding: 0;
    box-sizing: border-box;
  }

  .ap-badge__title-group,
  .ap-badge__score-group,
  .ap-badge__name-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 0;
  }

  .ap-badge__title-group,
  .ap-badge__score-group,
  .ap-badge__name-group,
  .ap-badge__footer {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    will-change: transform, opacity;
  }

  .ap-badge__name-group {
    justify-content: center;
    max-width: 100%;
  }

  .ap-badge__kicker {
    margin: 0;
    font-family: "AP Geist", "Inter", Arial, sans-serif;
    font-size: 24px;
    line-height: 1.08;
    font-weight: 600;
    letter-spacing: -0.4px;
    text-transform: uppercase;
    max-width: 100%;
    max-width: 92%;
    overflow-wrap: anywhere;
  }

  .ap-badge__status {
    margin: 0;
    font-family: "AP Geist", "Inter", Arial, sans-serif;
    font-size: clamp(16px, 1.45vw, 20px);
    line-height: 1.22;
    font-weight: 400;
    color: var(--ap-achievement-text-secondary);
  }

  .ap-badge__status--pill {
    position: absolute;
    top: calc(100% - clamp(36px, 2vw, 42px));
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: none;
    min-height: clamp(24px, 1.6vw, 30px);
    padding: clamp(2px, 0.15vw, 3px) clamp(11px, 0.7vw, 14px);
    border: 1px solid #b54708;
    border-radius: 9999px;
    font-size: clamp(14px, 0.9vw, 17px);
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: 0;
    color: #93370d;
    background-color: #fedf89;
    box-shadow: none;
    backdrop-filter: blur(4px);
    overflow: visible;
    white-space: nowrap;
    text-transform: uppercase;
  }

  .ap-badge__score-label {
    margin: 0;
    font-family: "AP Geist", "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 400;
    color: var(--ap-achievement-text-primary);
  }

  .ap-badge__name {
    margin: 0;
    font-family: "AP Anton", "AP Geist", "Inter", Arial, sans-serif;
    font-size: 48px;
    line-height: 0.93;
    font-weight: 400;
    letter-spacing: -1.12px;
    word-break: break-word;
    overflow-wrap: anywhere;
    hyphens: auto;
    max-width: 100%;
    padding: 0 12px;
    text-wrap: balance;
  }

  .ap-badge__meta {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 8px;
    font-family: "AP Geist", "Inter", Arial, sans-serif;
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: 20px;
    font-weight: 400;
    color: var(--ap-achievement-text-secondary);
    overflow-wrap: anywhere;
  }

  .ap-badge__meta-round,
  .ap-badge__meta-separator,
  .ap-badge__meta-date {
    display: inline-flex;
    align-items: center;
  }

  .ap-badge__footer {
    width: 100%;
    flex: 0 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 0;
    margin-top: auto;
    padding-top: clamp(16px, 2.4vw, 22px);
    border-top: none;
  }

  .ap-main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
    max-width: min(100%, 36rem);
    min-width: 0;
    box-sizing: border-box;
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
    align-self: stretch;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-left: 0;
    text-align: left;
    opacity: 1;
    transform: translate3d(0, 0, 0);
    will-change: transform, opacity;
  }

  .ap-main__body,
  .ap-main__cta-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
  }

  .ap-main__body {
    gap: 0.5rem;
  }

  .ap-headline {
    margin: 0;
    display: block;
    font-family: "AP Anton", "AP Geist", "Inter", Arial, sans-serif;
    font-size: 200px;
    line-height: 200px;
    letter-spacing: -6px;
    font-weight: 400;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    max-width: 100%;
    opacity: 1;
    transform: translate3d(0, 0, 0);
    will-change: transform, opacity;
  }

  .ap-subheadline {
    margin: 0;
    font-family: "AP Geist", "Inter", Arial, sans-serif;
    font-size: clamp(22px, 2.4vw, 24px);
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.72px;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    opacity: 1;
    transform: translate3d(0, 0, 0);
    will-change: transform, opacity;
  }

  .ap-description {
    margin: 0;
    max-width: 34ch;
    font-family: "AP Geist", "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    opacity: 1;
    transform: translate3d(0, 0, 0);
    will-change: transform, opacity;
  }

  .ap-hero__cta {
    width: auto;
    max-width: max-content;
    min-height: 48px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--ap-accent-blue);
    font-family: "AP Geist Mono", "AP Geist", "Inter", monospace;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    border: 2px solid rgb(255, 255, 255);
    background: rgb(255, 255, 255);
    box-shadow: none;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    transform-origin: center center;
    will-change: transform, background;
    opacity: 1;
    transition: color var(--ap-motion-duration) var(--ap-motion-ease), border-color var(--ap-motion-duration) var(--ap-motion-ease), box-shadow var(--ap-motion-duration) var(--ap-motion-ease);
  }

  /* Main choreography: card rises from below, hero panel enters from the right. */
  html[data-ap-motion-ready="true"] [data-ap-ref="card"]:is([data-ap-motion="idle"], [data-ap-motion="prepared"]) {
    opacity: 0;
    transform: translate3d(0, 80px, 0) scale(0.96);
    box-shadow: none;
  }

  html[data-ap-motion-ready="true"] [data-ap-ref="card"]:is([data-ap-motion="playing"], [data-ap-motion="complete"]) {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  html[data-ap-motion-ready="true"] [data-ap-ref="hero-panel"]:is([data-ap-motion="idle"], [data-ap-motion="prepared"]) {
    opacity: 0;
    transform: translate3d(92px, 0, 0);
  }

  html[data-ap-motion-ready="true"] [data-ap-ref="hero-panel"]:is([data-ap-motion="playing"], [data-ap-motion="complete"]) {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  html[data-ap-motion-ready="true"] [data-ap-ref="card"]:is([data-ap-motion="idle"], [data-ap-motion="prepared"]) .ap-badge__halo {
    opacity: 0;
    transform: translate(-50%, -44%) scale(0.88);
  }

  html[data-ap-motion-ready="true"] [data-ap-ref="card"]:is([data-ap-motion="idle"], [data-ap-motion="prepared"]) [data-ap-ref="badge-flip"] {
    transform: scale(0.92) rotateY(0deg);
    transform-origin: center center;
  }

  /* Nested choreography: card text lifts upward, hero items slide in from the right. */
  html[data-ap-motion-ready="true"] [data-ap-visible="false"][data-ap-ref="card-title"],
  html[data-ap-motion-ready="true"] [data-ap-visible="false"][data-ap-ref="card-score"],
  html[data-ap-motion-ready="true"] [data-ap-visible="false"][data-ap-ref="card-name"],
  html[data-ap-motion-ready="true"] [data-ap-visible="false"][data-ap-ref="card-meta"] {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
  }

  html[data-ap-motion-ready="true"] [data-ap-visible="false"][data-ap-ref="hero-heading"],
  html[data-ap-motion-ready="true"] [data-ap-visible="false"][data-ap-ref="hero-subtitle"],
  html[data-ap-motion-ready="true"] [data-ap-visible="false"][data-ap-ref="hero-description"],
  html[data-ap-motion-ready="true"] [data-ap-visible="false"][data-ap-ref="hero-cta"] {
    opacity: 0;
    transform: translate3d(28px, 0, 0);
  }

  .ap-footer {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    background: rgb(0, 0, 0);
  }

  .ap-footer__inner {
    width: 100%;
    max-width: var(--ap-container-max);
    margin: 0 auto;
    min-height: 202px;
    padding: 36px var(--ap-gutter-desktop);
    box-sizing: border-box;
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr) auto;
    column-gap: 3rem;
    row-gap: 4rem;
    align-items: start;
  }

  .ap-footer__intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .ap-footer__brand {
    width: auto;
    min-width: var(--ap-brand-lockup-width);
    height: var(--ap-brand-lockup-height);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
  }

  .ap-footer__brand-lockup {
    width: var(--ap-brand-lockup-width);
    min-width: var(--ap-brand-lockup-width);
    height: var(--ap-brand-lockup-height);
    object-fit: contain;
    object-position: left center;
    display: block;
    flex: 0 0 var(--ap-brand-lockup-width);
  }

  .ap-footer__brand img:not(.ap-footer__brand-lockup) {
    width: 36px;
    height: 36px;
    object-fit: contain;
    object-position: left center;
    display: block;
    flex: 0 0 auto;
  }

  .ap-footer__brand span {
    font-family: "AP Geist", "Inter", Arial, sans-serif;
    font-size: 28px;
    line-height: 1;
    font-weight: 600;
    text-transform: none;
  }

  .ap-footer__line {
    margin: 0 0 8px;
    font-family: "AP Geist", "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
  }

  .ap-footer__patent {
    margin: 0 0 12px;
    font-family: "AP Geist", "Inter", Arial, sans-serif;
    font-size: 12px;
    line-height: 18px;
    color: rgba(255, 255, 255, 0.48);
  }

  .ap-footer__copy {
    margin: 0;
    max-width: none;
    font-family: "AP Geist", "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.76);
    text-align: left;
    white-space: nowrap;
  }

  .ap-footer__nav {
    grid-column: 2;
    grid-row: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 6rem;
    row-gap: 1.5rem;
    align-items: start;
    justify-content: start;
    justify-self: stretch;
    width: 100%;
  }

  .ap-footer__nav a {
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    font-family: "AP Geist Mono", "AP Geist", "Inter", monospace;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    opacity: 1;
    display: inline-block;
    transform-origin: center center;
    transform: none;
    will-change: auto;
    transition: opacity var(--ap-motion-duration) var(--ap-motion-ease), color var(--ap-motion-duration) var(--ap-motion-ease), text-shadow var(--ap-motion-duration) var(--ap-motion-ease), transform var(--ap-motion-duration) var(--ap-motion-ease);
  }

  .ap-footer__social {
    grid-column: 3;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-self: end;
  }

  .ap-footer__legal {
    grid-column: 1 / 4;
    grid-row: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 0;
  }

  .ap-footer__legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
  }

  .ap-footer__legal a {
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    font-family: "AP Geist", "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    display: inline-block;
    transform-origin: center center;
    transform: none;
    will-change: auto;
    opacity: 0.72;
    transition: color var(--ap-motion-duration) var(--ap-motion-ease), opacity var(--ap-motion-duration) var(--ap-motion-ease), transform var(--ap-motion-duration) var(--ap-motion-ease);
  }

  .ap-follow {
    margin-top: 0;
    width: auto;
    max-width: 100%;
    min-width: max-content;
    min-height: 40px;
    height: auto;
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    box-shadow: none;
    box-sizing: border-box;
    color: rgba(255, 255, 255, 1);
    white-space: nowrap;
    flex-shrink: 0;
    transition: transform 0.2s ease;
  }

  .ap-follow__label {
    font-family: "AP Geist Mono", "AP Geist", "Inter", monospace;
    font-size: 14px;
    line-height: 17px;
    font-weight: 400;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 1);
    white-space: nowrap;
  }

  .ap-follow__icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    box-shadow: none;
    transition: opacity var(--ap-motion-duration) var(--ap-motion-ease);
  }

  .ap-follow__icon svg {
    width: 18px;
    height: 18px;
    display: block;
    flex: 0 0 auto;
  }

  .ap-nav__link,
  .ap-nav__cta,
  .ap-nav__toggle,
  .ap-hero__cta,
  .ap-footer__nav a,
  .ap-footer__legal a,
  .ap-follow {
    -webkit-tap-highlight-color: transparent;
    backface-visibility: hidden;
  }

  @media (hover: hover) and (pointer: fine) {
    .ap-nav__link:hover {
      color: rgba(255, 255, 255, 1);
      text-shadow: none;
      transform: none;
    }

    .ap-nav__cta:hover {
      border-color: var(--ap-achievement-text-primary);
      transform: none;
    }

    .ap-nav__toggle:hover {
      border-color: rgba(255, 255, 255, 0.95);
      transform: none;
    }

    .ap-hero__cta:hover {
      border-color: rgba(255, 255, 255, 0.95);
      transform: none;
    }

    .ap-nav__cta:hover::before,
    .ap-hero__cta:hover::before {
      transform: translateX(0);
    }

    .ap-nav__cta:hover .ap-link-rotor__face--front,
    .ap-hero__cta:hover .ap-link-rotor__face--front {
      transform: translateY(-100%);
    }

    .ap-nav__cta:hover .ap-link-rotor__face--back,
    .ap-hero__cta:hover .ap-link-rotor__face--back {
      transform: translateY(-100%);
    }

    .ap-footer__nav a:hover {
      color: rgba(255, 255, 255, 1);
      text-shadow: none;
      transform: none;
    }

    .ap-footer__legal a:hover {
      opacity: 1;
      color: rgba(255, 255, 255, 1);
      transform: none;
    }

    .ap-nav__link:hover .ap-link-rotor__face--front,
    .ap-footer__nav a:hover .ap-link-rotor__face--front {
      transform: translateY(-100%);
    }

    .ap-nav__link:hover .ap-link-rotor__face--back,
    .ap-footer__nav a:hover .ap-link-rotor__face--back {
      transform: translateY(-100%);
    }

    .ap-follow:hover {
      transform: scale(0.93);
    }

    .ap-follow:hover .ap-follow__icon {
      opacity: 1;
    }
  }

  .ap-nav__link:focus-visible,
  .ap-nav__cta:focus-visible,
  .ap-nav__toggle:focus-visible,
  .ap-hero__cta:focus-visible,
  .ap-footer__nav a:focus-visible,
  .ap-footer__legal a:focus-visible,
  .ap-follow:focus-visible {
    outline: 1px solid var(--ap-focus-ring);
    outline-offset: 3px;
    border-radius: 4px;
  }

  .ap-nav__link:active,
  .ap-footer__nav a:active,
  .ap-footer__legal a:active,
  .ap-nav__cta:active,
  .ap-nav__toggle:active,
  .ap-hero__cta:active,
  .ap-follow:active {
    transform: translateY(0);
  }

  @media (pointer: coarse) {
    .ap-nav__link,
    .ap-nav__cta,
    .ap-nav__toggle,
    .ap-hero__cta,
    .ap-footer__nav a,
    .ap-footer__legal a,
    .ap-follow {
      min-height: 44px;
    }

    .ap-footer__legal a {
      display: inline-flex;
      align-items: center;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ap-badge,
    .ap-main,
    .ap-badge__halo,
    .ap-badge__icon,
    .ap-badge__confetti-layer,
    .ap-badge__title-group,
    .ap-badge__score-group,
    .ap-badge__name-group,
    .ap-badge__footer,
    .ap-headline,
    .ap-subheadline,
    .ap-description,
    .ap-nav__link,
    .ap-nav__links-shell,
    .ap-nav__link::after,
    .ap-nav__cta,
    .ap-nav__cta::before,
    .ap-nav__toggle,
    .ap-hero__cta,
    .ap-hero__cta::before,
    .ap-footer__nav a,
    .ap-footer__legal a,
    .ap-follow,
    .ap-follow__icon {
      transition: none;
      animation: none !important;
    }

    .ap-nav__cta::before,
    .ap-hero__cta::before {
      display: none;
    }

    .ap-badge__halo,
    .ap-badge__confetti-layer {
      display: none;
    }

    html[data-ap-motion-ready="true"] [data-ap-ref="card"]:is([data-ap-motion="idle"], [data-ap-motion="prepared"]) {
      opacity: 0;
      transform: translate3d(0, 12px, 0);
    }

    html[data-ap-motion-ready="true"] [data-ap-ref="hero-panel"]:is([data-ap-motion="idle"], [data-ap-motion="prepared"]) {
      opacity: 0;
      transform: translate3d(14px, 0, 0);
    }

    html[data-ap-motion-ready="true"] [data-ap-visible="false"][data-ap-ref="card-title"],
    html[data-ap-motion-ready="true"] [data-ap-visible="false"][data-ap-ref="card-score"],
    html[data-ap-motion-ready="true"] [data-ap-visible="false"][data-ap-ref="card-name"],
    html[data-ap-motion-ready="true"] [data-ap-visible="false"][data-ap-ref="card-meta"] {
      transform: translate3d(0, 8px, 0);
    }

    html[data-ap-motion-ready="true"] [data-ap-visible="false"][data-ap-ref="hero-heading"],
    html[data-ap-motion-ready="true"] [data-ap-visible="false"][data-ap-ref="hero-subtitle"],
    html[data-ap-motion-ready="true"] [data-ap-visible="false"][data-ap-ref="hero-description"],
    html[data-ap-motion-ready="true"] [data-ap-visible="false"][data-ap-ref="hero-cta"] {
      transform: translate3d(8px, 0, 0);
    }

    .ap-nav__link:hover,
    .ap-nav__cta:hover,
    .ap-nav__toggle:hover,
    .ap-hero__cta:hover,
    .ap-follow:hover,
    .ap-follow:active,
    .ap-nav__cta:active,
    .ap-nav__toggle:active,
    .ap-hero__cta:active {
      transform: none;
    }
  }

  @media (max-width: 991px) {
    .ap-nav__inner,
    .ap-hero,
    .ap-footer__inner {
      width: 100%;
      max-width: none;
      padding-left: var(--ap-gutter-tablet);
      padding-right: var(--ap-gutter-tablet);
    }

    .ap-nav__links {
      display: none;
    }

    .ap-nav__toggle {
      display: inline-flex;
    }

    .ap-nav__brand,
    .ap-nav__brand-lockup {
      width: 189px;
      min-width: 189px;
      flex-basis: 189px;
    }

    .ap-nav__inner {
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 12px;
    }

    .ap-nav__links {
      grid-column: 1 / -1;
      justify-self: end;
      align-self: start;
      position: absolute;
      top: calc(100% + 4px);
      right: 0;
      bottom: auto;
      left: auto;
      height: auto;
      min-height: 0;
      width: 200px;
      max-width: 200px;
      display: flex;
      box-sizing: border-box;
      background: transparent;
      border-top: none;
      box-shadow: none;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      overflow: visible;
      z-index: 3;
    }

    .ap-nav__links[data-ap-nav-panel="open"] {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .ap-nav__links-shell {
      position: static;
      width: 200px;
      min-height: 0;
      display: flex;
      flex-direction: column;
      align-items: stretch;
      justify-content: flex-start;
      padding: 0;
      pointer-events: none;
      text-align: left;
      opacity: 0;
      visibility: hidden;
      transform: translate3d(0, -10px, 0) scale3d(0.985, 0.96, 1);
      transform-origin: top right;
      will-change: opacity, transform;
    }

    .ap-nav__links[data-ap-nav-panel="open"] .ap-nav__links-shell {
      pointer-events: auto;
      opacity: 1;
      visibility: visible;
      animation: ap-nav-dropdown-in 0.5s ease-out both;
    }

    .ap-nav__link-list {
      width: 100%;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      margin-top: 0;
      gap: 12px;
      padding: 16px 32px 24px;
      background: var(--ap-achievement-bg-blue);
      text-align: center;
      position: relative;
    }

    .ap-nav__link {
      width: auto;
      min-height: 0;
      padding: 0;
      display: block;
      font-size: 14px;
      line-height: 19.88px;
      letter-spacing: 1.4px;
      background: transparent;
      text-align: center;
    }

    .ap-nav__actions {
      grid-column: 2;
      gap: 0;
      margin-left: auto;
    }

    .ap-nav__cta {
      min-width: 167px;
      height: 48px;
      padding: 0 20px;
      display: inline-flex;
      font-size: 16px;
      line-height: 19px;
      letter-spacing: 1.6px;
    }

    .ap-nav__toggle {
      width: 48px;
      height: 48px;
      display: inline-flex;
      margin-left: 1rem;
    }

    .ap-hero {
      min-height: auto;
      padding-top: 8rem;
      padding-bottom: 3rem;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 4rem;
      align-items: stretch;
    }

    .ap-badge {
      width: 100%;
      max-width: 100%;
      align-self: stretch;
      justify-self: center;
      margin-left: auto;
      margin-right: auto;
    }

    .ap-badge__inner {
      padding: 2rem;
    }

    .ap-badge__primary {
      gap: 1rem;
    }

    .ap-badge__badge-stack {
      width: 45%;
    }

    .ap-badge__content {
      gap: 10px;
    }

    .ap-badge__kicker {
      max-width: 88%;
      font-size: 1.75rem;
      line-height: 1.25;
      letter-spacing: -0.03em;
    }

    .ap-badge__status {
      font-size: clamp(14px, 1.4vw, 16px);
      line-height: 1.2;
    }

    .ap-badge__status--pill {
      top: calc(100% - 22px);
      min-height: 24px;
      padding: 2px 10px;
      font-size: 14px;
      line-height: 20px;
    }

    .ap-badge__score-label {
      font-size: 14px;
      line-height: 1.28;
    }

    .ap-badge__name {
      font-size: 2.75rem;
      line-height: 1.25;
      letter-spacing: 0;
      padding: 0 10px;
    }

    .ap-badge__meta {
      font-size: 12px;
      line-height: 18px;
      gap: 0 6px;
    }

    .ap-badge__footer {
      padding-top: 14px;
    }

    .ap-main {
      width: 100%;
      max-width: none;
      align-items: flex-start;
      align-self: stretch;
      justify-self: start;
      gap: 2rem;
      padding-top: 1.5rem;
      padding-bottom: 1.5rem;
      padding-left: 0;
      text-align: left;
    }

    .ap-headline {
      font-size: 8rem;
      line-height: 1;
      letter-spacing: -0.03em;
      margin-bottom: 0.875rem;
    }

    .ap-subheadline {
      margin-bottom: 10px;
      font-size: 1.75rem;
      line-height: 1.25;
    }

    .ap-description {
      max-width: 26ch;
      margin-bottom: 20px;
      font-size: 1rem;
      line-height: 1.5;
    }

    .ap-hero__cta {
      width: auto;
      max-width: max-content;
      min-height: 48px;
      align-self: flex-start;
    }

    .ap-footer__social {
      width: 100%;
      max-width: none;
      align-items: stretch;
      justify-self: stretch;
    }

    .ap-follow {
      width: 100%;
      min-width: 0;
      min-height: 40px;
      height: auto;
      padding: 0.5rem 1rem;
      justify-content: center;
      gap: 1rem;
      flex-shrink: 1;
    }

    .ap-footer__inner {
      grid-template-columns: 1fr 1fr;
      column-gap: 2rem;
      row-gap: 3rem;
      padding: 32px var(--ap-gutter-tablet) 28px;
    }

    .ap-footer__intro {
      grid-column: 1;
      grid-row: 1;
      align-items: flex-start;
      text-align: left;
    }

    .ap-footer__nav {
      grid-column: 1 / 3;
      grid-row: 2;
      justify-self: stretch;
      grid-template-columns: 1fr 1fr;
      justify-items: start;
      column-gap: 2rem;
      row-gap: 2rem;
      width: 100%;
    }

    .ap-footer__nav a {
      width: auto;
      text-align: left;
    }

    .ap-footer__social {
      grid-column: 2;
      grid-row: 1;
      align-items: stretch;
      justify-self: stretch;
      margin-top: 0;
    }

    .ap-footer__legal {
      grid-column: 1 / 3;
      grid-row: 3;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      justify-content: flex-start;
      width: 100%;
    }

    .ap-footer__copy {
      max-width: none;
      text-align: center;
    }

    .ap-footer__legal-links {
      width: auto;
      justify-content: center;
      gap: 10px 20px;
    }

  }

  @media (max-width: 767px) {
    .ap-nav__inner,
    .ap-hero,
    .ap-footer__inner {
      width: 100%;
      max-width: none;
      padding-left: var(--ap-gutter-mobile);
      padding-right: var(--ap-gutter-mobile);
    }

    .ap-nav__cta {
      display: none;
    }

    .ap-nav__links {
      right: 0;
    }

    .ap-nav__actions {
      justify-content: space-between;
      align-items: center;
    }

    .ap-nav__link-list {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }

    .ap-hero {
      padding-top: 5rem;
      padding-bottom: 1rem;
      display: flex;
      flex-direction: column;
      gap: 4rem;
      align-items: stretch;
    }

    .ap-badge {
      order: 1;
      width: 100%;
      max-width: none;
      align-self: stretch;
      justify-self: auto;
      margin-left: 0;
      margin-right: 0;
    }

    .ap-badge__inner {
      padding: 2rem;
    }

    .ap-badge__primary {
      gap: 1rem;
    }

    .ap-badge__badge-stack {
      width: 10rem;
    }

    .ap-badge__content {
      gap: 12px;
    }

    .ap-badge__kicker {
      max-width: 100%;
      font-size: 1.5rem;
      line-height: 1.25;
      letter-spacing: -0.03em;
    }

    .ap-badge__status,
    .ap-badge__score-label {
      font-size: 0.75rem;
      line-height: 1.5;
    }

    .ap-badge__status--pill {
      top: calc(100% - 16px);
      min-height: 24px;
      padding: 2px 9px;
      font-size: 14px;
      line-height: 20px;
    }

    .ap-badge__name-group {
      gap: 8px;
    }

    .ap-badge__name {
      max-width: 100%;
      font-size: 2.5rem;
      line-height: 1;
      letter-spacing: 0;
    }

    .ap-badge__meta {
      margin-top: 2px;
      gap: 4px 8px;
      font-size: 0.75rem;
      line-height: 1.5;
    }

    .ap-badge__footer {
      padding-top: 16px;
    }

    .ap-badge__meta-separator {
      display: inline-flex;
    }

    .ap-main {
      order: 2;
      width: 100%;
      max-width: none;
      align-items: flex-start;
      justify-content: flex-start;
      gap: 1rem;
      padding-top: 0;
      padding-bottom: 0;
      padding-left: 0;
      text-align: left;
    }

    .ap-headline {
      font-size: 7rem;
      line-height: 1;
      letter-spacing: -0.03em;
      margin-bottom: 0.875rem;
      width: 100%;
    }

    .ap-subheadline {
      margin-bottom: 0.5rem;
      font-size: 1.5rem;
      line-height: 1.25;
      width: 100%;
    }

    .ap-description {
      width: 100%;
      max-width: 25rem;
      font-size: 1rem;
      line-height: 1.5;
    }

    .ap-hero__cta {
      width: auto;
      max-width: max-content;
      min-height: 48px;
      align-self: flex-start;
    }

    .ap-footer__inner {
      grid-template-columns: minmax(0, 0.7fr) 1fr;
      column-gap: 2rem;
      row-gap: 3rem;
      padding-top: 32px;
      padding-bottom: 28px;
      justify-items: stretch;
    }

    .ap-footer__intro {
      grid-column: 1;
      grid-row: 1;
      align-items: flex-start;
      text-align: left;
    }

    .ap-footer__social {
      width: 100%;
      grid-column: 2;
      grid-row: 1;
      max-width: none;
      align-items: stretch;
      justify-self: stretch;
      margin-top: 0;
    }

    .ap-footer__nav {
      grid-column: 1 / 3;
      grid-row: 2;
      justify-self: stretch;
      grid-template-columns: 1fr 1fr;
      justify-items: start;
      justify-content: start;
      column-gap: 2rem;
      row-gap: 2rem;
      width: 100%;
    }

    .ap-footer__nav a {
      width: auto;
      text-align: left;
    }

    .ap-follow {
      width: 100%;
      min-width: 0;
      min-height: 40px;
      height: auto;
      padding: 0.5rem 1rem;
      gap: 1rem;
      justify-content: center;
      flex-shrink: 1;
    }

    .ap-footer__legal {
      grid-column: 1 / 3;
      grid-row: 3;
      flex-direction: column;
      flex-wrap: nowrap;
      align-items: center;
      gap: 1rem;
      justify-content: flex-start;
      justify-self: stretch;
      width: 100%;
    }

    .ap-footer__copy {
      text-align: center;
    }

    .ap-footer__legal-links {
      width: auto;
      justify-content: center;
      gap: 8px 18px;
    }

    .ap-footer__legal a {
      text-align: center;
    }
  }

  @media (max-width: 479px) {
    .ap-nav__links-shell {
      left: var(--ap-gutter-mobile);
      right: var(--ap-gutter-mobile);
      width: 100%;
      text-align: left;
    }

    .ap-nav__link-list {
      align-items: center;
      padding-left: 24px;
      padding-right: 24px;
      width: 100%;
    }

    .ap-hero {
      padding-top: 5rem;
      padding-bottom: 5rem;
      gap: 3rem;
    }

    .ap-badge {
      aspect-ratio: auto;
      min-height: 0;
    }

    .ap-badge__inner {
      padding: 2rem;
    }

    .ap-badge__primary {
      gap: 1rem;
    }

    .ap-badge__badge-stack {
      width: 10rem;
      max-width: 100%;
    }

    .ap-badge__content {
      gap: 12px;
    }

    .ap-badge__kicker {
      max-width: 100%;
      font-size: 1.5rem;
      line-height: 1.25;
      letter-spacing: -0.03em;
    }

    .ap-badge__score-label {
      font-size: 13px;
      line-height: 1.3;
    }

    .ap-badge__status--pill {
      top: calc(100% - 16px);
      min-height: 24px;
      padding: 2px 9px;
      font-size: 14px;
      line-height: 20px;
    }

    .ap-badge__name {
      margin-top: 2px;
      font-size: 3rem;
      line-height: 1.25;
      letter-spacing: 0;
      padding: 0 8px;
    }

    .ap-badge__meta {
      flex-direction: column;
      gap: 0;
      font-size: 0.75rem;
      line-height: 1.5;
    }

    .ap-badge__footer {
      padding-top: 16px;
    }

    .ap-badge__meta-separator {
      display: none;
    }

    .ap-headline {
      width: 100%;
      font-size: 6.25rem;
      line-height: 1;
      letter-spacing: -0.03em;
      margin-bottom: 0.75rem;
    }

    .ap-subheadline {
      font-size: 1.5rem;
      line-height: 1.25;
      margin-bottom: 8px;
    }

    .ap-description {
      max-width: 100%;
      font-size: 1rem;
      line-height: 1.5;
      margin-bottom: 16px;
    }

    .ap-footer__inner {
      grid-template-columns: 100%;
      column-gap: 2rem;
      row-gap: 2rem;
      justify-items: stretch;
      text-align: left;
    }

    .ap-footer__intro {
      grid-column: 1;
      grid-row: 1;
    }

    .ap-footer__copy {
      white-space: normal;
      text-align: left;
    }

    .ap-footer__nav {
      grid-column: 1;
      grid-row: 3;
      display: grid;
      grid-template-columns: 1fr 1fr;
      justify-items: start;
      justify-content: start;
      width: 100%;
      column-gap: 0;
      row-gap: 1.5rem;
    }

    .ap-footer__nav a {
      width: auto;
    }

    .ap-footer__social {
      width: 100%;
      max-width: none;
      grid-column: 1;
      grid-row: 2;
      justify-self: stretch;
      align-items: stretch;
    }

    .ap-follow {
      width: 100%;
      min-width: 0;
      min-height: 40px;
      height: auto;
      padding: 0.5rem 1rem;
      justify-content: center;
      align-self: stretch;
      gap: 1rem;
    }

    .ap-footer__legal {
      grid-column: 1;
      grid-row: 4;
      gap: 1rem;
      flex-wrap: wrap;
      align-items: flex-start;
    }

    .ap-footer__legal-links {
      width: auto;
      justify-content: flex-start;
      gap: 0.5rem 2rem;
    }

    .ap-footer__legal a {
      width: auto;
      text-align: left;
    }
  }

