/* ═══════════════════════════════════════════════════════════════
   TANGYNT — pages.css  (reburbished)
   Brand palette only — no font-family declarations
   Primary  : rgb(112, 48, 160)
   Secondary: rgb(251, 252, 246)
════════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Brand */
  --primary:        rgb(112, 48, 160);
  --primary-dark:   rgb(80,  32, 118);
  --primary-deeper: rgb(52,  18,  82);
  --primary-mid:    rgb(140, 72, 196);
  --primary-soft:   rgb(168, 108, 220);
  --primary-pale:   rgba(112, 48, 160, .12);
  --primary-dim:    rgba(112, 48, 160, .06);
  --primary-border: rgba(112, 48, 160, .22);

  --secondary:      rgb(251, 252, 246);
  --secondary-mid:  rgb(240, 241, 234);
  --secondary-deep: rgb(225, 226, 218);

  --ink:            rgb(22, 10, 36);
  --ink-mid:        rgba(22, 10, 36, .68);
  --ink-soft:       rgba(22, 10, 36, .42);
  --white:          #ffffff;

  /* Spacing */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  32px;
  --space-lg:  64px;
  --space-xl:  96px;

  /* Misc */
  --ease:      cubic-bezier(.25, .8, .25, 1);
  --ease-out:  cubic-bezier(0, 0, .2, 1);
  --dur:       300ms;
  --dur-slow:  500ms;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --shadow-card: 0 2px 16px rgba(112, 48, 160, .08), 0 1px 4px rgba(22, 10, 36, .05);
  --shadow-lift: 0 12px 48px rgba(112, 48, 160, .16), 0 2px 8px rgba(22, 10, 36, .07);
  --shadow-glow: 0 0 40px rgba(112, 48, 160, .22);
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--secondary);
  color: var(--ink);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

/* ─── SECTION WRAPPERS ───────────────────────────────────────── */
.wf-section    {position: relative; }
.wf-container  { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-md); }
.wf-light      { background: var(--secondary); }
.wf-mid        { background: var(--secondary-mid); }
.wf-dark       { background: var(--primary-deeper); }

@media (max-width: 768px) {
  .wf-section   { padding: var(--space-lg) 0; }
  .wf-container { padding: 0 var(--space-sm); }
}

/* ─── SECTION HEADER ─────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: var(--space-lg); }

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
.wf-eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary-mid);
  margin-bottom: var(--space-sm);
  display: block;
}
.wf-eyebrow--gold  { color: var(--primary-soft); }
.wf-eyebrow--light { color: rgba(251, 252, 246, .5); }

.wf-h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.02em;
  color: var(--ink);
}
.wf-h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.015em;
  color: var(--ink);
}
.wf-h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}
.wf-h1 em, .wf-h2 em, .wf-h3 em {
  
  color: var(--primary);
}
.wf-h1--light, .wf-h2--light, .wf-h3--light { color: var(--secondary); }
.wf-h1--light em, .wf-h2--light em          { color: var(--primary-soft); }

.wf-body {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.85;
  color: var(--ink-mid);
}
.wf-body--light { color: rgba(251, 252, 246, .65); }

.wf-ornament {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin: var(--space-sm) 0 var(--space-md);
}
.wf-ornament--center { margin-left: auto; margin-right: auto; }

/* ─── SCROLL REVEAL ──────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"]  { transition-delay: .10s; }
[data-reveal-delay="2"]  { transition-delay: .20s; }
[data-reveal-delay="3"]  { transition-delay: .30s; }
[data-reveal-delay="4"]  { transition-delay: .40s; }
[data-reveal-delay="5"]  { transition-delay: .50s; }
[data-reveal-delay="6"]  { transition-delay: .60s; }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.wf-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: all var(--dur) var(--ease);
}
.wf-btn--primary {
  background: var(--primary);
  color: var(--secondary);
  box-shadow: 0 4px 20px rgba(112, 48, 160, .30);
}
.wf-btn--primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 8px 32px rgba(112, 48, 160, .40);
  transform: translateY(-2px);
  color: var(--secondary);
}
.wf-btn--outline-dark {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--primary-border);
}
.wf-btn--outline-dark:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-dim);
}
.wf-btn--ghost {
  background: transparent;
  color: var(--secondary);
  border: 1.5px solid rgba(251, 252, 246, .25);
}
.wf-btn--ghost:hover {
  border-color: var(--primary-soft);
  color: var(--primary-soft);
}

/* ─── WAVE / RULE ────────────────────────────────────────────── */
.wf-wave { display: block; width: 100%; overflow: hidden; line-height: 0; }
.wf-wave svg { display: block; width: 100%; }
.wf-rule {
  width: 100%;
  height: 1px;
  border: none;
  background: linear-gradient(90deg, transparent, rgba(112, 48, 160, .20), transparent);
}

