.jar-xp {
  --jar-ink: #1d1d1c;
  --jar-charcoal: #252421;
  --jar-paper: #f4f1eb;
  --jar-white: #fff;
  --jar-gold: #c6974e;
  --jar-gold-light: #e1ba73;
  --jar-rule: #d7d0c5;
  --jar-muted: #6d675e;
  min-width: 0;
  overflow: clip;
  background: var(--jar-paper);
  color: var(--jar-ink);
  font-family: Anuphan, Tahoma, sans-serif;
}

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

.jar-xp :where(button, input, select, a, summary):focus-visible {
  outline: 2px solid var(--jar-gold-light);
  outline-offset: 4px;
}

.jar-xp :where(section[id]) {
  scroll-margin-top: 88px;
}

.jar-xp__skip {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--jar-white);
  color: var(--jar-ink);
  font-size: 13px;
}

.jar-xp__skip:focus {
  transform: translateY(0);
}

.jar-xp__eyebrow,
.jar-xp-card__code {
  margin: 0;
  color: var(--jar-gold);
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.jar-xp__hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(460px, 1.08fr);
  min-height: min(900px, 100svh);
  padding: clamp(176px, 16vh, 220px) clamp(38px, 7vw, 112px) 88px;
  overflow: hidden;
  background: var(--jar-charcoal);
  color: var(--jar-white);
}

.jar-xp__hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.23;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  content: '';
  pointer-events: none;
}

.jar-xp__hero::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.09);
  content: '';
}

.jar-xp__hero-copy,
.jar-xp__hero-stage {
  position: relative;
  z-index: 1;
}

.jar-xp__hero-copy {
  align-self: center;
  max-width: 660px;
  padding-right: clamp(28px, 5vw, 84px);
}

.jar-xp__hero h1 {
  max-width: 650px;
  margin: 23px 0 0;
  font-size: clamp(52px, 5.4vw, 84px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 1.02;
}

.jar-xp__hero-intro {
  max-width: 580px;
  margin: 29px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(14px, 1.25vw, 17px);
  font-weight: 300;
  line-height: 1.85;
}

.jar-xp__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-top: 35px;
}

.jar-xp__button {
  display: inline-flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 0;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.jar-xp__button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.jar-xp__button:not(:disabled):hover {
  transform: translateY(-2px);
}

.jar-xp__button--gold {
  border-color: var(--jar-gold);
  background: var(--jar-gold);
  color: #1c1b19;
}

.jar-xp__button--gold:not(:disabled):hover {
  background: var(--jar-gold-light);
}

.jar-xp__button--dark {
  background: var(--jar-ink);
  color: var(--jar-white);
}

.jar-xp__text-link {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  min-height: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  text-decoration: none;
}

.jar-xp__arrow {
  font-family: 'DM Mono', monospace;
  font-size: 18px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.jar-xp :where(.jar-xp__button, .jar-xp__text-link):hover .jar-xp__arrow {
  transform: translateX(4px);
}

.jar-xp__availability {
  max-width: 630px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  line-height: 1.75;
}

.jar-xp__hero-stage {
  display: grid;
  place-items: center;
  min-height: 560px;
}

.jar-xp__hero-stage::before,
.jar-xp__hero-stage::after {
  position: absolute;
  width: 44px;
  height: 44px;
  border-color: rgba(225, 186, 115, 0.6);
  content: '';
}

.jar-xp__hero-stage::before {
  top: 5%;
  left: 8%;
  border-top: 1px solid;
  border-left: 1px solid;
}

.jar-xp__hero-stage::after {
  right: 7%;
  bottom: 5%;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.jar-xp__stage-note {
  position: absolute;
  color: rgba(255, 255, 255, 0.46);
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.12em;
}

.jar-xp__stage-note--top {
  top: 7%;
  right: 9%;
}

.jar-xp__stage-note--bottom {
  bottom: 7%;
  left: 10%;
}

.jar-xp-visual {
  position: relative;
  width: min(350px, 70vw);
  height: 420px;
  isolation: isolate;
}

.jar-xp-visual--hero {
  transform: scale(1.08);
}

.jar-xp-visual__lid,
.jar-xp-visual__rim,
.jar-xp-visual__body,
.jar-xp-visual__base,
.jar-xp-visual__shadow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.jar-xp-visual__lid {
  z-index: 4;
  top: 54px;
  width: 246px;
  height: 92px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px 10px 24px 24px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.13), transparent 22%, rgba(255, 255, 255, 0.07) 74%, transparent),
    #171716;
  box-shadow: 0 18px 24px rgba(0, 0, 0, 0.22);
  transition: width 260ms ease, height 260ms ease, background 260ms ease, border-radius 260ms ease;
}

.jar-xp-visual__lid::before {
  position: absolute;
  top: -9px;
  right: 8px;
  left: 8px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: inherit;
  content: '';
}

.jar-xp-visual__rim {
  z-index: 3;
  top: 136px;
  width: 224px;
  height: 34px;
  border-radius: 0 0 50% 50%;
  background: rgba(210, 207, 198, 0.62);
  filter: blur(0.1px);
}

.jar-xp-visual__body {
  z-index: 2;
  top: 143px;
  display: grid;
  place-items: center;
  width: 232px;
  height: 210px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 20px 20px 48px 48px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.12) 22%, rgba(255, 255, 255, 0.32) 67%, rgba(255, 255, 255, 0.06)),
    rgba(233, 230, 221, 0.65);
  box-shadow: inset 0 -28px 45px rgba(87, 72, 49, 0.14), 0 25px 40px rgba(0, 0, 0, 0.22);
  transition: width 260ms ease, height 260ms ease, background 260ms ease, border-radius 260ms ease;
}

