:root {
  --jr-bg: #f6fbf8;
  --jr-bg-soft: #edf7f2;
  --jr-surface: #ffffff;
  --jr-surface-muted: #f8fcfa;
  --jr-ink: #12302f;
  --jr-heading: #092423;
  --jr-muted: #58706c;
  --jr-teal: #0d5c59;
  --jr-teal-2: #17736e;
  --jr-sage: #d7ebe3;
  --jr-mint: #e8f7f0;
  --jr-accent: #d98b3a;
  --jr-accent-soft: #fff4e8;
  --jr-danger: #b64242;
  --jr-danger-soft: #fff0f0;
  --jr-border: #d8e8e2;
  --jr-border-strong: #bdd6cd;
  --jr-shadow: 0 12px 30px rgba(19, 64, 58, 0.08);
  --jr-radius: 12px;
  --jr-max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--jr-bg);
  color: var(--jr-ink);
  font-family: Outfit, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.admin-bar .jr-header {
  top: 32px;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

svg {
  fill: currentColor;
}

button,
input,
textarea,
select {
  font: inherit;
}

.screen-reader-text,
.jr-skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.jr-skip-link:focus {
  z-index: 10000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--jr-heading);
  color: #fff;
  font-weight: 800;
}

.jr-header {
  position: fixed;
  z-index: 999;
  inset: 0 0 auto;
  height: 78px;
  border-bottom: 1px solid rgba(216, 232, 226, 0.92);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.jr-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 78px;
  max-width: var(--jr-max);
  margin: 0 auto;
  padding: 0 28px;
}

.jr-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--jr-heading);
  font-weight: 900;
}

.jr-brand__mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border: 1px solid #b7d6cc;
  border-radius: 10px;
  background: linear-gradient(135deg, #0d5c59, #8dcdb8);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0;
}

.jr-brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jr-brand__name {
  overflow: hidden;
  max-width: 190px;
  font-size: 19px;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.jr-nav__list,
.jr-mobile-nav__list,
.jr-footer__links {
  padding: 0;
  margin: 0;
  list-style: none;
}

.jr-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.jr-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 13px;
  border-radius: 8px;
  color: #435c58;
  font-size: 14px;
  font-weight: 750;
  transition: background 0.2s ease, color 0.2s ease;
}

.jr-nav a:hover,
.jr-nav .current-menu-item > a {
  background: var(--jr-mint);
  color: var(--jr-teal);
}

.jr-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.jr-lang {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid var(--jr-border);
  border-radius: 999px;
  background: #fff;
}

.jr-lang a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 30px;
  border-radius: 999px;
  color: var(--jr-teal);
  font-size: 12px;
  font-weight: 900;
}

.jr-lang a.is-active {
  background: var(--jr-mint);
}

.jr-button,
.jr-hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--jr-teal);
  border-radius: 10px;
  background: var(--jr-teal);
  color: #fff;
  box-shadow: 0 8px 18px rgba(13, 92, 89, 0.16);
  font-weight: 850;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.jr-button:hover,
.jr-hero-button:hover {
  transform: translateY(-1px);
  background: var(--jr-teal-2);
  border-color: var(--jr-teal-2);
  box-shadow: 0 12px 24px rgba(13, 92, 89, 0.18);
}

.jr-button:focus-visible,
.jr-hero-button:focus-visible,
.jr-menu-toggle:focus-visible,
.jr-nav a:focus-visible,
.jr-mobile-nav a:focus-visible {
  outline: 3px solid rgba(23, 115, 110, 0.28);
  outline-offset: 3px;
}

.jr-button {
  min-height: 48px;
  padding: 0 22px;
  font-size: 14px;
}

.jr-button--small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 13px;
  white-space: nowrap;
}

.jr-button--disabled,
.jr-button--disabled:hover {
  cursor: not-allowed;
  transform: none;
  border-color: #cbded7;
  background: #eaf3ef;
  color: #607a75;
  box-shadow: none;
}

.jr-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--jr-border);
  border-radius: 10px;
  background: #fff;
  color: var(--jr-heading);
  cursor: pointer;
}

.jr-menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
}

.jr-mobile-nav {
  border-top: 1px solid var(--jr-border);
  background: #fff;
  box-shadow: var(--jr-shadow);
}

.jr-mobile-nav .jr-nav__list,
.jr-mobile-nav__list {
  display: grid;
  gap: 4px;
  padding: 12px 16px 16px;
}