/* ─── PILLS ──────────────────────────────────────────────────── */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 2px;
  border: 1.5px solid var(--primary-border);
  color: var(--primary);
  background: var(--primary-dim);
}

/* ═══════════════════════════════════════════════════════════════
   PAGE HERO
════════════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  background: var(--primary-deeper);
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 50%, rgba(112, 48, 160, .45) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 85% 80%, rgba(168, 108, 220, .12) 0%, transparent 60%);
}
.page-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  pointer-events: none;
}
.page-hero__orb--1 {
  width: 420px; height: 420px;
  background: rgba(112, 48, 160, .30);
  top: -120px; right: 8%;
  animation: orbFloat 13s ease-in-out infinite;
}
.page-hero__orb--2 {
  width: 260px; height: 260px;
  background: rgba(168, 108, 220, .12);
  bottom: -70px; left: 12%;
  animation: orbFloat 10s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-28px) scale(1.06); }
}
.page-hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  padding-bottom: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.page-hero__content { max-width: 680px; }
.page-hero__content .wf-h1 { color: var(--secondary); margin: 10px 0 18px; }
.page-hero__sub {
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(251, 252, 246, .62);
  max-width: 520px;
  line-height: 1.8;
}
.page-hero__scroll-hint { display: flex; gap: 5px; margin-top: var(--space-lg); }
.page-hero__scroll-hint span {
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--primary-soft);
  opacity: .4;
  animation: scrollPulse 1.6s ease-in-out infinite;
}
.page-hero__scroll-hint span:nth-child(2) { animation-delay: .2s; }
.page-hero__scroll-hint span:nth-child(3) { animation-delay: .4s; }
@keyframes scrollPulse {
  0%,100% { opacity: .4; transform: scale(1); }
  50%      { opacity: 1;  transform: scale(1.5); }
}
@media (max-width: 768px) {
  .page-hero { min-height: 400px; }
  .page-hero__inner { align-items: center; text-align: center; }
  .page-hero__sub { margin: 0 auto; }
  .page-hero__scroll-hint { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════
   SPLIT LAYOUT
════════════════════════════════════════════════════════════════ */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .split-layout { grid-template-columns: 1fr; gap: var(--space-lg); }
}

/* ─── Quote card ─────────────────────────────────────────────── */
.quote-card {
  background: var(--primary-deeper);
  border-radius: var(--radius-md);
  padding: 40px;
  position: relative;
  margin-bottom: 20px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(112, 48, 160, .25);
}
.quote-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-soft));
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.quote-card__mark {
  font-size: 5rem;
  font-weight: 900;
  color: var(--primary-soft);
  line-height: .6;
  margin-bottom: 16px;
}
.quote-card__text {
  font-size: 1.25rem;
  
  font-weight: 400;
  color: var(--secondary);
  line-height: 1.65;
}
.quote-card__text strong { color: var(--primary-soft); font-style: normal; font-weight: 700; }
.quote-card__source {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-soft);
  display: block;
  margin-top: 20px;
}

/* ─── Stat trio ──────────────────────────────────────────────── */
.stat-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(112, 48, 160, .10);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.stat-block {
  background: var(--white);
  padding: 24px 16px;
  text-align: center;
  transition: background var(--dur);
}
.stat-block:hover { background: var(--primary-dim); }
.stat-block__num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  line-height: 1;
}
.stat-block__label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: block;
  margin-top: 6px;
}

/* ═══════════════════════════════════════════════════════════════
   VISION PAGE
════════════════════════════════════════════════════════════════ */
.purpose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
@media (max-width: 992px) { .purpose-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .purpose-grid { grid-template-columns: 1fr; } }

