/* ============================================
   Rebate Landing Page CSS - Solar Surge
   Single continuous dark background
   ============================================ */

@font-face {
  font-family: 'Playfair Display';
  src: url('../rebate/font/Playfair_Display/PlayfairDisplay-VariableFont_wght.ttf') format('truetype');
  font-weight: 400 900;
  font-style: normal;
}

@font-face {
  font-family: 'Geist';
  src: url('../rebate/font/Geist/Geist-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
}

:root {
  --rb-bg: #0a0f0d;
  --rb-bg-alt: rgba(24,24,27,0.5);
  --rb-green: #2D6B4F;
  --rb-green-dim: #245A42;
  --rb-green-glow: rgba(45,107,79,0.25);
  --rb-orange: #c87533;
  --rb-orange-dim: rgba(200,117,51,0.12);
  --rb-gold: #efc052;
  --rb-cyan: #69eefd;
  --rb-red: #ef4444;
  --rb-text: #d4d4d8;
  --rb-text-dim: #a1a1aa;
  --rb-white: #f4f4f5;
  --rb-border: rgba(39,39,42,0.8);
}

/* === TOP BANNER === */
.rb-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10,15,13,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rb-border);
  text-decoration: none;
  display: block;
  color: inherit;
}

.rb-topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
}

.rb-topbar-row1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  flex-wrap: wrap;
}

.rb-topbar-row1 svg {
  flex-shrink: 0;
  color: var(--rb-red);
}

.rb-topbar-title {
  color: var(--rb-red);
}

.rb-topbar-sep {
  color: rgba(255,255,255,0.2);
}

.rb-topbar-unit {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: 6px;
  padding: 2px 7px;
  color: var(--rb-red);
  font-variant-numeric: tabular-nums;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.rb-topbar-cta {
  color: var(--rb-red);
  white-space: nowrap;
  margin-left: 4px;
}

@media (max-width: 768px) {
  .rb-topbar-inner {
    padding: 10px 16px;
  }

  .rb-topbar-row1 {
    font-size: 0.7rem;
    gap: 6px;
    justify-content: center;
  }

  .rb-topbar-sep {
    display: none;
  }

  .rb-topbar-row1 svg {
    width: 12px;
    height: 12px;
  }

  .rb-topbar-unit {
    padding: 2px 5px;
    font-size: 0.62rem;
  }

  .rb-topbar-cta {
    font-size: 0.7rem;
  }
}

@media (max-width: 380px) {
}

/* === 3D SPACE CANVAS === */
.rb-space-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* === PAGE WRAPPER === */
html:has(.rb-page) {
  overflow: hidden;
  height: 100%;
  scrollbar-width: none;
}

html:has(.rb-page)::-webkit-scrollbar {
  display: none;
}

.rb-page {
  background: var(--rb-bg);
  color: var(--rb-text);
  font-family: 'Geist', 'Poppins', sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
  height: 100%;
  position: relative;
  scrollbar-width: none;
}

.rb-page::-webkit-scrollbar {
  display: none;
}

/* === HERO === */
.rb-hero {
  position: relative;
  z-index: 1;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 24px 200px;
}

.rb-hero::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--rb-green-glow) 0%, transparent 70%);
  filter: blur(120px);
  pointer-events: none;
  z-index: -1;
}

.rb-urgency-bar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--rb-orange-dim);
  border: 1px solid rgba(200,117,51,0.35);
  border-radius: 100px;
  padding: 10px 24px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--rb-orange);
  letter-spacing: 0.06em;
  max-width: 100%;
  margin-bottom: 40px;
}

@keyframes rb-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.rb-hero-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--rb-white);
  margin-bottom: 24px;
}

.rb-hero-heading .rb-highlight {
  color: var(--rb-green);
}

.rb-hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--rb-text-dim);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.rb-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--rb-green);
  color: var(--rb-white);
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 14px;
  border: none;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.rb-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px var(--rb-green-glow);
  background: var(--rb-green-dim);
}

.rb-cta-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* === SHARED === */
.rb-container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.rb-block {
  padding: 80px 0;
}

.rb-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rb-green);
  margin-bottom: 12px;
}

.rb-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--rb-white);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.rb-subtext {
  font-size: 1.05rem;
  color: var(--rb-text-dim);
  line-height: 1.7;
  max-width: 680px;
}

