/*
 * Incentives page styles.
 * Bootstrap 4.6.2 is loaded separately and is not modified.
 * Every rule is scoped to #incentives-page so this content can be embedded safely.
 */

#incentives-page {
  --cmi-primary: #1769ff;
  --cmi-primary-hover: #0d4fd6;
  --cmi-primary-pressed: #0a3fab;
  --cmi-navy: #111a2e;
  --cmi-navy-deep: #10182b;
  --cmi-mist: #f7f8fc;
  --cmi-lavender: #f5f8ff;
  --cmi-gold: #dfb64f;
  width: 100%;
  overflow: hidden;
  color: var(--cmi-navy);
  background: #fff;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

#incentives-page,
#incentives-page * {
  box-sizing: border-box;
}

#incentives-page h1,
#incentives-page h2,
#incentives-page h3,
#incentives-page p,
#incentives-page ul {
  margin: 0;
}

#incentives-page ul {
  padding: 0;
  list-style: none;
}

#incentives-page a {
  text-decoration: none;
}

#incentives-page .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#incentives-page .showroom-wrap {
  width: 100%;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 16px;
  padding-left: 16px;
}

#incentives-page .top-note {
  border-bottom: 1px solid rgba(17, 26, 46, 0.1);
  background: rgba(247, 248, 252, 0.6);
  margin-top: 10px;
}

#incentives-page .top-note .showroom-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 10px;
  padding-bottom: 10px;
}

#incentives-page .top-note p {
  color: var(--cmi-navy);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.375;
  text-align: center;
}

#incentives-page .icon {
  display: block;
  flex: 0 0 auto;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#incentives-page .top-note .icon {
  width: 16px;
  height: 16px;
  color: var(--cmi-gold);
}

#incentives-page .incentive-section {
  padding-top: 28px;
  padding-bottom: 28px;
  background: #fff;
}

#incentives-page .incentive-section.section-mist,
#incentives-page .closing-cta {
  background: var(--cmi-mist);
}

#incentives-page .category-head {
  margin-bottom: 20px;
}

#incentives-page .category-heading {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

#incentives-page .category-icon {
  display: grid;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--cmi-primary);
  background: var(--cmi-lavender);
}

#incentives-page .category-icon .icon {
  width: 18px;
  height: 18px;
}

#incentives-page .category-title,
#incentives-page .card-title,
#incentives-page .feature-title,
#incentives-page .pass-amount,
#incentives-page .closing-title,
#incentives-page .value-amount {
  font-family: "Bricolage Grotesque", Arial, sans-serif;
  letter-spacing: -0.025em;
}

#incentives-page .category-title {
  color: var(--cmi-navy);
  font-size: 20px;
  font-weight: 800;
  line-height: 28px;
}

#incentives-page .category-blurb {
  max-width: 768px;
  margin-top: 12px;
  color: rgba(17, 26, 46, 0.7);
  font-size: 14px;
  line-height: 1.625;
}

#incentives-page .benefit-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
}

#incentives-page .benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(17, 26, 46, 0.85);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.375;
}

#incentives-page .benefit-list .icon {
  width: 15px;
  height: 15px;
  margin-top: 3px;
  color: var(--cmi-gold);
}

#incentives-page .card-grid {
  display: grid;
  gap: 14px;
}

#incentives-page .travel-grid,
#incentives-page .dining-grid,
#incentives-page .hotel-grid,
#incentives-page .pass-grid,
#incentives-page .savings-grid {
  grid-template-columns: minmax(0, 1fr);
}

#incentives-page .product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

#incentives-page .photo-card {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  border: 1px solid rgba(17, 26, 46, 0.1);
  border-radius: 12px;
  background: var(--cmi-navy-deep);
  box-shadow: 0 2px 10px -4px rgba(10, 22, 48, 0.25);
  transition: box-shadow 0.2s ease;
}

#incentives-page .photo-card:hover {
  box-shadow: 0 16px 34px -18px rgba(10, 22, 48, 0.55);
}

#incentives-page .photo-card > img,
#incentives-page .feature-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#incentives-page .photo-card > img {
  transition: transform 0.3s ease-out;
}