.jr-mobile-nav a {
  display: flex;
  padding: 12px;
  border-radius: 8px;
  color: #36524e;
  font-weight: 800;
}

.jr-mobile-nav a:hover {
  background: var(--jr-mint);
  color: var(--jr-teal);
}

.jr-main {
  min-height: 60vh;
}

.jr-hero {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  background:
    linear-gradient(180deg, #f8fcfa 0%, #edf7f2 100%);
}

.jr-hero__media {
  position: absolute;
  top: 118px;
  right: max(20px, calc((100vw - var(--jr-max)) / 2));
  width: min(50vw, 570px);
  height: 430px;
  border: 1px solid rgba(189, 214, 205, 0.7);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(246, 251, 248, 0.78), rgba(246, 251, 248, 0.5)),
    url("../images/hero-rummy-burgundy.png") center / cover no-repeat;
  box-shadow: 0 18px 42px rgba(13, 92, 89, 0.08);
  opacity: 0.32;
  filter: saturate(0.55) brightness(1.08);
}

.jr-hero__media::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(246, 251, 248, 0.95), rgba(246, 251, 248, 0.52) 45%, rgba(246, 251, 248, 0.3)),
    radial-gradient(circle at 72% 18%, rgba(13, 92, 89, 0.16), transparent 36%);
  content: "";
}

.jr-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 690px;
  max-width: var(--jr-max);
  margin: 0 auto;
  padding: 122px 28px 70px;
}

.jr-hero__copy {
  max-width: 650px;
  padding: 34px;
  border: 1px solid rgba(216, 232, 226, 0.86);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 44px rgba(19, 64, 58, 0.08);
}

.jr-hero h1 {
  max-width: 620px;
  margin: 0;
  color: var(--jr-heading);
  font-size: 58px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.02;
}

.jr-hero__copy > p {
  max-width: 610px;
  margin: 20px 0 0;
  color: #36524e;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.65;
}

.jr-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.jr-hero-button {
  min-height: 70px;
  padding: 0 24px;
  gap: 13px;
}

.jr-hero-button__icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
}

.jr-hero-button__icon svg {
  width: 100%;
  height: 100%;
}

.jr-hero-button strong,
.jr-hero-button small {
  display: block;
  text-align: left;
}

.jr-hero-button strong {
  font-size: 21px;
  line-height: 1.1;
}

.jr-hero-button small {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 750;
  opacity: 0.86;
}

.jr-hero__note {
  max-width: 560px;
  margin-top: 16px;
  color: var(--jr-muted);
  font-size: 14px;
  font-weight: 700;
}

.jr-trust {
  border-top: 1px solid var(--jr-border);
  border-bottom: 1px solid var(--jr-border);
  background: #fff;
}

.jr-trust__inner,
.jr-stats__inner {
  display: grid;
  max-width: var(--jr-max);
  margin: 0 auto;
  padding: 20px 28px;
  gap: 16px;
}

.jr-trust__inner {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.jr-trust__cell {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--jr-border);
  border-radius: var(--jr-radius);
  background: var(--jr-surface-muted);
}

.jr-trust__icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--jr-mint);
  color: var(--jr-teal);
}

.jr-trust__icon svg {
  width: 22px;
  height: 22px;
}

.jr-trust__cell strong {
  display: block;
  color: var(--jr-heading);
  font-size: 16px;
  font-weight: 900;
}