/* === PROBLEM HEADLINE (standalone) === */
.rb-problem-headline {
  text-align: center;
  padding-bottom: 0;
}

.rb-problem-solo {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--rb-white);
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 800px;
  margin: 0 auto;
}

/* === PROBLEM SECTION === */
.rb-problem {
  text-align: left;
}

.rb-problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.rb-problem-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.rb-problem-image img {
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: contain;
}

.rb-problem-content {
  display: flex;
  flex-direction: column;
}

.rb-problem-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
}

.rb-problem-item {
  font-size: 1.15rem;
  color: var(--rb-text-dim);
  line-height: 1.6;
  font-style: italic;
}

.rb-problem-reveal {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--rb-white);
  line-height: 1.3;
}

.rb-highlight-bg {
  color: var(--rb-white);
  padding: 4px 10px;
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background: linear-gradient(var(--rb-green), var(--rb-green)) no-repeat left center;
  background-size: 0% 100%;
  transition: background-size 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rb-highlight-bg.is-highlighted {
  background-size: 100% 100%;
}

.rb-guess-truth .rb-highlight-bg {
  margin-left: 4px;
}

@media (max-width: 768px) {
  .rb-guess-truth .rb-highlight-bg {
    margin-left: 0;
    padding-left: 5px;
  }
}

.rb-bill-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: 12px;
  padding: 12px 24px;
  margin-top: 24px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--rb-red);
}

/* === GUESSING SECTION === */
.rb-guessing {
  padding: 120px 0;
  text-align: center;
}

.rb-guess-top {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--rb-text-dim);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 64px;
  opacity: 0;
}

.rb-guess-top.is-typing {
  opacity: 1;
}

.rb-guess-top .rb-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--rb-text-dim);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: rb-cursor-blink 0.6s step-end infinite;
}

@keyframes rb-cursor-blink {
  50% { opacity: 0; }
}

.rb-guess-strike {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 500;
  font-style: italic;
  color: rgba(255,255,255,1);
  margin-bottom: 48px;
  opacity: 0;
  transition: opacity 0.5s ease;
  text-decoration: none;
}

.rb-guess-strike.is-visible {
  opacity: 1;
}

.rb-guess-strike.is-struck {
  text-decoration: line-through;
  text-decoration-color: var(--rb-red);
  text-decoration-thickness: 2px;
}

@keyframes rb-strike-draw {
  from { width: 0; }
  to { width: 100%; }
}

.rb-guess-truth {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--rb-white);
  line-height: 1.3;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.rb-guess-truth.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.rb-guess-truth em {
  font-style: italic;
  color: var(--rb-green);
}

/* === SOCIAL PROOF SECTION === */
.rb-social {
  text-align: left;
}

.rb-social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.rb-social-content {
  display: flex;
  flex-direction: column;
}

.rb-social-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  font-style: italic;
  color: var(--rb-white);
  line-height: 1.35;
  margin-bottom: 32px;
}

.rb-social-sub {
  font-size: 1.05rem;
  color: var(--rb-text-dim);
  line-height: 1.6;
  margin-bottom: 8px;
}

.rb-social-bold {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  font-style: italic;
  color: var(--rb-white);
  line-height: 1.25;
}

.rb-social-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.rb-social-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
}

/* === REBATE CLIFF TRUTH === */
.rb-cliff-truth {
  padding: 100px 0;
}

.rb-cliff-truth-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--rb-white);
  line-height: 1.1;
  max-width: 800px;
  margin: 0 auto;
}

.rb-cliff-truth-heading em {
  font-style: normal;
  color: var(--rb-green);
}

/* === KNOWLEDGE LIST === */
.rb-knowledge {
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

/* Floating icons */
.rb-knowledge-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.rb-float-icon {
  position: absolute;
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 1s ease, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 0 20px rgba(255,255,255,0.08));
}