#incentives-page .photo-card:hover > img,
#incentives-page .product-card:hover > img {
  transform: scale(1.04);
}

#incentives-page .photo-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(16, 24, 43, 0.94), rgba(16, 24, 43, 0.45), transparent);
  content: "";
  pointer-events: none;
}

#incentives-page .eligibility {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(16, 24, 43, 0.62);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22);
  font-size: 0.58rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.01em;
  white-space: nowrap;
  backdrop-filter: blur(2px);
}

#incentives-page .eligibility .icon {
  width: 11px;
  height: 11px;
  color: var(--cmi-gold);
}

#incentives-page .eligibility-light {
  color: rgba(17, 26, 46, 0.75);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 0 0 1px rgba(17, 26, 46, 0.12);
}

#incentives-page .photo-card .eligibility {
  position: absolute;
  z-index: 3;
  top: 8px;
  right: 8px;
}

#incentives-page .card-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 12px;
}

#incentives-page .card-title {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
}

#incentives-page .value-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

#incentives-page .gold-rule {
  flex: 0 0 24px;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--cmi-gold);
  transition: width 0.3s ease, flex-basis 0.3s ease;
}

#incentives-page .photo-card:hover .gold-rule {
  flex-basis: 40px;
  width: 40px;
}

#incentives-page .value-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  white-space: nowrap;
}

#incentives-page .value-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

#incentives-page .value-amount {
  color: var(--cmi-gold);
  font-size: 0.86rem;
  font-weight: 800;
}

#incentives-page .feature-lines {
  margin-top: 4px;
}

#incentives-page .feature-line {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.68rem;
  font-weight: 500;
  line-height: 1.375;
}

#incentives-page .feature-line .dot {
  margin-right: 4px;
  color: var(--cmi-gold);
}

#incentives-page .product-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.06;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(160deg, #f4f5f8 0%, #e7eaf1 58%, #d9dee9 100%);
  box-shadow: 0 2px 10px -4px rgba(10, 22, 48, 0.28), 0 0 0 1px rgba(17, 26, 46, 0.12);
  transition: box-shadow 0.2s ease;
}

#incentives-page .product-card:hover {
  box-shadow: 0 16px 34px -18px rgba(10, 22, 48, 0.5), 0 0 0 1px rgba(17, 26, 46, 0.12);
}

#incentives-page .product-card > img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 72%;
  padding: 14px;
  object-fit: contain;
  transition: transform 0.3s ease-out;
}

#incentives-page .product-card::before {
  position: absolute;
  inset: 0 0 auto auto;
  z-index: 2;
  width: 28px;
  height: 28px;
  border-top: 2px solid rgba(223, 182, 79, 0.7);
  border-left: 2px solid rgba(223, 182, 79, 0.7);
  border-radius: 12px 0 0;
  content: "";
  pointer-events: none;
}

#incentives-page .product-shade {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 52%;
  background: linear-gradient(to top, var(--cmi-navy-deep), rgba(16, 24, 43, 0.88), transparent);
  pointer-events: none;
}

#incentives-page .voucher-label {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  padding-left: 6px;
  color: rgba(17, 26, 46, 0.6);
  font-size: 0.55rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#incentives-page .product-card .eligibility {
  position: absolute;
  z-index: 3;
  top: 8px;
  right: 8px;
}

#incentives-page .product-card .card-copy {
  padding: 10px;
}

#incentives-page .product-card .card-copy::before {
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 6px;
  background: rgba(223, 182, 79, 0.55);
  content: "";
}

#incentives-page .product-card .card-title {
  display: -webkit-box;
  overflow: hidden;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.375;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

#incentives-page .product-feature {
  overflow: hidden;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.63rem;
  font-weight: 500;
  line-height: 1.5;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#incentives-page .product-card .value-tag {
  margin-top: 4px;
}

#incentives-page .feature-card {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  border: 1px solid rgba(223, 182, 79, 0.3);
  border-radius: 16px;
  background: var(--cmi-navy-deep);
  box-shadow: 0 18px 50px -32px rgba(10, 22, 48, 0.6);
}