.jr-trust__cell p {
  margin: 4px 0 0;
  color: var(--jr-muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.jr-stats {
  border-bottom: 1px solid var(--jr-border);
  background: var(--jr-bg-soft);
}

.jr-stats__inner {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.jr-stat {
  padding: 20px 18px;
  border: 1px solid var(--jr-border);
  border-radius: var(--jr-radius);
  background: #fff;
  text-align: center;
}

.jr-stat strong {
  display: block;
  color: var(--jr-teal);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.15;
}

.jr-stat span {
  display: block;
  margin-top: 7px;
  color: var(--jr-muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.jr-section {
  max-width: var(--jr-max);
  margin: 0 auto;
  padding: 68px 28px;
}

.jr-section__heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.jr-section__heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.jr-section h2,
.jr-page-hero h1,
.jr-card h3,
.jr-step h3,
.jr-brand-panel h2,
.jr-news-detail h1 {
  margin: 0;
  color: var(--jr-heading);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.12;
}

.jr-section h2 {
  font-size: 36px;
}

.jr-section__heading p {
  margin: 12px 0 0;
  color: var(--jr-muted);
  font-weight: 650;
}

.jr-steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  gap: 16px;
}

.jr-step {
  min-height: 185px;
  padding: 24px;
  border: 1px solid var(--jr-border);
  border-radius: var(--jr-radius);
  background: #fff;
  box-shadow: var(--jr-shadow);
}

.jr-step__label,
.jr-kicker,
.jr-card__tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  color: var(--jr-teal);
  background: var(--jr-mint);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.jr-step__label {
  min-height: 28px;
  padding: 0 12px;
}

.jr-step h3 {
  margin-top: 16px;
  font-size: 24px;
}

.jr-step p {
  margin: 9px 0 0;
  color: var(--jr-muted);
  font-weight: 650;
  line-height: 1.65;
}

.jr-step__arrow {
  display: grid;
  place-items: center;
  color: var(--jr-teal);
  opacity: 0.58;
}

.jr-step__arrow svg {
  width: 46px;
  height: 46px;
}

.jr-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.jr-card {
  overflow: hidden;
  min-height: 360px;
  padding: 20px;
  border: 1px solid var(--jr-border);
  border-radius: var(--jr-radius);
  background: #fff;
  box-shadow: 0 8px 22px rgba(19, 64, 58, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.jr-card:hover {
  border-color: var(--jr-border-strong);
  box-shadow: 0 14px 30px rgba(19, 64, 58, 0.09);
  transform: translateY(-2px);
}

.jr-card__media {
  display: block;
  height: 184px;
  margin: -20px -20px 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 24%, rgba(23, 115, 110, 0.12), transparent 34%),
    linear-gradient(135deg, #e8f7f0, #f8fcfa);
}

.jr-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.jr-card:hover .jr-card__media img {
  transform: scale(1.03);
}

.jr-card__media--placeholder {
  position: relative;
}

.jr-card__media--placeholder::after {
  position: absolute;
  right: 26px;
  bottom: 20px;
  width: 76px;
  height: 104px;
  border: 1px solid #b7d6cc;
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 30%, #0d5c59 0 8px, transparent 9px),
    linear-gradient(145deg, #fff, #d7ebe3);
  box-shadow: -38px 14px 0 -12px rgba(255, 255, 255, 0.82), -70px 24px 0 -18px rgba(215, 235, 227, 0.9);
  content: "";
  transform: rotate(6deg);
}

.jr-card__tag,
.jr-kicker {
  padding: 6px 10px;
  margin-bottom: 12px;
  font-size: 10px;
}

.jr-card h3 {
  margin-top: 0;
  font-size: 21px;
}

.jr-card h3 a:hover {
  color: var(--jr-teal);
}

.jr-card p {
  margin: 12px 0 0;
  color: var(--jr-muted);
  font-weight: 620;
  line-height: 1.7;
}

.jr-card__link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--jr-teal);
  font-size: 13px;
  font-weight: 850;
}

.jr-card__link::after {
  margin-left: 7px;
  content: "->";
}

.jr-faq {
  max-width: 980px;
}

.jr-faq__list {
  overflow: hidden;
  margin-top: 24px;
  border: 1px solid var(--jr-border);
  border-radius: var(--jr-radius);
  background: #fff;
  box-shadow: var(--jr-shadow);
}

.jr-faq details {
  padding: 20px 24px;
  border-bottom: 1px solid var(--jr-border);
}

.jr-faq details:last-child {
  border-bottom: 0;
}

.jr-faq summary {
  cursor: pointer;
  color: var(--jr-heading);
  font-size: 17px;
  font-weight: 850;
}

.jr-faq p {
  margin: 12px 0 0;
  color: var(--jr-muted);
  font-weight: 620;
  line-height: 1.75;
}

.jr-brand-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 30px;
  border: 1px solid var(--jr-border);
  border-radius: var(--jr-radius);
  background:
    linear-gradient(135deg, #fff, #edf7f2);
  box-shadow: var(--jr-shadow);
}

.jr-brand-panel h2 {
  max-width: 760px;
  font-size: 34px;
}

.jr-brand-panel p {
  max-width: 860px;
  margin: 12px 0 0;
  color: var(--jr-muted);
  font-weight: 620;
  line-height: 1.7;
}

.jr-footer {
  border-top: 1px solid var(--jr-border);
  background: #0c2d2b;
  color: #eaf6f1;
}

.jr-footer .jr-brand {
  color: #fff;
}

.jr-footer .jr-brand__mark {
  border-color: rgba(255, 255, 255, 0.28);
}

.jr-footer__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.65fr 1fr;
  gap: 52px;
  max-width: var(--jr-max);
  margin: 0 auto;
  padding: 52px 28px;
}

.jr-footer h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.jr-footer p,
.jr-footer a {
  color: rgba(234, 246, 241, 0.82);
  font-weight: 700;
}

.jr-footer p {
  max-width: 470px;
  margin: 18px 0 0;
  line-height: 1.75;
}

.jr-footer__links {
  display: grid;
  gap: 9px;
}

.jr-footer a:hover {
  color: #fff;
}

.jr-footer__email {
  display: inline-flex;
  margin-top: 16px;
  overflow-wrap: anywhere;
}

.jr-footer__legal {
  padding: 24px 20px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.jr-compliance {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

.jr-compliance__badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(215, 235, 227, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #eaf6f1;
  font-size: 13px;
  font-weight: 900;
}

.jr-compliance__badge--age {
  border-color: rgba(255, 206, 206, 0.5);
  background: rgba(182, 66, 66, 0.18);
  color: #ffe6e6;
}

.jr-footer__legal p {
  max-width: 900px;
  margin: 8px auto 0;
  color: rgba(234, 246, 241, 0.84);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.65;
}

.jr-page-hero {
  padding: 144px 28px 62px;
  border-bottom: 1px solid var(--jr-border);
  background:
    linear-gradient(180deg, #fff 0%, #edf7f2 100%);
}

.jr-page-hero__inner,
.jr-article,
.jr-news-detail {
  max-width: 860px;
  margin: 0 auto;
}

.jr-page-hero h1 {
  font-size: 46px;
}

.jr-page-hero p {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--jr-muted);
  font-size: 18px;
  font-weight: 620;
  line-height: 1.7;
}

.jr-article {
  padding: 56px 28px;
  color: #294a46;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.85;
}

.jr-article > *:first-child,
.jr-news-body > *:first-child {
  margin-top: 0;
}

.jr-article p,
.jr-news-body p {
  margin: 0 0 20px;
}

.jr-article h2,
.jr-article h3,
.jr-article h4,
.jr-news-body h2,
.jr-news-body h3,
.jr-news-body h4 {
  margin: 34px 0 12px;
  color: var(--jr-heading);
  line-height: 1.24;
}

.jr-article h2,
.jr-news-body h2 {
  font-size: 30px;
}

.jr-article h3,
.jr-news-body h3 {
  font-size: 24px;
}

.jr-article a,
.jr-news-body a {
  color: var(--jr-teal);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.jr-article ul,
.jr-article ol,
.jr-news-body ul,
.jr-news-body ol {
  padding-left: 24px;
  margin: 0 0 22px;
}

.jr-article li,
.jr-news-body li {
  margin-bottom: 8px;
}

.jr-article blockquote,
.jr-news-body blockquote {
  margin: 28px 0;
  padding: 20px 22px;
  border-left: 4px solid var(--jr-teal);
  border-radius: 0 10px 10px 0;
  background: var(--jr-mint);
  color: #244743;
  font-weight: 650;
}

.jr-article figure,
.jr-news-body figure {
  margin: 28px 0;
}

.jr-article img,
.jr-news-body img {
  height: auto;
  border-radius: 12px;
}

.jr-article table,
.jr-news-body table {
  width: 100%;
  margin: 28px 0;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--jr-border);
  border-radius: 10px;
  background: #fff;
  font-size: 15px;
}

.jr-article th,
.jr-news-body th {
  background: var(--jr-mint);
  color: var(--jr-heading);
  text-align: left;
}

.jr-article th,
.jr-article td,
.jr-news-body th,
.jr-news-body td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--jr-border);
  vertical-align: top;
}

.jr-news-detail {
  padding: 122px 24px 66px;
}

.jr-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--jr-muted);
  font-size: 13px;
  font-weight: 800;
}

.jr-breadcrumb a:hover {
  color: var(--jr-teal);
}

.jr-news-shell {
  overflow: hidden;
  border: 1px solid var(--jr-border);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--jr-shadow);
}

.jr-news-media {
  height: 330px;
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--jr-border);
}

