.rebate-page {
  padding-top: 120px;
}

.rebate-page [data-float-reveal] {
  opacity: 0;
  transform: translateY(56px);
  will-change: opacity, transform;
}

.rebate-page [data-float-reveal].is-visible {
  animation: rebateFloatRevealUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--float-delay, 0ms);
}

@keyframes rebateFloatRevealUp {
  from {
    opacity: 0;
    transform: translateY(56px);
  }

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

.rebate-page__intro {
  padding-top: 0;
}

.rebate-page > .section + .section {
  margin-top: 120px;
}

.rebate-page .rebate-highlight-panel,
.rebate-page .rebate-metric,
.rebate-page .rebate-rule-card,
.rebate-page .rebate-step-card,
.rebate-page .rebate-income-card,
.rebate-page .rebate-faq-card,
.rebate-page .rebate-note,
.rebate-page .cta-panel {
  border-radius: 24px;
}

.rebate-page .section > .container.section-shell {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.rebate-page .section-intro {
  display: grid;
  gap: 24px;
  align-items: start;
  justify-content: stretch;
  margin-bottom: 24px;
}

.rebate-page .section-intro > div {
  display: grid;
  gap: 24px;
  justify-items: start;
}

.rebate-page .section-intro h2 {
  max-width: none;
  margin: 0;
  white-space: nowrap;
}

.rebate-page .section-intro p {
  max-width: 100%;
  white-space: normal;
}

.rebate-page .cta-copy h2 {
  max-width: 18ch;
}

.rebate-intro-shell {
  padding: 0;
  background: transparent;
}

.rebate-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 1fr);
  gap: 22px;
  align-items: center;
}

.rebate-intro-copy {
  display: grid;
  gap: 24px;
  align-content: start;
}

.rebate-intro-copy > .eyebrow {
  justify-self: start;
  min-height: 30px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  background: rgba(10, 99, 230, 0.08);
  border: 1px solid rgba(10, 99, 230, 0.14);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  line-height: 30px;
  letter-spacing: 0.04em;
}

.rebate-intro-copy h1 {
  margin: 0;
  max-width: 20ch;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.rebate-intro-copy p {
  /* max-width: 58ch; */
  margin: 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.8;
}

.rebate-page .utility-meta {
  gap: 10px;
  margin-top: 0;
}

.rebate-page .utility-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(10, 99, 230, 0.16);
  color: #24527d;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  box-shadow: none;
}

.rebate-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rebate-anchor-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(12, 24, 44, 0.08);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.rebate-anchor-nav a:hover {
  transform: translateY(-1px);
  border-color: rgba(10, 99, 230, 0.16);
  box-shadow: 0 10px 24px rgba(14, 37, 69, 0.08);
}

.rebate-highlight-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
  background: radial-gradient(circle at top left, rgba(10, 99, 230, 0.14), transparent 28%), linear-gradient(180deg, rgba(248, 251, 255, 0.98), rgba(240, 246, 255, 0.95));
  border: 1px solid #ffffff;
  box-shadow: var(--shadow-sm);
}

.rebate-highlight-panel__head {
  display: grid;
  gap: 8px;
}

.rebate-highlight-panel__head span {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rebate-highlight-panel__head strong {
  color: var(--text);
  font-size: 26px;
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.rebate-metric-list,
.rebate-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rebate-metric-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.rebate-metric {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(12, 24, 44, 0.06);
}

.rebate-metric span {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rebate-metric strong {
  color: var(--text);
  font-size: 19px;
  line-height: 1.28;
  letter-spacing: -0.03em;
}

.rebate-metric p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
}

.rebate-rule-grid,
.rebate-income-grid,
.rebate-faq-grid {
  display: grid;
  gap: 16px;
}

.rebate-rule-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rebate-rule-card,
.rebate-faq-card {
  display: grid;
  gap: 12px;
  min-height: 100%;
  padding: 24px;
  border-radius: 24px;
  background: radial-gradient(circle at top left, rgba(23, 104, 255, 0.06), transparent 24%), linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(246, 250, 255, 0.95));
  border: 1px solid #ffffff;
  box-shadow: var(--shadow-sm);
}

.rebate-rule-card h3,
.rebate-faq-card h3,
.rebate-step-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.rebate-rule-card p,
.rebate-faq-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.78;
}

.rebate-note {
  margin: 20px 0 0;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(10, 99, 230, 0.06);
  border: 1px solid rgba(10, 99, 230, 0.08);
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.75;
}

.rebate-step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.rebate-step-card {
  gap: 14px;
  min-height: 220px;
}

.rebate-step-card p {
  margin: 0;
}

.rebate-step-card small {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.65;
}

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

.rebate-income-card {
  display: grid;
  gap: 14px;
}

.rebate-income-card .external-reco-card__eyebrow {
  min-height: 30px;
}

.rebate-income-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.rebate-bullet-list {
  display: grid;
  gap: 10px;
}

.rebate-bullet-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.7;
}

.rebate-bullet-list li::before {
  content: '';
  position: absolute;
  top: 9px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(10, 99, 230, 0.08);
}

.rebate-faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rebate-faq-card__index {
  color: rgba(16, 35, 62, 0.34);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .rebate-intro-grid,
  .rebate-rule-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (prefers-reduced-motion: reduce) {
  .rebate-page [data-float-reveal] {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@media (max-width: 920px) {
  .rebate-page {
    padding-top: 0;
  }

  .rebate-page > .section + .section {
    margin-top: 80px;
  }

  .rebate-intro-shell {
    padding: 24px;
  }

  .rebate-intro-grid,
  .rebate-rule-grid,
  .rebate-income-grid,
  .rebate-faq-grid,
  .rebate-step-grid {
    grid-template-columns: 1fr;
  }

  .rebate-page .section-intro h2 {
    white-space: normal;
  }

  .rebate-intro-copy h1 {
    max-width: none;
  }

  .rebate-anchor-nav a {
    justify-content: center;
  }

  .rebate-metric-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .rebate-intro-shell,
  .rebate-highlight-panel,
  .rebate-rule-card,
  .rebate-faq-card {
    padding: 20px;
    border-radius: 24px;
  }

  .rebate-intro-copy {
    gap: 16px;
  }

  .rebate-intro-copy h1 {
    font-size: 34px;
  }

  .rebate-anchor-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rebate-anchor-nav a {
    width: 100%;
    padding: 0 12px;
  }

  .rebate-page .utility-meta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .rebate-page .utility-meta span {
    justify-content: center;
    width: 100%;
  }

  .rebate-rule-card h3,
  .rebate-faq-card h3,
  .rebate-step-card h3,
  .rebate-income-card h3 {
    font-size: 20px;
  }

  .rebate-step-card {
    min-height: auto;
  }
}