.purpose-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid transparent;
}
.purpose-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-6px);
  border-bottom-color: var(--primary);
}
.purpose-card__icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  background: var(--primary-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  transition: background var(--dur), transform var(--dur);
}
.purpose-card:hover .purpose-card__icon {
  background: var(--primary);
  transform: rotate(8deg) scale(1.1);
}
.purpose-card__icon i { font-size: 22px; color: var(--primary); transition: color var(--dur); }
.purpose-card:hover .purpose-card__icon i { color: var(--secondary); }
.purpose-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.purpose-card p {
  font-size: .9rem;
  font-weight: 400;
  color: var(--ink-mid);
  line-height: 1.75;
}

/* Purpose banner */
.purpose-banner {
  background: var(--primary-deeper);
  border-radius: var(--radius-md);
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(112, 48, 160, .25);
}
.purpose-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-soft), transparent);
}
@media (max-width: 768px) {
  .purpose-banner { grid-template-columns: 1fr; padding: 32px 24px; gap: 28px; }
}
.purpose-banner__left p {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(251, 252, 246, .75);
  line-height: 1.8;
}
.purpose-banner__left strong { color: var(--primary-soft); font-weight: 600; }

.outcome-list { display: flex; flex-direction: column; gap: 12px; }
.outcome-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  font-weight: 400;
  color: rgba(251, 252, 246, .80);
}
.outcome-item i { color: var(--primary-soft); font-size: .9rem; flex-shrink: 0; }

/* Pillars */
.pillar-row {
  display: flex;
  align-items: stretch;
  background: rgba(251, 252, 246, .04);
  border: 1px solid rgba(251, 252, 246, .08);
  border-radius: var(--radius-md);
  overflow: hidden;
}
@media (max-width: 768px) { .pillar-row { flex-direction: column; } }
.pillar {
  flex: 1;
  padding: 52px 40px;
  text-align: center;
  transition: background var(--dur);
}
.pillar:hover { background: rgba(112, 48, 160, .12); }
.pillar__divider {
  width: 1px;
  background: rgba(251, 252, 246, .08);
  flex-shrink: 0;
}
@media (max-width: 768px) { .pillar__divider { width: 100%; height: 1px; } }
.pillar__num {
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(168, 108, 220, .22);
  line-height: 1;
  margin-bottom: 16px;
}
.pillar__num sub {
  font-size: 1.5rem;
  vertical-align: baseline;
  color: var(--primary-soft);
}
.pillar__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 14px;
}
.pillar__body {
  font-size: .9rem;
  font-weight: 400;
  color: rgba(251, 252, 246, .55);
  line-height: 1.8;
}

/* CTA block */
.page-cta { text-align: center; }
.cta-block { max-width: 600px; margin: 0 auto; }
.cta-btn-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ═══════════════════════════════════════════════════════════════
   PEDAGOGY PAGE
════════════════════════════════════════════════════════════════ */
.peda-intro { text-align: center; }
.peda-intro__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-dim);
  border: 1.5px solid var(--primary-border);
  padding: 8px 20px;
  border-radius: 2px;
  margin-bottom: var(--space-md);
}
.peda-intro__badge i { color: var(--primary); font-size: 14px; }
.peda-intro__badge span {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
}

/* Spectrum hub */
.spectrum-hub { max-width: 560px; margin: 0 auto; position: relative; padding: 20px; }
.hub-core {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--primary-deeper);
  border: 2px solid var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  box-shadow: 0 0 40px rgba(112, 48, 160, .20);
  position: relative;
  z-index: 2;
}
.hub-core span {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--secondary);
}
.hub-core small {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-soft);
  margin-top: 2px;
}
.spectrum-spokes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  justify-items: center;
}
.spoke__node {
  background: var(--primary-deeper);
  border-radius: var(--radius-md);
  padding: 20px 12px;
  text-align: center;
  border: 1.5px solid rgba(112, 48, 160, .18);
  transition: border-color var(--dur), transform var(--dur), box-shadow var(--dur);
  cursor: default;
  min-width: 90px;
}
.spoke__node:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.spoke__node i { font-size: 20px; color: var(--primary-soft); display: block; margin-bottom: 8px; }
.spoke__node span { font-size: .78rem; font-weight: 500; color: rgba(251, 252, 246, .72); }