/* Start: scattered far outside */
.rb-float-icon--1 { top: 8%; left: 5%; transform: translate(-150px, -100px) rotate(-12deg); }
.rb-float-icon--2 { top: 5%; left: 25%; transform: translate(-80px, -120px) rotate(8deg); }
.rb-float-icon--3 { top: 3%; right: 25%; transform: translate(80px, -120px) rotate(-6deg); }
.rb-float-icon--4 { top: 8%; right: 5%; transform: translate(150px, -100px) rotate(10deg); }
.rb-float-icon--5 { bottom: 20%; left: 8%; transform: translate(-150px, 100px) rotate(6deg); }
.rb-float-icon--6 { bottom: 10%; left: 28%; transform: translate(-80px, 120px) rotate(-10deg); }
.rb-float-icon--7 { bottom: 15%; right: 20%; transform: translate(100px, 100px) rotate(8deg); }
.rb-float-icon--8 { bottom: 8%; right: 5%; transform: translate(150px, 120px) rotate(-8deg); }
.rb-float-icon--9 { top: 40%; left: 2%; transform: translate(-160px, 0) rotate(12deg); }
.rb-float-icon--10 { top: 40%; right: 2%; transform: translate(160px, 0) rotate(-12deg); }

/* Step 1: fly in to scattered positions */
.rb-float-icon.is-floated { opacity: 0.85; }
.rb-float-icon--1.is-floated { transform: translate(0, 0) rotate(-4deg); }
.rb-float-icon--2.is-floated { transform: translate(0, 0) rotate(3deg); }
.rb-float-icon--3.is-floated { transform: translate(0, 0) rotate(-2deg); }
.rb-float-icon--4.is-floated { transform: translate(0, 0) rotate(5deg); }
.rb-float-icon--5.is-floated { transform: translate(0, 0) rotate(2deg); }
.rb-float-icon--6.is-floated { transform: translate(0, 0) rotate(-5deg); }
.rb-float-icon--7.is-floated { transform: translate(0, 0) rotate(3deg); }
.rb-float-icon--8.is-floated { transform: translate(0, 0) rotate(-3deg); }
.rb-float-icon--9.is-floated { transform: translate(0, 0) rotate(4deg); }
.rb-float-icon--10.is-floated { transform: translate(0, 0) rotate(-4deg); }

/* Step 2: converge to center */
.rb-float-icon.is-converging {
  transition: opacity 0.8s ease 0.3s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Step 3: fade out after converging */
.rb-float-icon.is-gone {
  opacity: 0 !important;
  transition: opacity 0.5s ease !important;
}

.rb-knowledge-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--rb-white);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.rb-knowledge-heading.is-shown {
  opacity: 1;
  transform: translateY(0);
}

.rb-knowledge-heading .rb-underline {
  text-decoration: none;
}

.rb-knowledge-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 500px;
  margin: 0 auto 40px;
  text-align: left;
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
}

.rb-knowledge-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--rb-white);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.rb-knowledge-item::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rb-green);
  flex-shrink: 0;
}
  align-items: flex-start;
}

.rb-knowledge-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(74,222,128,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.rb-knowledge-icon svg {
  width: 18px;
  height: 18px;
  color: var(--rb-green);
}

.rb-knowledge-cat {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--rb-green);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.rb-knowledge-item.is-shown {
  opacity: 1;
  transform: translateY(0);
}

.rb-knowledge-item h4 {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--rb-white);
  margin-bottom: 0;
}

.rb-knowledge-item p {
  font-size: 0.95rem;
  color: var(--rb-text-dim);
  line-height: 1.5;
}

/* === TRANSITION === */
.rb-transition {
  text-align: center;
  padding: 120px 0;
}

.rb-transition-line1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--rb-text-dim);
  line-height: 1.6;
  margin-bottom: 24px;
}

.rb-transition-line2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--rb-text-dim);
  line-height: 1.6;
}

.rb-transition .rb-strikethrough {
  color: rgba(255,255,255,0.7);
  position: relative;
  display: inline-block;
}

.rb-transition .rb-strikethrough::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  height: 2px;
  background: var(--rb-red);
  width: 0;
  transition: none;
}

.rb-transition .rb-strikethrough.is-struck::after {
  animation: rb-strike-draw 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.rb-transition .rb-intelligence {
  color: var(--rb-white);
  font-weight: 700;
  font-style: italic;
}

/* === TRUTH ENGINE === */
.rb-engine {
  text-align: center;
}

.rb-engine-pill {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 1px solid var(--rb-border);
  border-radius: 100px;
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--rb-text-dim);
  letter-spacing: 0.03em;
  margin-bottom: 32px;
}

.rb-engine-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--rb-white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.rb-engine-desc {
  font-size: 1.05rem;
  color: var(--rb-text-dim);
  max-width: 640px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

.rb-engine-desc strong {
  color: var(--rb-white);
  font-weight: 700;
}

.rb-engine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--rb-border);
  border-radius: 20px;
  overflow: hidden;
}

