@import url("https://use.typekit.net/nci2fvj.css");

:root {
  --page-bg: #ffffff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --surface-stroke: rgba(0, 0, 0, 0.08);
  --text-primary: #000000;
  --text-secondary: rgba(0, 0, 0, 0.66);
  --accent: #c7d200;
  --accent-soft: rgba(199, 210, 0, 0.2);
  --shadow-xl: 0 34px 96px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 18px 40px rgba(0, 0, 0, 0.1);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --image-focus: 58% center;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: scandia-line-web, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-primary);
  /*background:
    radial-gradient(circle at top left, rgba(199, 210, 0, 0.16), transparent 34%),
    radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.96), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfbf7 46%, #f6f6f1 100%);*/
}

img {
  max-width: 100%;
  user-select: none;
  -webkit-user-drag: none;
}

button {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: hidden;
    margin-top: 60px;
}

.hero {
  position: relative;
  /*! width: min(1320px, calc(100% - 40px)); */
  margin: 0 auto;
  /*! padding: 72px 0 92px; */
  width: 100%;
  max-width: 1000px;
}

.hero__glow {
  position: absolute;
  inset: auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.72;
  pointer-events: none;
}

.hero__glow--left {
  top: 180px;
  left: -140px;
  background: radial-gradient(circle, rgba(199, 210, 0, 0.2) 0%, rgba(199, 210, 0, 0) 72%);
}

.hero__glow--right {
  right: -110px;
  bottom: 80px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0) 70%);
}

.hero__copy {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  margin: 0 auto 36px;
  text-align: center;
}

.hero__eyebrow {
  margin: 0 0 16px;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.65rem, 5.8vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-family: "Font", "Iowan Old Style", Georgia, serif;
  font-weight: 400;
}

.hero__subcopy {
  margin: 22px auto 0;
  max-width: 700px;
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  line-height: 1.6;
  color: var(--text-secondary);
}

.comparison-card {
  position: relative;
  z-index: 1;
  /*! padding: 24px; */
  /*! border: 1px solid var(--surface-stroke); */
  /*! border-radius: var(--radius-xl); */
  /*! background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.68) 100%); */
  /*! backdrop-filter: blur(22px); */
  /*! box-shadow: var(--shadow-xl); */
}

.comparison-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-xl) - 1px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
  pointer-events: none;
  display: none;
}

.comparison-card__topline,
.comparison-card__footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.comparison-card__topline {
  gap: 16px;
  margin-bottom: 20px;
  padding: 0 4px;
  display: none;
}

.comparison-card__topline p,
.comparison-card__topline span {
  margin: 0;
  color: var(--text-secondary);
}

.comparison-card__topline p {
  font-size: 1rem;
  font-weight: 600;
}

.comparison-card__topline span {
  padding: 10px 14px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 600;
}

.comparison {
  position: relative;
  aspect-ratio: 2441 / 1620;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #efeff1;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
  touch-action: none;
  cursor: ew-resize;
}

.comparison::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: inherit;
  pointer-events: none;
  z-index: 6;
}

.comparison__image,
.comparison__after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.comparison__image {
  display: block;
  object-fit: cover;
  object-position: var(--image-focus);
}

.comparison__after {
  width: 100%;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
  z-index: 2;
}

.comparison__scrim {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 22%;
  z-index: 3;
  pointer-events: none;
}

.comparison__scrim--left {
  left: 0;
  background: linear-gradient(90deg, rgba(6, 12, 24, 0.14), rgba(6, 12, 24, 0));
}

.comparison__scrim--right {
  right: 0;
  background: linear-gradient(270deg, rgba(6, 12, 24, 0.14), rgba(6, 12, 24, 0));
}

.comparison__badge {
  position: absolute;
  top: 22px;
  z-index: 5;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-shadow: none;
}

.comparison__badge--after {
  left: 22px;
  border-color: rgba(199, 210, 0, 0.22);
  background: rgba(199, 210, 0, 0.9);
  color: #000000;
}

.comparison__badge--before {
  right: 22px;
  background: rgba(0, 0, 0, 0.28);
}

.comparison__handle {
  position: absolute;
  inset: 0 auto 0 var(--position);
  width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  z-index: 7;
  transform: translateX(-50%);
  cursor: ew-resize;
  outline: none;
}

.comparison__line {
  position: absolute;
  inset: 0 auto 0 50%;
  width: 3px;
  transform: translateX(-50%);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.42)),
    linear-gradient(180deg, rgba(70, 83, 100, 0.18), rgba(70, 83, 100, 0.02));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 0 26px rgba(255, 255, 255, 0.28);
}

.comparison__knob {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 245, 249, 0.74));
  box-shadow:
    0 18px 44px rgba(15, 23, 42, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    inset 0 -1px 0 rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(18px) saturate(1.15);
  transform: translate(-50%, -50%);
}