@media (max-width: 640px) { .spectrum-spokes { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .spectrum-spokes { grid-template-columns: repeat(2, 1fr); } }

/* Structure ladder */
.structure-ladder { max-width: 700px; margin: 0 auto; }
.structure-rung {
  background: rgba(251, 252, 246, .04);
  border: 1.5px solid rgba(251, 252, 246, .08);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 28px;
  transition: background var(--dur), border-color var(--dur);
}
.structure-rung:hover {
  background: rgba(112, 48, 160, .10);
  border-color: rgba(112, 48, 160, .30);
}
.structure-rung__num {
  font-size: 2.4rem;
  font-weight: 800;
  color: rgba(168, 108, 220, .25);
  flex-shrink: 0;
  width: 48px;
  text-align: center;
}
.structure-rung__content { flex: 1; }
.structure-rung__content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 6px;
}
.structure-rung__content p {
  font-size: .88rem;
  font-weight: 400;
  color: rgba(251, 252, 246, .55);
  line-height: 1.75;
}
.structure-rung__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-soft);
  border: 1.5px solid rgba(112, 48, 160, .30);
  padding: 5px 12px;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .structure-rung { flex-direction: column; align-items: flex-start; gap: 12px; }
}
.structure-connector {
  text-align: center;
  color: rgba(168, 108, 220, .40);
  font-size: 14px;
  padding: 10px 0;
}

/* Content type grid */
.content-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
@media (max-width: 768px) { .content-type-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .content-type-grid { grid-template-columns: 1fr; } }

.ct-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--dur), transform var(--dur);
  border-bottom: 3px solid transparent;
}
.ct-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-5px);
  border-bottom-color: var(--primary);
}
.ct-card__icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--primary-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background var(--dur);
}
.ct-card:hover .ct-card__icon { background: var(--primary); }
.ct-card__icon i { font-size: 20px; color: var(--primary); transition: color var(--dur); }
.ct-card:hover .ct-card__icon i { color: var(--secondary); }
.ct-card h4 { font-size: 1.2rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.ct-card p  { font-size: .88rem; font-weight: 400; color: var(--ink-mid); line-height: 1.75; }

/* Journey track */
.journey-track { position: relative; display: flex; flex-direction: column; gap: 0; }
.journey-line {
  position: absolute;
  left: 28px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), rgba(112, 48, 160, .08));
}
@media (max-width: 640px) { .journey-line { display: none; } }

.journey-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding-bottom: var(--space-md);
  position: relative;
}
.journey-step:last-child { padding-bottom: 0; }

.journey-step__dot {
  width: 56px; height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--primary-deeper);
  border: 2px solid rgba(112, 48, 160, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: border-color var(--dur), box-shadow var(--dur);
}
.journey-step__dot:hover { border-color: var(--primary); box-shadow: var(--shadow-glow); }
.journey-step__dot span { font-size: 1.3rem; font-weight: 800; color: var(--primary-soft); }
.journey-step__dot--gold {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}
.journey-step__dot--gold span { color: var(--secondary); }

.journey-step__card {
  flex: 1;
  background: var(--primary);
  border: 1.5px solid rgba(251, 252, 246, .08);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  transition: background var(--dur), border-color var(--dur);
}
.journey-step__card:hover {
  background: rgba(112, 48, 160, .08);
  border-color: rgba(112, 48, 160, .25);
}
.journey-step__card--gold {
  border-color: rgba(112, 48, 160, .35);
  background: var(--primary);
}
.journey-step__level {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary-soft);
  display: block;
  margin-bottom: 6px;
}
.journey-step__card h4 { font-size: 1.35rem; font-weight: 700; color: var(--secondary); margin-bottom: 8px; }
.journey-step__card p  { font-size: .88rem; font-weight: 400; color: rgba(251, 252, 246, .58); line-height: 1.75; margin-bottom: 14px; }
.journey-step__stats { display: flex; gap: 16px; flex-wrap: wrap; }
.journey-step__stats span { font-size: .8rem; font-weight: 400; color: rgba(251, 252, 246, .45); }
.journey-step__stats b { font-weight: 700; color: rgba(251, 252, 246, .88); }

