/* ============================================
   TAYYIB CAPITAL V4 — DESIGN SYSTEM
   Black × Emerald × Gold
   ============================================ */

/* --- CSS Variables --- */
:root {
  --black: #000000;
  --white: #FFFFFF;
  --emerald-dark: #004225;
  --emerald: #10b981;
  --emerald-light: #34d399;
  --gold: #C9A84C;
  --off-white: #E5EFE8;
  --neutral-50: #fafafa;
  --neutral-100: #f5f5f5;
  --neutral-200: #e5e5e5;
  --neutral-300: #d4d4d4;
  --neutral-400: #a3a3a3;
  --neutral-500: #737373;
  --neutral-600: #525252;
  --neutral-700: #404040;
  --neutral-800: #262626;
  --neutral-900: #171717;
  --success: #10b981;
  --warning: #fbbf24;
  --error: #ef4444;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'Courier New', Courier, monospace;
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.25rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.875rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p { 
  color: var(--neutral-300); 
  line-height: 1.7; 
  max-width: 720px; 
}

.gradient-text {
  background: linear-gradient(135deg, var(--emerald-light), var(--emerald));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--emerald-light);
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--neutral-300);
  max-width: 700px;
  line-height: 1.7;
}

blockquote {
  border-left: 3px solid var(--emerald);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--neutral-300);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* --- Layout --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 640px) {
  .container { padding: 0 1.25rem; }
}

section {
  padding: 7rem 0;
}

@media (max-width: 768px) {
  section { padding: 4.5rem 0; }
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 640px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.875rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.logo svg {
  width: 28px;
  height: 28px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  color: var(--neutral-400);
  font-size: 0.8125rem;
  font-weight: 500;
  transition: color 0.3s ease;
  letter-spacing: 0.01em;
}

.nav-link:hover,
.nav-link.active {
  color: var(--emerald-light);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--emerald);
  color: var(--black);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--emerald-light);
  transform: translateY(-1px);
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) { opacity: 0; }

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-menu, .nav-cta-wrap { display: none; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
  }
  .nav-menu.open .nav-link {
    font-size: 1.5rem;
    color: var(--white);
  }
  .nav-menu.open .mobile-cta {
    display: inline-flex;
    margin-top: 1rem;
    background: var(--emerald);
    color: var(--black);
    padding: 0.875rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
  }
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--emerald);
  color: var(--black);
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--emerald-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  background: rgba(16, 185, 129, 0.08);
  border-color: var(--emerald);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--black);
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-gold:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.25);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 640px) {
  .btn-primary, .btn-secondary, .btn-gold {
    width: 100%;
    padding: 1rem 2rem;
  }
  .btn-group { flex-direction: column; }
}

/* --- Cards --- */
.card {
  padding: 2rem;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--neutral-800);
  background: linear-gradient(to bottom right, rgba(23, 23, 23, 0.5), var(--black));
  transition: all 0.4s ease;
}

.card:hover {
  border-color: rgba(16, 185, 129, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.card h3 {
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--neutral-400);
  line-height: 1.6;
}

.card-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--emerald);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

/* --- Forms --- */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--neutral-300);
  margin-bottom: 0.5rem;
}

.input, .textarea, .select {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  background: var(--neutral-900);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.textarea { min-height: 140px; resize: vertical; }

.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2310b981' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero .bismillah {
  font-size: 0.8125rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero h1 {
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.hero .lead {
  font-size: 1.125rem;
  color: var(--neutral-300);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* --- Page Header (for inner pages) --- */
.page-header {
  padding: 10rem 0 5rem;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(4, 66, 37, 0.12), transparent);
  pointer-events: none;
}

.page-header h1 {
  position: relative;
  z-index: 1;
}

.page-header p {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
}

/* --- Stat Grid --- */
.stat-grid {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  margin: 2.5rem 0;
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--emerald-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--neutral-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.375rem;
}

/* --- Timeline / Roadmap --- */
.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0.75rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--emerald), rgba(16, 185, 129, 0.1));
}

.timeline-item {
  position: relative;
  padding-bottom: 3rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.375rem;
  top: 0.375rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--emerald);
  border: 3px solid var(--black);
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-year {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--emerald-light);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* --- Blog Cards --- */
.blog-card {
  display: block;
  padding: 2rem;
  border: 1px solid var(--neutral-800);
  border-radius: var(--radius-2xl);
  background: linear-gradient(to bottom right, rgba(23, 23, 23, 0.5), var(--black));
  transition: all 0.4s ease;
  height: 100%;
}

.blog-card:hover {
  border-color: rgba(16, 185, 129, 0.25);
  transform: translateY(-3px);
}

.blog-card .pillar-tag {
  display: inline-block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--emerald);
  font-weight: 600;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-full);
}

.blog-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
  line-height: 1.35;
  color: var(--white);
  transition: color 0.3s;
}

.blog-card:hover h3 { color: var(--emerald-light); }

.blog-card .excerpt {
  font-size: 0.875rem;
  color: var(--neutral-400);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-card .meta {
  font-size: 0.75rem;
  color: var(--neutral-500);
}

.blog-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem;
}

@media (max-width: 768px) {
  .blog-card.featured {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem;
  }
}

.blog-card .coming-soon {
  display: inline-block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-full);
}

/* --- Blog Post (article page) --- */
.post-content {
  max-width: 720px;
  margin: 0 auto;
}

.post-content p {
  margin-bottom: 1.5rem;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--neutral-200);
}

.post-content h2 {
  font-size: 1.75rem;
  margin: 3rem 0 1.25rem;
}