.jar-xp-visual__shine {
  position: absolute;
  top: 13px;
  bottom: 18px;
  left: 17px;
  width: 19%;
  border-radius: 60%;
  background: rgba(255, 255, 255, 0.22);
  filter: blur(7px);
}

.jar-xp-visual__label {
  position: relative;
  z-index: 2;
  max-width: 78%;
  overflow: hidden;
  color: #272522;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-align: center;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.jar-xp-visual__base {
  z-index: 1;
  top: 339px;
  width: 204px;
  height: 25px;
  border-radius: 50%;
  background: rgba(238, 235, 226, 0.88);
  box-shadow: 0 9px 18px rgba(0, 0, 0, 0.24);
  transition: width 260ms ease, top 260ms ease;
}

.jar-xp-visual__shadow {
  z-index: 0;
  top: 375px;
  width: 285px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.34);
  filter: blur(12px);
}

.jar-xp-visual[data-shape='low'] .jar-xp-visual__lid {
  top: 88px;
  width: 286px;
  height: 76px;
}

.jar-xp-visual[data-shape='low'] .jar-xp-visual__rim {
  top: 154px;
  width: 264px;
}

.jar-xp-visual[data-shape='low'] .jar-xp-visual__body {
  top: 160px;
  width: 274px;
  height: 166px;
  border-radius: 16px 16px 45px 45px;
}

.jar-xp-visual[data-shape='low'] .jar-xp-visual__base {
  top: 313px;
  width: 246px;
}

.jar-xp-visual[data-shape='soft'] .jar-xp-visual__lid {
  width: 224px;
  border-radius: 45px 45px 28px 28px;
}

.jar-xp-visual[data-shape='soft'] .jar-xp-visual__body {
  width: 250px;
  border-radius: 50px 50px 72px 72px;
}

.jar-xp-visual[data-body-tone='ivory'] .jar-xp-visual__body {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.06) 25%, rgba(255, 255, 255, 0.34) 72%, transparent),
    #ded7c7;
}

.jar-xp-visual[data-body-tone='amber'] .jar-xp-visual__body {
  background:
    linear-gradient(90deg, rgba(255, 226, 163, 0.42), rgba(61, 32, 9, 0.09) 27%, rgba(247, 191, 92, 0.18) 72%, rgba(51, 26, 7, 0.22)),
    #7b481f;
}

.jar-xp-visual[data-body-tone='amber'] .jar-xp-visual__label {
  color: #fff4dc;
}

