/* ============================================================
   RECOVERY JUSTICE NETWORK INITIATIVE — Global Stylesheet
   Quiet, professional design. Loud message, calm container.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens ── */
:root {
  /* Surfaces — warm paper, not black */
  --bg:            #FBFAF8;
  --bg-card:       #FFFFFF;
  --bg-card-hover: #F6F3FB;
  --bg-soft:       #F3EFFA;   /* faint purple wash */
  --bg-ink:        #1A1626;   /* deep ink for footer */
  --bg-overlay:    rgba(26, 22, 38, 0.55);

  /* Purple — the single accent, used sparingly */
  --purple:        #6D28D9;
  --purple-light:  #7C3AED;
  --purple-dark:   #4C1D95;
  --purple-soft:   #F1EAFB;
  --purple-glow:   rgba(109, 40, 217, 0.10);

  /* Muted secondary accents — earthy, never neon */
  --teal:          #0F766E;
  --teal-dark:     #115E59;
  --teal-glow:     rgba(15, 118, 110, 0.07);

  --gold:          #B45309;
  --gold-light:    #D97706;
  --gold-glow:     rgba(180, 83, 9, 0.07);

  /* Text — ink with a hint of purple */
  --text:          #211C2E;
  --text-muted:    #5C5769;
  --text-dim:      #8A8597;

  /* Borders */
  --border:        #E8E3F0;
  --border-teal:   #D8E6E4;

  --font-heading:  'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:     'Inter', system-ui, -apple-system, sans-serif;

  --max-w:         1180px;
  --radius:        10px;
  --radius-lg:     16px;

  --transition:    0.2s ease;
  --shadow-card:   0 1px 2px rgba(26,22,38,0.04), 0 10px 30px rgba(26,22,38,0.05);
  --shadow-soft:   0 1px 2px rgba(26,22,38,0.05);
  --shadow-glow:   0 12px 34px rgba(109,40,217,0.10);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--purple); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--purple-dark); }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-optical-sizing: auto;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
}
h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; }
p  { font-size: 1.05rem; }