.post-content h3 {
  font-size: 1.375rem;
  margin: 2.5rem 0 1rem;
}

.post-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  background: rgba(16, 185, 129, 0.04);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.post-content strong { color: var(--white); }

.post-cta {
  margin-top: 3rem;
  padding: 2rem;
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-2xl);
  background: rgba(16, 185, 129, 0.03);
  text-align: center;
}

.post-cta p {
  margin: 0 auto 1rem;
  font-size: 0.9375rem;
}

.post-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--neutral-800);
}

.post-tags .tag {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--neutral-800);
  border-radius: var(--radius-full);
  color: var(--neutral-400);
}

/* --- Trade Ledger --- */
.ledger-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.ledger-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--emerald);
  border-bottom: 1px solid var(--neutral-800);
  font-weight: 600;
}

.ledger-table td {
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  color: var(--neutral-300);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.ledger-table tr:hover td {
  background: rgba(16, 185, 129, 0.03);
}

.status-verified {
  color: var(--emerald);
  font-weight: 600;
}

.status-pending {
  color: var(--warning);
  font-weight: 600;
}

.status-progress {
  color: var(--emerald-light);
  font-weight: 600;
}

/* --- FAQ --- */
.faq-item {
  border-bottom: 1px solid var(--neutral-800);
  padding: 1.5rem 0;
}

.faq-question {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--emerald);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-top: 1rem;
}

.faq-answer p {
  font-size: 0.9375rem;
  color: var(--neutral-400);
  line-height: 1.7;
}

/* --- Two-Chamber Visual --- */
.chamber-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 3rem 0;
}

@media (max-width: 768px) {
  .chamber-grid { grid-template-columns: 1fr; }
}

.chamber {
  padding: 2.5rem;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--neutral-800);
  position: relative;
  overflow: hidden;
}

.chamber::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
}

.chamber-store {
  background: linear-gradient(to bottom, rgba(201, 168, 76, 0.06), transparent);
}

.chamber-store::before {
  background: linear-gradient(to right, var(--gold), rgba(201, 168, 76, 0.2));
}

.chamber-flow {
  background: linear-gradient(to bottom, rgba(16, 185, 129, 0.06), transparent);
}

.chamber-flow::before {
  background: linear-gradient(to right, var(--emerald), rgba(16, 185, 129, 0.2));
}

.chamber h3 {
  margin-bottom: 0.375rem;
}

.chamber .chamber-pct {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
}

.chamber-store .chamber-pct { color: var(--gold); }
.chamber-flow .chamber-pct { color: var(--emerald-light); }

.chamber ul {
  margin-top: 1rem;
}

.chamber li {
  padding: 0.375rem 0;
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--neutral-300);
}

.chamber li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--neutral-500);
}

/* --- Footer --- */
.footer {
  border-top: 1px solid var(--neutral-800);
  padding: 5rem 0 3rem;
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.footer h4 {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--neutral-300);
  margin-bottom: 1.25rem;
}

.footer a {
  display: block;
  font-size: 0.875rem;
  color: var(--neutral-500);
  padding: 0.25rem 0;
  transition: color 0.3s;
}

.footer a:hover { color: var(--emerald-light); }

.footer-brand p {
  font-size: 0.875rem;
  color: var(--neutral-500);
  margin-top: 0.75rem;
  max-width: 300px;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--neutral-600);
}

.footer-tagline {
  font-size: 0.8125rem;
  color: var(--neutral-500);
  font-style: italic;
}

/* --- Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Dividers --- */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--neutral-800), transparent);
  margin: 2rem 0;
}

.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(16, 185, 129, 0.15), transparent);
}

/* --- Newsletter Signup --- */
.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
}

.newsletter-form .input {
  flex: 1;
}

@media (max-width: 640px) {
  .newsletter-form {
    flex-direction: column;
  }
}

/* --- Pathway Steps --- */
.pathway {
  counter-reset: pathway-counter;
}

.pathway-step {
  counter-increment: pathway-counter;
  padding: 2rem;
  border: 1px solid var(--neutral-800);
  border-radius: var(--radius-2xl);
  position: relative;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.pathway-step:hover {
  border-color: rgba(16, 185, 129, 0.2);
}

.pathway-step::before {
  content: counter(pathway-counter);
  position: absolute;
  top: 2rem;
  left: 2rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(16, 185, 129, 0.12);
  line-height: 1;
}

.pathway-step h3 {
  padding-left: 2.5rem;
  margin-bottom: 0.5rem;
}

.pathway-step p {
  padding-left: 2.5rem;
  font-size: 0.9rem;
}

/* --- Accessibility --- */
*:focus { outline: none; }

.user-is-tabbing *:focus {
  outline: 2px solid var(--emerald);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Utility --- */
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }
.mb-8 { margin-bottom: 4rem; }
.mt-4 { margin-top: 2rem; }
.mt-8 { margin-top: 4rem; }
.pt-4 { padding-top: 2rem; }

/* --- Print --- */
@media print {
  .header, .footer, .btn-primary, .btn-secondary { display: none; }
  body { background: white; color: black; }
  section { padding: 2rem 0; }
}

/* --- Language Toggle --- */
.lang-toggle {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  margin-left: 0.75rem;
  flex-shrink: 0;
}

.lang-toggle span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.375rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--neutral-500);
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.lang-toggle span.active {
  background: var(--emerald);
  color: var(--black);
}

.lang-toggle:hover {
  border-color: rgba(16, 185, 129, 0.3);
}

@media (max-width: 900px) {
  .lang-toggle {
    position: fixed;
    top: 0.875rem;
    right: 3.5rem;
    z-index: 1001;
  }
}
