/** Shopify CDN: Minification failed

Line 1776:0 Expected "}" to go with "{"

**/
body {
  margin: 0;
}

.ee-funnel,
.ee-funnel * {
  box-sizing: border-box;
  font-family: 'Circular Std', sans-serif !important;
  /* font-weight: bold !important; */
}

.ee-funnel {
  --ee-black: #000000;
  --ee-ink: #1B1B1B;
  --ee-muted: #767676;
  --ee-line: #CCCCCC;
  --ee-panel: #f1f0ef;
  --ee-yellow: #FFC001;
  --ee-orange: #ff7100;
  --ee-red: #ff291b;
  --ee-red-soft: #FFEFEE;
  --ee-green: #00a86b;
  --ee-amber: #dc9a00;
  --ee-card-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --ee-gray-bg: #f5f5f5;
  min-height: 100vh;
  color: var(--ee-ink);
  background: #fff;
  font-family: Jost, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.4;
}

.ee-funnel button,
.ee-funnel input,
.ee-funnel select {
  font: inherit;
}

.ee-funnel button,
.ee-funnel select {
  cursor: pointer;
}

.ee-funnel [hidden] {
  display: none !important;
}

.ee-funnel__brand-bar {
  min-height: 72px;
  padding: 14px clamp(20px, 5vw, 80px);
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--ee-black);
}

.ee-funnel__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d9d9d9;
  text-decoration: none;
  font-size: 21px;
  letter-spacing: -0.03em;
}

.ee-funnel__brand strong {
  color: #fff;
  font-weight: 700;
}

.ee-funnel__brand-text {
  color: #fff;
  font-family: 'Circular Std', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ee-funnel__brand svg {
  width: 32px;
  height: 32px;
  color: var(--ee-yellow);
}

.ee-funnel__brand img {
  display: block;
  width: auto;
  max-width: 210px;
  max-height: 38px;
}

.ee-funnel__book-link {
  min-width: 220px;
  padding: 10px 24px;
  color: var(--ee-yellow);
  border: 2px solid var(--ee-yellow);
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease;
}

.ee-funnel__book-link:hover,
.ee-funnel__book-link:focus-visible {
  color: var(--ee-black);
  background: var(--ee-yellow);
}

.ee-funnel__connect {
  display: flex;
  flex-direction: column;
  background: #fff;
}

.ee-funnel__connect-card {
  width: 100%;
  min-height: calc(100vh - 72px);
  padding: 66px 20px 54px;
  display: grid;
  place-items: center;
  text-align: center;
}

.ee-funnel__connect-content {
  width: min(896px, 100%);
  transform: translateY(25px);
}

.ee-funnel__connect h1 {
  margin: 0;
  font-size: clamp(54px, 5vw, 88px);
  font-weight: 450;
  line-height: 0.98;
}

.ee-funnel__connect h1 span {
  display: block;
}

.ee-funnel__connect h1 strong {
  display: block;
  font-weight: 500;
}

.ee-funnel__connect h1 mark {
  display: inline-block;
  padding: 0.08em 0.16em 0.12em;
  color: #000;
  background: var(--ee-yellow);
}

.ee-funnel__connect-copy {
  max-width: 880px;
  margin: 34px auto 0;
  color: var(--ee-ink);
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 450;
  line-height: 1.36;
}

.ee-funnel__connect-button {
  min-height: 52px;
  margin-top: 42px;
  padding: 13px 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  background: var(--ee-yellow);
  border: 0;
  border-radius: 8px;
  font-weight: 700 !important;
  font-size: 14px !important;
  text-transform: uppercase;
}

.ee-funnel__connect-button:hover,
.ee-funnel__connect-button:focus-visible {
  background: #eeb000;
}

.ee-funnel__connect-button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.ee-funnel__privacy-note,
.ee-funnel__message {
  margin: 25px auto 0;
  color: var(--ee-muted);
  font-size: 17px;
  line-height: 1.4;
}

.ee-funnel__privacy-note {
  max-width: 560px;
  font-weight: 400;
  color: #000000;
  opacity: 0.8;
}

.ee-funnel__privacy-note strong {
  font-weight: 700;
}

.ee-funnel__message:not(:empty) {
  max-width: 600px;
  padding: 10px;
  color: #9f1f19;
  background: #fff0ee;
}

.ee-funnel__logo-strip {
  width: 100%;
  overflow: hidden;
  background: #f3f6f8;
  border-radius: 22px 22px 0 0;
}

.ee-funnel__logo-strip .logo-carousel {
  width: 100%;
  min-height: 76px;
  padding: 16px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.ee-funnel__logo-strip .logo-carousel-wrapper {
  width: 100%;
  overflow: hidden;
}

.ee-funnel__logo-strip .logo-carousel-track {
  width: fit-content;
  display: flex;
  gap: 60px;
  --scroll-distance: 0px;
  /* Duration tracks the three repeated sets in the markup to keep the original pace. */
  animation: ee-funnel-logo-scroll 45s linear infinite;
}

@keyframes ee-funnel-logo-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(var(--scroll-distance, -50%));
  }
}

