/* ============================================================
   FADOCARE — Fathers Do Care
   Design system + all sections
   ============================================================ */

:root {
  /* Palette */
  --ink: #0E1B2C;          /* deep navy anchor */
  --ink-2: #14283F;        /* slightly lifted navy */
  --ink-soft: #1B2C40;
  --ink-card: #18324C;

  --cyan: #1B9FC4;         /* primary — "father" face */
  --cyan-deep: #15829F;
  --cyan-bright: #2BB8E0;
  --cyan-tint: #EAF4F7;

  --coral: #F2655A;        /* secondary — "child" face */
  --coral-deep: #D9533F;
  --coral-bright: #FF7A6E;
  --coral-tint: #FCEDEB;

  --paper: #F6F8FA;
  --paper-2: #EDF2F6;
  --card: #FFFFFF;

  --slate: #51616F;        /* body text on light */
  --slate-light: #7A8A99;
  --line: #E3E9EE;
  --white: #FFFFFF;

  /* Typography */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Geometry */
  --maxw: 1160px;
  --r-sm: 12px;
  --r: 18px;
  --r-lg: 24px;
  --r-xl: 32px;

  /* Shadows */
  --shadow-sm: 0 6px 20px -10px rgba(14, 27, 44, .25);
  --shadow: 0 20px 50px -20px rgba(14, 27, 44, .30);
  --shadow-lg: 0 40px 80px -30px rgba(14, 27, 44, .40);
  --shadow-glow-cyan: 0 20px 50px -15px rgba(27, 159, 196, .5);
  --shadow-glow-coral: 0 20px 50px -15px rgba(242, 101, 90, .5);

  /* Motion */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset ---------- */
*, *::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);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.015em;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; }
em { font-style: italic; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.sec { padding: 110px 0; position: relative; }
.center { text-align: center; }
.eyebrow.center { justify-content: center; }

/* ---------- Emblem (the two-face logo) ---------- */
.brand-mark { width: 46px; height: auto; flex: 0 0 auto; }
.hero-emblem, .who-mark { width: 100%; height: auto; }
.emblem .lobe-c, #fado-mark .lobe-c { fill: var(--cyan); }
.emblem .lobe-r, #fado-mark .lobe-r { fill: var(--coral); mix-blend-mode: multiply; }
.emblem .feat,    #fado-mark .feat    { fill: #fff; }
.emblem .smile,   #fado-mark .smile   { fill: none; stroke: #fff; stroke-width: 5; stroke-linecap: round; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
  flex: 0 0 auto;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }
.eyebrow-light { color: #8FD9EC; }
.eyebrow-light::before { background: var(--cyan-bright); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-weight: 700;
  font-size: .98rem;
  padding: .9em 1.6em;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  font-family: var(--font-body);
  white-space: nowrap;
}
.btn-sm { padding: .65em 1.3em; font-size: .9rem; }
.btn-block { width: 100%; }
.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: var(--shadow-glow-coral);
}
.btn-primary:hover {
  background: var(--coral-deep);
  transform: translateY(-3px);
  box-shadow: 0 24px 50px -12px rgba(242, 101, 90, .6);
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .35);
}
.btn-outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .08);
  transform: translateY(-3px);
}
.btn-light {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

/* ---------- Skip link (a11y) ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: #fff;
  color: var(--ink);
  padding: .8em 1.2em;
  border-radius: 0 0 10px 0;
  font-weight: 700;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--cyan-bright);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(14, 27, 44, .0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), backdrop-filter .35s, border-color .35s, box-shadow .35s;
}
.nav.scrolled {
  background: rgba(14, 27, 44, .85);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(255, 255, 255, .08);
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, .4);
}
/* transparent-on-hero + solid-when-past-hero: text colors adjust */
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: padding .35s var(--ease);
}
.nav.scrolled .nav-inner { padding: 14px 24px; }

.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: .01em;
  color: #fff;
}
.brand .wordmark { line-height: 1; }
.accent-c { color: var(--coral); }

.navlinks { display: flex; align-items: center; gap: 2rem; }
.navlinks a {
  font-weight: 600;
  font-size: .95rem;
  color: rgba(255, 255, 255, .82);
  transition: color .2s;
  position: relative;
  padding: 4px 0;
}
.navlinks a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan-bright), var(--coral));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
  border-radius: 2px;
}
.navlinks a:hover { color: #fff; }
.navlinks a:hover::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: .85rem; }

