@font-face {
  font-family: "Inter";
  src: url("fonts/Inter/Inter-VariableFont_opsz,wght-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 700;
  font-display: swap;
  unicode-range: U+0000-024F, U+1E00-1EFF, U+2000-206F, U+20A0-20CF, U+2100-214F, U+2190-21FF, U+2200-22FF, U+25A0-27BF, U+FEFF;
}

@font-face {
  font-family: "Dela Gothic One";
  src: url("fonts/Dela_Gothic_One/DelaGothicOne-Regular-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0000-024F, U+1E00-1EFF, U+2000-206F, U+20A0-20CF, U+2100-214F, U+2190-21FF, U+2200-22FF, U+25A0-27BF, U+FEFF;
}

html,
body,
button,
input,
select,
textarea,
optgroup,
option {
  font-family: "Inter", sans-serif;
}

:root {
  --component-text: var(--text, var(--ink, #141414));
  --component-blue: var(--blue, #0073eb);
  --component-pink: var(--pink, #ec2c79);
  --component-glass: var(--glass, rgba(255, 255, 255, 0.7));
  --component-glass-border: var(--glass-border, rgba(255, 255, 255, 0.3));
  --component-max-width: var(--max-width, 1280px);
}

html {
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.site-scrollbar {
  --thumb-height: 96px;
  --thumb-offset: 0px;
  position: fixed;
  inset: 8px 7px 8px auto;
  z-index: 2147483647;
  width: 10px;
  pointer-events: none;
}

.site-scrollbar-thumb {
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: var(--thumb-height);
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.34);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.14);
  cursor: grab;
  pointer-events: auto;
  transform: translateY(var(--thumb-offset));
  transition: background 160ms ease;
}

.site-scrollbar-thumb:hover,
.site-scrollbar.is-dragging .site-scrollbar-thumb {
  background: rgba(20, 20, 20, 0.5);
}

.site-scrollbar.is-dragging .site-scrollbar-thumb {
  cursor: grabbing;
}

.topbar-wrap {
  box-sizing: border-box;
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 2147483647;
  width: min(calc(100% - 32px), var(--component-max-width));
  padding-top: 0;
  transform: translateX(-50%);
  isolation: isolate;
}

.topbar {
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  height: 60px;
  margin: 5px auto 0;
  padding: 10px;
  overflow: hidden;
  overscroll-behavior: none;
  border: 1px solid var(--component-glass-border);
  border-radius: 999px;
  background: var(--component-glass);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 12px 30px rgba(206, 206, 206, 0.18);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  scrollbar-width: none;
}

.topbar::-webkit-scrollbar {
  display: none;
}

.mobile-nav-toggle {
  display: none;
}

.nav-link {
  position: relative;
  padding: 14px 22px;
  border-radius: 999px;
  color: rgba(20, 20, 20, 0.95);
  font-size: clamp(1rem, 1vw + 0.7rem, 1.1rem);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.nav-link:hover {
  background: rgba(154, 154, 154, 0.28);
}

.nav-link.active {
  color: #fff;
  background: var(--component-blue);
}

.nav-icon {
  display: none;
}

.nav-legal {
  display: none;
}

.site-footer {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: 100%;
  padding: 34px 24px 26px;
  border-top: 1px solid rgba(20, 20, 20, 0.08);
  background: #fff;
}

.footer-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.75fr);
  grid-template-areas:
    "brand subscribe"
    "legal legal";
  gap: 26px 46px;
  width: min(calc(100% - 32px), var(--component-max-width));
  margin: 0 auto;
  padding: 0;
}

.footer-inner,
.footer-inner * {
  box-sizing: border-box;
}

.footer-brand {
  grid-area: brand;
  display: grid;
  grid-template-columns: minmax(200px, 275px) minmax(300px, 1fr);
  align-items: start;
  gap: clamp(14px, 2vw, 26px);
}

.footer-brand,
.footer-main,
.footer-subscribe {
  min-width: 0;
}

.footer-logo {
  display: block;
  width: 88%;
  height: auto;
  margin-top: 22px;
}

.footer-main {
  align-self: center;
  padding-top: 8px;
}

.footer-kicker {
  margin: 0 0 8px;
  color: var(--component-pink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-brand h2 {
  max-width: 520px;
  margin: 0 0 8px;
  color: #111;
  font-family: "Dela Gothic One", sans-serif;
  font-size: clamp(1.8rem, 2.45vw, 2.75rem);
  font-weight: 700;
  line-height: 0.98;
}

.footer-copy {
  max-width: 470px;
  margin: 0;
  color: rgba(20, 20, 20, 0.58);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.34;
}

.footer-nav {
  margin-top: 20px;
}

.footer-nav h3 {
  margin: 0 0 10px;
  color: rgba(20, 20, 20, 0.62);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.1;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(145px, 180px));
  gap: 10px 30px;
  max-width: 410px;
}

.footer-links a {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 28px;
  padding: 0;
  color: rgba(20, 20, 20, 0.74);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links img {
  width: 18px;
  height: 18px;
  justify-self: center;
  opacity: 0.7;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--component-blue);
}

.footer-links a:hover img,
.footer-links a:focus-visible img {
  opacity: 1;
  filter: invert(31%) sepia(98%) saturate(3310%) hue-rotate(199deg) brightness(98%) contrast(101%);
}

.footer-subscribe {
  grid-area: subscribe;
  position: relative;
  padding-left: 28px;
  border-left: 1px solid rgba(20, 20, 20, 0.1);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin: 0 0 18px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}

.footer-socials a:hover {
  opacity: 0.86;
  background: rgba(255, 255, 255, 0.42);
}

.footer-socials img {
  display: block;
  width: 40px;
  height: 40px;
}

.footer-subscribe h3 {
  margin: 0 0 8px;
  color: #111;
  font-size: clamp(1.15rem, 1.45vw, 1.55rem);
  font-weight: 700;
  line-height: 1.1;
}

.footer-subscribe p {
  max-width: 480px;
  margin: 0 0 14px;
  color: rgba(20, 20, 20, 0.58);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.34;
}

.footer-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  max-width: 420px;
  width: 100%;
}

.footer-form input {
  flex: 1 1 auto;
  min-width: 0;
  height: 42px;
  padding: 0 16px;
  border: none;
  border-radius: 999px;
  outline: none;
  color: #222;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 0 0 1px rgba(20, 20, 20, 0.08);
  font-size: 0.9rem;
}

.footer-form input::placeholder {
  color: rgba(20, 20, 20, 0.35);
}

.footer-form input:focus-visible {
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.72),
    0 0 0 5px var(--component-blue);
}

.footer-form [hidden] {
  display: none;
}

.footer-form button {
  flex: 0 0 auto;
  height: 42px;
  padding: 0 18px;
  border: none;
  border-radius: 999px;
  color: #fff;
  background: var(--component-blue);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.footer-form button:hover {
  filter: brightness(1.12);
}

.footer-form button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}

.footer-form button:disabled {
  cursor: wait;
  filter: saturate(0.65);
  opacity: 0.72;
}

.footer-form-consent {
  flex: 0 0 100%;
  display: block;
  width: 100%;
  margin: -2px 0 0;
  color: rgba(20, 20, 20, 0.58);
  font-size: 0.66rem;
  font-weight: 500;
  line-height: 1.4;
}

.footer-form-consent a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-form-consent a:hover {
  color: var(--component-blue);
}

.footer-turnstile {
  display: flex;
  flex: 0 0 100%;
  justify-content: center;
  width: 100%;
  min-width: 0;
}

.footer-form-status {
  flex: 0 0 100%;
  display: block;
  width: 100%;
  min-height: 0;
  padding: 10px 14px;
  border: 1px solid #f0c52f;
  border-radius: 999px;
  color: #705600;
  background: #fff8cc;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

.footer-form-status:empty {
  display: none;
}

.footer-form-status.is-success {
  border-color: #2fc877;
  color: #09663a;
  background: #e8fff2;
}

.footer-form-status.is-error {
  border-color: #f05b68;
  color: #922536;
  background: #fff0f2;
}

/* Newsletter subscription confirmation */
.newsletter-success-modal {
  width: min(880px, calc(100% - 32px));
  height: fit-content;
  max-height: none;
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid #d9d0f4;
  border-radius: 28px;
  color: var(--component-text);
  background: #fff;
  box-shadow: none;
}

.newsletter-success-modal::backdrop {
  background: rgba(8, 20, 33, 0.58);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.newsletter-success-modal:focus {
  outline: none;
}

.newsletter-success-modal[open] {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  grid-template-areas: "content art";
  align-items: stretch;
  animation: newsletter-modal-in 220ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.newsletter-success-art {
  grid-area: art;
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-left: 1px solid #d9d0f4;
  background: #c9bbff;
}

.newsletter-success-art::before,
.newsletter-success-art::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: #ddd4ff;
}

.newsletter-success-art::before {
  top: -72px;
  right: -78px;
  width: 230px;
  height: 230px;
}

.newsletter-success-art::after {
  left: -92px;
  bottom: -105px;
  width: 260px;
  height: 260px;
  background: #b3a1f4;
}

.newsletter-success-dragon {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: -14px;
  width: 152%;
  height: 112%;
  object-fit: contain;
  object-position: center bottom;
  transform: translateX(-50%);
  filter: none;
}

.newsletter-success-content {
  grid-area: content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 40px;
  background: #fff;
}

.newsletter-success-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid #cfc5ed;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: background-color 150ms ease;
}

.newsletter-success-close img {
  display: block;
  width: 23px;
  height: 23px;
  opacity: 0.72;
  transition: opacity 150ms ease;
}

.newsletter-success-close:hover {
  background: #f5f1ff;
}

.newsletter-success-close:hover img {
  opacity: 1;
}

.newsletter-success-close:focus-visible {
  outline: 3px solid rgba(0, 115, 235, 0.42);
  outline-offset: 3px;
}

.newsletter-success-intro {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
}

.newsletter-success-check {
  flex: 0 0 auto;
  display: block;
  width: 46px;
  height: 46px;
  filter: none;
}

.newsletter-success-kicker {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--component-pink);
  background: rgba(236, 44, 121, 0.11);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.newsletter-success-modal h2 {
  max-width: 430px;
  margin: 0 0 13px;
  color: #111;
  font-family: "Dela Gothic One", sans-serif;
  font-size: clamp(2.15rem, 3.4vw, 2.8rem);
  font-weight: 400;
  line-height: 1;
}

.newsletter-success-modal p {
  max-width: 430px;
  margin: 0;
  color: #3d4650;
  font-size: 0.95rem;
  line-height: 1.5;
}

.newsletter-success-modal .newsletter-success-note {
  width: fit-content;
  margin-top: 14px;
  padding: 10px 16px;
  border: 1px solid #ffd21c;
  color: #c8a128;
  background: #fffce0;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.4;
}

.newsletter-success-modal .newsletter-success-consent {
  margin-top: 13px;
  color: #68717b;
  font-size: 0.74rem;
  line-height: 1.45;
}

@keyframes newsletter-modal-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.footer-patchy {
  display: block;
  width: clamp(170px, 16.5vw, 210px);
  height: auto;
  margin: 20px auto -26px;
  pointer-events: none;
  filter: contrast(115%);
}

.footer-disclaimer {
  grid-area: legal;
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: 46px;
  padding-top: 14px;
  border-top: 1px solid rgba(20, 20, 20, 0.08);
}

.footer-disclaimer p {
  min-width: 0;
  margin: 0;
  color: rgba(20, 20, 20, 0.5);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.32;
}

.footer-copyright {
  display: block;
  width: fit-content;
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.footer-copyright:hover,
.footer-copyright:focus-visible {
  color: var(--component-blue);
}

.footer-disclaimer-text {
  display: block;
  margin-top: 5px;
  color: rgba(20, 20, 20, 0.46);
  font-size: 0.68rem;
  line-height: 1.3;
}

.footer-legal-left {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(280px, 1.1fr);
  align-items: center;
  gap: 20px;
  width: 100%;
}

.footer-credit {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding-left: 20px;
  border-left: 1px solid rgba(20, 20, 20, 0.1);
  text-align: left;
  transition: opacity 0.2s ease;
}

.footer-credit img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.footer-credit-copy {
  min-width: 0;
}

.footer-credit-name,
.footer-credit-detail {
  display: block;
}

.footer-credit-name {
  margin-bottom: 3px;
  color: #111;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.15;
}

.footer-credit-detail {
  color: rgba(20, 20, 20, 0.5);
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.3;
}

.footer-credit:hover,
.footer-credit:focus-visible {
  opacity: 0.72;
}

.footer-credit-uplift .footer-credit-name {
  color: #111;
}

@media (min-width: 1101px) {
  .footer-subscribe {
    display: flex;
    flex-direction: column;
  }

  .footer-form {
    margin-bottom: 20px;
  }

  .footer-patchy {
    flex: 0 0 auto;
    margin: auto auto -26px;
  }
}

@media (max-width: 1100px) {
  .footer-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "subscribe"
      "legal";
    gap: 28px;
  }

  .footer-disclaimer {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-legal-left {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-legal-left > p {
    width: 100%;
  }

  .footer-brand {
    grid-template-columns: minmax(150px, 210px) minmax(0, 1fr);
  }

  .footer-subscribe {
    padding-top: 24px;
    padding-left: 0;
    border-top: 1px solid rgba(20, 20, 20, 0.1);
    border-left: 0;
  }

  .footer-patchy {
    right: clamp(0px, 7vw, 70px);
    left: auto;
    transform: none;
  }
}

@media (min-width: 701px) and (max-width: 1100px) {
  .footer-subscribe {
    --footer-content-column: 520px;
    --footer-subscribe-gap: clamp(24px, 4vw, 50px);
    --footer-patchy-column: clamp(190px, 24vw, 230px);
    display: grid;
    grid-template-columns: minmax(0, var(--footer-content-column)) var(--footer-subscribe-gap) minmax(var(--footer-patchy-column), 1fr);
    grid-template-areas:
      "socials patchy patchy"
      "heading patchy patchy"
      "copy patchy patchy"
      "form patchy patchy";
    column-gap: 0;
    min-height: 220px;
    padding-right: 0;
  }

  .footer-socials {
    grid-area: socials;
  }

  .footer-subscribe h3 {
    grid-area: heading;
  }

  .footer-subscribe p {
    grid-area: copy;
  }

  .footer-form {
    grid-area: form;
    max-width: 520px;
  }

  .footer-patchy {
    position: static;
    grid-area: patchy;
    align-self: end;
    justify-self: center;
    width: min(100%, var(--footer-patchy-column));
    max-width: 230px;
    margin: 0 0 -28px;
    transform: none;
  }
}

@media (min-width: 701px) and (max-width: 760px) {
  .footer-subscribe {
    --footer-content-column: 400px;
    --footer-subscribe-gap: 20px;
    --footer-patchy-column: clamp(170px, 26vw, 200px);
  }

  .footer-subscribe p {
    max-width: 400px;
  }

  .footer-form {
    max-width: 400px;
  }

  .footer-form input {
    flex: 0 1 250px;
  }

  .footer-form button {
    flex: 0 0 138px;
    padding-inline: 16px;
  }
}

@media (max-width: 700px) {
  .site-scrollbar {
    display: none;
  }

  .topbar-wrap {
    top: max(12px, env(safe-area-inset-top));
    right: max(12px, env(safe-area-inset-right));
    left: auto;
    display: grid;
    justify-items: end;
    width: min(220px, calc(100vw - 24px));
    transform: none;
    pointer-events: none;
  }

  .mobile-nav-toggle {
    position: fixed;
    top: max(12px, env(safe-area-inset-top));
    right: max(12px, env(safe-area-inset-right));
    z-index: 2;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 50%;
    color: var(--component-text);
    background: rgba(255, 255, 255, 0.78);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.7),
      0 14px 32px rgba(20, 20, 20, 0.14);
    backdrop-filter: blur(20px) saturate(190%);
    -webkit-backdrop-filter: blur(20px) saturate(190%);
    appearance: none;
    opacity: 1;
    visibility: visible;
    cursor: pointer;
    pointer-events: auto;
  }

  .mobile-nav-toggle .mobile-nav-icon {
    display: block;
    width: 35px;
    height: 35px;
  }

  .mobile-nav-toggle .mobile-nav-icon[hidden] {
    display: none;
  }

  .topbar {
    position: absolute;
    top: 68px;
    right: 0;
    display: grid;
    justify-content: stretch;
    gap: 2px;
    width: min(220px, calc(100vw - 24px));
    height: auto;
    max-height: calc(100svh - 92px);
    margin: 0;
    padding: 10px;
    overflow: auto;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.64);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.72),
      0 24px 60px rgba(20, 20, 20, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.96);
    transform-origin: top right;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    pointer-events: none;
  }

  .topbar-wrap.is-open .topbar {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 44px;
    padding: 12px 14px;
    font-size: 1rem;
    text-align: left;
  }

  .nav-icon {
    display: block;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    object-fit: contain;
    opacity: 0.78;
    transition: filter 0.2s ease, opacity 0.2s ease;
  }

  .nav-link.active .nav-icon {
    opacity: 1;
    filter: invert(1);
  }

  .nav-legal:not([hidden]) {
    display: block;
  }

  .nav-legal-toggle {
    border: 0;
    background: transparent;
    font-family: inherit;
    cursor: pointer;
  }

  .nav-legal-chevron {
    width: 18px;
    height: 18px;
    margin-left: auto;
    transition: transform 180ms ease;
  }

  .nav-legal-toggle[aria-expanded="true"] .nav-legal-chevron {
    transform: rotate(180deg);
  }

  .nav-legal-links:not([hidden]) {
    display: grid;
    gap: 2px;
    margin: 2px 0 4px 14px;
  }

  .nav-legal-links .nav-link {
    min-height: 44px;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 400;
    line-height: 1.3;
    white-space: normal;
  }

  .site-footer {
    padding: 28px 16px max(22px, env(safe-area-inset-bottom));
  }

  .footer-inner {
    width: min(100%, 560px);
    gap: 20px;
  }

  .footer-brand {
    grid-template-columns: 100px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
  }

  .footer-logo {
    width: 100%;
    margin-top: 0;
  }

  .footer-main {
    padding-top: 0;
  }

  .footer-kicker {
    margin-bottom: 5px;
    font-size: 0.68rem;
  }

  .footer-brand h2 {
    margin-bottom: 0;
    font-size: clamp(1.35rem, 6.2vw, 1.9rem);
    line-height: 1;
  }

  .footer-copy,
  .footer-nav {
    display: none;
  }

  .footer-subscribe {
    padding-top: 18px;
  }

  .footer-socials {
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
  }

  .footer-socials a,
  .footer-socials img {
    width: 36px;
    height: 36px;
  }

  .footer-subscribe h3 {
    font-size: 1.08rem;
  }

  .footer-subscribe p {
    margin-bottom: 12px;
    font-size: 0.84rem;
  }

  .footer-form {
    max-width: none;
    flex-wrap: wrap;
    gap: 8px;
  }

  .footer-form input {
    flex: 1 1 0;
    min-width: 0;
    height: 44px;
  }

  .footer-form button {
    flex: 0 0 clamp(118px, 34vw, 152px);
    padding-inline: 14px;
    height: 44px;
  }

  .footer-patchy {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    display: block;
    width: clamp(150px, 46vw, 160px);
    margin: 16px auto -20px;
    transform: none;
  }

  .footer-disclaimer {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 20px;
  }

  .footer-disclaimer p,
  .footer-credit-name {
    font-size: 0.72rem;
  }

  .footer-legal-left {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-credit {
    padding-left: 14px;
  }
}

@media (max-width: 420px) {
  .footer-brand {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 12px;
  }

  .footer-form {
    flex-direction: column;
  }

  .footer-form input,
  .footer-form button {
    flex: none;
    width: 100%;
  }

  .footer-form-status {
    align-self: stretch;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .newsletter-success-modal {
    width: min(470px, calc(100% - 20px));
    height: fit-content;
    border-radius: 24px;
  }

  .newsletter-success-modal[open] {
    grid-template-columns: 1fr;
    grid-template-areas:
      "art"
      "content";
  }

  .newsletter-success-art {
    min-height: clamp(145px, 20svh, 175px);
    border-left: 0;
    border-bottom: 1px solid #d9d0f4;
  }

  .newsletter-success-dragon {
    bottom: -6px;
    width: min(80%, 350px);
    height: 100%;
  }

  .newsletter-success-content {
    padding: 20px 24px 22px;
  }

  .newsletter-success-intro {
    margin-bottom: 10px;
  }

  .newsletter-success-modal h2 {
    margin-bottom: 9px;
    font-size: clamp(1.8rem, 8vw, 2.2rem);
  }

  .newsletter-success-modal p {
    font-size: 0.9rem;
  }

  .newsletter-success-modal .newsletter-success-note {
    margin-top: 11px;
  }

  .newsletter-success-close {
    width: 42px;
    height: 42px;
  }
}

@media (max-height: 520px) and (orientation: landscape) {
  .newsletter-success-modal {
    width: min(820px, calc(100% - 20px));
    height: fit-content;
  }

  .newsletter-success-modal[open] {
    grid-template-columns: minmax(0, 1.12fr) minmax(250px, 0.88fr);
    grid-template-areas: "content art";
  }

  .newsletter-success-art {
    min-height: 300px;
    border-bottom: 0;
    border-left: 1px solid #d9d0f4;
  }

  .newsletter-success-content {
    padding: 28px 32px;
  }

  .newsletter-success-intro {
    margin-bottom: 12px;
  }

  .newsletter-success-modal h2 {
    margin-bottom: 10px;
    font-size: 2rem;
  }

  .newsletter-success-modal p {
    font-size: 0.88rem;
    line-height: 1.4;
  }

  .newsletter-success-modal .newsletter-success-note {
    margin-top: 12px;
    padding: 9px 12px;
  }
}

@media (max-width: 340px), (max-width: 640px) and (max-height: 620px) {
  .newsletter-success-modal {
    width: calc(100% - 16px);
    border-radius: 20px;
  }

  .newsletter-success-art {
    min-height: 145px;
  }

  .newsletter-success-content {
    padding: 18px 20px 20px;
  }

  .newsletter-success-intro {
    gap: 9px;
    margin-bottom: 12px;
  }

  .newsletter-success-check {
    width: 38px;
    height: 38px;
  }

  .newsletter-success-kicker {
    padding: 6px 10px;
    font-size: 0.68rem;
  }

  .newsletter-success-modal h2 {
    margin-bottom: 10px;
    font-size: 1.68rem;
  }

  .newsletter-success-modal p {
    font-size: 0.84rem;
    line-height: 1.4;
  }

  .newsletter-success-modal .newsletter-success-note {
    margin-top: 12px;
    padding: 9px 11px;
    font-size: 0.76rem;
  }

  .newsletter-success-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }
}

@media (orientation: landscape) and (hover: none) and (pointer: coarse) and (max-height: 600px) {
  .topbar-wrap {
    top: max(8px, env(safe-area-inset-top));
    left: 50%;
    right: auto;
    display: block;
    justify-items: initial;
    width: min(calc(100% - 20px), 880px);
    transform: translateX(-50%);
    pointer-events: auto;
  }

  .mobile-nav-toggle {
    display: none !important;
  }

  .topbar {
    position: relative;
    top: auto;
    right: auto;
    display: flex;
    justify-content: center;
    gap: 6px;
    width: fit-content;
    max-width: 100%;
    height: 46px;
    max-height: none;
    margin: 0 auto;
    padding: 6px;
    overflow: auto hidden;
    border-radius: 999px;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .nav-link {
    width: auto;
    padding: 10px 15px;
    font-size: 0.95rem;
    text-align: center;
  }

  .nav-icon {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .topbar, .nav-legal-chevron {
    transition: none;
  }

  .newsletter-success-modal[open] {
    animation: none;
  }
}

/* Keep typography spacing natural and consistent across every page. */
body,
body *,
body *::before,
body *::after {
  letter-spacing: normal !important;
}

/* Bridge the small gap between the desktop pill and the mobile menu. */
@media (min-width: 701px) and (max-width: 820px) {
  .topbar {
    gap: 4px;
    height: 54px;
    padding: 7px;
  }

  .nav-link {
    padding: 12px 16px;
    font-size: 0.95rem;
  }
}