.ee-funnel__logo-strip .logo-carousel-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ee-funnel__logo-strip .logo-carousel-item img {
  width: auto;
  height: auto;
  max-width: 120px;
  max-height: 28px;
  object-fit: contain;
}

.ee-funnel__landing-inner {
  width: min(1160px, 100% - 40px);
  margin-inline: auto;
}

.ee-funnel__eyebrow {
  margin: 0 0 32px;
  color: var(--ee-muted);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ee-funnel__icon {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.ee-funnel__icon--check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--ee-yellow);
}

.ee-funnel__icon--check::before {
  content: '';
  width: 8px;
  height: 5px;
  border-bottom: 2px solid #000;
  border-left: 2px solid #000;
  transform: rotate(-45deg) translateY(-1px);
}

.ee-funnel__icon--check-square {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background-color: var(--ee-yellow);
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='10' viewBox='0 0 13 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4.5L5 8.5L12 1' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px 10px;
}

.ee-funnel__icon--deny {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.899902 0.899902L8.8999 8.8999M8.8999 0.899902L0.899902 8.8999' stroke='%23CCCCCC' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 10px;
}

.ee-funnel__checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ee-funnel__checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ee-funnel__checklist--inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 28px;
}

.ee-funnel__checklist--inline li {
  align-items: center;
  font-size: 15px;
  font-weight: 700;
}

.ee-funnel__checklist--deny li {
  color: #fff;
}

.ee-funnel__value-prop {
  padding: 80px 20px 80px;
  text-align: center;
  background: #fff;
}

.ee-funnel__value-prop-heading {
  max-width: 820px;
  margin: 0 auto 24px;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.05;
}

.ee-funnel__value-prop-copy {
  max-width: 760px;
  margin: 0 auto 34px;
  color: var(--ee-ink);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.45;
}

.ee-funnel__how {
  padding: 100px 20px 100px;
  color: #fff;
  background: var(--ee-black);
}

.ee-funnel__how-heading,
.ee-funnel__control-heading,
.ee-funnel__reads-heading {
  margin: 0 0 50px;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.05;
  text-align: center;
}

.ee-funnel__how-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.ee-funnel__how-card {
  padding: 32px ;
  border-radius: 12px;
  background: #fff;
  color: var(--ee-ink);
}

.ee-funnel__how-number {
  display: block;
  margin-bottom: 16px;
  color: var(--ee-yellow);
  font-size: clamp(42px, 4vw, 56px);
  font-weight: 700;
  line-height: 1;
}

.ee-funnel__how-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
}

.ee-funnel__how-card p {
  margin: 0;
  color: var(--ee-muted);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.16px;
}

.ee-funnel__how-caption {
  margin: 50px 0 20px;
  color: #CCCCCC;
  font-size: 16px;
  letter-spacing: -0.16px;
  text-align: center;
}

