/* ============================================================
   WTP DESIGN SYSTEM v2.0 — June 2026
   Brand: Navy #0B1437 | Purple #1E1249 | Gold #C9A84C
           Teal #00D4FF  | White #FFFFFF  | Ice #F8F9FF
   ============================================================ */

:root {
  --navy:        #0B1437;
  --navy-deep:   #070D26;
  --purple:      #1E1249;
  --gold:        #C9A84C;
  --gold-light:  #E2C578;
  --teal:        #00D4FF;
  --teal-dim:    rgba(0,212,255,0.15);
  --white:       #FFFFFF;
  --ice:         #F8F9FF;
  --muted:       rgba(255,255,255,0.72); /* WCAG: raised from 0.55 to pass 4.5:1 on navy */
  --glass-bg:    rgba(255,255,255,0.06);
  --glass-hover: rgba(255,255,255,0.10);
  --glass-border:rgba(255,255,255,0.12);
  --gold-border: rgba(201,168,76,0.5);
  --teal-border: rgba(0,212,255,0.3);
  --font:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display:'Syne', 'Inter', sans-serif;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:    cubic-bezier(0, 0, 0.2, 1);
  --radius:      12px;
  --radius-lg:   20px;
  --max-w:       1280px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); background: var(--navy); color: var(--white); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--font); border: none; }

/* ── UTILITY ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
a.skip-link {
  position: absolute; top: -100%; left: 1rem; z-index: 9999;
  padding: 0.6rem 1.2rem; border-radius: var(--radius);
  background: var(--teal); color: var(--navy); font-weight: 700;
  transition: top 0.15s;
}
a.skip-link:focus { top: 1rem; }

/* ── NAVIGATION ── */
.wtp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(7, 13, 38, 0.6);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border-bottom: 1px solid var(--glass-border);
  transition: background 0.3s var(--ease), padding 0.3s var(--ease);
}
.wtp-nav.scrolled { background: rgba(7,13,38,0.92); padding: 0.75rem 2rem; }
.wtp-nav__logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; color: inherit; }
.wtp-nav__logo img { height: 40px; width: 40px; border-radius: 50%; object-fit: contain; background: #111936; }
.wtp-nav__logo-text { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--white); line-height: 1.3; }
.wtp-footer__logo { display: flex; align-items: center; gap: 0.75rem; }
.wtp-footer__logo img { height: 36px; width: 36px; border-radius: 50%; object-fit: contain; background: #111936; }
.wtp-footer__logo-text { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); line-height: 1.3; }
.wtp-nav__links { display: flex; align-items: center; gap: 2rem; }
.wtp-nav__li-mobile { display: none; }
.wtp-nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
  position: relative;
}
.wtp-nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.wtp-nav--open .wtp-nav__hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.wtp-nav--open .wtp-nav__hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.wtp-nav--open .wtp-nav__hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.wtp-nav__links a {
  font-size: 0.875rem; font-weight: 500; color: var(--muted);
  transition: color 0.2s; letter-spacing: 0.01em;
}
.wtp-nav__links a:hover { color: var(--white); }
.wtp-nav__cta {
  padding: 0.5rem 1.25rem;
  background: transparent;
  border: 1px solid var(--gold-border);
  border-radius: 6px;
  color: var(--gold) !important;
  font-weight: 600;
  font-size: 0.875rem;
  transition: background 0.2s, border-color 0.2s;
  display: inline-block;
}
.wtp-nav__cta:hover { background: rgba(201,168,76,0.12); border-color: var(--gold); color: var(--gold-light) !important; }
.wtp-nav__social { display: flex; align-items: center; gap: 0.75rem; }
.wtp-nav__social a { color: var(--muted); transition: color 0.2s; }
.wtp-nav__social a:hover { color: var(--teal); }
.wtp-nav__social svg { width: 18px; height: 18px; fill: currentColor; }

