:root {
  --ink: #142238;
  --ink-deep: #0b1a2d;
  --muted: #687c91;
  --mint: #13bea2;
  --mint-deep: #058f7a;
  --line: rgba(20, 49, 66, 0.14);
  --paper: #f8fbfb;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper);
}

body.concept-page {
  min-width: 320px;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 26%, rgba(112, 220, 202, 0.24), transparent 31rem),
    radial-gradient(circle at 45% 96%, rgba(187, 218, 239, 0.42), transparent 36rem),
    linear-gradient(119deg, #fbfcfc 0%, #f3f9fa 53%, #ebf8f6 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.concept-page::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(28, 65, 78, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 65, 78, 0.045) 1px, transparent 1px);
  background-position: calc(50% + 190px) 0;
  background-size: 78px 78px;
  mask-image: linear-gradient(90deg, transparent 12%, #000 58%, #000 100%);
  opacity: 0.38;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: white;
  background: var(--ink-deep);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.concept-header {
  position: relative;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr minmax(0, 1490px) 1fr;
  min-height: 74px;
  border-bottom: 1px solid var(--line);
}

.concept-header-rail {
  display: none;
  grid-column: 2;
  grid-row: 1;
  align-items: center;
  gap: 18px;
  width: min(100%, calc(100% - 64px));
  margin: 0 auto;
  color: #6b7c8d;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  pointer-events: none;
}

.concept-header-rail span + span::before {
  display: inline-block;
  width: 34px;
  height: 1px;
  margin: 0 18px 3px 0;
  content: "";
  background: rgba(5, 143, 122, 0.45);
}

.concept-header-main {
  display: flex;
  grid-column: 2;
  grid-row: 1;
  align-items: center;
  justify-content: flex-end;
  width: min(100%, calc(100% - 64px));
  margin: 0 auto;
}

.concept-home-mark {
  display: none;
}

.concept-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 73px;
}

.concept-nav > a {
  position: relative;
  display: inline-flex;
  min-height: 73px;
  align-items: center;
  color: #26374a;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.concept-nav > a::after {
  position: absolute;
  right: 50%;
  bottom: 0;
  left: 50%;
  height: 3px;
  content: "";
  background: var(--mint);
  transition: right 180ms ease, left 180ms ease;
}

.concept-nav > a:hover::after,
.concept-nav > a:focus-visible::after {
  right: 0;
  left: 0;
}

.concept-nav > .concept-login {
  min-height: 42px;
  margin-left: 4px;
  padding: 0 18px;
  color: white;
  background: var(--ink-deep);
}

.concept-nav > .concept-login::after {
  display: none;
}

.concept-menu {
  display: none;
}

.language-control {
  position: relative;
  display: flex;
  align-items: center;
}

.language-trigger {
  display: inline-flex;
  min-width: 62px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 12px;
  color: var(--ink);
  border: 1px solid rgba(9, 118, 101, 0.24);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
}

.language-flag {
  display: inline-grid;
  width: 21px;
  height: 14px;
  flex: 0 0 21px;
  overflow: hidden;
  line-height: 0;
  border: 1px solid rgba(24, 51, 70, 0.16);
  border-radius: 1px;
  box-shadow: 0 1px 2px rgba(24, 51, 70, 0.08);
}

.language-flag svg {
  display: block;
  width: 100%;
  height: 100%;
}

.language-code {
  font-size: 11px;
  font-weight: 850;
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 40;
  width: 210px;
  padding: 7px;
  border: 1px solid rgba(9, 118, 101, 0.18);
  background: rgba(252, 254, 254, 0.98);
  box-shadow: 0 24px 55px rgba(25, 56, 68, 0.15);
  backdrop-filter: blur(18px);
}

.language-menu[hidden] {
  display: none;
}

.language-menu button {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 9px;
  color: var(--ink);
  text-align: left;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.language-menu button:hover,
.language-menu button.is-active {
  background: rgba(19, 190, 162, 0.1);
}

.language-menu small {
  color: #82909d;
  font-size: 10px;
}

.concept-hero {
  position: relative;
  width: min(1490px, calc(100% - 64px));
  min-height: calc(100svh - 74px);
  margin: 0 auto;
  padding: 25px 0 28px;
}

.concept-brand-stage {
  display: grid;
  grid-template-columns: minmax(60px, 1fr) auto minmax(60px, 1fr);
  align-items: center;
  gap: 30px;
  width: min(940px, 76vw);
  margin: 0 auto -12px;
}

.concept-brand-stage img {
  display: block;
  width: clamp(390px, 37vw, 520px);
  height: auto;
}

.concept-brand-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(22, 69, 84, 0.18));
}