.ee-funnel__funnel-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px calc(12px + 13px + 12px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.ee-funnel__funnel-steps li {
  position: relative;
  padding: 16px 24px;
  border-radius: 8px;
  background: #F5F7F9;
  color: #000;
  font-size: 13px;
  font-weight: 700;
}

.ee-funnel__funnel-steps li + li::before {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(-12px - 13px);
  width: 13px;
  height: 11px;
  background: no-repeat center / contain;
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='11' viewBox='0 0 13 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.85994 10.8799L10.6599 4.53988V6.29988L4.85994 -0.000117779H7.95994L12.5999 4.87988V5.95988L7.95994 10.8799H4.85994ZM-5.85616e-05 6.59988V4.27988H10.4999V6.59988H-5.85616e-05Z' fill='%23FFC001'/%3E%3C/svg%3E");
  transform: translateY(-50%);
  pointer-events: none;
}

.ee-funnel__control {
  padding: 100px 60px;
  /* background: var(--ee-gray-bg); */
  background-color: #ffffff;
}

.ee-funnel__control .ee-funnel__landing-inner{
  width: auto;
  margin-inline: 0;
}

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

.ee-funnel__control-card {
  padding: 28px;
  border-radius: 20px;
  background: #F5F7F9;
  box-shadow: var(--ee-card-shadow);
}

.ee-funnel__control-card h3 {
  margin: 14px 0 14px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.ee-funnel__control-card p {
  margin: 0;
  color: var(--ee-muted);
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: -0.16px;
}

.ee-funnel__reads {
  padding: 100px 60px;
  color: #fff;
  background: var(--ee-black);
}

.ee-funnel__reads .ee-funnel__landing-inner{
  width: auto;
  margin-inline: 0;
}

.ee-funnel__reads-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.ee-funnel__reads-panel {
  padding: 40px;
  border-radius: 12px;
}

.ee-funnel__reads-panel--yes {
  color: var(--ee-ink);
  background: #fff;
}

.ee-funnel__reads-panel--no {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.04);
}

.ee-funnel__reads-panel h3 {
  margin: 0 0 22px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.ee-funnel__reads-panel--no h3 {
  margin-bottom: 0;
}

.ee-funnel__reads-panel-intro {
  margin: 10px 0 24px;
  font-size: 15px;
  line-height: 1.45;
  color: #CCCCCC;
  letter-spacing: -0.16px;
}

.ee-funnel__reads-panel .ee-funnel__checklist {
  display: grid;
  gap: 16px;
}

.ee-funnel__reads-panel--yes .ee-funnel__checklist li,
.ee-funnel__reads-panel--no .ee-funnel__checklist li {
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: -0.16px;
}

.ee-funnel__reads-panel--yes .ee-funnel__icon--check-square {
  width: 22px;
  height: 22px;
  border-radius: 6px;
}

.ee-funnel__final-cta {
  padding: 40px 60px;
  /* background: var(--ee-black); */
}

.ee-funnel__final-cta .ee-funnel__landing-inner{
  width: auto;
  margin-inline: 0;
}

.ee-funnel__final-cta-box {
  padding: 48px;
  border: 2px solid var(--ee-yellow);
  border-radius: 12px;
  text-align: center;
  background: black;
}

.ee-funnel__final-cta-copy {
  max-width: 760px;
  margin: 0 auto 16px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: -0.16px;
}

.ee-funnel__final-cta-copy a {
  color: var(--ee-yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ee-funnel__final-cta-box .ee-funnel__connect-button {
  margin-top: 0;
}

.ee-funnel__final-cta-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 32px;
  margin-top: 16px;
}

.ee-funnel__final-cta-links a {
  color: var(--ee-yellow);
  font-size: 14px;
  text-decoration: none;
  text-underline-offset: 3px;
}

.ee-funnel__page-footer {
  padding: 23px 60px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--ee-black);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ee-funnel__page-footer .ee-funnel__landing-inner{
  width: auto;
  margin-inline: 0;
}

.ee-funnel__page-footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px 24px;
}

.ee-funnel__page-footer-copy {
  margin: 0;
  font-size: 16px;
  color: white;
  letter-spacing: 0.45px;
}

.ee-funnel__page-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 46px;
}

.ee-funnel__page-footer-links a {
  color: white;
  font-size: 16px;
  text-decoration: none;
  letter-spacing: 0;

}

.ee-funnel__page-footer-links a:hover,
.ee-funnel__page-footer-links a:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.ee-funnel__page-footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 32px;
}