/* ── HERO ── */
.wtp-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: radial-gradient(ellipse 80% 70% at 65% 50%, rgba(30,18,73,0.8) 0%, var(--navy-deep) 70%);
  overflow: hidden;
}
.wtp-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 40% 60% at 20% 50%, rgba(0,212,255,0.04) 0%, transparent 60%);
}
#globe-canvas {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 55%; height: 100%;
  z-index: 0;
}
.wtp-hero__content {
  position: relative; z-index: 2;
  max-width: 640px; padding: 7rem 2rem 5rem;
  padding-left: clamp(2rem, 6vw, 8rem);
}
.wtp-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 1.5rem;
}
.wtp-hero__eyebrow::before {
  content: ''; display: block; width: 24px; height: 1px; background: var(--teal);
}
.wtp-hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700;
  line-height: 1.1; letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.wtp-hero__h1 em { font-style: normal; color: var(--gold); }
.wtp-hero__sub {
  font-size: 1.1rem; font-weight: 400; line-height: 1.7;
  color: var(--muted); max-width: 480px; margin-bottom: 2.5rem;
}
.wtp-hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, var(--gold), #A88930);
  color: var(--navy-deep); font-weight: 700; font-size: 0.9rem;
  border-radius: 8px; letter-spacing: 0.01em;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(201,168,76,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,0.5); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--glass-bg); color: var(--white); font-weight: 600; font-size: 0.9rem;
  border: 1px solid var(--glass-border); border-radius: 8px;
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s;
}
.btn-secondary:hover { background: var(--glass-hover); border-color: var(--teal-border); }
.wtp-hero__clients { margin-top: 4rem; }
.wtp-hero__clients-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.wtp-hero__clients-row { display: flex; gap: 2rem; align-items: center; flex-wrap: wrap; }
.wtp-hero__clients-row span { font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.3); letter-spacing: 0.05em; text-transform: uppercase; }

/* ── STATS BAR ── */
.wtp-stats {
  position: relative; z-index: 5;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 2rem 0;
}
.wtp-stats__inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}
.wtp-stat {
  padding: 1.5rem 2rem;
  text-align: center;
  border-right: 1px solid var(--glass-border);
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.wtp-stat:last-child { border-right: none; }
.wtp-stat.visible { opacity: 1; transform: none; }
.wtp-stat__number {
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 700; letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--white) 0%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.wtp-stat__label { font-size: 0.8rem; font-weight: 500; color: var(--muted); margin-top: 0.4rem; letter-spacing: 0.03em; }

/* ── SECTION HEADER ── */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 1rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--teal-border);
  border-radius: 20px;
  background: rgba(0,212,255,0.06);
}
.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700;
  letter-spacing: -0.01em; line-height: 1.2;
  margin-bottom: 1rem;
}
.section-h2 em { font-style: normal; color: var(--gold); }
.section-lead { font-size: 1.05rem; color: var(--muted); line-height: 1.7; }

/* ── SERVICES BENTO ── */
.wtp-services {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}
.bento-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  cursor: default;
  opacity: 0; transform: translateY(30px);
}
.bento-card.visible { opacity: 1; transform: none; }
.bento-card:hover { background: var(--glass-hover); border-color: var(--gold-border); transform: translateY(-4px); }
.bento-card--wide { grid-column: span 2; }
.bento-card__icon {
  width: 48px; height: 48px; margin-bottom: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--teal-dim); border-radius: 10px;
}
.bento-card__icon svg { width: 24px; height: 24px; stroke: var(--teal); fill: none; stroke-width: 1.5; }
.bento-card--gold .bento-card__icon { background: rgba(201,168,76,0.12); }
.bento-card--gold .bento-card__icon svg { stroke: var(--gold); }
.bento-card__title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; letter-spacing: -0.01em; }
.bento-card__desc { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }
.bento-card__link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  margin-top: 1.25rem; font-size: 0.8rem; font-weight: 600;
  color: var(--teal); transition: gap 0.2s;
}
.bento-card__link:hover { gap: 0.6rem; }
.bento-card--wide .bento-card__desc { max-width: 480px; }
.bento-card__hover-glow {
  position: absolute; inset: -1px; border-radius: var(--radius-lg);
  border: 1px solid transparent; pointer-events: none;
  transition: border-color 0.3s;
}
.bento-card:hover .bento-card__hover-glow { border-color: var(--gold); box-shadow: 0 0 20px rgba(201,168,76,0.2); }
.bento-card { position: relative; }

