:root {
  /* New color theme (changed vs. original site): plum + teal */
  --brand-900: #221027;
  --brand-700: #4b1d57;
  --brand-600: #6a2c7c;
  --brand-500: #8c3aa5;
  --brand-300: #d7b7e3;
  --brand-soft: #f5eff8;
  --accent-600: #0f766e;
  --accent-100: #d1fae5;

  --surface-1: #ffffff;
  --surface-2: #fbf8fd;
  --border: rgba(17, 24, 39, 0.10);
}

/* Bootstrap-ish helpers */
.bg-surface-2 { background: var(--surface-2); }
.text-brand-muted { color: color-mix(in srgb, var(--brand-900) 45%, #ffffff 55%); }

/* Accessibility */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #000;
  color: #fff;
  padding: .5rem .75rem;
  z-index: 9999;
}
.skip-link:focus { left: .75rem; top: .75rem; border-radius: .5rem; }

/* Brand */
.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 5px;
  background: radial-gradient(circle at 30% 30%, var(--accent-600), var(--brand-500));
  box-shadow: 0 8px 24px rgba(140, 58, 165, 0.25);
  display: inline-block;
}

/* Buttons */
.btn-brand {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--brand-600);
  --bs-btn-border-color: var(--brand-600);
  --bs-btn-hover-bg: var(--brand-700);
  --bs-btn-hover-border-color: var(--brand-700);
  --bs-btn-active-bg: var(--brand-900);
  --bs-btn-active-border-color: var(--brand-900);
  --bs-btn-focus-shadow-rgb: 140, 58, 165;
}
.btn-outline-brand {
  --bs-btn-color: var(--brand-700);
  --bs-btn-border-color: color-mix(in srgb, var(--brand-700) 60%, #ffffff 40%);
  --bs-btn-hover-bg: var(--brand-soft);
  --bs-btn-hover-border-color: var(--brand-700);
  --bs-btn-active-bg: var(--brand-soft);
  --bs-btn-active-border-color: var(--brand-900);
  --bs-btn-focus-shadow-rgb: 140, 58, 165;
}

/* Hero */
.hero {
  background:
    radial-gradient(1200px 600px at 15% 10%, color-mix(in srgb, var(--brand-300) 35%, #fff 65%), transparent 55%),
    radial-gradient(900px 500px at 85% 15%, color-mix(in srgb, var(--accent-100) 55%, #fff 45%), transparent 60%),
    linear-gradient(180deg, #fff, var(--surface-2));
  border-bottom: 1px solid var(--border);
}
.py-lg-6 { padding-top: 4rem !important; padding-bottom: 4rem !important; }

.text-bg-brand-soft {
  background: var(--brand-soft) !important;
  color: var(--brand-700) !important;
  border: 1px solid color-mix(in srgb, var(--brand-300) 45%, #fff 55%);
}

.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem .75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(8px);
}
.rating-value { color: var(--brand-700); font-weight: 700; }

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .5rem;
}
.steps li {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .55rem .75rem;
  border: 1px solid var(--border);
  border-radius: .75rem;
  background: rgba(255,255,255,.65);
}
.step-n {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: var(--brand-soft);
  color: var(--brand-700);
  font-weight: 700;
}

.card-glass {
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
}

/* Tiles */
.brand-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  text-decoration: none;
  color: #111827;
  background: var(--surface-1);
  min-height: 160px;
  text-align: center;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.brand-tile:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--brand-500) 35%, #ffffff 65%);
  box-shadow: 0 10px 30px rgba(34, 16, 39, 0.08);
}

.brand-logo {
  width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  display: block;
}

/* Quotes */
.quote {
  margin: 0;
  padding: 1.1rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: #fff;
}
.quote blockquote { font-size: 0.98rem; }

/* Alerts */
.alert-brand-soft {
  background: color-mix(in srgb, var(--brand-soft) 65%, #fff 35%);
  border: 1px solid color-mix(in srgb, var(--brand-300) 35%, #fff 65%);
  color: var(--brand-900);
}

/* Links */
a { color: var(--brand-700); }
a:hover { color: var(--brand-900); }