.ee-funnel__page-footer-social a {
  display: inline-flex;
  align-items: center;
  color: #fff;
}

.ee-funnel__page-footer-social svg {
  display: block;
}

.ee-funnel__context {
  padding: 26px;
  margin: auto;
}

.ee-funnel__context-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 18px;
}

.ee-funnel__property-field,
.ee-funnel__date-field {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.ee-funnel__context-actions {
  flex: 0 0 auto;
  margin-left: auto;
  display: flex;
  align-self: end;
  gap: 10px;
}

.ee-funnel__property-field span,
.ee-funnel__date-field span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.ee-funnel__context select,
.ee-funnel__context input,
.ee-funnel__refresh,
.ee-funnel__disconnect {
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid #bdbdbd;
  border-radius: 2px;
}

.ee-funnel__context select {
  width: clamp(220px, 28vw, 300px);
  min-width: 0;
  padding-right: 38px;
  color: var(--ee-ink);
  background: #fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555555' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 14px center;
  font-size: 14.98px;
  letter-spacing: 0;
  appearance: none;
  -webkit-appearance: none;
  text-overflow: ellipsis;
}

.ee-funnel__context input {
  width: clamp(130px, 14vw, 160px);
  color: var(--ee-ink);
  background: #fff;
  border-radius: 7px;
  font-size: 14.98px;
  letter-spacing: 0;
}

.ee-funnel__context input:disabled {
  opacity: 0.6;
}

.ee-funnel__context input::-webkit-calendar-picker-indicator {
  margin-left: 8px;
  opacity: 0.7;
  cursor: pointer;
}

.ee-funnel__refresh,
.ee-funnel__disconnect {
  padding: 12px 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 14px !important;
  /* The .ee-funnel reset forces bold on every child, so 900 needs the same weight. */
  font-weight: 700 !important;
  line-height: 20px !important;
  letter-spacing: 0.34px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.ee-funnel__refresh {
  color: var(--ee-black);
  background: var(--ee-yellow);
  border-color: var(--ee-yellow);
}

.ee-funnel__refresh:disabled {
  opacity: 0.6;
  cursor: default;
}

.ee-funnel__disconnect {
  color: var(--ee-black);
  background: #fff;
}

.ee-funnel__report {
  background: #fff;
}

.ee-funnel__status {
  width: min(1220px, calc(100% - 40px));
  margin: 28px auto 0;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f7f4ec;
  border-left: 4px solid var(--ee-yellow);
}

.ee-funnel__status strong,
.ee-funnel__status span {
  display: block;
}

.ee-funnel__status [data-status-detail] {
  color: var(--ee-muted);
  font-size: 13px;
}

.ee-funnel__spinner {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background: var(--ee-yellow);
  animation: ee-funnel-diamond 1.4s ease-in-out infinite;
}

@keyframes ee-funnel-diamond {
  0% { transform: rotate(0deg) scale(0.5); }
  50% { transform: rotate(180deg) scale(1.2); }
  100% { transform: rotate(360deg) scale(0.5); }
}

.ee-funnel__status--center {
  min-height: 56vh;
  margin: 0 auto;
  padding: 60px 20px;
  flex-direction: column;
  justify-content: center;
  gap: 70px;
  background: none;
  border-left: 0;
  text-align: center;
}

.ee-funnel__status--center .ee-funnel__spinner {
  width: 26px;
  height: 26px;
}

.ee-funnel__status--center [data-status-title] {
  font-size: 19px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ee-funnel__status--center [data-status-detail] {
  margin-top: 12px;
  font-size: 14px;
}

.ee-funnel__overview {
  width: min(1160px, calc(100% - 40px));
  margin: 22px auto 38px;
}

.ee-funnel__summary-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.85fr;
  gap: 6px;
}

.ee-funnel__metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 6px;
}

.ee-funnel__metric-card,
.ee-funnel__radar-card {
  min-height: 170px;
  padding: 18px 22px;
  position: relative;
  background: #fff;
  border: 1px solid var(--ee-line);
  border-radius: 8px;
  box-shadow: var(--ee-card-shadow);
}

.ee-funnel__metric-card {
  max-width: 314px;
  padding: 18px 22px 14px 22px;
}

.ee-funnel__metric-card[data-weakest="true"] {
  border: 2px solid var(--ee-red);
}

.ee-funnel__weakest-badge {
  padding: 5px 14px;
  position: absolute;
  top: -11px;
  right: 12px;
  color: #fff;
  background: var(--ee-red);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: -0.2px;
  font-weight: 700;
  text-transform: uppercase;
}

.ee-funnel__metric-label {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.1px;
}

.ee-funnel__radar-card h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.1px;
} 

