/* ============================================================
   COMPONENTS.CSS — Rukayat Rauf
   Every reusable UI component.
   Loaded on every page after global.css.
   ============================================================ */

/* ─── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--px);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s;
}

.nav.scrolled {
  background: rgba(247, 245, 240, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}

/* Logo */
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.4s;
  white-space: nowrap;
}

.nav.scrolled .nav-logo { color: var(--navy); }

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.25s;
}

.nav.scrolled .nav-links a { color: var(--muted); }
.nav-links a:hover          { color: #fff; }
.nav.scrolled .nav-links a:hover,
.nav-links a.active          { color: var(--accent); }
.nav.scrolled .nav-links a.active { color: var(--accent); }

/* When nav is on a dark hero, active link needs to be white */
.nav:not(.scrolled) .nav-links a.active { color: #fff; }

/* CTA button */
.nav-cta {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.5rem 1.2rem;
  border-radius: var(--r);
  transition: background 0.3s, border-color 0.3s;
}

.nav.scrolled .nav-cta {
  background: var(--navy);
  border-color: var(--navy);
}

.nav-cta:hover              { background: rgba(255, 255, 255, 0.25); }
.nav.scrolled .nav-cta:hover { background: var(--navy2); }

/* Mobile — nav links hidden below 900px */
@media (max-width: 900px) {
  .nav-links { display: none; }
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 3.5rem var(--px) 2rem;
}

.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--navy);
  display: block;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 220px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.9rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-col ul li a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--accent); }

.footer-base {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.footer-base p {
  font-family: var(--font-body);
  font-size: 0.77rem;
  color: var(--muted);
}

.footer-base-links {
  display: flex;
  gap: 1.25rem;
}

.footer-base-links a {
  font-family: var(--font-body);
  font-size: 0.77rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s;
}

.footer-base-links a:hover { color: var(--navy); }
.footer-base-links svg { width: 12px; height: 12px; fill: currentColor; }

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-base  { flex-direction: column; align-items: flex-start; }
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.6rem;
  border-radius: var(--r);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
}
.btn-primary:hover { background: var(--navy2); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--navy); }

.btn-ghost-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.btn-ghost-white:hover { border-color: #fff; }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover { background: #9a7009; }

/* Resume/download inline link — not a button */
.resume-link {
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.resume-link:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.7);
}
.resume-link svg { width: 13px; height: 13px; stroke: currentColor; fill: none; }

/* ─── TRUST STRIP ────────────────────────────────────────────── */
.trust-strip {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.trust-row {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  display: flex;
  flex-wrap: wrap;
}

.trust-item {
  flex: 1;
  min-width: 130px;
  padding: 1.5rem 1rem;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover      { background: var(--bg2); }

.trust-num {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  font-style: italic;
  display: block;
  line-height: 1.1;
}

.trust-lbl {
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: var(--muted);
  margin-top: 0.2rem;
  display: block;
}

@media (max-width: 900px) {
  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .trust-item:last-child { border-bottom: none; }
}

/* ─── CARDS — LIGHT (cream sections) ─────────────────────────── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(13, 31, 60, 0.09);
  border-color: #b0bad0;
}

/* Accent bar — project category colour-coding */
.card-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.card-bar-accent::before { background: var(--accent); }
.card-bar-teal::before   { background: var(--teal); }
.card-bar-fin::before    { background: var(--fin); }
.card-bar-crm::before    { background: var(--crm); }
.card-bar-gold::before   { background: var(--gold); }

/* ─── CARDS — DARK (navy sections) ───────────────────────────── */
.card-dark {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  transition: background 0.2s;
}
.card-dark:hover { background: rgba(255, 255, 255, 0.08); }

/* Elevated dark card (Academy proof, contact wrap) */
.card-dark-elevated {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 2.25rem;
}

/* ─── EYEBROW PILLS ──────────────────────────────────────────── */
.pill {
  font-family: var(--font-heading);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.22rem 0.7rem;
  border-radius: 20px;
  display: inline-block;
  width: fit-content;
}

.pill-blue   { background: var(--accent-light); color: var(--accent); }
.pill-teal   { background: var(--teal-light);   color: var(--teal); }
.pill-fin    { background: var(--fin-light);     color: var(--fin); }
.pill-crm    { background: var(--crm-light);     color: var(--crm); }
.pill-gold   { background: var(--gold-light);    color: var(--gold); }
.pill-navy   { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.15); }

/* Technology tags on dark backgrounds */
.pill-tech {
  font-family: var(--font-heading);
  font-size: 0.69rem;
  font-weight: 500;
  background: rgba(26, 86, 196, 0.28);
  border: 1px solid rgba(26, 86, 196, 0.4);
  color: rgba(255, 255, 255, 0.85);
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
}

/* Format pills (speaking section) */
.pill-format {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

/* ─── STORY HOOK ─────────────────────────────────────────────── */
/* Italic passage that opens a project card with a human situation */
.story-hook {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.65;
  border-left: 2px solid var(--border);
  padding-left: 0.85rem;
}

.story-hook-dark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  border-left: 2px solid rgba(26, 86, 196, 0.5);
  padding-left: 1rem;
}

/* ─── METRIC CELL GRID ───────────────────────────────────────── */
.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  overflow: hidden;
}