.jr-news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jr-news-hero,
.jr-news-body {
  padding: 32px 38px;
}

.jr-news-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--jr-mint);
  color: var(--jr-teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.jr-news-detail h1 {
  margin-top: 16px;
  font-size: 42px;
}

.jr-news-lede {
  margin: 14px 0 0;
  color: var(--jr-muted);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.7;
}

.jr-news-body {
  padding-top: 0;
  color: #294a46;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.85;
}

.nav-links {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 34px;
}

.nav-links a,
.nav-links span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid var(--jr-border);
  border-radius: 8px;
  color: var(--jr-muted);
  font-weight: 800;
}

.nav-links .current,
.nav-links a:hover {
  border-color: var(--jr-border-strong);
  color: var(--jr-teal);
}

.jr-muted {
  color: var(--jr-muted);
}

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

@media (max-width: 1000px) {
  .jr-nav {
    display: none;
  }

  .jr-menu-toggle {
    display: block;
  }

  .jr-hero__media {
    top: 250px;
    right: 24px;
    width: 52vw;
    height: 310px;
    opacity: 0.22;
  }

  .jr-trust__inner,
  .jr-stats__inner,
  .jr-card-grid,
  .jr-footer__inner {
    grid-template-columns: 1fr;
  }

  .jr-steps {
    grid-template-columns: 1fr;
  }

  .jr-step {
    min-height: auto;
  }

  .jr-step__arrow {
    display: none;
  }

  .jr-brand-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  body.admin-bar .jr-header {
    top: 46px;
  }

  .jr-header,
  .jr-header__inner {
    height: 72px;
  }

  .jr-header__inner {
    padding: 0 14px;
    gap: 8px;
  }

  .jr-brand {
    gap: 8px;
    flex: 1 1 auto;
  }

  .jr-brand__mark {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    font-size: 12px;
  }

  .jr-brand__name {
    max-width: 150px;
    font-size: 16px;
  }

  .jr-lang {
    display: none;
  }

  .jr-button--small {
    min-height: 38px;
    padding: 0 11px;
    font-size: 12px;
  }

  .jr-menu-toggle {
    width: 38px;
    height: 38px;
  }

  .jr-hero {
    min-height: 650px;
  }

  .jr-hero__media {
    top: 372px;
    right: 16px;
    left: 16px;
    width: auto;
    height: 210px;
    opacity: 0.2;
  }

  .jr-hero__content {
    min-height: 650px;
    padding: 104px 16px 52px;
  }

  .jr-hero__copy {
    width: 100%;
    padding: 22px;
    border-radius: 14px;
  }

  .jr-hero h1 {
    font-size: 40px;
  }

  .jr-hero__copy > p {
    font-size: 17px;
    line-height: 1.58;
  }

  .jr-hero-button {
    width: 100%;
    min-height: 66px;
    padding: 0 16px;
  }

  .jr-hero-button strong {
    font-size: 18px;
  }

  .jr-hero-button small {
    font-size: 12px;
  }

  .jr-trust__inner,
  .jr-stats__inner {
    padding: 16px;
  }

  .jr-section {
    padding: 52px 16px;
  }

  .jr-section h2 {
    font-size: 30px;
  }

  .jr-card {
    min-height: auto;
  }

  .jr-faq details {
    padding: 18px;
  }

  .jr-faq summary {
    font-size: 16px;
  }

  .jr-brand-panel {
    padding: 22px;
  }

  .jr-brand-panel h2 {
    font-size: 28px;
  }

  .jr-brand-panel .jr-button {
    width: 100%;
  }

  .jr-footer__inner {
    padding: 42px 18px;
    gap: 30px;
  }

  .jr-footer__legal {
    text-align: left;
  }

  .jr-compliance {
    justify-content: flex-start;
  }

  .jr-page-hero {
    padding: 112px 18px 48px;
  }

  .jr-page-hero h1 {
    font-size: 36px;
  }

  .jr-article,
  .jr-news-detail {
    padding-right: 18px;
    padding-left: 18px;
  }

  .jr-news-detail {
    padding-top: 104px;
  }

  .jr-news-media {
    height: 220px;
  }

  .jr-news-hero,
  .jr-news-body {
    padding-right: 20px;
    padding-left: 20px;
  }

  .jr-news-detail h1 {
    font-size: 32px;
  }
}

@media (max-width: 430px) {
  .jr-header__inner {
    padding: 0 10px;
  }

  .jr-brand__name {
    max-width: 122px;
    font-size: 15px;
  }

  .jr-header__actions {
    gap: 6px;
  }

  .jr-button--small {
    max-width: 116px;
    padding: 0 9px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 370px) {
  .jr-brand__name {
    max-width: 112px;
    font-size: 14px;
  }

  .jr-button--small {
    max-width: 108px;
  }
}