.ee-funnel__metric-rate {
  margin: 18px 0 6px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -3px;
}

.ee-funnel__metric-target,
.ee-funnel__metric-delta small {
  display: block;
  font-size: 13px;
}

.ee-funnel__metric-delta {
  margin-top: 12px;
  color: var(--ee-green);
  font-size: 24px;
  font-weight: 700;
}

.ee-funnel__metric-delta small {
  color: #000000;
  font-size: 12px;
  font-weight: 500;
  margin-top: 3px;
  letter-spacing: -0.27px;
}

.ee-funnel__metric-delta[data-status="critical"],
.ee-funnel__metric-card[data-weakest="true"] .ee-funnel__metric-delta {
  color: var(--ee-red);
}

.ee-funnel__metric-delta[data-status="unscorable"] {
  color: var(--ee-muted);
}

.ee-funnel__radar-card {
  min-height: 350px;
  padding-left: 20px;
}

.ee-funnel__radar-quad {
  --ee-radar-size: 250px;
  min-height: var(--ee-radar-size);
  margin-top: 56px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  /* The column gap reserves the centre so the chart can overlap the label rows. */
  column-gap: clamp(120px, var(--ee-radar-size), 33%);
  row-gap: 132px;
}

.ee-funnel__radar-quad svg {
  width: var(--ee-radar-size);
  height: var(--ee-radar-size);
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  overflow: visible;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.ee-funnel__radar-corner {
  display: grid;
  align-content: start;
  gap: 4px;
}

.ee-funnel__radar-corner[data-corner="bottom-left"],
.ee-funnel__radar-corner[data-corner="bottom-right"] {
  align-content: end;
}

.ee-funnel__radar-corner span {
  color: #171717;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ee-funnel__radar-corner strong {
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--ee-green);
}

.ee-funnel__radar-corner small {
  color: var(--ee-muted);
  font-size: 12px;
}

.ee-funnel__radar-corner[data-status="critical"] strong {
  color: var(--ee-red);
}

.ee-funnel__radar-corner[data-status="unscorable"] strong {
  color: var(--ee-muted);
}

.ee-funnel__fire-panel {
  margin-top: 36px;
  padding: 26px;
  background: var(--ee-red-soft);
  border-left: 5px solid var(--ee-red);
  border-radius: 8px;
  box-shadow: var(--ee-card-shadow);
  padding-bottom: 24px;
}