.metric-grid-light {
  background: var(--bg2);
  gap: 1px;
}

.metric-cell {
  background: rgba(255, 255, 255, 0.04);
  padding: 1.1rem 1rem;
}

.metric-cell-light {
  background: var(--card);
  padding: 1.1rem 1rem;
}

.metric-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #fff;
  font-style: italic;
  display: block;
  line-height: 1;
}

.metric-num-navy {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy);
  font-style: italic;
  display: block;
  line-height: 1;
}

.metric-num-gold {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  font-style: italic;
  display: block;
  line-height: 1;
}

.metric-lbl {
  font-family: var(--font-body);
  font-size: 0.67rem;
  color: rgba(255, 255, 255, 0.42);
  display: block;
  margin-top: 0.25rem;
  line-height: 1.4;
}

.metric-lbl-muted {
  font-family: var(--font-body);
  font-size: 0.67rem;
  color: var(--muted);
  display: block;
  margin-top: 0.25rem;
}

/* ─── OUTCOME CELL GRID ──────────────────────────────────────── */
/* Used for Academy outcomes panel and similar 2x2 fact grids */
.outcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  overflow: hidden;
}

.outcome-cell {
  background: rgba(255, 255, 255, 0.04);
  padding: 1.15rem 1.1rem;
}

.outcome-label {
  font-family: var(--font-heading);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-bottom: 0.35rem;
}

.outcome-value {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #fff;
  font-style: italic;
  line-height: 1.35;
  display: block;
}

/* ─── TESTIMONIAL CARD (STAGGERED) ──────────────────────────── */
.testi-stagger {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.testi-stagger .testi-card:nth-child(2) { margin-top: 3.5rem; }
.testi-stagger .testi-card:nth-child(3) { margin-top: 7rem; }

.testi-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--border);
  font-style: italic;
  line-height: 0.65;
  display: block;
  margin-bottom: 1.1rem;
}

.testi-tag {
  font-family: var(--font-heading);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.65rem;
  display: block;
}

.testi-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 1.35rem;
}

.testi-rule {
  width: 28px;
  height: 1.5px;
  background: var(--border);
  margin-bottom: 0.9rem;
}

.testi-who strong {
  font-family: var(--font-heading);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.86rem;
  display: block;
}

.testi-who span {
  font-family: var(--font-body);
  font-size: 0.77rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .testi-stagger { grid-template-columns: 1fr; }
  .testi-stagger .testi-card:nth-child(2),
  .testi-stagger .testi-card:nth-child(3) { margin-top: 0; }
}

/* ─── CONTACT WRAP (DARK CARD) ───────────────────────────────── */
.contact-wrap {
  background: var(--navy);
  border-radius: 24px;
  padding: 4rem 3.5rem;
  position: relative;
  overflow: hidden;
}

/* Ambient glow decorations */
.contact-wrap::before {
  content: '';
  position: absolute;
  top: -140px; left: -100px;
  width: 450px; height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 86, 196, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.contact-wrap::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.contact-head {
  text-align: center;
  margin-bottom: 2.75rem;
  position: relative;
}

.contact-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  color: #fff;
  font-style: italic;
  margin-bottom: 0.6rem;
}

.contact-head p {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.5);
  max-width: 420px;
  margin: 0 auto;
  font-size: 0.9rem;
}

.contact-branches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.75rem;
  position: relative;
}

.contact-branches.two-col {
  grid-template-columns: 1fr 1fr;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.branch-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}
.branch-card:hover { background: rgba(255, 255, 255, 0.09); }