.text-purple { color: var(--purple); }
.text-teal   { color: var(--teal); }
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--text-muted); }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
section { padding: 4.5rem 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 1px 2px rgba(76,29,149,0.25);
}
.btn-primary:hover {
  background: var(--purple-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(76,29,149,0.20);
}
.btn-teal {
  background: var(--teal);
  color: #fff;
}
.btn-teal:hover { background: var(--teal-dark); color: #fff; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--purple); color: var(--purple); background: var(--purple-soft); }
.btn-ghost {
  background: transparent;
  color: var(--purple);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--purple-soft); color: var(--purple-dark); border-color: var(--purple); }
.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover { background: var(--gold-light); color: #fff; transform: translateY(-1px); }
.btn-lg { padding: 0.95rem 2rem; font-size: 1.05rem; }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.9rem; }

/* ── Navigation ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(251, 250, 248, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.nav-logo img { height: 40px; width: auto; }
.nav-logo-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  color: var(--text);
  line-height: 1.2;
}
.nav-logo-text span {
  color: var(--purple);
  display: block;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0; right: 0;
  height: 2px;
  background: var(--purple);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { display: none; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 230px;
  padding: 0.4rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 8px);
}
.dropdown-menu a {
  display: block;
  padding: 0.6rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  border-radius: 6px;
}
.dropdown-menu a:hover { background: var(--purple-soft); color: var(--purple-dark); }
.dropdown-menu a::after { display: none !important; }

.nav-cta { margin-left: 0.75rem; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ── */
.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  position: relative;
  padding: 8rem 0 4.5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg) 100%);
  z-index: 0;
}
.hero-grid-line { display: none; }
.hero .container { position: relative; z-index: 1; }
.hero-content {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--purple);
}
.hero h1 { margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.hero h1 .accent { color: var(--purple); }
.hero h1 .accent-gold { color: var(--gold); }
.hero p { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 2rem; max-width: 520px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-logo-wrap {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, var(--purple-soft) 0%, transparent 68%);
}
.hero-logo-wrap::before { display: none; }
.hero-logo-wrap::after { display: none; }
.hero-logo-wrap img { width: 210px; height: 210px; object-fit: contain; position: relative; z-index: 1; }

/* ── Section Labels ── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--purple);
}
.section-header { margin-bottom: 3rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--text-muted); font-size: 1.1rem; max-width: 640px; }
.section-header.center { text-align: center; }
.section-header.center .section-label { justify-content: center; }
.section-header.center p { margin: 0 auto; }

/* ── Cards ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-soft);
}
.card:hover {
  border-color: #D6CCEC;
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}
.card-icon.purple { background: var(--purple-soft); color: var(--purple); }
.card-icon.teal   { background: var(--teal-glow);   color: var(--teal); }
.card-icon.gold   { background: var(--gold-glow);   color: var(--gold); }
.card h3 { margin-bottom: 0.75rem; }
.card p  { color: var(--text-muted); font-size: 0.95rem; }

/* ── Grid Layouts ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── Divider ── */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ── Banner / Alert — restrained callout ── */
.disclaimer-banner {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-left: 3px solid var(--purple);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.disclaimer-banner .icon { color: var(--purple); font-size: 1rem; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.disclaimer-banner p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }
.disclaimer-banner strong { color: var(--text); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 8rem 0 3.5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero-bg { display: none; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p   { color: var(--text-muted); font-size: 1.15rem; max-width: 700px; }

/* ── Stats Bar ── */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.stats-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--purple);
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.4rem; letter-spacing: 0.03em; }

/* ── Quote Block ── */
.quote-block {
  border-left: 3px solid var(--purple);
  padding: 1.25rem 2rem;
  background: var(--bg-card);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
  box-shadow: var(--shadow-soft);
}
.quote-block p {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.quote-block cite { font-size: 0.85rem; color: var(--text-muted); font-style: normal; }

/* ── Tag Pills ── */
.tag {
  display: inline-block;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.tag-purple { background: var(--purple-soft); color: var(--purple-dark); }
.tag-teal   { background: var(--teal-glow);   color: var(--teal-dark); }
.tag-gold   { background: var(--gold-glow);   color: var(--gold); }
.tag-red    { background: rgba(190,18,60,0.08); color: #BE123C; }

/* ── Forms ── */
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}
.form-group label.required::after {
  content: ' *';
  color: var(--purple);
}
.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-glow);
}
.form-control::placeholder { color: var(--text-dim); }
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235C5769' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-control option { background: #fff; color: var(--text); }
.form-hint { font-size: 0.82rem; color: var(--text-dim); margin-top: 0.35rem; }

/* Checkbox / Radio */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
}
.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--purple);
  flex-shrink: 0;
  margin-top: 3px;
}
.form-check span { font-size: 0.95rem; color: var(--text-muted); }

/* Step Indicators (legacy, retained) */
.steps-indicator { display: flex; align-items: center; gap: 0; margin-bottom: 2.5rem; }
.step-item { display: flex; align-items: center; flex: 1; }
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700; flex-shrink: 0;
  border: 2px solid var(--border); color: var(--text-dim);
  transition: all var(--transition);
}
.step-num.active { border-color: var(--purple); background: var(--purple); color: #fff; }
.step-num.done   { border-color: var(--teal); background: var(--teal); color: #fff; }
.step-label { font-size: 0.78rem; color: var(--text-dim); margin-left: 0.5rem; display: none; }
.step-line { flex: 1; height: 2px; background: var(--border); margin: 0 0.5rem; }
.step-line.done { background: var(--teal); }

/* ── Blog Card ── */
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-soft);
}
.blog-card:hover {
  border-color: #D6CCEC;
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.blog-card-img {
  height: 190px;
  background: linear-gradient(135deg, var(--purple-soft), var(--bg-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: var(--purple);
}
.blog-card-body { padding: 1.5rem; }
.blog-card-body .tag { margin-bottom: 0.75rem; }
.blog-card-body h3 { margin-bottom: 0.5rem; font-size: 1.25rem; }
.blog-card-body h3 a { color: var(--text); }
.blog-card-body h3 a:hover { color: var(--purple); }
.blog-card-body p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem; }
.blog-card-meta { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--text-dim); }

/* ── CTA Section ── */
.cta-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4.5rem 0;
  text-align: center;
}
.cta-section h2 { margin-bottom: 1rem; }
.cta-section p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Footer — deep ink ── */
footer {
  background: var(--bg-ink);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand .nav-logo-text { color: #fff; }
.footer-brand .nav-logo-text span { color: var(--purple-light); }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.55); max-width: 280px; line-height: 1.6; }
.footer-brand .disclaimer-note {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 3px solid var(--purple-light);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 0.9rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: #fff; }

/* ── Pillar Cards ── */
.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-soft);
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--purple);
  opacity: 0;
  transition: opacity var(--transition);
}
.pillar-card:hover::before { opacity: 1; }
.pillar-card:hover {
  transform: translateY(-3px);
  border-color: #D6CCEC;
  box-shadow: var(--shadow-card);
}
.pillar-number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--purple-soft);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.pillar-card:hover .pillar-number { color: #E0D4F5; }
.pillar-card h3 { margin-bottom: 0.75rem; }
.pillar-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.25rem; }

