body.ipad-landscape-scroll-offset .page-shell {
  min-height: calc(100vh + 100px);
}
:root {
  --brand-blue: #0b78c4;
  --brand-blue-dark: #0f5d98;
  --brand-green: #7cbc2a;
  --brand-green-dark: #5d9918;
  --surface: rgba(255, 255, 255, 0.95);
  --surface-line: rgba(8, 96, 163, 0.12);
  --text-main: #ffffff;
  --text-dark: #0d3555;
  --muted: #8ba2b5;
  --shadow-soft: 0 28px 60px rgba(22, 73, 18, 0.18);
  --shadow-card: 0 18px 36px rgba(13, 53, 85, 0.14);
  --radius-xl: 18px;
  --radius-lg: 14px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: Bahnschrift, "Aptos", "Segoe UI", sans-serif;
  color: var(--text-main);
  background:
    linear-gradient(180deg, rgba(124, 188, 42, 0.74), rgba(104, 167, 34, 0.78)),
    url("assets/leaf-bg.jpg") center / cover no-repeat fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background:
    linear-gradient(122deg, rgba(255, 255, 255, 0.1), transparent 28%),
    linear-gradient(18deg, rgba(255, 255, 255, 0.07), transparent 42%);
}

.page-shell {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.topbar {
  background: rgba(255, 255, 255, 0.98);
  padding: 18px 24px;
}

.topbar-inner {
  width: min(1120px, calc(100% - 12px));
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo {
  width: clamp(126px, 18vw, 176px);
  height: auto;
  display: block;
}

.claim-mark {
  width: clamp(154px, 23vw, 200px);
  height: auto;
  display: block;
  margin-top: 4px;
}

.app {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 10px 0 56px;
}

.copy-block {
  padding: 0 2px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

h1,
.panel-title,
.card-title {
  margin: 0;
  font-weight: 300;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  text-shadow: 0 8px 28px rgba(42, 97, 16, 0.22);
}

.pill-button,
.primary-button {
  border: 0;
  background: linear-gradient(180deg, #0e90dd, var(--brand-blue));
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.pill-button:hover,
.primary-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(11, 120, 196, 0.22);
}

.pill-button:focus-visible,
.primary-button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

.pill-button {
  border-radius: 999px;
  padding: 14px 28px;
}

.primary-button {
  border-radius: 4px;
  padding: 14px 26px;
  min-width: 146px;
}

.hidden {
  visibility: hidden;
  pointer-events: none;
}

.view {
  display: none;
}

.view.is-active {
  display: block;
  animation: fade-up 380ms ease both;
}

.selection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 44px;
}

.selection-card,
.result-panel {
  background: var(--surface);
  color: var(--text-dark);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.selection-card {
  padding-bottom: 26px;
}

.card-title,
.panel-title {
  font-size: clamp(1.25rem, 2.1vw, 1.75rem);
  color: var(--brand-blue);
  padding: 18px 22px 12px;
  border-bottom: 1px solid var(--surface-line);
}

.product-stage {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(14px, 2vw, 26px);
  align-items: center;
  padding: 28px 22px 18px;
}

.product {
  display: grid;
  justify-items: center;
  gap: 16px;
}

.product-label {
  margin: 0;
  width: 100%;
  padding-top: 12px;
  border-top: 2px solid rgba(11, 120, 196, 0.8);
  font-size: 0.95rem;
  color: var(--brand-blue);
  text-align: center;
}

.product-visual {
  width: min(220px, 100%);
  min-height: 250px;
  display: grid;
  place-items: center;
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 14px 16px rgba(13, 53, 85, 0.14));
}

.product-left .product-image {
  width: 92%;
}

.product-right .product-image {
  width: 95%;
}

.versus {
  margin: 0;
  align-self: center;
  color: #1191d6;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 700;
  text-transform: lowercase;
}

.compare-button,
.card-footnote {
  display: block;
  margin-inline: auto;
}

.card-footnote,
.panel-footnote {
  margin: 18px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

.result-panel {
  margin-top: 34px;
  padding-bottom: 26px;
}

.chart-layout {
  padding: 24px 24px 6px;
}

.chart-wrap {
  position: relative;
  min-height: 400px;
}

.chart {
  --axis-min: 0;
  --axis-max: 100;
  --value-left: 0;
  --value-right: 0;
  position: relative;
  min-height: 400px;
  padding: 10px 12px 68px 64px;
}

.chart::before {
  content: "";
  position: absolute;
  left: 54px;
  bottom: 68px;
  width: 2px;
  top: 14px;
  background: #2ea8ea;
}

.chart::after {
  content: "";
  position: absolute;
  left: 54px;
  right: 10px;
  bottom: 68px;
  height: 2px;
  background: #2ea8ea;
}

.axis-arrow {
  position: absolute;
  left: 48px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-top: 2px solid #2ea8ea;
  border-left: 2px solid #2ea8ea;
  transform: rotate(45deg);
	display: none !important;
}

.ticks {
  position: absolute;
  inset: 14px auto 68px 0;
  width: 54px;
}

.tick {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateY(50%);
  color: var(--brand-blue);
  font-size: 0.82rem;
}

.tick::after {
  content: "";
  display: block;
  width: 12px;
  height: 2px;
  background: #2ea8ea;
	margin-top: 1px !important;
}

.bars {
  position: absolute;
  inset: 10px 10px 68px 64px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  gap: clamp(36px, 7vw, 140px);
}

.bar-group {
  position: relative;
  height: 100%;
  display: grid;
  align-items: end;
}

.bar {
  position: relative;
  width: min(100%, 240px);
  margin: 0 auto;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px;
  min-height: 44px;
  box-shadow: 0 20px 36px rgba(18, 77, 36, 0.12);
  transform-origin: bottom;
  animation: grow-bar 1200ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.bar-left {
  background: #076fb7;
}

.bar-right {
  background: #7bbf25;
}

.bar-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -40px;
  text-align: center;
  color: var(--brand-blue);
  font-size: 0.92rem;
}

.chart-callout {
  position: absolute;
  top: 115px;
  left: 59%;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
  animation: fade-callout 2800ms ease both;
}

.arrow-badge {
  width: 240px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0 8%, var(--brand-green) 8% 72%, transparent 72% 100%);
  position: relative;
  transform: rotate(42deg) translateY(42px);
  flex: none;
}

.arrow-badge::after {
  content: "";
  position: absolute;
  right: 34px;
  top: -14px;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-left: 34px solid var(--brand-green);
}

.improvement-text {
  margin: 0px;
  color: var(--brand-green-dark);
  text-align: center;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.05;
  text-shadow: 0 10px 24px rgba(118, 170, 42, 0.16);
  margin-top: -71px !important;
  margin-left: -76px !important;
}

#close-result {
  display: block;
  margin: 20px auto 0;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes grow-bar {
  from {
    transform: scaleY(0.02);
    opacity: 0.4;
  }

  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

@media (max-width: 960px) {
  .selection-grid {
    grid-template-columns: 1fr;
  }

  .chart-wrap {
    min-height: 360px;
  }

  .chart-callout {
    left: 59%;
    top: 137px;
  }
}

@media (max-width: 720px) {
  .topbar {
    padding: 16px 18px;
  }

  .topbar-inner {
    align-items: center;
  }

  .claim-mark {
    width: 154px;
  }

  .app {
    width: min(100%, calc(100% - 16px));
    padding-top: 18px;
  }

  .hero-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .pill-button {
    padding: 12px 20px;
  }

  .selection-grid {
    margin-top: 24px;
  }

  .product-stage {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-visual,
  .product-image {
    min-height: 200px;
    height: 200px;
  }

  .versus {
    justify-self: center;
  }

  .chart {
    min-height: 320px;
    padding-left: 54px;
  }

  .bars {
    gap: 24px;
  }

  .bar {
    font-size: 0.82rem;
  }

  .chart-callout {
    top: 34px;
    left: 54%;
    gap: 10px;
  }

  .arrow-badge {
    width: 228px;
    height: 18px;
    transform: rotate(42deg) translateY(30px);
  }

  .arrow-badge::after {
    right: -3px;
    top: -11px;
    border-top-width: 18px;
    border-bottom-width: 18px;
    border-left-width: 26px;
  }

  .improvement-text {
    font-size: 1.35rem;
  }
}
.pill-button {
  border-radius: 7px !important;
  padding: 14px 25px !important;
  width: 185px !important;
  margin-top: 66px !important;
  margin-left: -1px !important;
}

h6,
.panel-title,
.card-title {
  margin: 0;
  font-weight: 300;
}

h6 {
  font-size: clamp(2rem, 4.5vw, 2.6rem);
  text-shadow: 0 8px 28px rgba(42, 97, 16, 0.22);
}

.pill-button {
  display: none !important;
}

@keyframes fade-callout {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}










@media only screen
  and (orientation: landscape)
  and (hover: none)
  and (pointer: coarse)
  and (min-width: 1024px)
  and (max-width: 1366px) {

  .topbar {
    padding: 12px 22px;
  }

  .topbar-inner {
    gap: 18px;
  }

  .brand-logo {
    width: 150px;
  }

  .claim-mark {
    width: 220px;
  }

  .app {
    padding: 6px 0 28px;
  }

  .copy-block {
    padding: 0 8px;
  }

  .eyebrow {
    margin-bottom: 8px;
  }

  h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1.05;
  }

  .selection-grid {
    margin-top: 18px;
    gap: 16px;
  }

  .selection-card,
  .result-panel {
    border-radius: 14px;
  }

  .card-title,
  .panel-title {
    padding: 14px 18px 10px;
    font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  }

  .product-stage {
    padding: 18px 18px 10px;
    gap: 14px;
  }

  .product {
    gap: 10px;
  }

  .product-visual {
    width: min(170px, 100%);
    min-height: 180px;
  }

  .product-image {
    height: 180px;
  }

  .product-left .product-image {
    width: 84%;
  }

  .product-right .product-image {
    width: 88%;
  }

  .product-label {
    padding-top: 8px;
    font-size: 0.82rem;
  }

  .versus {
    font-size: 1.25rem;
  }

  .compare-button {
    margin-top: 6px;
  }

  .primary-button {
    padding: 12px 22px;
    min-width: 130px;
  }

  .card-footnote,
  .panel-footnote {
    margin-top: 12px;
    font-size: 0.78rem;
  }

  .result-panel {
    margin-top: 18px;
    padding-bottom: 18px;
  }

  .chart-layout {
    padding: 16px 18px 2px;
  }

  .chart-wrap,
  .chart {
    min-height: 300px;
  }

  .chart {
    padding: 6px 8px 54px 56px;
  }

  .chart::before {
    left: 46px;
    bottom: 54px;
    top: 10px;
  }

  .chart::after {
    left: 46px;
    bottom: 54px;
  }

  .axis-arrow {
    left: 40px;
    top: 4px;
  }

  .ticks {
    inset: 10px auto 54px 0;
    width: 46px;
  }

  .tick {
    font-size: 0.72rem;
  }

  .bars {
    inset: 6px 8px 54px 56px;
    gap: 34px;
  }

  .bar {
    width: min(100%, 190px);
    font-size: 0.78rem;
    padding: 10px;
    min-height: 36px;
  }

  .bar-label {
    bottom: -32px;
    font-size: 0.82rem;
  }

  .chart-callout {
    top: 80px !important;
    left: 57%;
    gap: 12px;
  }

  .arrow-badge {
    width: 220px;
    height: 18px;
    transform: rotate(42deg) translateY(32px);
  }

  .arrow-badge::after {
    border-top-width: 20px;
    border-bottom-width: 20px;
    border-left-width: 28px;
  }

  .improvement-text {
    font-size: 1.9rem;
  }

  #close-result {
    margin-top: 12px;
  }
}
div.tick:nth-child(1) {
  bottom: 1.5px !important;
}






.brand-logo {
  height: 52px !important;
}

.claim-mark {
  width: Auto !important;
  height: 43px !important;
}