.ee-funnel__fire-panel h2 {
  margin: 18px 0 12px;
  font-size: 23px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.ee-funnel__fire-eyebrow{
  color: #E33B32;
  display: block;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;;
}

.ee-funnel__fire-delta {
  color: #E33B32;
  display: block;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: -0.4px;
  margin-top: 2px;
  font-weight: 700;

}

.ee-funnel__fire-panel p {
  max-width: 920px;
  margin: 7px 0;
  font-size: 14px;
  line-height: 17px;
}

.ee-funnel__segment-label {
  margin-top: 23px;
  margin-bottom: 14px;
  display: block;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: -0.1px;
}

.ee-funnel__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ee-funnel__chips span {
  padding: 5px 12px;
  background: #fff;
  border-radius: 999px;
  font-size: 12px;
  line-height: 17px;
  letter-spacing: -0.6px;
}

.ee-funnel__collapse-bar {
  min-height: 50px;
  padding: 16px clamp(20px, 7vw, 110px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e9edf2;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.18);
}

.ee-funnel__collapse-toggle {
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: transparent;
  border: 0;
  text-align: center;
  text-transform: uppercase;
}
.ee-funnel__collapse-toggle span {
  font-size: 14px;
  /* The .ee-funnel reset forces bold on every child, so 900 needs the same weight. */
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.34px;
  color: #000;
}

.ee-funnel__collapse-toggle svg {
  width: 16px;
  height: 9px;
  flex: 0 0 auto;
  transition: transform 200ms ease;
}

.ee-funnel__collapse-toggle[aria-expanded="false"] svg {
  transform: rotate(180deg);
}

.ee-funnel__breakdown-wrap {
  width: min(1160px, calc(100% - 40px));
  margin: 60px auto 0;
  padding-bottom: 80px;
}

.ee-funnel__segment-progress {
  margin-bottom: 26px;
}

.ee-funnel__segment-progress > div {
  height: 7px;
  overflow: hidden;
  background: #ececec;
}

.ee-funnel__segment-progress span {
  width: 0;
  height: 100%;
  display: block;
  background: var(--ee-yellow);
  transition: width 180ms ease;
}

.ee-funnel__segment-progress p {
  margin: 7px 0 0;
  color: var(--ee-muted);
  font-size: 12px;
}

.ee-funnel__breakdown {
  margin-bottom: 46px;
  border: 1px solid var(--ee-line);
  overflow: hidden;
  border-radius: 8px;
}

.ee-funnel__breakdown--channel {
  border: 0;
}

.ee-funnel__breakdown-header {
  min-height: 66px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #F8FAFC;
}

.ee-funnel__breakdown-header h2 {
  margin: 0;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.ee-funnel__tabs {
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.ee-funnel__tabs button {
  padding: 9px 13px;
  color: #000;
  background: #fff;
  border: 0;
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: -0.1px;
}

.ee-funnel__tabs button + button {
  border-left: 1px solid #ccc;
}

.ee-funnel__tabs button[aria-pressed="true"] {
  background: #ffc001;
}

.ee-funnel__table-scroll {
  overflow-x: auto;
}

.ee-funnel__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.ee-funnel__table th,
.ee-funnel__table td {
  padding: 22px;
  border-bottom: 1px solid var(--ee-line);
  text-align: right;
  white-space: nowrap;
}

.ee-funnel__table thead th {
  font-size: 13px;
  white-space: normal;
  text-transform: capitalize;
  background-color: #000000;
  color: #fff;
  letter-spacing: -0.1px;
  border-bottom: 3px solid #FFC001;
  font-weight: 500;
  padding: 12px 22px;

}

.ee-funnel__table th:first-child,
.ee-funnel__table td:first-child {
  min-width: 104px;
  text-align: left;
}

.ee-funnel__table td[data-status="meets"],
.ee-funnel__table td[data-status="strong"] {
  color: var(--ee-green);
  font-weight: 700;
}

.ee-funnel__table td[data-status="below"] {
  color: var(--ee-amber);
  font-weight: 700;
}

.ee-funnel__table td[data-status="critical"] {
  color: var(--ee-red);
  font-weight: 700;
}

.ee-funnel__table td[data-status="unscorable"] {
  color: var(--ee-muted);
}

.ee-funnel__graph-layout {
  min-height: 470px;
  padding: 22px 12px 10px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px;
  gap: 140px;
}

.ee-funnel__graph {
  min-width: 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
}

.ee-funnel__y-axis {
  height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #a0a0a0;
  font-size: 10px;
  text-align: right;
}

.ee-funnel__bars {
  height: 290px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(70px, 1fr));
  align-items: end;
  gap: 0;
  border-bottom: 1px dashed #b5b5b5;
  background-image:
    repeating-linear-gradient(to right, #e2e2e2 0 6px, transparent 6px 12px),
    repeating-linear-gradient(to right, #e2e2e2 0 6px, transparent 6px 12px),
    repeating-linear-gradient(to right, #e2e2e2 0 6px, transparent 6px 12px),
    repeating-linear-gradient(to right, #e2e2e2 0 6px, transparent 6px 12px);
  background-size: 100% 1px;
  background-position: left top, left 25%, left 50%, left 75%;
  background-repeat: no-repeat;
}

.ee-funnel__bar-column {
  height: 100%;
  position: relative;
}

.ee-funnel__bar-plot {
  width: min(54px, 78%);
  height: 100%;
  margin: 0 auto;
  position: relative;
}

.ee-funnel__bar {
  width: 100%;
  min-height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4px;
  color: #111;
  background: linear-gradient(to top, var(--ee-red), var(--ee-orange), var(--ee-yellow));
  font-size: 14px;
  transition: height 200ms ease;
}

.ee-funnel__target-line {
  width: max-content;
  position: absolute;
  left: 50%;
  color: var(--ee-amber);
  font-size: 12px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
  /* Offsets the label height so it sits on the inline bottom percentage. */
  transform: translate(-50%, 100%);
}

.ee-funnel__target-line span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 0;
  transform: translateY(-100%);
  font-size: 10px;
  font-weight: 500;
}

.ee-funnel__target-line span::before,
.ee-funnel__target-line span::after {
  content: '';
  flex: 0 0 auto;
  width: 10px;
  border-top: 1px dashed currentColor;
  transform: translateY(5px);
}

.ee-funnel__target-line[data-met="true"] {
  width: 110px;
  color: var(--ee-green);
  white-space: normal;
}

.ee-funnel__target-line[data-met="true"] span {
  max-width: 100%;
}

.ee-funnel__bar-label {
  position: absolute;
  top: calc(100% + 17px);
  color: #8a8a8a;
  font-size: 10px;
  text-align: center;
  font-size: 12px;
  text-align: center;
  width: 90%;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);

}

.ee-funnel__graph-aside > span,
.ee-funnel__graph-aside > strong {
  display: block;
}

.ee-funnel__graph-aside > span {
  font-size: 13px;
  font-weight: 700;
  width: fit-content;
}

.ee-funnel__graph-aside > strong {
  margin: 6px 0 20px;
  color: var(--ee-yellow);
  font-size: 42px;
  letter-spacing: -3px;
  line-height: 1;
}

.ee-funnel__segment-buttons {
  display: grid;
  gap: 11px;
  padding-left: 10px;
}

.ee-funnel__segment-buttons button {
  padding: 4px 0;
  color: #aaa;
  background: transparent;
  border: 0;
  text-align: left;
}

.ee-funnel__segment-buttons button[aria-pressed="true"] {
  color: var(--ee-black);
  text-decoration: underline 3px var(--ee-yellow);
  text-underline-offset: 5px;
}

.ee-funnel__empty {
  padding: 30px 20px;
  color: var(--ee-muted);
  text-align: center;
}

.ee-funnel__noscript {
  padding: 30px;
  color: #8e1e19;
  background: #fff1ef;
  text-align: center;
}

.ee-funnel__context select{
  border-radius: 7px;
}


.ee-funnel__graph-aside{
  width:fit-content;
  text-align: right;
}

.ee-funnel__graph-aside button{
  /* text-align: right; */
  font-size:16px;
  font-weight: 500;
  width:fit-content;
}

.ee-funnel__graph-aside > strong{
  width: fit-content;
}

@media screen and (min-width: 900px) {
  .ee-funnel__value-prop-heading {
    font-size: 54px;
    margin-bottom: 32px;
    letter-spacing: -2px;
  }
  .ee-funnel__value-prop-copy{
    font-size: 18px;
    margin-bottom: 32px;
  }

  .ee-funnel__checklist--inline li{
    background: #F5F7F9;
    padding: 16px 20px;
    border-radius: 100px;
    font-size: 16px;
    letter-spacing: -0.16px;
  }

  .ee-funnel__icon--check{
    height: 8px;
    width: 8px;
  }
  .ee-funnel__icon--check::before{
    display: none;
  }
  .ee-funnel__how-heading{
    font-size: 54px;
    margin-bottom: 54px;
    letter-spacing: -2px;
  }
  .ee-funnel__how .ee-funnel__landing-inner{
    width: auto;
    margin-inline: 40px;
  }

  .ee-funnel__control .ee-funnel__control-heading{
    font-size: 54px;
    margin-bottom: 50px;
    letter-spacing: -2px;
  }
}

@media (max-width: 900px) {
  .ee-funnel__summary-grid,
  .ee-funnel__graph-layout,
  .ee-funnel__how-cards,
  .ee-funnel__control-grid,
  .ee-funnel__reads-grid {
    grid-template-columns: 1fr;
  }

  .ee-funnel__page-footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ee-funnel__page-footer-social {
    justify-content: center;
  }

  .ee-funnel__graph-aside {
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    gap: 14px;
  }

  .ee-funnel__graph-aside > strong {
    margin: 0;
    font-size: 36px;
    
  }

  .ee-funnel__segment-buttons {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .ee-funnel__brand-bar {
    min-height: 62px;
    padding: 12px 16px;
  }

  .ee-funnel__brand {
    font-size: 16px;
  }

  .ee-funnel__brand svg {
    width: 25px;
    height: 25px;
  }

  .ee-funnel__book-link {
    min-width: auto;
    padding: 8px 12px;
    font-size: 12px;
  }

  .ee-funnel__connect {
    min-height: auto;
  }

  .ee-funnel__connect-card {
    min-height: calc(100vh - 62px);
    padding: 54px 20px 42px;
  }

  .ee-funnel__connect h1 {
    font-size: clamp(42px, 13vw, 68px);
  }

  .ee-funnel__connect-content {
    transform: none;
  }

  .ee-funnel__connect-copy {
    margin-top: 28px;
    font-size: 17px;
  }

  .ee-funnel__connect-button {
    margin-top: 32px;
  }

  .ee-funnel__privacy-note,
  .ee-funnel__message {
    font-size: 14px;
  }

  .ee-funnel__logo-strip .logo-carousel-track {
    gap: 34px;
  }

  .ee-funnel__context {
    padding: 20px;
  }

  .ee-funnel__context-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
  }

  .ee-funnel__property-field {
    grid-column: 1 / -1;
  }

  .ee-funnel__context-actions {
    grid-column: 1 / -1;
    justify-self: end;
  }

  .ee-funnel__context select,
  .ee-funnel__context input {
    width: 100%;
  }

  .ee-funnel__metric-grid {
    grid-template-columns: 1fr;
  }

  .ee-funnel__metric-card {
    min-height: 150px;
  }

  .ee-funnel__radar-quad {
    column-gap: 18px;
    row-gap: 20px;
  }

  .ee-funnel__radar-quad svg {
    position: static;
    grid-column: 1 / -1;
    order: -1;
    margin-inline: auto;
    transform: none;
  }

  .ee-funnel__radar-corner[data-corner="bottom-left"],
  .ee-funnel__radar-corner[data-corner="bottom-right"] {
    align-content: start;
  }

  .ee-funnel__breakdown-wrap {
    width: min(100% - 24px, 1160px);
    margin-top: 40px;
  }

  .ee-funnel__breakdown-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .ee-funnel__graph-layout {
    min-height: 420px;
    padding: 25px 0 5px;
    gap: 60px;
  }

  .ee-funnel__bars {
    padding-inline: 3px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .ee-funnel__bar-label {
    width: 100%;
    left: 0;
    font-size: 8px;
    overflow-wrap: anywhere;
    transform: translate(0%);
  }

  .ee-funnel__graph-aside {
    grid-template-columns: auto 1fr;
    padding-left: 16px;
    padding-bottom: 16px;
  }

  .ee-funnel__checklist--inline {
    flex-direction: column;
    align-items: center;
  }

  .ee-funnel__value-prop,
  .ee-funnel__how,
  .ee-funnel__control,
  .ee-funnel__reads,
  .ee-funnel__final-cta {
    padding: 56px 16px 64px;
  }

  .ee-funnel__funnel-steps li + li::before {
    display: none;
  }

  .ee-funnel__final-cta-box {
    padding: 28px 18px 24px;
  }

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