.concept-brand-rule:last-child {
  background: linear-gradient(90deg, rgba(22, 69, 84, 0.18), transparent);
}

.concept-layout {
  display: grid;
  grid-template-columns: minmax(430px, 0.86fr) minmax(650px, 1.14fr);
  align-items: center;
  min-width: 0;
  min-height: calc(100svh - 290px);
}

.concept-copy {
  position: relative;
  z-index: 5;
  min-width: 0;
  width: min(100%, 590px);
  padding-left: clamp(38px, 5vw, 88px);
}

.concept-copy::before {
  position: absolute;
  top: -24px;
  bottom: -26px;
  left: 0;
  width: 1px;
  content: "";
  background: linear-gradient(transparent, rgba(5, 143, 122, 0.42) 18%, rgba(5, 143, 122, 0.42) 82%, transparent);
}

.concept-copy h1 {
  max-width: 560px;
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 2.85vw, 47px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.concept-title-line {
  display: block;
  color: inherit;
  white-space: nowrap;
}

.concept-copy h1 .concept-title-accent {
  color: var(--mint);
}

.concept-lead {
  width: 100%;
  max-width: 505px;
  margin: 24px 0 28px;
  color: var(--muted);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.62;
  overflow-wrap: anywhere;
}

.concept-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  width: min(100%, 315px);
  max-width: 100%;
  min-height: 47px;
  overflow: hidden;
  color: white;
  background: var(--ink-deep);
  box-shadow: 0 20px 45px rgba(12, 35, 49, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.concept-cta:hover,
.concept-cta:focus-visible {
  box-shadow: 0 24px 52px rgba(12, 35, 49, 0.26);
  transform: translateY(-2px);
}

.concept-cta-copy {
  position: relative;
  z-index: 2;
  padding: 0 16px;
  font-size: 11px;
  font-weight: 800;
}

.concept-cta-line {
  position: absolute;
  right: 47px;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--mint);
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.concept-cta:hover .concept-cta-line,
.concept-cta:focus-visible .concept-cta-line {
  transform: scaleX(1);
}

.concept-cta-icon {
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  color: white;
  background: linear-gradient(145deg, #19c7aa, #07947e);
}

.concept-cta-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.concept-cta:hover .concept-cta-icon svg {
  transform: translateX(4px);
}

.concept-orbit {
  position: relative;
  z-index: 2;
  width: min(100%, 810px);
  margin: 0 -10px 0 0;
  justify-self: end;
  isolation: isolate;
  animation: orbit-enter 1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.concept-orbit::before,
.concept-orbit::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.concept-orbit::before {
  inset: 15% 9% 10%;
  border: 1px solid rgba(19, 190, 162, 0.2);
  box-shadow: 0 0 70px rgba(19, 190, 162, 0.12);
}

.concept-orbit::after {
  inset: 21% 17% 17%;
  background: rgba(116, 221, 206, 0.18);
  filter: blur(48px);
}

.concept-orbit picture,
.concept-orbit img {
  display: block;
  width: 100%;
  height: auto;
}

.concept-orbit img {
  mix-blend-mode: multiply;
  filter: saturate(0.96) contrast(1.01);
  mask-image: radial-gradient(ellipse 64% 72% at 50% 49%, #000 57%, rgba(0, 0, 0, 0.97) 72%, transparent 100%);
}

.concept-orbit-center {
  position: absolute;
  top: 50.2%;
  left: 50%;
  display: flex;
  width: 35%;
  min-height: 29%;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 3.8% 2% 2%;
  text-align: center;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 252, 252, 0.99) 0%, rgba(239, 247, 249, 0.97) 66%, rgba(227, 240, 243, 0.84) 78%, transparent 79%);
  transform: translate(-50%, -50%);
}

.concept-orbit-label {
  max-width: 78%;
  margin-bottom: 5px;
  color: #61748b;
  font-size: clamp(6px, 0.48vw, 8px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.concept-orbit-amount {
  display: grid;
  grid-template-columns: 0.72em 4.3ch;
  align-items: baseline;
  color: #06264a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(29px, 3vw, 49px);
  font-variant-numeric: tabular-nums;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.concept-orbit-amount > span:first-child {
  justify-self: end;
}

.concept-orbit-amount > span:last-child {
  justify-self: start;
}

.concept-orbit-period {
  margin-top: 4px;
  color: #66798e;
  font-size: clamp(7px, 0.58vw, 10px);
}

.concept-orbit-badge {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 8px;
  padding: 6px 15px;
  color: var(--mint-deep);
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.73);
  box-shadow: 0 10px 25px rgba(44, 84, 94, 0.09);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 400ms ease, transform 400ms ease;
}

.concept-orbit.is-counted .concept-orbit-badge {
  opacity: 1;
  transform: translateY(0);
}

.concept-orbit-badge strong {
  font-size: clamp(10px, 0.86vw, 14px);
}

.concept-orbit-badge small {
  color: #687a8f;
  font-size: clamp(6px, 0.48vw, 7px);
}

.concept-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  width: calc(100% - clamp(38px, 5vw, 88px));
  margin-left: clamp(38px, 5vw, 88px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.concept-trust > div {
  min-width: 0;
  min-height: 70px;
  padding: 15px 22px;
  border-left: 1px solid var(--line);
}

.concept-trust > div:first-child {
  border-left: 0;
}

.concept-trust strong,
.concept-trust span {
  display: block;
}

.concept-trust strong {
  margin-bottom: 4px;
  color: #26384b;
  font-size: 13px;
}

.concept-trust span {
  color: #718397;
  font-size: 11px;
  line-height: 1.35;
}

.concept-footer {
  position: relative;
  border-top: 1px solid rgba(34, 68, 80, 0.18);
  background: rgba(249, 252, 252, 0.84);
}

.concept-footer::before {
  position: absolute;
  top: -1px;
  left: 50%;
  width: min(220px, 30vw);
  height: 2px;
  content: "";
  background: var(--mint);
  transform: translateX(-50%);
}

.concept-footer-inner {
  width: min(1240px, calc(100% - 56px));
  margin: 0 auto;
  padding: 25px 0 22px;
}

.concept-footer-nav {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.concept-footer-nav a {
  position: relative;
  min-width: 0;
  padding: 11px clamp(7px, 0.75vw, 13px);
  color: #26384b;
  font-size: clamp(9.5px, 0.72vw, 11px);
  font-weight: 750;
  line-height: 1.25;
  text-decoration: none;
  white-space: nowrap;
  border-left: 1px solid var(--line);
  transition: color 180ms ease, background-color 180ms ease;
}

.concept-footer-nav a:first-child {
  border-left: 0;
}

.concept-footer-nav a:hover,
.concept-footer-nav a:focus-visible {
  color: var(--mint-deep);
  background: rgba(18, 184, 154, 0.055);
}

.concept-footer-nav a:focus-visible {
  outline: 2px solid rgba(18, 184, 154, 0.42);
  outline-offset: -2px;
}

.concept-footer-note {
  max-width: 920px;
  margin: 18px 0 0;
  color: #718397;
  font-size: 11px;
  line-height: 1.55;
}

.language-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  padding: 24px;
  place-items: center;
  background: rgba(235, 245, 245, 0.72);
  backdrop-filter: blur(16px);
}

.language-gate-card {
  width: min(760px, 100%);
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(9, 118, 101, 0.21);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 35px 80px rgba(28, 59, 70, 0.17);
}

.language-gate-kicker {
  color: var(--mint-deep);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.language-gate-card h2 {
  margin: 10px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 400;
}

.language-gate-card > p:not(.language-gate-kicker) {
  color: var(--muted);
  line-height: 1.6;
}

.language-gate-options {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: 28px;
  background: var(--line);
}

.language-gate-options button {
  display: flex;
  min-height: 112px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  color: var(--ink);
  border: 0;
  background: white;
  cursor: pointer;
}

.language-gate-options button:hover {
  color: var(--mint-deep);
  background: #eefaf8;
}

.language-gate-options small {
  color: #82909e;
  font-size: 10px;
}

@keyframes orbit-enter {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Keep the complete hero visible on wide desktop screens with limited height. */
@media (min-width: 881px) and (max-height: 1100px) {
  .concept-hero {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    height: calc(100svh - 74px);
    min-height: 0;
    padding-block: clamp(12px, 2vh, 20px);
  }

  .concept-brand-stage {
    width: min(800px, 68vw);
    margin-bottom: 0;
  }

  .concept-brand-stage img {
    width: clamp(300px, 31vw, 430px);
  }

  .concept-layout {
    min-height: 0;
  }

  .concept-orbit {
    width: min(100%, 650px, calc(100svh - 315px));
    margin-inline: auto;
    justify-self: center;
  }

  .concept-copy h1 {
    font-size: clamp(34px, 2.55vw, 43px);
  }

  .concept-lead {
    margin-block: clamp(14px, 2.2vh, 22px);
    line-height: 1.5;
  }

  .concept-trust > div {
    min-height: 58px;
    padding-block: 10px;
  }
}

@media (min-width: 1200px) and (max-height: 1100px) {
  .concept-layout {
    grid-template-columns: minmax(430px, 520px) minmax(620px, 760px);
    justify-content: center;
    column-gap: clamp(18px, 2vw, 38px);
    width: min(100%, 1318px);
    margin-inline: auto;
  }

  .concept-orbit {
    left: -18px;
    width: min(100%, 820px, calc(100svh - 190px));
  }

  .concept-copy {
    left: clamp(24px, 3.2vw, 58px);
  }
}

@media (max-width: 1120px) {
  .concept-header-rail,
  .concept-header-main,
  .concept-hero {
    width: min(100% - 40px, 1060px);
  }

  .concept-header-rail {
    display: none;
  }

  .concept-header-main {
    justify-content: space-between;
  }

  .concept-home-mark {
    display: block;
    width: 44px;
  }

  .concept-home-mark img {
    display: block;
    width: 100%;
    height: auto;
  }

  .concept-nav {
    gap: 18px;
  }

  .concept-layout {
    grid-template-columns: minmax(360px, 0.83fr) minmax(520px, 1.17fr);
  }

  .concept-copy {
    padding-left: 30px;
  }

  .concept-trust {
    width: calc(100% - 30px);
    margin-left: 30px;
  }
}

@media (max-width: 880px) {
  .concept-header {
    min-height: 72px;
  }

  .concept-header-main {
    position: relative;
    justify-content: space-between;
  }

  .concept-menu {
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    place-content: center;
    gap: 7px;
    border: 1px solid rgba(11, 26, 45, 0.9);
    background: var(--ink-deep);
    box-shadow: 0 12px 28px rgba(11, 26, 45, 0.14);
    cursor: pointer;
  }

  .concept-menu span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: white;
  }

  .concept-nav {
    position: absolute;
    top: 64px;
    right: 0;
    display: none;
    width: min(340px, calc(100vw - 40px));
    min-height: 0;
    padding: 8px;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(9, 118, 101, 0.19);
    background: rgba(250, 253, 253, 0.98);
    box-shadow: 0 26px 60px rgba(31, 66, 77, 0.16);
    backdrop-filter: blur(20px);
  }

  .concept-nav.is-open {
    display: flex;
  }

  .concept-nav > a,
  .concept-nav > .concept-login {
    min-height: 50px;
    margin: 0;
    padding: 0 13px;
    color: var(--ink);
    border-bottom: 1px solid rgba(24, 57, 71, 0.08);
    background: transparent;
  }

  .concept-nav > a::after {
    display: none;
  }

  .concept-nav .language-control {
    padding: 10px 5px 4px;
  }

  .concept-nav .language-trigger {
    width: 100%;
  }

  .concept-nav .language-menu {
    top: calc(100% + 4px);
    right: 5px;
    left: 5px;
    width: auto;
  }

  .concept-hero {
    min-height: auto;
    padding-top: 30px;
  }

  .concept-brand-stage {
    width: 100%;
    margin-bottom: 25px;
  }

  .concept-brand-stage img {
    width: min(480px, 72vw);
  }

  .concept-layout {
    grid-template-columns: 1fr;
    width: 100%;
    min-width: 0;
  }

  .concept-copy {
    min-width: 0;
    width: min(650px, 100%);
    max-width: 100%;
    padding: 22px 0 0 30px;
  }

  .concept-copy h1 {
    font-size: clamp(37px, 5.8vw, 47px);
  }

  .concept-orbit {
    width: min(760px, 104%);
    margin: 12px auto 0;
    justify-self: center;
  }

  .concept-trust {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 12px;
  }

  .concept-footer-nav {
    flex-wrap: wrap;
  }

}

@media (max-width: 600px) {
  .concept-header-main,
  .concept-hero {
    width: calc(100% - 30px);
  }

  .concept-header-main {
    min-width: 0;
  }

  .concept-home-mark {
    width: 40px;
  }

  .concept-menu {
    width: 44px;
    height: 44px;
  }

  .concept-brand-stage {
    grid-template-columns: 1fr;
    margin-bottom: 16px;
  }

  .concept-brand-rule {
    display: none;
  }

  .concept-brand-stage img {
    width: min(310px, 80vw);
    margin: 0 auto;
  }

  .concept-copy {
    width: 100%;
    max-width: 100%;
    padding: 15px 19px 0;
  }

  .concept-copy::before {
    top: 0;
    bottom: -12px;
  }

  .concept-copy h1 {
    font-size: clamp(30px, 8.3vw, 38px);
    line-height: 1;
  }

  .concept-title-line {
    white-space: normal;
  }

  .concept-lead {
    width: 100%;
    max-width: 100%;
    margin: 21px 0 23px;
    font-size: 16px;
    line-height: 1.52;
  }

  .concept-cta {
    grid-template-columns: minmax(0, 1fr) 45px;
    width: min(100%, 270px);
    max-width: 100%;
    min-height: 45px;
  }

  .concept-cta-copy {
    min-width: 0;
    padding: 0 14px;
    font-size: 11px;
    overflow-wrap: anywhere;
  }

  .concept-cta-icon {
    width: 45px;
    height: 45px;
  }

  .concept-orbit {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .concept-orbit-amount {
    font-size: clamp(24px, 8.5vw, 34px);
  }

  .concept-orbit-badge {
    margin-top: 6px;
    padding: 5px 11px;
  }

  .concept-trust {
    width: calc(100% - 38px);
    margin: 4px 19px 0;
  }

  .concept-trust > div {
    min-height: 64px;
    padding: 13px 8px;
  }

  .concept-trust strong {
    font-size: 10px;
  }

  .concept-trust span {
    font-size: 8px;
  }

  .concept-footer-inner {
    width: calc(100% - 38px);
    padding: 22px 0 20px;
  }

  .concept-footer-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
  }

  .concept-footer-nav a {
    padding: 10px 8px;
    font-size: 10px;
    line-height: 1.3;
    text-align: center;
    white-space: normal;
    border-top: 1px solid var(--line);
  }

  .concept-footer-nav a:nth-child(-n + 2) {
    border-top: 0;
  }

  .concept-footer-nav a:nth-child(2n + 1) {
    border-left: 0;
  }

  .concept-footer-note {
    font-size: 10px;
  }

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

  .language-gate-options button:last-child {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
