/* Colorful Backup - self-contained marketing subtree */

:root {
  --bs-body-bg: #181a1b;
  --bs-body-color: #e0e0e0;
  --cb-green: #00b894;
  --cb-teal: #00cec9;
  --cb-dark: #1a1d1e;
  --cb-card: #222527;
  --cb-border: #333;
  --cb-muted: #aaa;
}

html {
  color-scheme: dark;
}

body {
  background: linear-gradient(135deg, #181a1b 0%, #1a1d1e 100%);
  color: #e0e0e0;
  min-height: 100vh;
}

a {
  color: var(--cb-green);
}

a:hover {
  color: var(--cb-teal);
}

.navbar {
  background-color: rgba(26, 29, 30, 0.96) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-brand {
  color: #fff;
}

.navbar-brand:hover {
  color: #fff;
}

.navbar-nav {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.nav-link {
  padding-right: 0.75rem !important;
  padding-left: 0.75rem !important;
}

.nav-link.active {
  color: var(--cb-green) !important;
}

.brand-mark {
  color: var(--cb-green);
}

.page-with-fixed-nav {
  padding-top: 74px;
}

.hero {
  padding: 7rem 0 6rem;
  background:
    radial-gradient(circle at 78% 30%, rgba(0, 184, 148, 0.16), transparent 34%),
    linear-gradient(135deg, #1a1d1e 0%, #2d3436 100%);
}

.eyebrow {
  color: var(--cb-green);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 900px;
}

.hero-copy {
  max-width: 760px;
  color: #bbb;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cb-green) 0%, var(--cb-teal) 100%);
  border: none;
  color: #07120f;
  font-weight: 700;
  padding: 0.75rem 2rem;
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, var(--cb-teal) 0%, var(--cb-green) 100%);
  color: #07120f;
}

.btn-outline-success {
  border-color: var(--cb-green);
  color: var(--cb-green);
}

.btn-outline-success:hover,
.btn-outline-success:focus {
  background: var(--cb-green);
  border-color: var(--cb-green);
  color: #07120f;
}

.section-heading {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
}

.feature-card,
.support-card {
  height: 100%;
  padding: 2rem;
  background: var(--cb-card);
  border: 1px solid var(--cb-border);
  border-radius: 12px;
}

.feature-icon {
  color: var(--cb-green);
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.feature-card p,
.support-card p {
  color: var(--cb-muted);
}

.protected-section {
  background: #222527;
}

.protection-table {
  overflow: hidden;
  border: 1px solid var(--cb-border);
  border-radius: 12px;
}

.protection-table .table {
  --bs-table-bg: var(--cb-card);
  --bs-table-color: #e0e0e0;
  --bs-table-border-color: var(--cb-border);
  margin-bottom: 0;
}

.protection-table th {
  background: #2d3436;
}

.status-restorable {
  color: var(--cb-green);
  font-weight: 700;
}

.status-compare {
  color: #74b9ff;
  font-weight: 700;
}

.status-private {
  color: #fdcb6e;
  font-weight: 700;
}

.history-callout,
.trial-note,
.contact-panel {
  padding: 2rem;
  background: linear-gradient(135deg, #1a3a2a 0%, #1a2d2e 100%);
  border: 1px solid rgba(0, 184, 148, 0.35);
  border-radius: 14px;
}

.pricing-hero {
  padding: 5rem 0 3rem;
}

.tier-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem 1.5rem;
  background: var(--cb-dark);
  border: 1px solid var(--cb-border);
  border-radius: 10px;
}

.tier-card.featured {
  border: 2px solid var(--cb-green);
  box-shadow: 0 0 30px rgba(0, 184, 148, 0.15);
}

.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  padding: 0.25rem 0.85rem;
  transform: translateX(-50%);
  background: var(--cb-green);
  border-radius: 999px;
  color: #07120f;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.tier-name {
  margin-bottom: 0.25rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.tier-price {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.tier-price-period,
.tier-detail {
  color: #999;
}

.feature-list {
  flex-grow: 1;
  padding: 0;
  margin: 1.5rem 0;
  list-style: none;
}

.feature-list li {
  padding: 0.4rem 0;
  color: #ccc;
}

.feature-list i {
  color: var(--cb-green);
}

.support-content {
  max-width: 840px;
  margin: 0 auto;
}

.support-content h2 {
  margin-top: 2.5rem;
  color: var(--cb-green);
}

.faq-item {
  margin-bottom: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--cb-card);
  border: 1px solid var(--cb-border);
  border-radius: 10px;
}

.faq-item summary {
  color: #fff;
  cursor: pointer;
  font-weight: 700;
}

.faq-item p {
  margin: 1rem 0 0;
  color: var(--cb-muted);
}

footer {
  background: var(--cb-dark);
  border-top: 1px solid var(--cb-border);
}

footer a {
  color: #aaa;
  text-decoration: none;
}

footer a:hover {
  color: var(--cb-green);
}