.menu-btn {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
}
.menu-btn span {
  position: absolute;
  left: 50%;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform .3s var(--ease), opacity .2s, top .3s var(--ease);
}
.menu-btn span:nth-child(1) { top: 15px; }
.menu-btn span:nth-child(2) { top: 21px; }
.menu-btn span:nth-child(3) { top: 27px; }
.menu-btn.open span:nth-child(1) { top: 21px; transform: translateX(-50%) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { top: 21px; transform: translateX(-50%) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(900px 540px at 78% -10%, #16344A 0%, transparent 60%),
    radial-gradient(700px 500px at 10% 110%, #2A1320 0%, transparent 55%),
    linear-gradient(165deg, #0E1B2C 0%, #11283C 60%, #0E1B2C 100%);
  color: #fff;
  overflow: hidden;
  padding: 130px 0 90px;
}
#hero3d {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    radial-gradient(600px 400px at 75% 30%, rgba(27, 159, 196, .22), transparent 60%),
    radial-gradient(500px 400px at 20% 70%, rgba(242, 101, 90, .16), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 50px;
  align-items: center;
}
.hero-title {
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 600;
  margin: 22px 0 0;
  letter-spacing: -.02em;
}
.hero-title em {
  font-weight: 500;
  color: var(--coral-bright);
  font-style: italic;
}
.hero-lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: #C5D2DD;
  max-width: 34rem;
  margin: 26px 0 0;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 38px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  font-size: .9rem;
  color: #9FB2C0;
  font-weight: 600;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan-bright);
  box-shadow: 0 0 0 4px rgba(43, 184, 224, .2);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(43, 184, 224, .2); }
  50% { box-shadow: 0 0 0 9px rgba(43, 184, 224, .05); }
}

/* hero emblem card */
.hero-art { display: flex; justify-content: center; }
.emblem-card {
  position: relative;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r-xl);
  padding: 48px 40px 36px;
  width: min(360px, 85vw);
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}
.emblem-halo {
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at 50% 45%, rgba(27, 159, 196, .35), transparent 60%);
  filter: blur(20px);
  z-index: -1;
}
.emblem-card .hero-emblem { width: 190px; margin: 0 auto; filter: drop-shadow(0 20px 30px rgba(0, 0, 0, .35)); }
.emblem-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
  color: #fff;
  letter-spacing: .06em;
  margin-top: 20px;
}
.emblem-tag {
  color: #A9C2DD;
  font-size: .92rem;
  margin-top: 4px;
  font-style: italic;
  font-family: var(--font-display);
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, .4);
  border-radius: 14px;
  display: flex;
  justify-content: center;
}
.scroll-cue span {
  display: block;
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  margin-top: 8px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translateY(-4px); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translateY(14px); }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 44px 24px;
}
.trust-item { text-align: center; }
.trust-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  background: linear-gradient(120deg, var(--cyan-deep), var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}
.trust-label {
  font-size: .85rem;
  color: var(--slate);
  font-weight: 600;
  margin-top: 6px;
  letter-spacing: .02em;
}

/* ============================================================
   SECTION HEAD (shared)
   ============================================================ */
.sec-head { max-width: 640px; margin-bottom: 56px; }
.sec-head.center { margin-left: auto; margin-right: auto; }
.sec-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 16px 0 0;
}
.sec-title em { font-style: italic; color: var(--coral); font-weight: 500; }
.sec-title.light { color: #fff; }
.sec-sub {
  color: var(--slate);
  font-size: 1.1rem;
  margin-top: 18px;
}

/* ============================================================
   WHO WE ARE
   ============================================================ */
.who { background: var(--white); }
.who-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.who-art {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--cyan-tint), var(--coral-tint));
  border-radius: var(--r-xl);
  padding: 14%;
  overflow: hidden;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(14, 27, 44, .08);
  pointer-events: none;
}
.ring-a { inset: 8%; animation: spinSlow 40s linear infinite; }
.ring-b { inset: 18%; animation: spinSlow 30s linear infinite reverse; }
.ring-c { inset: 0; border-style: dashed; border-color: rgba(27, 159, 196, .15); }
@keyframes spinSlow { to { transform: rotate(360deg); } }
.who-mark { width: 78%; filter: drop-shadow(0 20px 30px rgba(14, 27, 44, .15)); }

.who-body p + p { margin-top: 16px; color: var(--slate); }
.values { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 30px; }
.chip {
  font-size: .85rem;
  font-weight: 700;
  color: var(--cyan-deep);
  background: var(--cyan-tint);
  padding: .55rem 1.1rem;
  border-radius: 100px;
  transition: transform .2s var(--ease), background .2s;
  cursor: default;
}
.chip:nth-child(even) { color: var(--coral-deep); background: var(--coral-tint); }
.chip:hover { transform: translateY(-2px); }

/* ============================================================
   MISSION (gradient band)
   ============================================================ */