.rb-engine-card {
  background: transparent;
  border: none;
  border-right: 1px solid var(--rb-border);
  border-bottom: 1px solid var(--rb-border);
  border-radius: 0;
  padding: 40px 28px;
  text-align: center;
  transition: background 0.3s;
}

.rb-engine-card:nth-child(3n) {
  border-right: none;
}

.rb-engine-card:nth-child(n+4) {
  border-bottom: none;
}

.rb-engine-card:hover {
  background: rgba(255,255,255,0.03);
}

.rb-engine-num {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--rb-text-dim);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.rb-engine-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--rb-white);
  margin-bottom: 8px;
}

.rb-engine-card p {
  font-size: 0.9rem;
  color: var(--rb-text-dim);
  line-height: 1.55;
}

/* === TERMINAL CONTAINER === */
.rb-terminal {
  background: #111214;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
}

.rb-terminal-bar {
  display: flex;
  gap: 8px;
  padding: 18px 24px;
}

.rb-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.rb-dot--red { background: #ff5f57; }
.rb-dot--yellow { background: #febc2e; }
.rb-dot--green { background: #28c840; }

.rb-terminal-search {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 24px 24px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  color: var(--rb-text-dim);
  font-size: 0.95rem;
  font-weight: 500;
}

.rb-terminal-search svg {
  flex-shrink: 0;
  opacity: 0.4;
}

.rb-terminal-search-btn {
  margin-left: auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--rb-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rb-terminal-search-btn svg {
  color: var(--rb-white);
  opacity: 1;
  transform: rotate(45deg);
}

.rb-terminal-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 24px 16px;
}

.rb-mini-chart {
  width: 100%;
  height: 60px;
  margin: 12px 0 8px;
}

/* Chart card specific */
.rb-cliff-card--chart {
  border-color: rgba(255,255,255,0.08);
}

.rb-cliff-vol {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--rb-text-dim);
  margin-top: 4px;
}

.rb-cliff-stat-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.rb-cliff-stat-row .rb-cliff-stat {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Bottom 2-col */
.rb-terminal-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 0 24px 24px;
}

.rb-terminal-insight {
  background: rgba(45,107,79,0.08);
  border: 1px solid rgba(45,107,79,0.2);
  border-radius: 16px;
  padding: 28px 24px;
}

.rb-terminal-insight h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--rb-white);
  margin-bottom: 12px;
}

.rb-terminal-insight-body {
  font-size: 0.88rem;
  color: var(--rb-text-dim);
  line-height: 1.65;
  font-style: italic;
}

.rb-terminal-moves {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px 24px;
}

.rb-terminal-moves h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--rb-white);
  margin-bottom: 20px;
}

.rb-terminal-moves .rb-moves-list {
  max-width: none;
  margin: 0;
}

.rb-terminal-moves .rb-move p {
  font-size: 0.88rem;
}

/* === REBATE CLIFF (3 INFO CARDS) === */
.rb-cliff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.rb-cliff-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: left;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.rb-cliff-card:hover {
  border-color: rgba(255,255,255,0.12);
}

.rb-cliff-card--danger {
  border-color: rgba(239,68,68,0.15);
}

.rb-cliff-card--success {
  border-color: rgba(45,107,79,0.2);
}

.rb-cliff-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0;
  border-radius: 0;
  margin-bottom: 12px;
  background: none;
}

.rb-cliff-badge--warning {
  color: var(--rb-orange);
}

.rb-cliff-badge--danger {
  color: var(--rb-red);
}

.rb-cliff-badge--success {
  color: var(--rb-green);
}

.rb-cliff-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--rb-white);
  margin-bottom: 10px;
}

.rb-cliff-stat {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--rb-green);
  margin-bottom: 0;
}

.rb-cliff-card p {
  font-size: 0.9rem;
  color: var(--rb-text-dim);
  line-height: 1.55;
}

.rb-cliff-card ul {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rb-cliff-card ul li {
  font-size: 0.9rem;
  color: var(--rb-text-dim);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}

.rb-cliff-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 1;
}

.rb-cliff-card--danger ul li::before {
  background: var(--rb-red);
}

.rb-cliff-card--success ul li::before {
  background: var(--rb-green);
}

.rb-cliff-card ul li strong {
  color: var(--rb-white);
}