.jar-xp-visual[data-lid-tone='gold'] .jar-xp-visual__lid {
  background:
    linear-gradient(90deg, #7f5525, #d8b16c 22%, #8b5f2e 49%, #e3c27f 72%, #6f471e),
    #b98843;
}

.jar-xp-visual[data-lid-tone='ivory'] .jar-xp-visual__lid {
  background:
    linear-gradient(90deg, #c9c1b2, #f1eee6 24%, #d8d0c1 67%, #f5f3ed),
    #e4dfd5;
}

.jar-xp-visual[data-decoration='plain'] .jar-xp-visual__label {
  opacity: 0.36;
}

.jar-xp-visual[data-decoration='foil'] .jar-xp-visual__label {
  color: #b9863c;
  text-shadow: 0 1px 0 rgba(255, 245, 203, 0.72);
}

.jar-xp-visual[data-decoration='screen'] .jar-xp-visual__body::after {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  width: 34px;
  transform: translateX(-180px) skewX(-10deg);
  background: rgba(255, 255, 255, 0.22);
  content: '';
  animation: jar-xp-screen-sweep 4.8s 0.9s cubic-bezier(0.42, 0, 0.2, 1) infinite;
  pointer-events: none;
}

@keyframes jar-xp-screen-sweep {
  0%, 58% { transform: translateX(-180px) skewX(-10deg); opacity: 0; }
  64% { opacity: 1; }
  86% { transform: translateX(180px) skewX(-10deg); opacity: 0.7; }
  100% { transform: translateX(180px) skewX(-10deg); opacity: 0; }
}

.jar-xp__rail {
  position: sticky;
  z-index: 12;
  top: 76px;
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  padding: 0 clamp(28px, 7vw, 112px);
  border-bottom: 1px solid var(--jar-rule);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.jar-xp__rail a {
  min-height: 62px;
  padding: 21px 18px;
  border-right: 1px solid #e7e1d7;
  color: #5e5951;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  text-align: center;
  text-decoration: none;
}

.jar-xp__rail a:first-child {
  border-left: 1px solid #e7e1d7;
}

.jar-xp__rail a:hover {
  background: #f3eee5;
  color: #8c6027;
}

.jar-xp__lab {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(460px, 1fr);
  min-height: 780px;
  background: var(--jar-white);
}

.jar-xp__lab-stage {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 760px;
  padding: 80px 54px;
  overflow: hidden;
  background:
    linear-gradient(rgba(76, 70, 61, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76, 70, 61, 0.07) 1px, transparent 1px),
    #e7e1d7;
  background-size: 48px 48px;
}

.jar-xp__lab-stage > .jar-xp__eyebrow {
  position: absolute;
  top: 50px;
  left: 54px;
  color: #87612f;
}

.jar-xp__lab-stage .jar-xp-visual {
  transform: scale(1.06);
}

.jar-xp__live {
  min-height: 36px;
  max-width: 520px;
  margin: 8px 0 0;
  color: #696259;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  line-height: 1.65;
  text-align: center;
}

.jar-xp__lab-panel {
  align-self: center;
  max-width: 720px;
  padding: 90px clamp(36px, 6vw, 96px);
}

.jar-xp__lab-panel > h2,
.jar-xp__section-heading h2,
.jar-xp__sample-copy h2,
.jar-xp__closing h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.jar-xp__lab-panel > p {
  margin: 20px 0 0;
  color: var(--jar-muted);
  font-size: 14px;
  line-height: 1.75;
}

.jar-xp__lab-controls {
  display: grid;
  gap: 28px;
  margin-top: 39px;
}

.jar-xp__option-group {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.jar-xp__option-group legend,
.jar-xp__logo-field > span,
.jar-xp__select-label > span {
  margin-bottom: 9px;
  color: #5e574f;
  font-size: 11px;
  font-weight: 500;
}

.jar-xp__option-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.jar-xp__option-grid input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.jar-xp__option-grid label {
  display: grid;
  min-height: 45px;
  padding: 8px 10px;
  place-items: center;
  border: 1px solid #cfc8bd;
  color: #5a554e;
  font-size: 11px;
  text-align: center;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.jar-xp__option-grid input:checked + label {
  border-color: var(--jar-ink);
  background: var(--jar-ink);
  color: var(--jar-white);
}

.jar-xp__option-grid input:focus-visible + label {
  outline: 2px solid var(--jar-gold);
  outline-offset: 3px;
}

.jar-xp__logo-field {
  display: grid;
}

.jar-xp__logo-field input,
.jar-xp__select-label select {
  width: 100%;
  height: 47px;
  padding: 0 13px;
  border: 1px solid #cfc8bd;
  border-radius: 0;
  background: var(--jar-white);
  color: var(--jar-ink);
  font: inherit;
  font-size: 12px;
}

.jar-xp__logo-field small {
  margin-top: 7px;
  color: #8a8379;
  font-size: 9px;
  line-height: 1.6;
}

.jar-xp__summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 2px 0 0;
  border-top: 1px solid var(--jar-rule);
  border-left: 1px solid var(--jar-rule);
}

.jar-xp__summary > div {
  padding: 13px 15px;
  border-right: 1px solid var(--jar-rule);
  border-bottom: 1px solid var(--jar-rule);
}

.jar-xp__summary dt {
  color: #8a8278;
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
}

.jar-xp__summary dd {
  margin: 5px 0 0;
  font-size: 12px;
  font-weight: 500;
}

.jar-xp__section-heading {
  display: grid;
  grid-template-columns: minmax(200px, 0.4fr) minmax(420px, 1fr);
  gap: 36px clamp(52px, 9vw, 148px);
  align-items: start;
}

.jar-xp__section-heading .jar-xp__eyebrow {
  padding-top: 10px;
}

.jar-xp__section-copy {
  grid-column: 2;
  max-width: 700px;
  margin: -12px 0 0;
  color: var(--jar-muted);
  font-size: 13px;
  line-height: 1.8;
}

.jar-xp__finder,
.jar-xp__compare,
.jar-xp__proof,
.jar-xp__cases,
.jar-xp__faq {
  padding: 112px clamp(38px, 7vw, 112px);
}

.jar-xp__finder {
  background: var(--jar-paper);
}

.jar-xp__finder-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 320px)) 1fr;
  gap: 16px;
  align-items: end;
  margin-top: 60px;
  padding: 24px;
  border: 1px solid var(--jar-rule);
  background: rgba(255, 255, 255, 0.46);
}

.jar-xp__select-label {
  display: grid;
}

.jar-xp__finder-count {
  justify-self: end;
  margin: 0 0 13px;
  color: #826138;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
}

.jar-xp__concept-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1px;
  background: #d5cec3;
}