.mission {
  position: relative;
  background:
    radial-gradient(700px 400px at 12% 120%, rgba(242, 101, 90, .22), transparent 60%),
    linear-gradient(160deg, var(--cyan-deep), var(--cyan));
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.mission-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.mission-glow-l { width: 400px; height: 400px; background: rgba(255, 255, 255, .12); left: -100px; top: -100px; }
.mission-glow-r { width: 400px; height: 400px; background: rgba(242, 101, 90, .25); right: -100px; bottom: -120px; }
.mission-inner { position: relative; z-index: 2; padding: 100px 0; max-width: 60rem; }
.mission-inner .eyebrow { justify-content: center; }
.mission-inner .eyebrow::before { background: #fff; }
.mission-quote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.6vw, 2.9rem);
  line-height: 1.25;
  letter-spacing: -.02em;
  margin-top: 20px;
}
.mission-quote em { font-style: italic; color: #FFE3DF; }
.t-cyan { color: var(--cyan-bright); }
.t-coral { color: var(--coral-bright); }

/* ============================================================
   HOW WE HELP (pillars)
   ============================================================ */
.help { background: var(--paper); }
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pillar {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 28px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  position: relative;
  overflow: hidden;
}
.pillar::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--coral));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.pillar:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.pillar:hover::before { transform: scaleX(1); }
.pillar .ico {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform .3s var(--ease);
}
.pillar:hover .ico { transform: scale(1.08) rotate(-4deg); }
.pillar .ico svg { width: 28px; height: 28px; stroke-width: 1.8; }
.ico-cyan { background: var(--cyan-tint); color: var(--cyan-deep); }
.ico-coral { background: var(--coral-tint); color: var(--coral-deep); }
.ico-cyan-strong { background: var(--cyan); color: #fff; }
.ico-coral-strong { background: var(--coral); color: #fff; }
.pillar h3 { font-size: 1.3rem; margin-bottom: 10px; }
.pillar p { color: var(--slate); font-size: .98rem; }

/* ============================================================
   WHO WE SERVE
   ============================================================ */
.serve {
  background: var(--ink);
  color: #fff;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.serve-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.serve-orb-l { width: 500px; height: 500px; background: rgba(27, 159, 196, .28); left: -150px; top: -120px; animation: drift1 14s ease-in-out infinite; }
.serve-orb-r { width: 500px; height: 500px; background: rgba(242, 101, 90, .22); right: -150px; bottom: -150px; animation: drift2 16s ease-in-out infinite; }
@keyframes drift1 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(30px, 20px); } }
@keyframes drift2 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-30px, -20px); } }
.serve-inner { position: relative; z-index: 2; }
.serve-inner .eyebrow { justify-content: center; }
.serve-inner .eyebrow::before { background: #fff; }
.serve-big {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 1.02;
  margin: 24px 0 0;
}
.serve-sub {
  max-width: 40rem;
  margin: 28px auto 0;
  color: #B8C6D2;
  font-size: 1.12rem;
}

/* ============================================================
   GET INVOLVED
   ============================================================ */
.involve { background: var(--paper); }
.involve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.invite {
  position: relative;
  border-radius: var(--r-xl);
  padding: 44px 38px;
  overflow: hidden;
  color: #fff;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.invite:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.invite-ind { background: linear-gradient(155deg, var(--cyan-deep), var(--cyan)); }
.invite-biz { background: linear-gradient(155deg, var(--coral-deep), var(--coral)); }
.invite::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  right: -120px;
  top: -120px;
  pointer-events: none;
}
.invite-head { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; position: relative; z-index: 2; }
.invite-icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .18);
  display: grid; place-items: center;
  backdrop-filter: blur(6px);
}
.invite-icon svg { width: 28px; height: 28px; stroke: #fff; }
.invite h3 { font-size: 1.6rem; }
.invite > p { color: rgba(255, 255, 255, .92); position: relative; z-index: 2; }
.invite ul { list-style: none; margin: 22px 0 26px; display: grid; gap: 12px; position: relative; z-index: 2; }
.invite li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .98rem;
  color: rgba(255, 255, 255, .96);
}
.invite li svg { flex: 0 0 20px; width: 20px; height: 20px; margin-top: 3px; }
.invite .btn-light { position: relative; z-index: 2; }

/* ============================================================
   LEADERSHIP
   ============================================================ */