#incentives-page .feature-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(16, 24, 43, 0.94), rgba(16, 24, 43, 0.62), rgba(16, 24, 43, 0.1));
  content: "";
}

#incentives-page .feature-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
}

#incentives-page .feature-eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

#incentives-page .feature-eyebrow {
  color: var(--cmi-gold);
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#incentives-page .feature-title {
  max-width: 672px;
  margin-top: 4px;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

#incentives-page .feature-value-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 12px;
  margin-top: 6px;
}

#incentives-page .feature-duration {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.68rem;
  font-weight: 500;
  line-height: 1.5;
}

#incentives-page .feature-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.68rem;
  line-height: 1.375;
}

#incentives-page .feature-details .separator {
  display: none;
  color: rgba(223, 182, 79, 0.6);
}

#incentives-page .pass-card {
  --pass-from: #0b1f3a;
  --pass-to: #123a63;
  --pass-accent: #e7c067;
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  overflow: hidden;
  padding: 14px;
  color: #fff;
  background: linear-gradient(115deg, var(--pass-from) 0%, var(--pass-to) 100%);
  box-shadow: 0 10px 28px -18px rgba(10, 22, 48, 0.7);
  clip-path: polygon(0 12px, 12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px));
}

#incentives-page .pass-grid li:nth-child(2) .pass-card {
  --pass-from: #0e3b3b;
  --pass-to: #12655c;
  --pass-accent: #f0d08a;
}

#incentives-page .pass-grid li:nth-child(3) .pass-card {
  --pass-from: #2a1440;
  --pass-to: #4c2266;
  --pass-accent: #e6bce8;
}

#incentives-page .pass-grid li:nth-child(4) .pass-card {
  --pass-from: #10243f;
  --pass-to: #2c4a7a;
  --pass-accent: #9fd2f0;
}

#incentives-page .pass-grid li:nth-child(5) .pass-card {
  --pass-from: #3a1023;
  --pass-to: #6b1f3c;
  --pass-accent: #f2c6a0;
}

#incentives-page .pass-card::before,
#incentives-page .pass-card::after {
  position: absolute;
  left: 30%;
  z-index: 2;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--cmi-mist);
  content: "";
  transform: translateX(-50%);
}

#incentives-page .pass-card::before {
  top: -8px;
}

#incentives-page .pass-card::after {
  bottom: -8px;
}

#incentives-page .pass-glow {
  position: absolute;
  top: -56px;
  right: -48px;
  width: 176px;
  height: 176px;
  border-radius: 50%;
  opacity: 0.25;
  background: radial-gradient(circle, var(--pass-accent) 0%, transparent 70%);
}

#incentives-page .pass-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image: repeating-linear-gradient(135deg, var(--pass-accent) 0 1px, transparent 1px 9px);
}

#incentives-page .pass-value {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  padding-right: 16px;
  border-right: 1px dashed color-mix(in srgb, var(--pass-accent) 40%, transparent);
}

#incentives-page .pass-label {
  color: var(--pass-accent);
  font-size: 0.6rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

#incentives-page .pass-amount {
  margin-top: 2px;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

#incentives-page .pass-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  flex: 1 1 auto;
}

#incentives-page .pass-copy-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

#incentives-page .pass-copy .card-title {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.375;
}

#incentives-page .pass-copy-bottom {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

#incentives-page .pass-icons {
  display: flex;
  gap: 6px;
  opacity: 0.75;
}

#incentives-page .pass-icons .icon {
  width: 16px;
  height: 16px;
}

#incentives-page .closing-cta {
  padding-top: 48px;
  padding-bottom: 48px;
  border-top: 1px solid rgba(17, 26, 46, 0.1);
  text-align: center;
}

#incentives-page .closing-title {
  max-width: 768px;
  margin-right: auto;
  margin-left: auto;
  color: var(--cmi-navy);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.25;
}

#incentives-page .closing-copy {
  max-width: 672px;
  margin: 16px auto 0;
  color: rgba(17, 26, 46, 0.7);
  font-size: 14px;
  line-height: 1.625;
}

#incentives-page .cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

#incentives-page .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