/* ── Injustice Hub Cards ── */
.hub-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-soft);
}
.hub-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: #D6CCEC;
}
.hub-card.urgent { border-color: rgba(190,18,60,0.25); }
.hub-card.urgent:hover { box-shadow: 0 10px 30px rgba(190,18,60,0.10); }
.hub-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 1.5rem;
}
.hub-icon.red    { background: rgba(190,18,60,0.08); color: #BE123C; }
.hub-icon.purple { background: var(--purple-soft); color: var(--purple); }
.hub-icon.teal   { background: var(--teal-glow); color: var(--teal); }
.hub-icon.gold   { background: var(--gold-glow); color: var(--gold); }
.hub-card h3 { margin-bottom: 0.75rem; }
.hub-card p  { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 1.5rem; flex: 1; }

/* ── About Values ── */
.values-list { display: flex; flex-direction: column; gap: 1rem; }
.value-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  align-items: flex-start;
  transition: all var(--transition);
  box-shadow: var(--shadow-soft);
}
.value-item:hover { border-color: #D6CCEC; background: var(--bg-card-hover); }
.value-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  background: var(--purple-soft);
  color: var(--purple);
}
.value-content h4 { margin-bottom: 0.3rem; font-size: 1.1rem; }
.value-content p  { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ── What We Are / Are Not ── */
.are-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.are-col ul { list-style: none; }
.are-col ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-muted);
}
.are-col ul li:last-child { border-bottom: none; }
.are-col ul li .check { color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.are-col ul li .x     { color: #BE123C; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.are-col h3 { margin-bottom: 1.25rem; }

/* ── Utility ── */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.text-center { text-align: center; }
.text-right  { text-align: right; }
.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.w-full { width: 100%; }
.hidden { display: none !important; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-content { gap: 2.5rem; }
  .hero-logo-wrap { width: 260px; height: 260px; }
  .hero-logo-wrap img { width: 175px; height: 175px; }
}

@media (max-width: 768px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.9rem; }
  section { padding: 3.5rem 0; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 62px; left: 0; right: 0;
    background: rgba(251, 250, 248, 0.98);
    backdrop-filter: blur(12px);
    padding: 1.25rem 1.5rem;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-card);
  }
  .nav-links.open a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 1.05rem;
  }
  .nav-links.open a::after { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    padding: 0 0 0 1rem;
    box-shadow: none;
  }

  .hero { padding: 7rem 0 3.5rem; }
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { order: -1; }
  .hero p { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }
  .hero-eyebrow { justify-content: center; }

  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .are-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-inner { gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hub-card { padding: 2rem 1.5rem; }

  .page-hero { padding: 7rem 0 3rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.1rem; }
  .btn-lg { padding: 0.85rem 1.6rem; font-size: 1rem; }
  .hero-logo-wrap { width: 220px; height: 220px; }
  .hero-logo-wrap img { width: 150px; height: 150px; }
}