.comparison__arrow {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-top: 1.75px solid rgba(59, 72, 89, 0.72);
  border-right: 1.75px solid rgba(59, 72, 89, 0.72);
}

.comparison__arrow--left {
  transform: rotate(-135deg);
}

.comparison__arrow--right {
  transform: rotate(45deg);
}

.comparison__grip {
  width: 4px;
  height: 24px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(59, 72, 89, 0.18), rgba(59, 72, 89, 0.52), rgba(59, 72, 89, 0.18));
  box-shadow:
    6px 0 0 rgba(59, 72, 89, 0.12),
    -6px 0 0 rgba(59, 72, 89, 0.12);
}

.comparison__hint {
  position: absolute;
  top: calc(50% + 68px);
  left: 50%;
  min-width: 102px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.78);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transform: translateX(-50%);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.16);
  transition: opacity 260ms ease, transform 260ms ease;
}

.comparison[data-user-interacted="true"] .comparison__hint {
  opacity: 0;
  transform: translate(-50%, 10px);
}

.comparison__handle:focus-visible .comparison__knob {
  box-shadow:
    0 18px 44px rgba(15, 23, 42, 0.18),
    0 0 0 6px var(--accent-soft);
}

.comparison.is-dragging .comparison__knob {
  transform: translate(-50%, -50%) scale(1.02);
}

.comparison-card__footer {
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
  padding: 4px 4px 0;
}

.comparison-card__footer .buttons {float: right;margin: inherit;margin: 0 auto;width: 100%;text-align: right;display: block;}
.comparison-card__footer .buttons a {margin: 0 auto;background: #c7d200;color: #fff;text-transform: uppercase;line-height: 60px;padding: 0 30px;border-radius: 50px;}
.comparison-card__footer .buttons a .menu-circle { background-color: #e0e673; }
.comparison-card__footer .buttons a:hover { background-color: #d7e210; }
.comparison-card__footer .buttons a:hover .menu-circle { background-color: #c7d200; }

.comparison-card__stat {
  min-width: 130px;
  padding: 8px 4px;
  text-align: center;
    
}

.comparison-card__divider {
  width: 1px;
  height: 42px;
  background: rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  flex: 0 0 auto;
}

.comparison-card__metric-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.55);
}

.comparison-card__footer strong {
  display: block;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

@media (max-width: 920px) {
  .hero {
    width: min(100% - 28px, 1320px);
    padding: 52px 0 72px;
    padding-top: 0;
      padding-bottom: 10px;
  }

  .comparison-card {
    padding: 0;
    border-radius: 30px;
  }

  .comparison-card__footer {
    gap: 12px;
  }

  .comparison-card__divider {
    height: 34px;
  }
}

@media (max-width: 700px) {
  :root {
    --image-focus: 58% center;
  }

  .comparison__image {
    object-position: 58% 24%;
    transform: scale(1.14);
    transform-origin: 58% 24%;
  }

  .hero h1 {
    letter-spacing: -0.05em;
  }

  .hero__subcopy {
    font-size: 1rem;
  }

  .comparison-card__topline {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 16px;
  }

  .comparison {
    aspect-ratio: 4 / 6;
  }

  .comparison__badge {
    top: 16px;
    padding: 9px 14px;
    font-size: 0.78rem;
  }

  .comparison__badge--after {
    left: 16px;
  }

  .comparison__badge--before {
    right: 16px;
  }

  .comparison__knob {
    gap: 6px;
    padding: 9px 10px;
  }

  .comparison__arrow {
    width: 7px;
    height: 7px;
  }

  .comparison__grip {
    width: 3px;
    height: 18px;
    box-shadow:
      5px 0 0 rgba(59, 72, 89, 0.12),
      -5px 0 0 rgba(59, 72, 89, 0.12);
  }

  .comparison__hint {
    display: none;
  }

  .comparison-card__footer {
    justify-content: unset;
    display: table;
    /*! transform: translate(-50%,-0); */
    /*! left: 50%; */
  }

  .comparison-card__stat {
    text-align: left;
    min-width: 0;
    width: 50%;
    float: left;
  }
    
    
.comparison-card__footer .buttons {  margin-top: 30px; text-align: center; }
.comparison-card__footer .buttons a {  padding: 15px;text-align: center;line-height: 29px;white-space: nowrap;/*! left: 50%; *//*! transform: translate(-57%,-0); */}
.comparison-card__footer .buttons a .menu-circle {  /*! display: none; */}
.comparison-card__footer .buttons a:hover {  }
.comparison-card__footer .buttons a:hover .menu-circle {  }
.comparison-card__footer .buttons a span {  font-size: 16px;}
    .page-shell { margin-top: 5px;}
    .comparison-card__metric-label { font-size: 14px; }
}