#incentives-page .cta-primary {
  color: #fff;
  background: var(--cmi-primary);
  letter-spacing: -0.025em;
  box-shadow: 0 10px 30px -12px rgba(23, 105, 255, 0.18);
}

#incentives-page .cta-primary:hover,
#incentives-page .cta-primary:focus {
  color: #fff;
  background: var(--cmi-primary-hover);
  transform: translateY(-2px);
}

#incentives-page .cta-primary:active {
  background: var(--cmi-primary-pressed);
}

#incentives-page .cta-outline {
  padding: 12px 24px;
  border: 1px solid rgba(17, 26, 46, 0.25);
  color: var(--cmi-navy);
  background: transparent;
}

#incentives-page .cta-outline:hover,
#incentives-page .cta-outline:focus {
  color: var(--cmi-navy);
  background: rgba(17, 26, 46, 0.05);
}

#incentives-page .detail-link-row {
  margin-top: 28px;
  font-size: 14px;
  line-height: 20px;
}

#incentives-page .detail-link {
  color: var(--cmi-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

#incentives-page .detail-link:hover,
#incentives-page .detail-link:focus {
  color: var(--cmi-primary-hover);
  text-decoration: underline;
}

@media (min-width: 576px) {
  
  #incentives-page .showroom-wrap {
    padding-right: 24px;
    padding-left: 24px;
  }

  #incentives-page .top-note p {
    font-size: 0.95rem;
  }

  #incentives-page .category-title {
    font-size: 24px;
    line-height: 32px;
  }

  #incentives-page .category-blurb {
    font-size: 0.95rem;
  }

  #incentives-page .benefit-list {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 24px;
  }

  #incentives-page .benefit-list li {
    font-size: 0.875rem;
  }

  #incentives-page .benefit-list .icon {
    width: 16px;
    height: 16px;
  }

  #incentives-page .card-grid {
    gap: 16px;
  }

  #incentives-page .travel-grid,
  #incentives-page .dining-grid,
  #incentives-page .hotel-grid,
  #incentives-page .savings-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #incentives-page .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  #incentives-page .card-copy {
    padding: 14px;
  }

  #incentives-page .card-title {
    font-size: 0.9rem;
  }

  #incentives-page .feature-line {
    font-size: 0.72rem;
  }

  #incentives-page .product-card .card-copy {
    padding: 12px;
  }

  #incentives-page .product-card .card-title {
    font-size: 0.78rem;
  }

  #incentives-page .feature-card,
  #incentives-page .feature-content {
    min-height: 160px;
  }

  #incentives-page .feature-content {
    padding: 24px;
  }

  #incentives-page .feature-title {
    font-size: 30px;
  }

  #incentives-page .feature-duration {
    font-size: 0.75rem;
  }

  #incentives-page .feature-details {
    flex-direction: row;
    align-items: center;
    column-gap: 8px;
    margin-top: 6px;
  }

  #incentives-page .feature-details .separator {
    display: inline;
  }

  #incentives-page .pass-card {
    padding: 16px;
  }

  #incentives-page .pass-amount {
    font-size: 1.9rem;
  }

  #incentives-page .closing-title {
    font-size: 36px;
  }

  #incentives-page .closing-copy {
    font-size: 16px;
  }
}

@media (min-width: 992px) {
  #incentives-page .showroom-wrap {
    padding-right: 40px;
    padding-left: 40px;
  }

  #incentives-page .incentive-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  #incentives-page .category-head {
    margin-bottom: 24px;
  }

  #incentives-page .travel-grid,
  #incentives-page .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  #incentives-page .dining-grid,
  #incentives-page .hotel-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  #incentives-page .pass-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  #incentives-page .feature-card,
  #incentives-page .feature-content {
    min-height: 170px;
  }

  #incentives-page .feature-content {
    padding: 32px;
  }

  #incentives-page .closing-cta {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

@media (min-width: 1200px) {
  #incentives-page .dining-grid,
  #incentives-page .hotel-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  #incentives-page *,
  #incentives-page *::before,
  #incentives-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
@media(max-width:767px){
  #incentives-page .top-note {
  margin-top:0px;
}
}