/* === ACTION PLAN === */
.rb-action {
  text-align: center;
}

.rb-action-insight {
  background: var(--rb-bg-alt);
  border: 1px solid var(--rb-border);
  border-radius: 16px;
  padding: 40px 32px;
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

.rb-action-insight-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--rb-green);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.rb-action-insight blockquote {
  font-size: 1.05rem;
  color: var(--rb-text);
  line-height: 1.7;
  font-style: italic;
}

.rb-moves-heading {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--rb-white);
  margin-bottom: 32px;
}

.rb-moves-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.rb-move {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.rb-move-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(45,107,79,0.15);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--rb-green);
}

.rb-move h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--rb-white);
  margin-bottom: 4px;
}

.rb-move p {
  font-size: 0.9rem;
  color: var(--rb-text-dim);
  line-height: 1.5;
}

/* === VIDEO === */
.rb-video-section {
  text-align: center;
}

.rb-video-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rb-green);
  margin-bottom: 12px;
}

.rb-video-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--rb-white);
  line-height: 1.2;
  margin-bottom: 48px;
}

.rb-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding-bottom: 40.5%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
}

.rb-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

/* === 3-STEP PROCESS === */
.rb-steps {
  text-align: center;
}

.rb-steps-quotes {
  max-width: 700px;
  margin: 0 auto 80px;
}

.rb-steps-q1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 500;
  font-style: italic;
  color: var(--rb-white);
  line-height: 1.35;
  margin-bottom: 40px;
}

.rb-steps-green {
  color: #34d399;
  font-style: italic;
}

.rb-steps-q2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--rb-white);
  line-height: 1.2;
}

.rb-steps-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.rb-step-arrow {
  color: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.rb-step-card {
  position: relative;
  border-radius: 20px;
  padding: 28px 24px;
  text-align: left;
  width: 240px;
  flex-shrink: 0;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.rb-step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  z-index: 0;
}

.rb-step-card > * {
  position: relative;
  z-index: 1;
}

.rb-step-card--1 {
  background: linear-gradient(135deg, rgba(200,117,51,0.25) 0%, rgba(200,117,51,0.05) 100%);
  border: 1px solid rgba(200,117,51,0.3);
}

.rb-step-card--2 {
  background: linear-gradient(135deg, rgba(100,130,180,0.2) 0%, rgba(100,130,180,0.05) 100%);
  border: 1px solid rgba(100,130,180,0.25);
}

.rb-step-card--3 {
  background: linear-gradient(135deg, rgba(45,107,79,0.3) 0%, rgba(45,107,79,0.08) 100%);
  border: 1px solid rgba(45,107,79,0.35);
}

.rb-step-card:hover {
  transform: translateY(-4px);
}

.rb-step-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rb-text-dim);
  margin-bottom: 12px;
}

.rb-step-label {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--rb-white);
  margin-bottom: 8px;
}

.rb-step-desc {
  font-size: 0.9rem;
  color: var(--rb-white);
  line-height: 1.5;
}

.rb-step-card p {
  font-size: 0.85rem;
  color: var(--rb-text-dim);
  line-height: 1.55;
}

.rb-freedom-quote {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--rb-white);
  max-width: 680px;
  margin: 0 auto;
  font-style: italic;
  line-height: 1.5;
}

.rb-freedom-quote em {
  color: var(--rb-green);
  font-style: normal;
}

/* === CTA BANNER === */
.rb-cta-banner {
  text-align: center;
  padding: 120px 0;
  position: relative;
}

.rb-cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--rb-green-glow) 0%, transparent 70%);
  filter: blur(120px);
  pointer-events: none;
  z-index: -1;
}

.rb-cta-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--rb-text-dim);
  margin-bottom: 28px;
}

.rb-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rb-orange-dim);
  border: 1px solid rgba(200,117,51,0.35);
  color: var(--rb-orange);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 100px;
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}

.rb-cta-banner .rb-heading {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.4;
  margin-bottom: 16px;
}

.rb-cta-note {
  font-size: 0.85rem;
  color: var(--rb-text-dim);
  margin-top: 16px;
  font-style: italic;
}

.rb-cta-banner .rb-subtext {
  margin: 0 auto 40px;
  text-align: center;
}

/* === EVIDENCE WALL === */
.rb-evidence {
  text-align: center;
}

.rb-evidence-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--rb-white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.rb-evidence-sub {
  font-size: 1.05rem;
  color: var(--rb-text-dim);
  margin-bottom: 56px;
}