.jar-xp-card {
  display: grid;
  grid-template-rows: 220px 1fr auto;
  min-height: 500px;
  padding: 30px;
  background: #faf8f4;
}

.jar-xp-card[hidden] {
  display: none;
}

.jar-xp-card__copy h3 {
  margin: 13px 0 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.jar-xp-card__copy > p:last-child {
  margin: 13px 0 0;
  color: var(--jar-muted);
  font-size: 12px;
  line-height: 1.75;
}

.jar-xp-card__actions {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px 9px;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid #ddd6cc;
}

.jar-xp-card__actions input {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: var(--jar-gold);
}

.jar-xp-card__actions label {
  color: #5f5951;
  font-size: 10px;
}

.jar-xp-card__actions input:disabled + label {
  opacity: 0.42;
}

.jar-xp-concept-visual {
  position: relative;
  display: block;
  width: 150px;
  height: 190px;
  margin: 0 auto;
}

.jar-xp-concept-visual i {
  position: absolute;
  left: 50%;
  display: block;
  transform: translateX(-50%);
}

.jar-xp-concept-visual__lid {
  z-index: 2;
  top: 26px;
  width: 105px;
  height: 46px;
  border-radius: 5px 5px 12px 12px;
  background: #b58a4e;
  box-shadow: inset 15px 0 22px rgba(255, 255, 255, 0.19);
}

.jar-xp-concept-visual__body {
  top: 66px;
  width: 113px;
  height: 101px;
  border: 1px solid #d2cabd;
  border-radius: 8px 8px 24px 24px;
  background: linear-gradient(90deg, #f5f2eb, #ddd5c7 37%, #f7f4ee 72%, #d2c9b9);
  box-shadow: 0 16px 23px rgba(57, 47, 35, 0.16);
}

.jar-xp-concept-visual--low .jar-xp-concept-visual__lid {
  top: 46px;
  width: 125px;
  height: 38px;
}

.jar-xp-concept-visual--low .jar-xp-concept-visual__body {
  top: 80px;
  width: 130px;
  height: 76px;
}

.jar-xp-concept-visual--soft .jar-xp-concept-visual__lid {
  width: 98px;
  border-radius: 22px 22px 13px 13px;
}

.jar-xp-concept-visual--soft .jar-xp-concept-visual__body {
  width: 118px;
  border-radius: 26px 26px 35px 35px;
}

.jar-xp__compare {
  background: var(--jar-white);
}

.jar-xp__compare-content {
  margin-top: 57px;
}

.jar-xp__table-scroll {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--jar-rule);
}

.jar-xp__compare table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  table-layout: fixed;
}

.jar-xp__compare th,
.jar-xp__compare td {
  min-width: 185px;
  padding: 23px;
  border-right: 1px solid var(--jar-rule);
  border-bottom: 1px solid var(--jar-rule);
  font-size: 12px;
  line-height: 1.75;
  text-align: left;
  vertical-align: top;
}

.jar-xp__compare thead th {
  background: var(--jar-ink);
  color: var(--jar-white);
  font-size: 14px;
  font-weight: 500;
}

