/*
Theme CSS entry: pages.css
Page-specific sections. Move sections out of here when they become their own pages.
*/

/* RDBK Demo Hero */
.rdbk-hero {
  min-height: calc(100vh - var(--rdbk-header-height));
  display: flex;
  align-items: center;
  padding: 96px 0 100px;
  background: var(--rdbk-dark);
  color: var(--rdbk-white);
  overflow: hidden;
}

.rdbk-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: end;
  gap: 54px;
}

.rdbk-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: .01em;
}

.rdbk-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 99px;
  background: var(--rdbk-blue);
}

.rdbk-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(44px, 7.5vw, 92px);
  line-height: .93;
  letter-spacing: -.05em;
}

.rdbk-hero-text {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 18px;
  line-height: 1.72;
}

.rdbk-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.rdbk-hero-proof {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 28px;
  background: #181818;
}

.rdbk-hero-proof .rdbk-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #222222;
  color: var(--rdbk-blue);
  font-size: 15px;
}

.rdbk-hero-proof strong {
  font-size: 32px;
  line-height: 1;
  letter-spacing: -.055em;
}

.rdbk-hero-proof span {
  color: rgba(255, 255, 255, .65);
  font-size: 13px;
  line-height: 1.45;
}

.rdbk-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.rdbk-hero-tag {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 11px;
  border-radius: var(--rdbk-radius-pill);
  background: #222222;
  color: rgba(255, 255, 255, .66);
  font-size: 12px;
  font-weight: 680;
}

.rdbk-hero-tag .rdbk-icon {
  margin-right: 7px;
  color: var(--rdbk-blue);
  font-size: 11px;
}

.rdbk-section {
  padding: 105px 0;
  background: var(--rdbk-white);
}

.rdbk-section-label {
  margin: 0 0 14px;
  color: var(--rdbk-blue);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.rdbk-section h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -.05em;
}

.rdbk-demo-space {
  height: 80vh;
  background: var(--rdbk-paper);
}

/* RDBK Hero Responsive */
@media (max-width: 991px) {
  .rdbk-hero {
    min-height: calc(100vh - var(--rdbk-mobile-header-height));
  }

  .rdbk-hero-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .rdbk-hero-proof {
    max-width: 420px;
  }
}

@media (max-width: 640px) {
  .rdbk-hero {
    padding: 72px 0 78px;
  }

  .rdbk-hero h1 {
    font-size: clamp(43px, 13vw, 64px);
  }

  .rdbk-hero-text {
    font-size: 16px;
  }

  .rdbk-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .rdbk-hero-actions .rdbk-button {
    width: 100%;
  }
}