.rb-evidence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: start;
}

.rb-evidence-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rb-evidence-img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--rb-border);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.rb-evidence-img:hover {
  transform: scale(1.03);
  border-color: rgba(45,107,79,0.3);
  box-shadow: 0 8px 30px var(--rb-green-glow);
}

@media (max-width: 1024px) {
  .rb-evidence-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .rb-evidence-grid {
    grid-template-columns: 1fr;
  }
}

.rb-evidence-cta {
  margin-top: 56px;
}

.rb-faq-cta {
  margin-top: 48px;
}

/* === FAQ === */
.rb-faq {
  text-align: center;
}

.rb-faq-list {
  max-width: 760px;
  margin: 40px auto 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rb-faq-item {
  border: 1px solid var(--rb-border);
  border-radius: 20px;
  padding: 0 24px;
  transition: border-color 0.3s;
}

.rb-faq-item.is-open {
  border-color: rgba(45,107,79,0.3);
}

.rb-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  color: var(--rb-white);
  font-family: 'Geist', 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 22px 0;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s;
}

.rb-faq-q:hover {
  color: var(--rb-green);
}

.rb-faq-item.is-open .rb-faq-q {
  color: var(--rb-green);
}

.rb-faq-q svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--rb-text-dim);
  transition: transform 0.3s;
}

.rb-faq-item.is-open .rb-faq-q svg {
  transform: rotate(45deg);
}

.rb-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.rb-faq-item.is-open .rb-faq-a {
  max-height: 300px;
  padding-bottom: 22px;
}

.rb-faq-a p {
  font-size: 0.95rem;
  color: var(--rb-text-dim);
  line-height: 1.7;
}

/* === FINAL CTA === */
.rb-final {
  text-align: center;
  padding: 80px 0 200px;
}

.rb-final .rb-heading {
  margin-bottom: 16px;
}

.rb-final .rb-subtext {
  margin: 0 auto 36px;
  text-align: center;
}

.rb-final-img {
  display: block;
  max-width: 100%;
  width: 800px;
  margin: 48px auto 0;
  border-radius: 16px;
}

/* === REBATE PAGE SCROLL ANIMATIONS === */

/* More spacing between sections for clear reveal moments */
.rb-page .rb-block {
  padding: 100px 0;
}

/* Override default animate for rebate page - fully hidden until scroll */
.rb-page .animate {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.rb-page .animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children - each child pops up with delay */
.rb-page .rb-stagger > * {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.rb-page .rb-stagger.is-visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.05s; }
.rb-page .rb-stagger.is-visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.15s; }
.rb-page .rb-stagger.is-visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.25s; }
.rb-page .rb-stagger.is-visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.35s; }
.rb-page .rb-stagger.is-visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.45s; }
.rb-page .rb-stagger.is-visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.55s; }
.rb-page .rb-stagger.is-visible > *:nth-child(7) { opacity: 1; transform: none; transition-delay: 0.65s; }
.rb-page .rb-stagger.is-visible > *:nth-child(8) { opacity: 1; transform: none; transition-delay: 0.75s; }

/* Typewriter text reveal */
.rb-type {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid var(--rb-green);
  width: 0;
  opacity: 0;
  transition: none;
}

.rb-type.is-visible {
  opacity: 1;
  animation: rb-typewriter 1.2s steps(40, end) forwards,
             rb-blink 0.6s step-end 1.2s 6;
}