.jar-xp__compare th:first-child {
  width: 155px;
  color: #9b713b;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.jar-xp__compare tbody tr:last-child :is(th, td) {
  border-bottom: 0;
}

.jar-xp__empty {
  margin: 0;
  padding: 28px;
  border: 1px dashed #bdb4a7;
  color: #766f65;
  font-size: 12px;
  line-height: 1.7;
}

.jar-xp__samples {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(430px, 1.1fr);
  gap: clamp(60px, 10vw, 170px);
  padding: 112px clamp(38px, 7vw, 112px);
  background: var(--jar-gold);
  color: #1e1c19;
}

.jar-xp__sample-copy .jar-xp__eyebrow {
  color: #68471e;
}

.jar-xp__sample-copy > p:not(.jar-xp__eyebrow) {
  max-width: 580px;
  margin: 22px 0 0;
  font-size: 13px;
  line-height: 1.8;
}

.jar-xp__sample-copy .jar-xp__availability {
  color: rgba(30, 28, 25, 0.62);
  font-size: 10px;
}

.jar-xp__sample-panel {
  align-self: center;
  padding: 34px;
  background: var(--jar-paper);
}

.jar-xp__sample-selection {
  display: grid;
  gap: 8px;
}

.jar-xp__sample-chip {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 56px;
  padding: 9px 11px;
  border-bottom: 1px solid var(--jar-rule);
}

.jar-xp__sample-chip > span {
  color: #a4783e;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
}

.jar-xp__sample-chip strong {
  font-size: 12px;
  font-weight: 500;
}

.jar-xp__sample-chip button {
  padding: 8px;
  border: 0;
  background: transparent;
  color: #7a7167;
  font: inherit;
  font-size: 9px;
  text-decoration: underline;
}

.jar-xp__sample-panel > .jar-xp__button {
  width: 100%;
  margin-top: 23px;
}

.jar-xp__proof {
  background: #282725;
  color: var(--jar-white);
}

.jar-xp__proof .jar-xp__section-copy {
  color: rgba(255, 255, 255, 0.64);
}

.jar-xp__proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 60px;
  background: rgba(255, 255, 255, 0.13);
}

.jar-xp-proof-card {
  padding: 36px;
  background: #282725;
}

.jar-xp-proof-card > span {
  color: var(--jar-gold);
  font-family: 'DM Mono', monospace;
  font-size: 10px;
}

.jar-xp-proof-card h3 {
  margin: 27px 0 0;
  font-size: 21px;
  font-weight: 550;
}

.jar-xp-proof-card p {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.8;
}

.jar-xp-proof-card small {
  display: block;
  margin-top: 26px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--jar-gold-light);
  font-family: 'DM Mono', monospace;
  font-size: 8px;
}

.jar-xp__cases {
  background: var(--jar-paper);
}

.jar-xp__case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.jar-xp-case-card {
  padding: 35px;
  border: 1px solid var(--jar-rule);
  background: var(--jar-white);
}

.jar-xp-case-card img {
  width: calc(100% + 70px);
  max-width: none;
  height: 340px;
  margin: -35px -35px 30px;
  object-fit: cover;
}

.jar-xp-case-card h3 {
  margin: 12px 0 0;
  font-size: 28px;
  letter-spacing: -0.035em;
}

.jar-xp-case-card dl {
  margin: 26px 0 0;
  border-top: 1px solid var(--jar-rule);
}

.jar-xp-case-card dl > div {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--jar-rule);
}

.jar-xp-case-card dt {
  color: #9b713b;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
}

.jar-xp-case-card dd {
  margin: 0;
  color: var(--jar-muted);
  font-size: 12px;
  line-height: 1.75;
}

.jar-xp__faq {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(60px, 10vw, 160px);
  background: var(--jar-white);
}

.jar-xp__faq .jar-xp__section-heading {
  display: block;
}

.jar-xp__faq .jar-xp__section-heading h2 {
  margin-top: 18px;
}

.jar-xp__faq-list {
  border-top: 1px solid #bdb4a7;
}

.jar-xp__faq details {
  border-bottom: 1px solid var(--jar-rule);
}

.jar-xp__faq summary {
  position: relative;
  padding: 23px 42px 23px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  list-style: none;
}

.jar-xp__faq summary::-webkit-details-marker {
  display: none;
}

.jar-xp__faq summary::after {
  position: absolute;
  top: 20px;
  right: 4px;
  color: var(--jar-gold);
  content: '+';
  font-family: 'DM Mono', monospace;
  font-size: 21px;
}