/* ── MIGRATION LIFECYCLE ── */
.wtp-lifecycle {
  padding: 6rem 0;
  background: var(--purple);
  position: relative; overflow: hidden;
}
.wtp-lifecycle::before {
  content: '';
  position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.lifecycle-steps {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; margin-top: 3rem; position: relative;
}
.lifecycle-steps::before {
  content: '';
  position: absolute; top: 28px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--gold), var(--teal), transparent);
}
.lifecycle-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 1rem;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.lifecycle-step.visible { opacity: 1; transform: none; }
.lifecycle-step__num {
  width: 56px; height: 56px; border-radius: 50%;
  border: 2px solid var(--teal); background: var(--navy-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; color: var(--teal);
  margin-bottom: 1rem; position: relative; z-index: 1;
}
.lifecycle-step:nth-child(5) .lifecycle-step__num { border-color: var(--gold); color: var(--gold); }
.lifecycle-step__title { font-size: 0.875rem; font-weight: 700; margin-bottom: 0.4rem; }
.lifecycle-step__desc { font-size: 0.75rem; color: var(--muted); line-height: 1.5; }

/* ── CLIENT PROFILES ── */
.wtp-profiles { padding: 6rem 0; background: var(--navy); }
.profiles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.profile-card {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 2rem;
  display: flex; gap: 1.5rem; align-items: flex-start;
  transition: background 0.2s, border-color 0.2s;
  opacity: 0; transform: translateY(20px);
}
.profile-card.visible { opacity: 1; transform: none; }
.profile-card:hover { background: var(--glass-hover); border-color: var(--teal-border); }
.profile-card__icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--teal-dim); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.profile-card__icon svg { width: 22px; height: 22px; stroke: var(--teal); fill: none; }
.profile-card__title { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.profile-card__desc { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* ── TEAM ── */
.wtp-team { padding: 6rem 0; background: var(--navy-deep); }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.team-card {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
  opacity: 0; transform: translateY(30px);
}
.team-card.visible { opacity: 1; transform: none; }
.team-card:hover { transform: translateY(-6px); border-color: var(--gold-border); }
.team-card__photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center top; filter: grayscale(100%); transition: filter 0.4s; }
.team-card:hover .team-card__photo { filter: grayscale(80%); }
.team-card__info { padding: 1.5rem; }
.team-card__name { font-size: 1.25rem; font-weight: 800; margin-bottom: 0.25rem; letter-spacing: -0.02em; }
.team-card__title { font-size: 0.8rem; font-weight: 600; color: var(--gold); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.75rem; }
.team-card__bio { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* ── CONTACT CTA ── */
.wtp-contact {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--purple) 0%, var(--navy-deep) 100%);
  text-align: center; position: relative; overflow: hidden;
}
.wtp-contact::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 60%);
}
.wtp-contact__inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.wtp-contact__h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.wtp-contact__sub { font-size: 1.05rem; color: var(--muted); line-height: 1.7; margin-bottom: 2.5rem; }
.wtp-contact__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.wtp-footer {
  background: var(--navy-deep); padding: 3rem 0 2rem;
  border-top: 1px solid var(--glass-border);
}
.wtp-footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.wtp-footer__logo img { height: 32px; width: auto; max-width: 160px; }
.wtp-nav__logo img { height: 36px; width: auto; max-width: 180px; }
.wtp-footer__copy { font-size: 0.8rem; color: var(--muted); }
.wtp-footer__links { display: flex; gap: 1.5rem; }
.wtp-footer__links a { font-size: 0.8rem; color: var(--muted); transition: color 0.2s; }
.wtp-footer__links a:hover { color: var(--white); }
.wtp-footer__social { display: flex; gap: 1rem; }
.wtp-footer__social a { color: var(--muted); transition: color 0.2s; }
.wtp-footer__social a:hover { color: var(--teal); }
.wtp-footer__social svg { width: 18px; height: 18px; fill: currentColor; }