.diagnostic-nudge {
  background: var(--primary-deeper);
  border: 1.5px solid rgba(112, 48, 160, .25);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}
.diagnostic-nudge i { font-size: 28px; color: var(--primary-soft); flex-shrink: 0; }
.diagnostic-nudge p { font-size: .9rem; color: rgba(251, 252, 246, .68); margin: 0; }
.diagnostic-nudge p:first-child { color: var(--secondary); font-weight: 600; margin-bottom: 3px; }
@media (max-width: 600px) { .diagnostic-nudge { flex-direction: column; text-align: center; } }

/* ═══════════════════════════════════════════════════════════════
   WHY CHOOSE US PAGE
════════════════════════════════════════════════════════════════ */
.spectrum-claim-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .spectrum-claim-layout { grid-template-columns: 1fr; gap: var(--space-lg); } }

/* Bridge diagram */
.bridge-diagram {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}
.bridge-side h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
  text-align: center;
}
.bridge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--secondary-mid);
}
.bridge-item:last-child { border-bottom: none; }
.bridge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}
.bridge-dot--gold { background: var(--primary-soft); }
.bridge-item span { font-size: .85rem; font-weight: 400; color: var(--ink-mid); }
.bridge-center { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.bridge-arc {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--primary-deeper);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bridge-arc i { color: var(--primary-soft); font-size: 16px; }

/* 6 Reasons grid */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
@media (max-width: 992px) { .reasons-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .reasons-grid { grid-template-columns: 1fr; } }

.reason-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--dur), transform var(--dur);
  border-bottom: 3px solid transparent;
}
.reason-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-6px);
  border-bottom-color: var(--primary);
}
.reason-card--featured { border: 1.5px solid var(--primary-border); }
.reason-card__number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-dim);
  position: absolute;
  top: 16px; right: 20px;
  line-height: 1;
  transition: color var(--dur);
}
.reason-card:hover .reason-card__number { color: rgba(112, 48, 160, .15); }
.reason-card__icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--primary-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--dur), transform var(--dur);
}
.reason-card:hover .reason-card__icon { background: var(--primary); transform: rotate(6deg) scale(1.1); }
.reason-card__icon i { font-size: 20px; color: var(--primary); transition: color var(--dur); }
.reason-card:hover .reason-card__icon i { color: var(--secondary); }
.reason-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.reason-card p  { font-size: .88rem; font-weight: 400; color: var(--ink-mid); line-height: 1.75; margin-bottom: 16px; }
.reason-card__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  border: 1.5px solid var(--primary-border);
  padding: 4px 10px;
  border-radius: 2px;
  display: inline-block;
}

/* Expect timeline */
.expect-timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}
@media (max-width: 768px) { .expect-timeline { grid-template-columns: 1fr; } }

.expect-tl-item {
  background: rgba(251, 252, 246, .04);
  border: 1.5px solid rgba(251, 252, 246, .07);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  position: relative;
  transition: background var(--dur), border-color var(--dur);
}
.expect-tl-item:hover {
  background: rgba(112, 48, 160, .10);
  border-color: rgba(112, 48, 160, .25);
}
.expect-tl-num {
  font-size: 4rem;
  font-weight: 800;
  color: rgba(168, 108, 220, .12);
  position: absolute;
  top: 20px; right: 24px;
  line-height: 1;
}
.expect-tl-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.expect-tl-icon i { font-size: 20px; color: var(--primary-soft); }
.expect-tl-content h3 { font-size: 1.35rem; font-weight: 700; color: var(--secondary); margin-bottom: 10px; }
.expect-tl-content p  { font-size: .88rem; font-weight: 400; color: rgba(251, 252, 246, .58); line-height: 1.8; }
.expect-tl-content em { color: var(--primary-soft);  }

/* ═══════════════════════════════════════════════════════════════
   WHO WE ARE PAGE
════════════════════════════════════════════════════════════════ */
.brand-story-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .brand-story-layout { grid-template-columns: 1fr; gap: var(--space-lg); } }