.jar-xp__faq details[open] summary::after {
  content: '−';
}

.jar-xp__faq details p {
  margin: -4px 0 24px;
  padding-right: 34px;
  color: var(--jar-muted);
  font-size: 12px;
  line-height: 1.8;
}

.jar-xp__closing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  align-items: end;
  padding: 82px clamp(38px, 7vw, 112px);
  background: var(--jar-charcoal);
  color: var(--jar-white);
}

.jar-xp__closing h2 {
  max-width: 880px;
  margin-top: 15px;
  font-size: clamp(31px, 3.5vw, 52px);
}

.jar-xp__visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 1120px) {
  .jar-xp__hero {
    grid-template-columns: 1fr 0.82fr;
    padding-right: 48px;
    padding-left: 48px;
  }

  .jar-xp__hero h1 {
    font-size: clamp(46px, 5.5vw, 68px);
  }

  .jar-xp__lab {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .jar-xp__lab-panel {
    padding-right: 48px;
    padding-left: 48px;
  }

  .jar-xp__concept-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jar-xp__proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {
  .jar-xp__hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 126px 25px 70px;
  }

  .jar-xp__hero::after {
    content: none;
  }

  .jar-xp__hero-copy {
    max-width: none;
    padding-right: 0;
  }

  .jar-xp__hero h1 {
    font-size: clamp(42px, 11.5vw, 58px);
  }

  .jar-xp__hero-intro {
    font-size: 13px;
  }

  .jar-xp__hero-stage {
    min-height: 465px;
    margin-top: 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
  }

  .jar-xp-visual--hero {
    transform: scale(0.92);
  }

  .jar-xp__stage-note--top {
    top: 4%;
  }

  .jar-xp__stage-note--bottom {
    bottom: 2%;
  }

  .jar-xp__rail {
    top: 68px;
    grid-template-columns: repeat(4, minmax(130px, 1fr));
    padding: 0 20px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
  }

  .jar-xp__lab {
    grid-template-columns: 1fr;
  }

  .jar-xp__lab-stage {
    min-height: 600px;
    padding: 80px 25px 55px;
  }

  .jar-xp__lab-stage > .jar-xp__eyebrow {
    top: 36px;
    left: 25px;
  }

  .jar-xp__lab-panel {
    max-width: none;
    padding: 75px 25px;
  }

  .jar-xp__section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .jar-xp__section-heading .jar-xp__eyebrow {
    padding-top: 0;
  }

  .jar-xp__section-copy {
    grid-column: auto;
    margin-top: 0;
  }

  .jar-xp__finder,
  .jar-xp__compare,
  .jar-xp__proof,
  .jar-xp__cases,
  .jar-xp__faq {
    padding: 76px 25px;
  }

  .jar-xp__finder-controls {
    grid-template-columns: 1fr;
    margin-top: 42px;
    padding: 18px;
  }

  .jar-xp__finder-count {
    justify-self: start;
    margin: 5px 0 0;
  }

  .jar-xp__samples {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 76px 25px;
  }

  .jar-xp__sample-panel {
    padding: 24px;
  }

  .jar-xp__proof-grid,
  .jar-xp__case-grid {
    grid-template-columns: 1fr;
  }

  .jar-xp__faq {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .jar-xp__closing {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 67px 25px;
  }

  .jar-xp__closing .jar-xp__button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .jar-xp__hero-actions {
    align-items: stretch;
    gap: 14px;
  }

  .jar-xp__hero-actions > * {
    width: 100%;
  }

  .jar-xp__text-link {
    justify-content: space-between;
  }

  .jar-xp__availability {
    margin-top: 22px;
  }

  .jar-xp__hero-stage {
    min-height: 405px;
  }

  .jar-xp-visual--hero {
    transform: scale(0.78);
  }

  .jar-xp__lab-stage {
    min-height: 520px;
  }

  .jar-xp__lab-stage .jar-xp-visual {
    transform: scale(0.84);
  }

  .jar-xp__lab-panel > h2,
  .jar-xp__section-heading h2,
  .jar-xp__sample-copy h2 {
    font-size: 35px;
  }

  .jar-xp__option-grid {
    grid-template-columns: 1fr;
  }

  .jar-xp__summary {
    grid-template-columns: 1fr;
  }

  .jar-xp__concept-grid {
    grid-template-columns: 1fr;
  }

  .jar-xp-card {
    min-height: 470px;
  }

  .jar-xp__sample-chip {
    grid-template-columns: 28px 1fr auto;
  }
}

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