@keyframes rb-typewriter {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes rb-blink {
  50% { border-color: transparent; }
}

/* Pop-in for cards and grid items */
.rb-page .rb-pop {
  opacity: 0;
  transform: translateY(60px) scale(0.85);
  transition: opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.rb-page .rb-pop.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Blur-in text reveal */
.rb-page .rb-blur {
  opacity: 0;
  filter: blur(16px);
  transform: translateY(30px);
  transition: opacity 1s ease, filter 1s ease, transform 1s ease;
}

.rb-page .rb-blur.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: none;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .rb-problem-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .rb-problem-content {
    align-items: center;
  }

  .rb-problem-reveal {
    text-align: center;
  }

  .rb-engine-grid,
  .rb-terminal-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .rb-terminal-bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .rb-container {
    padding: 0 16px;
  }

  .rb-block {
    padding: 72px 0;
  }

  .rb-hero {
    padding: 90px 16px 40px;
    min-height: 100vh;
    min-height: 100dvh;
  }

  .rb-urgency-bar {
    font-size: 0.72rem;
    padding: 8px 16px;
    gap: 6px;
    margin-bottom: 20px;
    border-radius: 12px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    line-height: 1.5;
  }

  .rb-urgency-bar svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }

  .rb-hero-heading {
    font-size: 2.2rem;
    line-height: 1.1;
  }

  .rb-hero-sub {
    font-size: 0.9rem;
  }

  .rb-cta-btn {
    padding: 14px 24px;
    font-size: 0.88rem;
  }

  .rb-heading {
    font-size: 1.5rem;
  }

  /* Hero glow */
  .rb-hero::before {
    width: 250px;
    height: 250px;
  }

  /* Problem section */
  .rb-problem-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .rb-problem-content {
    align-items: center;
  }

  .rb-problem-reveal {
    font-size: 1.3rem;
    text-align: center;
  }

  .rb-problem-solo {
    font-size: 1.6rem;
  }

  /* Guessing */
  .rb-guessing {
    padding: 60px 0;
  }

  .rb-guess-top {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }

  .rb-guess-strike {
    font-size: 1.3rem;
    margin-bottom: 32px;
  }

  .rb-guess-truth {
    font-size: 1.4rem;
  }

  /* Social */
  .rb-social-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .rb-social-content {
    align-items: center;
  }

  .rb-social-quote {
    font-size: 1.3rem;
  }

  .rb-social-bold {
    font-size: 1.4rem;
  }

  /* Knowledge */
  .rb-knowledge {
    min-height: auto;
  }

  .rb-float-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .rb-float-icon--3,
  .rb-float-icon--6,
  .rb-float-icon--9,
  .rb-float-icon--10 {
    display: none;
  }

  .rb-knowledge-heading {
    font-size: 1.5rem;
  }

  .rb-knowledge-list {
    gap: 14px;
  }

  .rb-knowledge-item {
    font-size: 0.95rem;
  }

  /* Transition */
  .rb-transition {
    padding: 60px 0;
  }

  .rb-transition-line1 {
    font-size: 1rem;
    margin-bottom: 16px;
  }

  .rb-transition-line2 {
    font-size: 1.15rem;
  }

  /* Engine */
  .rb-engine-pill {
    font-size: 0.75rem;
    padding: 8px 18px;
    margin-bottom: 20px;
  }

  .rb-engine-heading {
    font-size: 1.8rem;
  }

  .rb-engine-desc {
    font-size: 0.9rem;
    margin-bottom: 32px;
  }

  .rb-engine-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .rb-engine-card {
    padding: 28px 20px;
    border-right: none;
    border-bottom: 1px solid var(--rb-border);
  }

  .rb-engine-card:nth-child(3n) {
    border-right: none;
  }

  .rb-engine-card:nth-child(n+4) {
    border-bottom: 1px solid var(--rb-border);
  }

  .rb-engine-card:last-child {
    border-bottom: none;
  }

  /* Terminal */
  .rb-terminal {
    border-radius: 14px;
  }

  .rb-terminal-bar {
    padding: 12px 16px;
  }

  .rb-dot {
    width: 10px;
    height: 10px;
  }

  .rb-terminal-search {
    margin: 8px 12px 16px;
    padding: 10px 14px;
    font-size: 0.8rem;
  }

  .rb-terminal-search-btn {
    width: 30px;
    height: 30px;
  }

  .rb-terminal-cards {
    grid-template-columns: 1fr;
    padding: 0 12px 12px;
    gap: 12px;
  }

  .rb-terminal-bottom {
    grid-template-columns: 1fr;
    padding: 0 12px 16px;
    gap: 12px;
  }

  .rb-terminal-insight,
  .rb-terminal-moves {
    padding: 20px 16px;
  }

  .rb-cliff-card {
    padding: 20px 16px;
  }

  /* Video */
  .rb-video-heading {
    font-size: 1.4rem;
    margin-bottom: 32px;
  }

  .rb-video-wrapper {
    max-width: 100%;
    padding-bottom: 56.25%;
  }

  /* Steps */
  .rb-steps-q1 {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .rb-steps-q2 {
    font-size: 1.5rem;
  }

  .rb-steps-quotes {
    margin-bottom: 40px;
  }

  .rb-steps-flow {
    flex-direction: column;
    gap: 8px;
  }

  .rb-step-arrow {
    transform: rotate(90deg);
  }

  .rb-step-arrow svg {
    width: 16px;
    height: 16px;
  }

  .rb-step-card {
    width: 100%;
    padding: 22px 20px;
  }

  .rb-step-label {
    font-size: 1.4rem;
  }

  /* CTA banner */
  .rb-cta-banner {
    padding: 60px 0;
  }

  .rb-cta-banner::before {
    width: 300px;
    height: 300px;
  }

  .rb-cta-banner .rb-heading {
    font-size: 1.6rem;
  }

  .rb-badge {
    font-size: 0.72rem;
    padding: 8px 18px;
  }

  /* Evidence */
  .rb-evidence-heading {
    font-size: 1.6rem;
  }

  .rb-evidence-sub {
    font-size: 0.9rem;
    margin-bottom: 32px;
  }

  .rb-evidence-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .rb-evidence-img {
    border-radius: 10px;
  }

  /* FAQ */
  .rb-faq-item {
    padding: 0 16px;
    border-radius: 14px;
  }

  .rb-faq-q {
    font-size: 0.9rem;
    padding: 16px 0;
  }

  .rb-faq-a p {
    font-size: 0.85rem;
  }

  /* Final */
  .rb-final {
    padding: 48px 0 120px;
  }

  /* Moves */
  .rb-move-num {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
    border-radius: 6px;
  }

  .rb-move {
    gap: 12px;
  }

  .rb-move p {
    font-size: 0.82rem;
  }
}

/* === FOOTER === */
.rb-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--rb-border);
  padding: 40px 24px;
}