/* ── FADE-IN ANIMATION CLASSES ── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.fade-up.visible { opacity: 1; transform: none; }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.bento-card:nth-child(1) { transition-delay: 0.05s; }
.bento-card:nth-child(2) { transition-delay: 0.1s; }
.bento-card:nth-child(3) { transition-delay: 0.15s; }
.bento-card:nth-child(4) { transition-delay: 0.2s; }
.bento-card:nth-child(5) { transition-delay: 0.25s; }
.bento-card:nth-child(6) { transition-delay: 0.3s; }
.lifecycle-step:nth-child(1) { transition-delay: 0s; }
.lifecycle-step:nth-child(2) { transition-delay: 0.1s; }
.lifecycle-step:nth-child(3) { transition-delay: 0.2s; }
.lifecycle-step:nth-child(4) { transition-delay: 0.3s; }
.lifecycle-step:nth-child(5) { transition-delay: 0.4s; }
.profile-card:nth-child(1) { transition-delay: 0.05s; }
.profile-card:nth-child(2) { transition-delay: 0.15s; }
.team-card:nth-child(1) { transition-delay: 0.05s; }
.team-card:nth-child(2) { transition-delay: 0.2s; }

/* ══════════════════════════════════════════════════════
   ATOMIC DESIGN — Page Hero (inner pages)
   ══════════════════════════════════════════════════════ */
.page-hero {
  padding: 9rem 0 5rem;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--purple) 50%, var(--navy) 100%);
  position: relative; overflow: hidden; text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,212,255,0.12), transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero__eyebrow {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 1.25rem;
}
.page-hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 700;
  line-height: 1.15; letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}
.page-hero__h1 em { font-style: normal; color: var(--gold); }
.page-hero__sub {
  font-size: 1.1rem; color: var(--muted); line-height: 1.7;
  max-width: 640px; margin: 0 auto 2rem;
}

/* ══════════════════════════════════════════════════════
   ORGANISM — Articles Grid & Cards
   ══════════════════════════════════════════════════════ */
.articles-section { padding: 5rem 0 6rem; }
.articles-controls { display: flex; align-items: center; gap: 1rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.articles-controls__tag {
  padding: 0.4rem 1rem; border-radius: 999px;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  font-size: 0.8rem; font-weight: 600; color: var(--muted);
  cursor: pointer; transition: all 0.2s;
}
.articles-controls__tag:hover,
.articles-controls__tag.active { background: var(--teal-dim); border-color: var(--teal-border); color: var(--teal); }

.articles-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.article-card {
  background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column; position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  opacity: 0; transform: translateY(24px); cursor: pointer;
}
.article-card.visible { opacity: 1; transform: none; transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), border-color 0.3s, box-shadow 0.3s; }
.article-card:hover {
  border-color: var(--gold-border); transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.article-card__thumb {
  aspect-ratio: 16/9; overflow: hidden; background: var(--navy-deep);
}
.article-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.article-card:hover .article-card__thumb img { transform: scale(1.05); }
.article-card__thumb-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--purple) 0%, rgba(0,212,255,0.1) 100%);
  display: flex; align-items: center; justify-content: center;
}
.article-card__thumb-placeholder svg { width: 40px; height: 40px; opacity: 0.3; }
.article-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.article-card__category {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 0.6rem;
}
.article-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 700; line-height: 1.35;
  margin-bottom: 0.75rem; color: var(--white);
}
.article-card__excerpt { font-size: 0.875rem; color: var(--muted); line-height: 1.65; flex: 1; }
.article-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--glass-border); }
.article-card__date { font-size: 0.75rem; color: var(--muted); }
.article-card__link { font-size: 0.8rem; font-weight: 600; color: var(--teal); transition: color 0.2s; }
.article-card__link:hover { color: var(--gold); }
/* Stretched link — ::after anchors to .article-card (position: relative) */
.article-card__link::after { content: ''; position: absolute; inset: 0; }

/* ══════════════════════════════════════════════════════
   ORGANISM — Article Body (single article)
   ══════════════════════════════════════════════════════ */