/* Brand emblem */
.brand-emblem {
  position: relative;
  width: 280px; height: 280px;
  margin: 0 auto;
}
.brand-emblem__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(112, 48, 160, .20);
  animation: ringPulse 4s ease-in-out infinite;
}
.brand-emblem__ring--outer { inset: 0; animation-delay: 0s; }
.brand-emblem__ring--inner { inset: 24px; animation-delay: .7s; }
@keyframes ringPulse {
  0%,100% { border-color: rgba(112, 48, 160, .20); }
  50%      { border-color: rgba(112, 48, 160, .55); }
}
.brand-emblem__core {
  position: absolute;
  inset: 48px;
  border-radius: 50%;
  background: var(--primary-deeper);
  border: 2px solid var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(112, 48, 160, .18);
}
.brand-emblem__name {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: 4px;
}
.brand-emblem__tagline {
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--primary-soft);
  margin-top: 4px;
  text-align: center;
  max-width: 120px;
  line-height: 1.4;
}

/* Brand values */
.brand-values { display: flex; flex-wrap: wrap; gap: 12px; margin-top: var(--space-md); }
.brand-value {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-mid);
}
.brand-value i { color: var(--primary); font-size: 14px; }

/* Founders */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 768px) { .founders-grid { grid-template-columns: 1fr; } }

.founder-card {
  background: rgba(251, 252, 246, .04);
  border: 1.5px solid rgba(251, 252, 246, .08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--dur), transform var(--dur), border-color var(--dur);
}
.founder-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(112, 48, 160, .30);
}
.founder-card__photo-wrap { position: relative; padding: 40px 40px 0; text-align: center; }
.founder-card__photo {
  width: 120px; height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  border: 2px solid rgba(112, 48, 160, .30);
  transition: border-color var(--dur), box-shadow var(--dur);
}
.founder-card:hover .founder-card__photo {
  border-color: var(--primary);
  box-shadow: 0 0 0 5px rgba(112, 48, 160, .12);
}
.founder-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: filter var(--dur);
}
.founder-card:hover .founder-card__photo img { filter: grayscale(0%); }
.founder-card__photo-accent {
  width: 80px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  margin: 20px auto 0;
}
.founder-card__body { padding: 8px 36px 40px; text-align: center; }
.founder-card__role {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-soft);
  display: block;
  margin-bottom: 6px;
}
.founder-card__name {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 4px;
}
.founder-divider { width: 32px; height: 1px; background: rgba(112, 48, 160, .30); margin: 16px auto; }
.founder-card__bio {
  font-size: .88rem;
  font-weight: 400;
  color: rgba(251, 252, 246, .58);
  line-height: 1.8;
  margin-bottom: 16px;
}
.founder-card__quote {
  font-size: 1rem;
  
  font-weight: 400;
  color: rgba(251, 252, 246, .75);
  border-left: 2px solid var(--primary);
  padding-left: 16px;
  text-align: left;
  line-height: 1.7;
  margin-bottom: 20px;
}
.founder-card__expertise { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.expertise-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  border: 1.5px solid rgba(112, 48, 160, .18);
  padding: 4px 10px;
  border-radius: 2px;
}

/* Beliefs grid */
.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
@media (max-width: 992px) { .beliefs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .beliefs-grid { grid-template-columns: 1fr; } }

.belief-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--dur), transform var(--dur);
  border-bottom: 3px solid transparent;
}
.belief-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-6px);
  border-bottom-color: var(--primary);
}
.belief-card__icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  background: var(--primary-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  transition: background var(--dur);
}
.belief-card:hover .belief-card__icon { background: var(--primary); }
.belief-card__icon i { font-size: 22px; color: var(--primary); transition: color var(--dur); }
.belief-card:hover .belief-card__icon i { color: var(--secondary); }
.belief-card h4 { font-size: 1.15rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.belief-card p  { font-size: .88rem; font-weight: 400; color: var(--ink-mid); line-height: 1.75; }

/* Manifesto */
.manifesto-block { border-radius: var(--radius-md); overflow: hidden; position: relative; }
.manifesto-block__inner {
  background: var(--primary-deeper);
  padding: 52px;
  text-align: center;
  position: relative;
  border: 1px solid rgba(112, 48, 160, .25);
}
.manifesto-block__inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-soft), transparent);
}
.manifesto-text {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--secondary);
}
.manifesto-text em { color: var(--primary-soft);  }