.rb-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.rb-footer-logo img {
  height: 24px;
  opacity: 0.6;
}

.rb-footer-links {
  display: flex;
  gap: 24px;
}

.rb-footer-links a {
  font-size: 0.85rem;
  color: var(--rb-text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.rb-footer-links a:hover {
  color: var(--rb-white);
}

.rb-footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
  .rb-footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Small phones */
@media (max-width: 400px) {
  .rb-hero-heading {
    font-size: 1.6rem;
  }

  .rb-heading {
    font-size: 1.2rem;
  }

  .rb-terminal-search span {
    font-size: 0.72rem;
  }

  .rb-evidence-grid {
    grid-template-columns: 1fr;
  }

  .rb-steps-q1 {
    font-size: 1rem;
  }

  .rb-steps-q2 {
    font-size: 1.2rem;
  }

  .rb-cta-banner .rb-heading {
    font-size: 1.3rem;
  }

  .rb-engine-heading {
    font-size: 1.5rem;
  }

  .rb-float-icon {
    width: 36px;
    height: 36px;
  }
}

/* === WIZARD DARK THEME OVERRIDE FOR REBATE PAGE === */
.rb-page .home-wizard {
  background: transparent;
  padding: 50px 20px;
}

.rb-page .wizard-header h2 {
  color: #fff;
}

.rb-page .wizard-header p {
  color: rgba(255, 255, 255, 0.7);
}

.rb-page .wizard-card {
  background: transparent;
}

.rb-page .wizard-step h3 {
  color: #fff;
}

.rb-page .wizard-step-desc {
  color: rgba(255, 255, 255, 0.7);
}

.rb-page .wizard-2col-left h3 {
  color: #fff;
}

.rb-page .wizard-option {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.rb-page .wizard-option:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--orange);
}

.rb-page .wizard-option-text strong {
  color: #fff;
}

.rb-page .wizard-option-text small {
  color: rgba(255, 255, 255, 0.6);
}

.rb-page .wizard-input {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.rb-page .wizard-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.rb-page .wizard-progress-bar {
  background: rgba(255, 255, 255, 0.1);
}

.rb-page .wizard-step-num {
  color: rgba(255, 255, 255, 0.5);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.15);
}

.rb-page .wizard-step-num.active,
.rb-page .wizard-step-num.completed {
  color: #fff;
}

.rb-page .wizard-back-btn {
  color: rgba(255, 255, 255, 0.7);
}

.rb-page .wizard-disclaimer {
  color: rgba(255, 255, 255, 0.5);
}

.rb-page .wizard-success-stat strong {
  color: #fff;
}

.rb-page .wizard-success-stat span {
  color: rgba(255, 255, 255, 0.6);
}