/* Article hero — split layout: image left, title right */
.page-hero--split .container {
  display: flex; flex-direction: row; align-items: center;
  gap: 2.5rem; text-align: left; max-width: 1100px;
}
.page-hero__img-col {
  flex: 0 0 240px; display: flex; align-items: center; justify-content: center;
  background: var(--navy-deep); border-radius: var(--radius-lg); overflow: hidden;
}
.page-hero__img-col img {
  width: 240px; max-height: 300px; object-fit: contain; display: block;
}
.page-hero__text-col { flex: 1; min-width: 0; }
.page-hero--split .page-hero__eyebrow { text-align: left; }
.page-hero--split .page-hero__h1 { text-align: left; margin-left: 0; margin-right: 0; }
.page-hero--split .page-hero__sub { text-align: left; margin-left: 0; margin-right: 0; }
@media (max-width: 768px) {
  .page-hero--split .container { flex-direction: column; text-align: center; }
  .page-hero__img-col { flex: none; width: 100%; max-width: 280px; }
  .page-hero--split .page-hero__eyebrow,
  .page-hero--split .page-hero__h1,
  .page-hero--split .page-hero__sub { text-align: center; }
}
.article-layout { padding: 3rem 0 6rem; }
.article-layout .container { display: grid; grid-template-columns: 1fr min(72ch, 100%) 1fr; }
.article-layout > .container > * { grid-column: 2; }
.article-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.article-meta__category {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal);
}
a.article-meta__category:hover { color: var(--gold); text-decoration: underline; }
.article-meta__author-link { color: var(--muted); text-decoration: none; }
.article-meta__author-link:hover { color: var(--gold); text-decoration: underline; }
.article-meta__date { font-size: 0.85rem; color: var(--muted); }
.article-body { font-size: 1.05rem; line-height: 1.8; color: rgba(255,255,255,0.88); }
.article-body h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; letter-spacing: -0.01em; margin: 2.5rem 0 1rem; color: var(--white); }
.article-body h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin: 2rem 0 0.75rem; color: var(--gold); }
.article-body p { margin-bottom: 1.25rem; }
.article-body ol, .article-body ul { margin: 0 0 1.25rem 1.5rem; }
.article-body li { margin-bottom: 0.5rem; }
.article-body strong { color: var(--white); font-weight: 600; }
.article-body em { color: var(--gold); font-style: italic; }
.article-body blockquote {
  border-left: 3px solid var(--teal); padding: 1rem 1.5rem;
  background: var(--glass-bg); border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0; font-style: italic; color: var(--muted);
}
.article-back { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--teal); font-size: 0.85rem; font-weight: 600; margin-bottom: 2.5rem; transition: color 0.2s; }
.article-back:hover { color: var(--gold); }
.article-back svg { width: 16px; height: 16px; }

/* ══════════════════════════════════════════════════════
   ORGANISM — About page team grid (extended)
   ══════════════════════════════════════════════════════ */
.about-values { padding: 5rem 0; background: var(--navy-deep); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.value-card {
  background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: var(--radius-lg);
  padding: 2rem; text-align: center;
}
.value-card__icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card__title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.value-card__desc { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-card--wide { grid-column: span 2; }
  .lifecycle-steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .lifecycle-steps::before { display: none; }
  #globe-canvas { width: 50%; opacity: 0.6; }
}
@media (max-width: 768px) {
  .wtp-nav__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: fixed;
    inset: 0;
    background: var(--navy-deep);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    padding: 2rem;
  }
  .wtp-nav--open .wtp-nav__links {
    opacity: 1;
    pointer-events: auto;
  }
  .wtp-nav__links a { font-size: 1.25rem; color: var(--white); }
  .wtp-nav__links .btn-primary { font-size: 1rem; }
  .wtp-nav__li-desktop, .wtp-nav__social { display: none; }
  .wtp-nav__li-mobile { display: flex; align-items: center; gap: 0.5rem; }
  .wtp-nav__hamburger { display: flex; }
  .wtp-hero__content { padding: 5.5rem 1.5rem 3rem; }
  #globe-canvas { opacity: 0.3; width: 100%; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card--wide { grid-column: span 1; }
  .wtp-stats__inner { grid-template-columns: 1fr 1fr; }
  .wtp-stat:nth-child(2) { border-right: none; }
  .wtp-stat { border-bottom: 1px solid var(--glass-border); }
  .lifecycle-steps { grid-template-columns: 1fr 1fr; }
  .profiles-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 360px; }
  .wtp-footer__inner { flex-direction: column; text-align: center; }
  .articles-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .article-layout .container { grid-template-columns: 1fr; padding: 0 1.5rem; }
}
