/* =========================================================
   PLAN GROW LEAD — v3
   Pixel-faithful to live site + refined motion / hierarchy
   ========================================================= */

:root{
  --teal:        #1bb0ce;
  --teal-dark:   #1395af;
  --blue:        #3b82f6;
  --blue-deep:   #2563eb;
  --linkedin:    #0a66c2;
  --navy:        #0e2a3a;
  --brand-navy:  #1f4366;   /* PLAN word color from logo */
  --brand-orange:#ee7a2e;   /* GROW word color from logo */
  --brand-orange-dark:#cc5f15;
  --ink:         #1a2530;
  --ink-soft:    #2a3a45;
  --muted:       #5e6a72;
  --soft:        #f5f9fc;
  --border:      #e6eef2;
  --shadow-soft: 0 25px 60px -25px rgba(14,42,58,.20);
  --shadow-card: 0 12px 35px -10px rgba(14,42,58,.18);
  --shadow-lift: 0 30px 70px -25px rgba(14,42,58,.32);
  --radius:      14px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --maxw:        1180px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img{ max-width:100%; height:auto; display:block; }
a{ color:var(--teal); text-decoration:none; }
h1,h2,h3,h4,h5,h6{ font-weight:700; color:var(--navy); margin:0 0 .4em; text-wrap:balance; }
p{ margin:0 0 1em; }
.container{ max-width:var(--maxw); margin:0 auto; padding:0 28px; }

/* Scroll progress bar */
.scroll-progress{
  position:fixed; top:0; left:0; right:0; height:3px;
  background:transparent; z-index:200; pointer-events:none;
}
.scroll-progress__bar{
  height:100%; width:0%;
  background: linear-gradient(90deg, var(--teal) 0%, #4cd8ed 100%);
  transition: width .12s ease-out;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.5em;
  padding:13px 28px;
  border-radius:999px;
  font-weight:600; font-size:13.5px; letter-spacing:.02em;
  background:var(--teal); color:#fff;
  border:1.5px solid var(--teal);
  cursor:pointer; line-height:1; white-space:nowrap;
  transition: all .22s ease;
  position:relative; overflow:hidden;
}
.btn::after{
  content:''; position:absolute; inset:0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  transform: translateX(-100%); transition: transform .6s ease;
}
.btn:hover::after{ transform: translateX(100%); }
.btn:hover{ background:#fff; color:var(--teal); transform:translateY(-2px); box-shadow:var(--shadow-card); }
.btn--ghost{
  background:#fff; color:var(--ink);
  border:1.5px solid #cdd6dc;
  font-weight:500;
}
.btn--ghost::after{ display:none; }
.btn--ghost:hover{ border-color:var(--teal); color:var(--teal); background:#fff; transform:translateY(-2px); box-shadow:var(--shadow-card); }

/* ---------- Logo wordmark ---------- */
.logo{
  font-family:'Poppins', sans-serif;
  font-weight:900;
  letter-spacing:.005em;
  display:inline-flex; align-items:baseline; gap:.18em;
  color:var(--navy);
  line-height:1;
  user-select:none;
}
.logo__word{ position:relative; display:inline-flex; align-items:baseline; }
.logo__arrow{
  display:inline-flex; align-items:center; justify-content:center;
  margin-left:.02em;
  color:var(--teal);
  width:.42em; height:.42em;
  transform: translateY(-.6em);
  flex:0 0 auto;
}
.logo__arrow svg{ width:100%; height:100%; }

.logo--stacked{
  flex-direction:column;
  align-items:flex-start;
  gap:0;
  line-height:.92;
}
.logo--stacked .logo__word{ font-size:1em; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom:1px solid rgba(230,238,242,.6);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-stuck{ box-shadow: 0 10px 30px -20px rgba(14,42,58,.18); background:rgba(255,255,255,.95); }
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 28px;
  max-width:var(--maxw); margin:0 auto;
  gap:24px;
}
.nav__brand{ display:inline-flex; align-items:center; }
.nav__logo{
  height:60px; width:auto; display:block;
  transition: transform .35s cubic-bezier(.2,.7,.3,1), filter .35s ease;
}
.nav__brand:hover .nav__logo{ transform: scale(1.05) rotate(-1deg); filter: drop-shadow(0 6px 14px rgba(31,67,102,.18)); }
.nav__menu{
  display:flex; align-items:center; gap:36px;
  list-style:none; margin:0; padding:0;
}
.nav__menu a{
  color:var(--ink); font-weight:500; font-size:15px;
  position:relative; padding:6px 0;
  transition: color .2s ease;
}
.nav__menu a.is-active{ color:var(--teal); }
.nav__menu a:hover{ color:var(--teal); }
.nav__menu a::after{
  content:''; position:absolute; left:50%; bottom:0; height:2px; width:0;
  background:var(--teal); transition: width .3s ease, left .3s ease;
}
.nav__menu a:hover::after, .nav__menu a.is-active::after{ width:100%; left:0; }
.nav__cta .btn{ padding:11px 26px; font-size:13px; }
.nav__toggle{ display:none; background:none; border:0; padding:8px; cursor:pointer; }
.nav__toggle span{ display:block; width:24px; height:2px; background:var(--navy); margin:5px 0; transition: transform .2s; }

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position:relative;
  padding:48px 0 40px;
  overflow:hidden;
  background:
    radial-gradient(circle at 18% 12%, #e9f1f8 0%, transparent 35%),
    radial-gradient(circle at 88% 78%, #fce6df 0%, transparent 38%),
    #ffffff;
}
.hero__inner{
  position:relative; z-index:1;
  display:grid; grid-template-columns: 1fr 1fr; gap:30px; align-items:center;
  min-height: 440px;
}

.hero__copy{
  font-size:28px;
  font-weight:500;
  color:var(--ink-soft);
  line-height:1.55;
  max-width:600px;
}
.hero__copy .lead-in{
  display:block;
  font-weight:800;
  color:var(--brand-navy);
  margin-bottom:.4em;
  font-size:38px;
  letter-spacing:-.01em;
  opacity:0;
  animation: heroIntro .9s cubic-bezier(.2,.7,.3,1) .15s forwards;
}
.hero__copy p{
  margin:0 0 .55em;
  opacity:0;
  animation: heroIntro .9s cubic-bezier(.2,.7,.3,1) forwards;
}
.hero__copy p:nth-of-type(1){ animation-delay:.35s; }
.hero__copy p:nth-of-type(2){ animation-delay:.55s; }
.hero__copy p:nth-of-type(3){ animation-delay:.75s; }
.hero__copy .kw{
  font-weight:800;
  color:var(--brand-navy);
  position:relative;
  display:inline-block;
}
.hero__copy .kw::after{
  content:''; position:absolute; left:0; right:0; bottom:-3px;
  height:3px; background:var(--brand-navy);
  border-radius:2px;
  transform-origin:left;
  transform: scaleX(0);
  animation: kwUnderline .7s cubic-bezier(.2,.7,.3,1) forwards;
}
.hero__copy .kw[data-kw="plan"]{ color:var(--brand-navy); }
.hero__copy .kw[data-kw="plan"]::after{ background:var(--brand-navy); animation-delay:.55s; }
.hero__copy .kw[data-kw="grow"]{ color:var(--brand-orange); }
.hero__copy .kw[data-kw="grow"]::after{ background:var(--brand-orange); animation-delay:.75s; }
.hero__copy .kw[data-kw="lead"]{ color:var(--brand-navy); }
.hero__copy .kw[data-kw="lead"]::after{ background:var(--brand-navy); animation-delay:.95s; }

/* Hero copy is above the fold — let its children handle the intro instead of the .fx fade */
.hero__copy.fx{ opacity:1; transform:none; transition:none; }

@keyframes heroIntro{
  0%   { opacity:0; transform: translateY(14px); }
  100% { opacity:1; transform: translateY(0); }
}
@keyframes kwUnderline{
  0%   { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}
@media (prefers-reduced-motion: reduce){
  .hero__copy .lead-in, .hero__copy p, .hero__copy .kw::after{
    animation:none; opacity:1; transform:none;
  }
  .hero__copy .kw::after{ transform: scaleX(1); }
}

/* Hero portrait composition */
.hero__portrait{
  position:relative;
  width:100%;
  max-width:520px;
  margin-left:auto;
  aspect-ratio: 1 / 1;
}
.hero__blob{
  position:absolute;
  width:70%; height:70%;
  background: linear-gradient(160deg, #fadcc8 0%, #f5b9a0 70%, #e89c81 100%);
  border-radius:50%;
  bottom:0; left:50%;
  transform: translateX(-50%);
  z-index:1;
  box-shadow: inset 0 -20px 60px rgba(0,0,0,.06);
}
.hero__circle{
  position:absolute; border-radius:50%;
  z-index:2;
  will-change: transform;
}
.hero__circle--purple{
  width:78px; height:78px;
  background: linear-gradient(135deg, #2a5688 0%, var(--brand-navy) 60%, #15324f 100%);
  top:12%; left:6%;
  box-shadow: 0 18px 34px -8px rgba(31,67,102,.55);
}
.hero__circle--yellow{
  width:104px; height:104px;
  background: linear-gradient(135deg, #ffa14e 0%, var(--brand-orange) 55%, var(--brand-orange-dark) 100%);
  top:2%; right:3%;
  box-shadow: 0 18px 38px -8px rgba(238,122,46,.55);
}
.hero__circle--green{
  width:22px; height:22px;
  background: var(--brand-orange);
  bottom:30%; left:13%;
  box-shadow: 0 6px 16px -3px rgba(238,122,46,.6);
}
.hero__circle--teal{
  width:14px; height:14px;
  background: var(--brand-navy);
  top:42%; right:13%;
  box-shadow: 0 4px 12px -2px rgba(31,67,102,.6);
}
.hero__portrait-img{
  position:absolute;
  z-index:3;
  bottom:-2%;
  left:50%;
  transform: translateX(-50%);
  height:104%;
  width:auto;
  max-width:none;
  filter: drop-shadow(0 30px 30px rgba(14,42,58,.15));
}

/* Hero sub-row */
.hero-row{
  position:relative; z-index:1;
  margin-top:28px;
  display:grid;
  grid-template-columns: 70px 1fr 1fr 1fr;
  align-items:start;
  gap:36px;
  padding-top:20px;
}
.hero-row__arrow{
  width:42px; height:42px;
  display:flex; align-items:center; justify-content:center;
  color:var(--navy);
  animation: bobDown 2.4s ease-in-out infinite;
  margin-top:14px;
}
@keyframes bobDown{
  0%, 100%{ transform: translateY(0); opacity:.8; }
  50%    { transform: translateY(8px); opacity:1; }
}
.hero-link{
  display:flex; flex-direction:column; gap:8px;
}
.hero-link__eyebrow{
  font-size:11px; font-weight:600; letter-spacing:.22em; text-transform:uppercase;
  color:var(--muted);
}
.hero-link__title{
  font-size:28px; font-weight:700; color:var(--navy);
  line-height:1;
  margin-bottom:4px;
}
.hero-link__cta{
  font-size:11px; font-weight:600; letter-spacing:.2em; text-transform:uppercase;
  color:var(--teal);
  padding-bottom:3px;
  border-bottom:1.5px solid var(--teal);
  align-self:flex-start;
  transition: color .2s ease, border-color .2s ease, transform .2s ease;
}
.hero-link__cta:hover{ color:var(--navy); border-color:var(--navy); transform: translateY(-1px); }

/* ============================================================
   NUMBERED SECTIONS
   ============================================================ */
.section{
  position:relative;
  padding:80px 0 90px;
  overflow:hidden;
  background:#fff;
}
.section .blob{
  position:absolute; pointer-events:none;
  border-radius:50%; filter:blur(80px);
  z-index:0;
}
.section--01 .blob-a{ width:420px; height:420px; background:#ffd9ce; top:14%; left:-180px; opacity:.5; }
.section--01 .blob-b{ width:340px; height:340px; background:#bff0d8; top:55%; left:42%; opacity:.4; }
.section--01 .blob-c{ width:300px; height:300px; background:#d8e8f5; bottom:6%; right:-130px; opacity:.5; }
.section--02 .blob-a{ width:420px; height:420px; background:#ffe2da; top:6%; right:-150px; opacity:.5; }
.section--02 .blob-b{ width:340px; height:340px; background:#bff0d8; top:50%; left:32%; opacity:.4; }
.section--02 .blob-c{ width:320px; height:320px; background:#d8e8f5; bottom:8%; left:-130px; opacity:.5; }
.section--03 .blob-a{ width:420px; height:420px; background:#ffd9ce; top:4%; left:-160px; opacity:.5; }
.section--03 .blob-b{ width:340px; height:340px; background:#d8e8f5; top:55%; left:48%; opacity:.4; }
.section--03 .blob-c{ width:320px; height:320px; background:#bff0d8; bottom:6%; right:-120px; opacity:.5; }

.section__row{
  position:relative; z-index:1;
  display:grid; grid-template-columns: 1.05fr .95fr; gap:60px; align-items:center;
}
.section__num{
  font-family:'Poppins', sans-serif;
  font-weight:300;
  font-size: clamp(60px, 6.5vw, 84px);
  line-height:1;
  color:transparent;
  -webkit-text-stroke:1.5px #b9c4cc;
  letter-spacing:.02em;
  margin-bottom:10px;
  display:inline-block;
}
.section__title{
  font-size: clamp(34px, 3.6vw, 42px);
  line-height:1.1;
  margin-bottom:22px;
  letter-spacing:-.015em;
  font-weight:700;
  color:var(--navy);
}
.section__copy{
  font-size:15.5px;
  color:var(--ink-soft);
  line-height:1.78;
  max-width:530px;
  margin-bottom:0;
}

/* Right-column media stack */
.section__media{
  position:relative;
  display:flex; flex-direction:column; align-items:center; gap:10px;
}
.brand-tile{
  width:210px; height:210px;
  border-radius:18px;
  background:#fff;
  display:flex; align-items:center; justify-content:center;
  padding:22px;
  box-shadow: 0 10px 28px -10px rgba(14,42,58,.16);
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s ease;
  overflow:hidden;
  position:relative;
}
.brand-tile:hover{ transform: translateY(-4px); box-shadow: var(--shadow-card); }
.brand-tile img{ max-width:100%; max-height:100%; object-fit:contain; }
.brand-tile--eos{ background:#0c1626; padding:18px; }
.brand-tile--bg{ background:#0e2a3a; padding:18px; }

.brand-label{
  font-size:14px; font-weight:600; color:var(--ink); margin:4px 0 6px;
  text-align:center;
  letter-spacing:.005em;
}
.media-photo{
  width:100%;
  max-width:420px;
  border-radius:8px;
  overflow:hidden;
  box-shadow: var(--shadow-lift);
  transition: transform .4s cubic-bezier(.2,.7,.3,1);
}
.media-photo:hover{ transform: translateY(-4px) scale(1.005); }
.media-photo img{ width:100%; height:auto; display:block; }

/* Centered book + button stack underneath */
.section__footer{
  position:relative; z-index:1;
  margin-top:48px;
  display:flex; flex-direction:column; align-items:center; gap:22px;
}
.book-download{
  display:flex; flex-direction:column; align-items:center; gap:18px;
  position:relative;
}
.book-stage{
  position:relative;
  width:230px; height:230px;
  display:flex; align-items:center; justify-content:center;
}
.book-stage::before{
  content:'';
  position:absolute;
  width:170px; height:170px;
  border-radius:50%;
  background: linear-gradient(160deg, #fadcc8 0%, #f5b9a0 100%);
  z-index:0;
  bottom:18px; left:50%; transform: translateX(-50%);
  opacity:.85;
  filter: blur(.5px);
}
.book-3d{
  position:relative;
  z-index:1;
  width:135px; height:auto;
  filter: drop-shadow(0 20px 28px rgba(14,42,58,.28));
  transform: rotate(-7deg);
  transition: transform .45s cubic-bezier(.2,.7,.3,1), filter .35s ease;
}
.book-3d:hover{
  transform: rotate(-3deg) translateY(-6px) scale(1.05);
  filter: drop-shadow(0 26px 36px rgba(14,42,58,.34));
}
.download-pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 20px;
  border:1.5px solid #cbd5db;
  border-radius:999px;
  color:var(--ink);
  font-size:12.5px; font-weight:500;
  background:#fff;
  transition: all .22s ease;
}
.download-pill::before{
  content:''; width:6px; height:6px; border-radius:50%; background:var(--teal);
}
.download-pill:hover{
  border-color:var(--teal); color:var(--teal);
  transform:translateY(-2px); box-shadow: var(--shadow-card);
}

/* Section 03 BG coaching logo image */
.coaching-logo{
  width:180px; height:auto;
  margin-bottom:2px;
  border-radius:14px;
  box-shadow: 0 14px 32px -10px rgba(14,42,58,.15);
}

/* Section 01 — EOS branding banner between paragraph and CTA row (wide, dark navy) */
.eos-banner{
  display:flex; align-items:center; gap:18px;
  width:100%; max-width:560px;
  margin:22px 0 6px;
  padding:14px 22px 14px 14px;
  background: linear-gradient(135deg, #0a1322 0%, #0e2a3a 50%, #0a1322 100%);
  border-radius:18px;
  text-decoration:none;
  color:#fff;
  box-shadow: 0 18px 38px -16px rgba(14,42,58,.45);
  transition: transform .4s cubic-bezier(.2,.7,.3,1), box-shadow .4s ease, background .35s ease;
  position:relative;
  overflow:hidden;
}
.eos-banner::after{
  content:''; position:absolute; inset:0;
  background: radial-gradient(circle at 0% 100%, rgba(238,122,46,.16) 0%, transparent 45%);
  pointer-events:none;
}
.eos-banner > img{
  height:78px; width:78px; flex:0 0 auto;
  border-radius:12px;
  display:block;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.25));
}
.eos-banner__caption{
  flex:1 1 auto; min-width:0;
  display:flex; flex-direction:column;
  line-height:1.2;
}
.eos-banner__eyebrow{
  font-size:10px; font-weight:700; letter-spacing:.22em; text-transform:uppercase;
  color:var(--brand-orange);
  margin-bottom:6px;
}
.eos-banner__title{
  font-size:17px; font-weight:700;
  color:#fff;
  letter-spacing:-.005em;
}
.eos-banner__title sup{ font-size:10px; vertical-align:super; margin-left:2px; color:var(--brand-orange); }
.eos-banner__arrow{
  color:var(--brand-orange);
  flex:0 0 auto;
  transition: transform .35s cubic-bezier(.2,.7,.3,1);
}
.eos-banner:hover{
  transform: translateY(-3px);
  box-shadow: 0 28px 56px -18px rgba(14,42,58,.55);
  background: linear-gradient(135deg, #0c1626 0%, #102e40 50%, #0c1626 100%);
}
.eos-banner:hover .eos-banner__arrow{ transform: translateX(5px); }

/* Inline CTA row beneath a section paragraph (Certified Implementer badge + Download button) */
.cta-row{
  display:flex; align-items:center; gap:14px;
  flex-wrap:wrap;
  margin-top:22px;
}
.credential-badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:9px 16px;
  border-radius:999px;
  background: linear-gradient(135deg, var(--brand-navy) 0%, #15324f 100%);
  color:#fff;
  font-size:13px; font-weight:600;
  letter-spacing:.01em;
  box-shadow: 0 10px 22px -10px rgba(31,67,102,.55);
  white-space:nowrap;
}
.credential-badge svg{
  width:14px; height:14px;
  color: var(--brand-orange);
  flex:0 0 auto;
}
.cta-row__btn{
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  padding:12px 22px;
}
.cta-row__btn svg{ width:14px; height:14px; }
.cta-row__btn:hover{
  background:#fff;
  color: var(--brand-orange);
  border-color: var(--brand-orange);
}

/* Section 02 right column when it's just a photo (no brand tile) */
.media-photo--solo{
  max-width:460px;
  margin:0 auto;
}

/* Section 03 — transparent BG Coaching logo + network graphic (no dark tile) */
.bg-coaching-mark{
  width:230px; height:auto;
  display:block;
  margin:0 auto;
  transition: transform .45s cubic-bezier(.2,.7,.3,1), filter .35s ease;
}
.bg-coaching-mark:hover{
  transform: scale(1.04) rotate(-2deg);
  filter: drop-shadow(0 12px 22px rgba(31,67,102,.22));
}
/* Inline variant — sits below the section paragraph in the left column */
.bg-coaching-mark--inline{
  width:220px;
  margin:26px 0 0;
}
.bg-coaching-graphic{
  width:100%; max-width:380px; height:auto;
  display:block;
  margin:0 auto;
  border-radius:22px;
  box-shadow: 0 18px 42px -16px rgba(14,42,58,.30);
  transition: transform .5s cubic-bezier(.2,.7,.3,1), box-shadow .5s ease;
}
.bg-coaching-graphic + .brand-label{
  margin-top:14px;
}
.bg-coaching-graphic:hover{
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 26px 56px -18px rgba(14,42,58,.38);
}

/* ============================================================
   CONTACT CARD
   ============================================================ */
.contact-wrap{
  position:relative;
  padding: 60px 0 90px;
  overflow:hidden;
  background:#fff;
}
.contact-wrap::before{
  content:''; position:absolute; pointer-events:none;
  width:400px; height:400px; background:#ffd9ce;
  border-radius:50%; filter:blur(90px); opacity:.45;
  top:14%; left:-150px;
}
.contact-wrap::after{
  content:''; position:absolute; pointer-events:none;
  width:380px; height:380px; background:#bff0d8;
  border-radius:50%; filter:blur(90px); opacity:.4;
  bottom:4%; right:-130px;
}
.contact-card{
  position:relative;
  background:
    radial-gradient(ellipse at 110% 0%, #6ba9f6 0%, transparent 50%),
    linear-gradient(135deg, #4f97f4 0%, #3a82f3 50%, #2868e8 100%);
  border-radius: var(--radius-xl);
  padding: 28px;
  color:#fff;
  box-shadow: 0 35px 70px -20px rgba(37,99,235,.45);
  display:grid;
  grid-template-columns: .92fr 1.08fr;
  gap:32px;
  align-items:center;
  z-index:1;
  overflow:hidden;
}
.contact-card::after{
  content:''; position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(circle at 0% 100%, rgba(255,255,255,.12) 0%, transparent 40%);
}
.contact-card__photo{
  border-radius: var(--radius-lg);
  overflow:hidden;
  background:#0b1f3a;
  aspect-ratio: 4 / 4.6;
  position:relative;
}
.contact-card__photo img{
  width:100%; height:100%;
  object-fit:cover;
  object-position: 50% 18%;
  transition: transform 1s cubic-bezier(.2,.7,.3,1);
}
.contact-card__photo:hover img{ transform: scale(1.05); }

.contact-card__body{
  padding: 8px 18px 8px 4px;
  display:flex; flex-direction:column; justify-content:center;
  gap:22px;
}
.contact-card__heading{
  color:#fff;
  font-size: clamp(34px, 3.4vw, 44px);
  font-weight:700;
  letter-spacing:-.015em;
  line-height:1.1;
  margin:0;
}
.contact-card__row{
  display:flex; flex-wrap:wrap; align-items:center;
  gap:14px 28px;
  font-size:15.5px;
  color:#fff;
  font-weight:500;
}
.contact-card__item{ display:inline-flex; align-items:center; gap:10px; }
.contact-card__item a{ color:#fff; transition: color .2s ease; }
.contact-card__item a:hover{ color:#e8f1ff; }
.contact-card__icon{
  width:34px; height:34px; border-radius:50%;
  background:rgba(255,255,255,.18);
  display:inline-flex; align-items:center; justify-content:center;
  color:#fff; flex:0 0 auto;
}
.linkedin-btn{
  display:inline-flex; align-items:center; gap:8px;
  padding:9px 22px; border-radius:999px;
  background:var(--linkedin); color:#fff;
  font-size:13px; font-weight:600;
  border:1.5px solid var(--linkedin);
  transition: background .22s ease, transform .15s ease, box-shadow .22s ease;
}
.linkedin-btn:hover{ background:#0858a8; color:#fff; transform:translateY(-2px); box-shadow:0 10px 20px -8px rgba(10,102,194,.55); }
/* Standalone-row variant in the contact card (matches old WP layout) */
.linkedin-btn--block{ align-self:flex-start; }

.li-preview{
  background:#fff;
  border-radius: var(--radius);
  padding: 14px 18px;
  color:var(--ink);
  display:flex; align-items:center; gap:14px;
  box-shadow: 0 14px 30px -10px rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.4);
}
.li-preview__avatar{
  width:48px; height:48px; border-radius:50%;
  overflow:hidden; background:#e5edf3; flex:0 0 auto;
  border:2px solid var(--linkedin);
}
.li-preview__avatar img{ width:100%; height:100%; object-fit:cover; }
.li-preview__text{ flex:1 1 auto; min-width:0; }
.li-preview__name{ font-weight:700; font-size:15px; color:var(--navy); line-height:1.2; display:flex; align-items:center; gap:6px; }
.li-preview__name svg{ color:var(--linkedin); }
.li-preview__title{ font-size:12px; color:var(--muted); line-height:1.35; margin-top:2px; }
.li-preview__btn{
  flex:0 0 auto;
  padding:8px 14px; border-radius:6px;
  background:var(--linkedin); color:#fff;
  font-size:12px; font-weight:600;
  display:inline-flex; align-items:center; gap:6px;
  transition: background .2s ease;
}
.li-preview__btn:hover{ background:#0858a8; color:#fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{
  background:#fff;
  border-top:1px solid var(--border);
  padding:70px 0 30px;
  position:relative;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1.4fr;
  gap:60px;
  margin-bottom:40px;
}
.footer__logo{ width:170px; height:auto; display:block; margin-bottom:6px; }
.footer__copy{ font-size:13px; color:var(--muted); margin-top:24px; }
.site-footer h4{
  font-size:15px; color:var(--navy); font-weight:700;
  margin-bottom:18px;
  letter-spacing:.005em;
}
.site-footer ul{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px; }
.site-footer a{ color:var(--ink); font-size:14px; font-weight:500; transition: color .2s ease; }
.site-footer a:hover{ color:var(--teal); }
.footer__contact li{
  display:flex; align-items:center; gap:10px;
  font-size:14px; color:var(--ink);
}
.footer__contact-icon{
  width:30px; height:30px; border-radius:50%;
  background: rgba(27,176,206,.10); color:var(--teal);
  display:inline-flex; align-items:center; justify-content:center;
  flex:0 0 auto;
}
.footer__linkedin{
  display:inline-flex; align-items:center; gap:6px;
  padding:8px 18px; border-radius:999px;
  background:#fff; color:var(--linkedin);
  border:1.5px solid var(--linkedin);
  font-size:12px; font-weight:600;
  margin-top:12px;
  transition: background .22s ease, color .22s ease, transform .15s ease, box-shadow .22s ease;
}
.footer__linkedin:hover{
  background:var(--linkedin); color:#fff;
  transform:translateY(-1px);
  box-shadow:0 10px 20px -8px rgba(10,102,194,.45);
}
.footer__location{ font-size:14px; color:var(--muted); margin-top:14px; }
.footer__bottom{
  text-align:center;
  font-size:12px; color:var(--muted);
  padding-top:18px;
  border-top:1px solid var(--border);
}

/* Back-to-top button */
.to-top{
  position:fixed; right:24px; bottom:24px; z-index:60;
  width:46px; height:46px;
  border-radius:50%;
  background:var(--navy); color:#fff;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; border:0;
  box-shadow: 0 14px 28px -10px rgba(14,42,58,.5);
  opacity:0; pointer-events:none;
  transform: translateY(20px) scale(.85);
  transition: opacity .25s ease, transform .25s ease, background .2s ease;
}
.to-top.is-visible{ opacity:1; pointer-events:auto; transform: translateY(0) scale(1); }
.to-top:hover{ background:var(--teal); transform: translateY(-2px); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fx{
  opacity:0; transform: translateY(34px);
  transition: opacity 1s cubic-bezier(.2,.7,.3,1), transform 1s cubic-bezier(.2,.7,.3,1);
  transition-delay: var(--fx-delay, 0s);
}
.fx.is-visible{ opacity:1; transform: translateY(0); }
.fx-left{ transform: translateX(-40px); }
.fx-left.is-visible{ transform: translateX(0); }
.fx-right{ transform: translateX(40px); }
.fx-right.is-visible{ transform: translateX(0); }
.fx-zoom{ transform: scale(.92); }
.fx-zoom.is-visible{ transform: scale(1); }
.fx-float{ animation: gentleFloat 6s ease-in-out infinite; }
.fx-float-2{ animation: gentleFloat 7s ease-in-out infinite; animation-delay: 1.2s; }
.fx-float-3{ animation: gentleFloat 5s ease-in-out infinite; animation-delay: .5s; }
@keyframes gentleFloat{
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* Stagger the right-column media inside a section so it cascades on scroll-in */
.section__media.is-visible > *{
  animation: mediaPopIn .8s cubic-bezier(.2,.7,.3,1) backwards;
}
.section__media.is-visible > *:nth-child(1){ animation-delay:.05s; }
.section__media.is-visible > *:nth-child(2){ animation-delay:.20s; }
.section__media.is-visible > *:nth-child(3){ animation-delay:.35s; }
@keyframes mediaPopIn{
  0%   { opacity:0; transform: translateY(20px) scale(.96); }
  100% { opacity:1; transform: translateY(0) scale(1); }
}

/* Section number outline: subtle entrance + scroll-driven nudge */
.section__num{
  transition: transform .8s cubic-bezier(.2,.7,.3,1), letter-spacing .8s ease, color .4s ease;
}
.section__body.is-visible .section__num{
  letter-spacing:.04em;
}
.section__num:hover{
  -webkit-text-stroke-color: var(--brand-orange);
  color: rgba(238,122,46,.04);
  transform: translateX(4px);
}

/* Mouse-tracking parallax on hero portrait (driven by --mx, --my on .hero) */
.hero{ --mx: 0; --my: 0; }
.hero__portrait-img{
  transition: transform .35s cubic-bezier(.2,.7,.3,1);
  will-change: transform;
}
.hero:hover .hero__portrait-img{
  transform: translateX(calc(-50% + (var(--mx) * 14px))) translateY(calc(var(--my) * 10px));
}
.hero__circle{ transition: transform .4s cubic-bezier(.2,.7,.3,1); }
.hero:hover .hero__circle--purple{ transform: translate(calc(var(--mx) * 18px), calc(var(--my) * 14px)); }
.hero:hover .hero__circle--yellow{ transform: translate(calc(var(--mx) * -22px), calc(var(--my) * -16px)); }
.hero:hover .hero__circle--green{ transform: translate(calc(var(--mx) * 12px), calc(var(--my) * -10px)); }
.hero:hover .hero__circle--teal{ transform: translate(calc(var(--mx) * -14px), calc(var(--my) * 12px)); }

/* Magnetic-style hover lift for big interactive surfaces */
.brand-tile, .media-photo, .cta-row__btn, .download-pill, .btn, .hero-link__cta, .credential-badge, .nav__menu a{
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s ease, color .25s ease, background .25s ease, border-color .25s ease, filter .25s ease;
}

/* Photo subtle zoom-in on hover (already on .media-photo:hover, layered with smoother) */
.media-photo img{ transition: transform .7s cubic-bezier(.2,.7,.3,1); }
.media-photo:hover img{ transform: scale(1.025); }

/* Contact card heading subtle shine on visible */
.contact-card.is-visible .contact-card__heading{
  animation: shineSlide 1.2s cubic-bezier(.2,.7,.3,1) .15s backwards;
}
@keyframes shineSlide{
  0%   { opacity:0; transform: translateX(-18px); }
  100% { opacity:1; transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce){
  .fx, .fx-left, .fx-right, .fx-zoom{ opacity:1; transform:none; transition:none; }
  .fx-float, .fx-float-2, .fx-float-3, .hero-row__arrow, .btn::after,
  .section__media.is-visible > *, .contact-card.is-visible .contact-card__heading{ animation:none; }
  .hero:hover .hero__portrait-img, .hero:hover .hero__circle--purple,
  .hero:hover .hero__circle--yellow, .hero:hover .hero__circle--green,
  .hero:hover .hero__circle--teal{ transform:none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px){
  .hero{ padding:54px 0 40px; }
  .hero__inner{ grid-template-columns:1fr; gap:30px; min-height:0; }
  .hero__portrait{ max-width:380px; margin:0 auto; }
  .hero-row{ grid-template-columns: 1fr 1fr 1fr; gap:24px; }
  .hero-row__arrow{ display:none; }
  .section{ padding:80px 0 90px; }
  .section__row{ grid-template-columns:1fr; gap:50px; }
  .section__media{ order:-1; }
  .section__footer{ margin-top:54px; }
  .contact-card{ grid-template-columns:1fr; padding:22px; }
  .contact-card__body{ padding:6px; }
  .footer__grid{ grid-template-columns:1fr 1fr; gap:40px; }
}
@media (max-width: 720px){
  .nav__menu, .nav__cta .btn{ display:none; }
  .nav__toggle{ display:block; }
  .nav__menu.is-open{
    display:flex; flex-direction:column;
    position:absolute; top:100%; left:0; right:0;
    background:#fff; padding:18px 24px;
    border-bottom:1px solid var(--border);
    gap:14px;
  }
  .hero__copy{ font-size:21px; max-width:100%; }
  .hero__copy .lead-in{ font-size:28px; }
  .nav__logo{ height:44px; }
  .footer__logo{ width:140px; }
  .eos-banner{ padding:12px 16px 12px 12px; }
  .eos-banner > img{ height:62px; width:62px; }
  .eos-banner__title{ font-size:15px; }
  .hero-row{ grid-template-columns:1fr; gap:20px; }
  .section__title{ font-size:32px; }
  .brand-tile{ width:200px; height:200px; padding:20px; }
  .contact-card__row{ flex-direction:column; align-items:flex-start; gap:14px; }
  .footer__grid{ grid-template-columns:1fr; gap:32px; }
  .footer__logo-block .logo{ font-size:36px; }
}