.leaders { background: var(--white); }
.leaders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  max-width: 880px;
  margin: 0 auto;
}
.leader {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 40px 34px;
  text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.leader:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.leader-avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  margin: 0 auto 22px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  color: #fff;
  border: 4px solid #fff;
  box-shadow: var(--shadow);
}
.avatar-cyan { background: linear-gradient(150deg, var(--cyan-bright), var(--cyan-deep)); }
.avatar-coral { background: linear-gradient(150deg, var(--coral-bright), var(--coral-deep)); }
.leader-role {
  display: inline-block;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  margin-bottom: 10px;
}
.leader:nth-child(2) .leader-role { color: var(--coral-deep); }
.leader h3 { font-size: 1.5rem; }
.leader p { color: var(--slate); font-size: .98rem; margin-top: 12px; max-width: 36ch; margin-left: auto; margin-right: auto; }
.creds { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 22px; }
.cred {
  font-size: .76rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  padding: .4em .85em;
  border-radius: 100px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contact-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.contact-glow-l { width: 480px; height: 480px; background: rgba(27, 159, 196, .22); left: -160px; top: -120px; }
.contact-glow-r { width: 480px; height: 480px; background: rgba(242, 101, 90, .18); right: -160px; bottom: -160px; }
.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 54px;
  align-items: start;
}
.contact-info .sec-title { margin-top: 16px; }
.contact-sub { color: #B8C6D2; font-size: 1.08rem; margin: 16px 0 30px; max-width: 36ch; }
.contact-methods { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--r-sm);
  padding: 16px 18px;
  transition: transform .25s var(--ease), border-color .25s, background .25s;
}
.contact-card:hover {
  transform: translateX(6px);
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .07);
}
.cm-ico {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid; place-items: center;
  flex: 0 0 auto;
}
.cm-ico svg { width: 22px; height: 22px; }
.cm-text small {
  display: block;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #8FA2B1;
  font-weight: 700;
}
.cm-text strong { font-size: 1.04rem; font-weight: 700; color: #fff; word-break: break-word; }

/* form */
.contact-form {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 36px;
  color: var(--ink);
}
.contact-form h3 { font-size: 1.5rem; }
.form-intro { color: var(--slate); font-size: .95rem; margin-top: 6px; margin-bottom: 8px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 8px;
}
.field input, .field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: 13px 15px;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--slate-light); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(27, 159, 196, .12);
}
.field textarea { resize: vertical; min-height: 120px; }
.field.invalid input, .field.invalid textarea { border-color: var(--coral); background: var(--coral-tint); }
.field-error {
  display: block;
  color: var(--coral-deep);
  font-size: .8rem;
  font-weight: 600;
  margin-top: 6px;
  min-height: 1em;
}
.form-note { text-align: center; margin-top: 14px; font-size: .88rem; font-weight: 600; min-height: 1.2em; }
.form-note.success { color: var(--cyan-deep); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background:
    radial-gradient(600px 300px at 90% 50%, rgba(242, 101, 90, .2), transparent 60%),
    linear-gradient(120deg, var(--ink-2), var(--ink));
  color: #fff;
  padding: 80px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.cta-title em { font-style: italic; color: var(--coral-bright); font-weight: 500; }
.cta-copy p { color: #B8C6D2; margin-top: 10px; font-size: 1.05rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #0A1525; color: #9FB2C0; padding: 60px 0 36px; }
.foot-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.brand-foot { color: #fff; }
.foot-links { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.foot-links a { font-weight: 600; font-size: .92rem; transition: color .2s; }
.foot-links a:hover { color: #fff; }
.foot-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: .84rem;
  color: #6E8AAC;
}
.foot-tag { font-style: italic; font-family: var(--font-display); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: linear-gradient(135deg, var(--cyan), var(--coral));
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity .3s, visibility .3s, transform .3s var(--ease);
}
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { transform: translateY(-3px); }
.back-top svg { width: 22px; height: 22px; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-art { order: -1; }
  .hero-actions, .hero-badge { justify-content: center; }
  .hero-lede { margin-left: auto; margin-right: auto; }
  .who-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .who-art { max-width: 420px; margin: 0 auto; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .involve-grid, .leaders-grid { grid-template-columns: 1fr; }
  .navlinks { display: none; }
  .menu-btn { display: block; }
  .nav-cta .btn:not(.menu-btn) { display: none; }
  .sec { padding: 80px 0; }
  .cta-inner { justify-content: center; text-align: center; }
}

@media (max-width: 820px) {
  /* mobile menu overlay */
  .navlinks {
    display: flex;
    position: fixed;
    inset: 0 0 auto 0;
    top: 0;
    flex-direction: column;
    background: var(--ink);
    padding: 90px 28px 32px;
    gap: 6px;
    transform: translateY(-100%);
    transition: transform .4s var(--ease);
    box-shadow: var(--shadow-lg);
    align-items: stretch;
  }
  .navlinks.open { transform: translateY(0); }
  .navlinks a {
    padding: 14px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    font-size: 1.05rem;
    color: #fff;
  }
  .navlinks a::after { display: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .sec { padding: 64px 0; }
  .hero { padding: 110px 0 80px; }
  .pillars { grid-template-columns: 1fr; }
  .invite, .contact-form { padding: 30px 24px; }
  .leader { padding: 32px 24px; }
  .cta-band { padding: 60px 0; }
  .foot-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