.branch-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.04);
  font-style: italic;
  position: absolute;
  bottom: -0.75rem; right: 0.75rem;
  line-height: 1;
  pointer-events: none;
}

.branch-q {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.3;
}

.branch-p {
  font-family: var(--font-body);
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.7;
  flex: 1;
}

.branch-link {
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 600;
  color: #fff;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.28);
  width: fit-content;
  padding-bottom: 1px;
  transition: border-color 0.2s;
}
.branch-link:hover { border-color: #fff; }

.contact-base {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
}

.contact-email {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.contact-email:hover { color: #fff; }

/* Social row (used in contact base and footer) */
.social-row {
  display: flex;
  gap: 1.1rem;
}

.social-row a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
  transition: color 0.2s;
}
.social-row a:hover { color: #fff; }
.social-row svg     { width: 13px; height: 13px; fill: currentColor; }

@media (max-width: 900px) {
  .contact-wrap { padding: 2.5rem 1.5rem; }
  .contact-branches,
  .contact-branches.two-col { grid-template-columns: 1fr; }
  .contact-base { flex-direction: column; align-items: flex-start; }
}

/* ─── PILLAR GRID ────────────────────────────────────────────── */
/* Four-column bordered grid — Philosophy section */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.pillar {
  padding: 1.75rem 1.35rem;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.pillar:last-child { border-right: none; }
.pillar:hover      { background: var(--bg2); }

.pillar-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--border);
  font-style: italic;
  line-height: 1;
  display: block;
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}
.pillar:hover .pillar-num { color: var(--accent); }

.pillar-label {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
  display: block;
}

.pillar-belief {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.pillar-text {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .pillar-grid { grid-template-columns: 1fr 1fr; }
  .pillar:nth-child(2) { border-right: none; }
  .pillar:nth-child(3) { border-top: 1px solid var(--border); }
  .pillar:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
}

/* ─── CONTENT CARDS (external platform) ─────────────────────── */
.c-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, border-color 0.2s;
  text-decoration: none;
}
.c-card:hover {
  box-shadow: 0 6px 24px rgba(13, 31, 60, 0.08);
  border-color: #b0bad0;
}

.c-thumb {
  height: 114px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.c-thumb-yt { background: linear-gradient(135deg, #0d1f3c, #1a3060); }
.c-thumb-md { background: linear-gradient(135deg, #111, #2a2a2a); }
.c-thumb-li { background: linear-gradient(135deg, #0a66c2, #004182); }

.c-play {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-play svg { width: 14px; height: 14px; fill: #fff; margin-left: 2px; }

.c-badge {
  position: absolute;
  bottom: 0.55rem; left: 0.55rem;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.18rem 0.55rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.c-badge svg { width: 9px; height: 9px; fill: #fff; }

.c-body {
  padding: 1.1rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.c-h {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.c-p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.c-out {
  font-family: var(--font-heading);
  font-size: 0.77rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 0.2rem;
}

/* ─── HERO — INNER PAGE ──────────────────────────────────────── */
/* All non-homepage heroes use this shared pattern */
.hero-inner-page {
  background: var(--navy);
  padding: 8rem var(--px) 5rem;
  position: relative;
  overflow: hidden;
}

.hero-inner-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner-page::after {
  content: '';
  position: absolute;
  top: -160px; right: -80px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,86,196,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}

.hero-content-split {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 3rem;
}

.hero-overline {
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.25rem;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.12;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.hero-h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 2rem;
  border-left: 2px solid rgba(255, 255, 255, 0.15);
  padding-left: 1rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Hero stat panel (right column) */
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  min-width: 200px;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.04);
  padding: 1.1rem 1.25rem;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  font-style: italic;
  display: block;
  line-height: 1;
}

.hero-stat-lbl {
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.2rem;
  display: block;
}

@media (max-width: 900px) {
  .hero-content-split { grid-template-columns: 1fr; }
  .hero-stats { display: none; } /* Stats visible in trust strip below */
}

/* ─── WATERMARK NUMERAL ──────────────────────────────────────── */
/* Large background numeral — signature element */
.watermark {
  position: absolute;
  font-family: var(--font-display);
  font-style: italic;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.watermark-light {
  color: rgba(13, 31, 60, 0.045);
  font-size: clamp(7rem, 14vw, 13rem);
}

.watermark-dark {
  color: rgba(255, 255, 255, 0.03);
  font-size: clamp(10rem, 20vw, 22rem);
}
