:root{
  --navy:#0d2a60;
  --teal:#16b39b;
  --coral:#ff6b5f;
  --cream:#faf7f2;
  --text:#222222;
  --muted:#6b6b6b;
  --radius:16px;
  --max:1120px;
  --shadow:0 8px 24px rgba(0,0,0,.08);

  /* === Logo sizing (Step 4) === */
  --logo-h:52px;             /* header at top */
  --logo-h-scrolled:42px;    /* header after scroll */
  --footer-logo-h:32px;      /* footer logo */
  --scroll-offset:110px;
}

/* ---------- BASE ---------- */
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:"Open Sans",system-ui,-apple-system,BlinkMacSystemFont,sans-serif;
  color:var(--text);
  background:var(--cream);
}
img{max-width:100%;height:auto;}
a{color:var(--navy);text-decoration:none;}

h1,h2,h3{
  margin:0 0 .6rem 0;
  color:var(--navy);
  font-family:"Poppins",sans-serif;
  font-weight:600;
  line-height:1.2;
}
h1{font-size:2.6rem;}
h2{font-size:1.9rem;}
h3{font-size:1.2rem;font-weight:500;}
.tagline{color:var(--teal);}

p{margin:.4rem 0 1rem 0;line-height:1.6;color:var(--muted);}
.small{font-size:.85rem;color:var(--muted);}
.top-gap{margin-top:1.2rem;}
.center{text-align:center;}
.narrow{max-width:760px;margin:0 auto;}
.align-center{align-items:center;}

.container{width:100%;max-width:var(--max);margin:0 auto;padding:0 1.2rem;}
section{padding:4.5rem 0;background:#fff;scroll-margin-top:var(--scroll-offset);}
.alt-bg{background:var(--cream);}

/* ---------- BUTTONS ---------- */
.btn{
  display:inline-block;
  padding:.9rem 1.4rem;
  border-radius:var(--radius);
  font-weight:600;
  transition:.2s;
  cursor:pointer;
  border:none;
  font-size:1rem;
}
.btn-primary{background:var(--teal);color:#fff;}
.btn-primary:hover{opacity:.9;transform:translateY(-1px);}
.btn-accent{background:var(--coral);color:#fff;}
.btn-accent:hover{opacity:.9;transform:translateY(-1px);}

/* ---------- HEADER ---------- */
.header{
  position:fixed;top:0;left:0;width:100%;z-index:40;
  background:transparent;transition:background .25s,box-shadow .25s;
}
.header.scrolled{background:#fff;box-shadow:var(--shadow);}
.nav{display:flex;align-items:center;justify-content:space-between;height:90px;transition:height .25s;}
.header.scrolled .nav{height:78px;}
.brand{display:flex;align-items:center;}
.logo{height:var(--logo-h);width:auto;display:block;}
.header.scrolled .logo{height:var(--logo-h-scrolled);}

.nav-links{display:flex;gap:1.4rem;align-items:center;}
.nav-link{color:var(--text);font-weight:500;position:relative;}
.nav-link.active{color:var(--teal);}
.nav-link.active::after{
  content:"";position:absolute;left:0;bottom:-6px;height:2px;width:100%;
  background:var(--teal);border-radius:2px;
}
.nav-cta{margin-left:.6rem;}

/* Burger */
.burger{display:none;position:relative;width:26px;height:20px;background:none;border:none;cursor:pointer;padding:0;}
.burger span{
  position:absolute;left:0;width:100%;height:3px;background:var(--navy);
  transition:.25s;
}
.burger span:nth-child(1){top:0;}
.burger span:nth-child(2){top:8.5px;}
.burger span:nth-child(3){top:17px;}
.burger.open span:nth-child(1){top:8.5px;transform:rotate(45deg);}
.burger.open span:nth-child(2){opacity:0;}
.burger.open span:nth-child(3){top:8.5px;transform:rotate(-45deg);}

/* Mobile panel */
.mobile-panel{
  position:fixed;top:0;right:0;height:100vh;width:280px;
  background:#fff;box-shadow:var(--shadow);
  transform:translateX(100%);transition:.3s ease;
  z-index:60;padding:90px 24px 24px;
}
.mobile-panel.open{transform:translateX(0);}
.mobile-menu{display:flex;flex-direction:column;gap:1rem;}
.mobile-menu .nav-link{font-size:1.05rem;}

/* ---------- HERO ---------- */
.hero{position:relative;padding:8rem 0 6rem;background:var(--cream);text-align:center;overflow:hidden;}
.hero p{max-width:640px;margin:0 auto 1.6rem;}
.hero-badges{display:flex;gap:.6rem;justify-content:center;flex-wrap:wrap;margin:1rem auto 2rem;}
.hero-badges span{
  background:#fff;border:1px solid rgba(0,0,0,.05);
  padding:.4rem .8rem;border-radius:999px;
  font-size:.85rem;font-weight:600;color:var(--navy);
  box-shadow:0 1px 2px rgba(0,0,0,.04);
}
/* Blobs */
.blob{position:absolute;border-radius:50%;filter:blur(40px);opacity:.18;pointer-events:none;z-index:-1;}
.blob-teal{background:var(--teal);width:380px;height:380px;top:-140px;left:-120px;}
.blob-coral{background:var(--coral);width:300px;height:300px;bottom:-120px;right:-80px;}
/* Scroll cue */
.scroll-cue{margin:3rem auto 0;width:22px;height:36px;border:2px solid var(--teal);border-radius:14px;position:relative;opacity:.6;}
.scroll-cue span{
  position:absolute;left:50%;top:6px;width:4px;height:6px;background:var(--teal);
  border-radius:2px;transform:translateX(-50%);animation:cuescroll 1.6s infinite;
}
@keyframes cuescroll{0%{opacity:0;transform:translate(-50%,0);}50%{opacity:1;}100%{opacity:0;transform:translate(-50%,10px);}}

/* ---------- PROBLEM TILES ---------- */
.problem-title{margin-bottom:4rem;max-width:780px;margin:auto;text-align:center;}
.problem-grid{display:grid;gap:2rem;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));}
.p-card{
  background:#fff;border:1px solid #eee;border-radius:16px;
  padding:1.8rem 1.6rem;text-align:left;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
  transition:transform .25s ease;
}
.p-emoji{font-size:1.8rem;display:block;margin-bottom:.8rem;}
.p-card h3{margin:0 0 .4rem;font-size:1.1rem;color:var(--navy);}
.p-card p{margin:0;color:var(--muted);font-size:.95rem;}

/* ---------- GRID / CARDS / STEPS ---------- */
.grid{display:grid;gap:2rem;}
.grid-2{grid-template-columns:repeat(auto-fit,minmax(300px,1fr));}
.grid-3{grid-template-columns:repeat(auto-fit,minmax(220px,1fr));}
.card{background:#fff;border:1px solid #eee;border-radius:var(--radius);padding:1.6rem;box-shadow:0 2px 4px rgba(0,0,0,.04);}
.icon{width:36px;height:36px;margin-bottom:.6rem;color:var(--teal);}
.steps{counter-reset:step;max-width:680px;margin-top:2rem;}
.step{position:relative;padding-left:3.2rem;}
.step:not(:last-child){margin-bottom:2rem;}
.step::before{
  counter-increment:step;content:counter(step);
  position:absolute;left:0;top:0;width:2.4rem;height:2.4rem;border-radius:50%;
  background:var(--teal);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:600;
}

/* ---------- FORM / FOOTER ---------- */
form{max-width:520px;margin:1rem auto 0;display:flex;flex-direction:column;gap:1rem;}
input,textarea{width:100%;padding:.9rem 1rem;border:1px solid #ccc;border-radius:12px;font-size:1rem}
textarea{min-height:120px;resize:vertical;}
footer{background:var(--navy);color:#cbd5e1;padding:3rem 0 2rem;text-align:center;font-size:.9rem;}
.footer-bottom{border-top:1px solid rgba(255,255,255,.15);padding-top:1rem;opacity:.7;font-size:.8rem;}

/* ---------- ANIMATIONS ---------- */
.reveal{opacity:0;transform:translateY(24px);transition:.6s ease opacity,.6s cubic-bezier(.16,.84,.44,1) transform;}
.reveal.in{opacity:1;transform:none;}

@keyframes shakeOnce{
  0%{transform:translate(0) rotate(0);}
  20%{transform:translate(-2px,1px) rotate(-1deg);}
  40%{transform:translate(3px,0) rotate(1deg);}
  60%{transform:translate(-1px,-2px) rotate(0);}
  80%{transform:translate(1px,1px) rotate(1deg);}
  100%{transform:translate(0) rotate(0);}
}
.shake{animation:shakeOnce .45s ease both;}

/* ---------- RESPONSIVE ---------- */
@media(max-width:900px){
  .nav-links{display:none;}
  .burger{display:block;}
}

/* --- Mobile root overrides for logo sizing (≤768px) --- */
@media (max-width:768px){
  :root{
    --logo-h:38px;
    --logo-h-scrolled:32px;
    --footer-logo-h:26px;
  }
}

/* ---------- HOVER LIFT + SHAKE ---------- */
@keyframes liftShake{
  0%   {transform:translateY(-4px) rotate(0);}
  20%  {transform:translateY(-6px) rotate(-1deg);}
  40%  {transform:translateY(-2px) rotate(1deg);}
  60%  {transform:translateY(-6px) rotate(0);}
  80%  {transform:translateY(-4px) rotate(1deg);}
  100% {transform:translateY(-4px) rotate(0);}
}
.p-card:hover{animation:liftShake .45s ease both;}

/* ---------- BADGE HOVER SHAKE ---------- */
@keyframes badgeShake{
  0%   {transform:translateY(-2px) rotate(0);}
  25%  {transform:translateY(-3px) rotate(-1deg);}
  50%  {transform:translateY(-1px) rotate(1deg);}
  75%  {transform:translateY(-3px) rotate(0);}
  100% {transform:translateY(-2px) rotate(0);}
}
.problem-title{
  margin-bottom:3.5rem;  /* was 3.5rem */
}
.hero-badges span:hover{
  animation:badgeShake .45s ease both;
  cursor:default;
}

/* ---------- Solution timeline ---------- */
.timeline{
  position:relative;
  margin-top:3rem;
  padding-left:40px;
}
.timeline::before{
  content:"";
  position:absolute;
  left:20px;
  top:0;
  bottom:0;
  width:2px;
  background:#e2e8f0;
}
.t-row{
  display:flex;
  align-items:flex-start;
  margin-bottom:3rem;
  position:relative;
}
.t-icon{
  width:40px;
  height:40px;
  border-radius:50%;
  background:var(--teal);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:1.2rem;
}
.t-content{
  background:#fff;
  border:1px solid #eee;
  border-radius:16px;
  box-shadow:0 4px 12px rgba(0,0,0,.05);
  padding:1.6rem 1.8rem;
  max-width:460px;
}
.t-content.left{margin-left:20px;}
.t-content.right{margin-left:auto;margin-right:20px;}
.t-content h3{
  margin:.2rem 0 .5rem;
  font-size:1.15rem;
  color:var(--navy);
}
.t-content p{
  margin:0;
  color:var(--muted);
  font-size:.95rem;
}

/* mobile adjustments */
@media(max-width:700px){
  .timeline{padding-left:0;}
  .timeline::before{display:none;}
  .t-row{
    flex-direction:column;
    align-items:flex-start;
    margin-bottom:2.2rem;
  }
  .t-icon{margin-bottom:1rem;}
  .t-content.left,
  .t-content.right{
    margin:0;
  }
}
/* ===== Timeline polish ===== */

/* Desktop layout: keep icons on the center spine & limit card width */
@media (min-width:700px){
  .t-row{
    justify-content:space-between;        /* push cards away from spine */
  }
  .t-content{
    width:calc(50% - 60px);               /* equal width left & right   */
  }
}

/* Hover lift + shake for timeline cards (re-uses liftShake keyframes) */
.t-content:hover{
  animation:liftShake .45s ease both;
  cursor:default;
}
/* ---------- Zig-zag grid ---------- */
.zigzag{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:3rem 2rem;                 /* row gap, column gap */
  margin-top:3rem;
  position:relative;
}
.zigzag::before{                 /* vertical spine line */
  content:"";
  position:absolute;
  left:50%;top:0;bottom:0;
  width:2px;
  background:#e2e8f0;
  transform:translateX(-50%);
}

.zz-card{
  position:relative;
  display:flex;
  justify-content:flex-end;
}
.zz-card:nth-child(odd){justify-content:flex-start;} /* alternate sides */

.zz-inner{
  background:#fff;
  border:1px solid #eee;
  border-radius:20px;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
  padding:1.8rem 2rem;
  max-width:420px;
  width:calc(100% - 60px);       /* leaves space for spine */
  transition:transform .25s;
}
.zz-card:hover .zz-inner{animation:liftShake .45s ease both;}

.zz-emoji{
  display:inline-block;
  width:42px;height:42px;
  border-radius:50%;
  background:var(--teal);
  color:#fff;font-size:1.3rem;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:.9rem;
}

.zz-inner h3{margin:.2rem 0 .6rem;font-size:1.2rem;color:var(--navy);}
.zz-inner p{margin:0;color:var(--muted);font-size:.96rem;}

/* Small screens: single column */
@media(max-width:700px){
  .zigzag{
    grid-template-columns:1fr;
    gap:2rem;
  }
  .zigzag::before{display:none;}
  .zz-card{justify-content:flex-start;}
  .zz-inner{width:100%;}
}
/* ---------- Simple Solution grid ---------- */
.simple-sol-grid{
  display:grid;
  gap:2rem;
  margin-top:2.5rem;
  /* 3 columns on wide, 2 on tablet, 1 on mobile */
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
}
.simple-sol-grid .card{
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  background:#fff;
  border:1px solid #eee;
  border-radius:20px;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
  padding:2rem 1.8rem;
  transition:.25s transform;
}
/* reuse lift+shake on hover */
.simple-sol-grid .card:hover{
  animation:liftShake .45s ease both;
}
.s-emoji{
  display:inline-block;
  width:44px;height:44px;
  border-radius:50%;
  background:var(--teal);
  color:#fff;font-size:1.3rem;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:.9rem;
}
.simple-sol-grid h3{margin:.3rem 0 .6rem;font-size:1.18rem;color:var(--navy);}
.simple-sol-grid p{margin:0;color:var(--muted);font-size:.96rem;}

/* ---------- Simple Solution grid ---------- */
.simple-sol-grid{
  display:grid;
  gap:2rem;
  margin-top:2.5rem;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
}
.simple-sol-grid .card{
  height:100%;
  display:flex;
  flex-direction:column;
  background:#fff;
  border:1px solid #eee;
  border-radius:20px;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
  padding:2rem 1.8rem;
  transition:transform .25s;
}
.simple-sol-grid .card:hover{animation:liftShake .45s ease both;}

.s-icon{
  width:44px;
  height:44px;
  margin-bottom:.9rem;
  stroke:var(--teal);
  fill:none;
  stroke-width:2;
}
.simple-sol-grid h3{margin:.3rem 0 .6rem;font-size:1.18rem;color:var(--navy);}
.simple-sol-grid p{margin:0;color:var(--muted);font-size:.96rem;}

/* ---- Problem icons (line style) ---- */
.p-icon{
  width:44px;
  height:44px;
  margin-bottom:.9rem;
  stroke:var(--teal);
  fill:none;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.p-icon{margin-top:4px;}   /* subtle vertical balance */

/* ---------- tagline type-writer (32 chars, slow) ---------- */
.tagline{
  font-size:1.05rem;
  text-align:center;
  color:var(--teal);
  margin:0 auto 2rem;
}

.typewriter{
  display:inline-block;
  overflow:hidden;
  white-space:nowrap;
  border-right:2px solid var(--teal);          /* caret */
  /* 32 characters  →  update both duration & steps */
  animation:
    typing 5s steps(31,end) forwards,
    blink 1s step-end 5s infinite;
}

/* keyframes */
@keyframes typing{
  from{width:0ch;}
  to  {width:31ch;}       /* exact width of the sentence */
}

@keyframes blink{
  50%{border-color:transparent;}
}

/* Coming-soon label */
.coming-soon{
  margin-top:2.5rem;
  font-size:1rem;
  color:var(--muted);
}

/* ---- HOW inline style (Option B) ---- */
.how-inline{
  display:flex;
  flex-wrap:wrap;
  gap:.6rem .8rem;
  justify-content:center;
  margin:2rem 0 2.3rem;
  font-size:1.05rem;
  align-items:center;
}
.num{
  display:inline-flex;
  width:28px;height:28px;
  border-radius:50%;
  background:var(--teal);
  color:#fff;font-weight:600;
  align-items:center;justify-content:center;
}
.sep{color:var(--muted);font-size:1.2rem;}

/* ===== HOW – fancy inline steps ===== */
.how-inline{
  display:flex;flex-wrap:wrap;gap:.9rem 1.1rem;
  justify-content:center;align-items:center;
  margin:2.2rem 0;
}
.step-pill{
  display:flex;align-items:center;gap:.55rem;
  background:#fff;border:1px solid #eee;border-radius:48px;
  padding:.55rem 1.2rem;box-shadow:0 2px 6px rgba(0,0,0,.04);
  transition:transform .25s;
}
.num{
  width:36px;height:36px;border-radius:50%;
  background:var(--teal);color:#fff;font-weight:600;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 2px 4px rgba(0,0,0,.12);
  transition:transform .25s;
}
.label{position:relative;font-weight:600;color:var(--navy);font-size:1rem;}

/* underline draw on hover */
.label::after{
  content:"";position:absolute;left:0;bottom:-4px;height:2px;width:0;
  background:var(--navy);transition:width .25s ease;
}
.step-pill:hover .label::after{width:100%;}

/* pulse on hover */
@keyframes pulse{0%{transform:scale(1);}50%{transform:scale(1.12);}100%{transform:scale(1);}}
.step-pill:hover .num{animation:pulse .6s ease;}
.step-pill:hover{transform:translateY(-3px);}

/* slim chevrons */
.chev{width:24px;height:24px;stroke:var(--muted);fill:none;stroke-width:2;}

/* progress bar */
.how-progress{
  height:4px;width:0;background:var(--teal);
  max-width:600px;margin:1.8rem auto 0;border-radius:2px;
  transition:width 8s ease;
}
.how-progress.in{width:100%;}   /* reveal script adds .in */

/* coming-soon line & animated hourglass */
.coming-soon{margin-top:2rem;font-size:1rem;color:var(--muted);}

/* responsive wrap */
@media(max-width:500px){
  .chev{display:none;}
}

/* ---------- animated ellipsis (always shows at least one dot) ---------- */
.coming-soon{
  margin-top:2rem;
  font-size:1.25rem;          /* bigger text */
  font-weight:600;
  color:var(--muted);
}

.dots{display:inline-block;margin-left:2px;font-size:1.35em;}

.dots span{
  opacity:0;
  display:inline-block;
  animation:dotWave 1.2s infinite;
}

/* delays stagger the three dots */
.dots span:nth-child(1){animation-delay:0s;}
.dots span:nth-child(2){animation-delay:.2s;}
.dots span:nth-child(3){animation-delay:.4s;}

/* at least one dot is visible throughout the 1.2 s cycle */
@keyframes dotWave{
  0%  {opacity:.2;}
  20% {opacity:1;}
  60% {opacity:1;}
  80% {opacity:.2;}
  100%{opacity:.2;}
}

/* ---- persona slider ---- */
.persona-slider{
  display:flex;
  gap:1.4rem;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding:1rem 0 2rem;
  scroll-padding:1rem;
  -webkit-overflow-scrolling:touch;
}
.persona-slider::-webkit-scrollbar{display:none;} /* hides scrollbar iOS/Safari */

.persona-card{
  flex:0 0 260px;
  scroll-snap-align:center;
  background:#fff;
  border:1px solid #eee;
  border-radius:20px;
  box-shadow:0 4px 12px rgba(0,0,0,.05);
  padding:2rem 1.6rem;
  text-align:center;
  transition:transform .25s;
}
.persona-card:hover{transform:translateY(-6px);}

.icon{
  font-size:2rem;
  display:inline-block;
  margin-bottom:.9rem;
}
.persona-card h3{margin:.2rem 0 .5rem;font-size:1.2rem;color:var(--navy);}
.persona-card p{margin:0;color:var(--muted);font-size:.95rem;}

/* keyboard navigation focus */
.persona-card:focus-within,
.persona-slider:focus .persona-card:first-child{
  outline:2px solid var(--teal);
  outline-offset:4px;
}
/* unify persona icons with site style */
.persona-card .icon{
  width:44px;height:44px;
  stroke:var(--teal);
  fill:none;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
  margin-bottom:.9rem;
}

/* ensure stroke icons stay teal & centred everywhere */
.persona-card{
  display:flex;
  flex-direction:column;
  align-items:center;              /* hard-center contents */
}
.persona-card .icon{
  width:44px;height:44px;
  stroke:var(--teal);
  fill:none;                       /* guarantees no black fills */
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
  margin-bottom:.9rem;
}

/* ---- CONNECT WITH US ---- */
.badge{
  display:inline-block;
  padding:.25rem .8rem;
  border-radius:999px;
  background:#e5e7eb;
  color:var(--navy);
  font-size:.8rem;
  font-weight:600;
  letter-spacing:.3px;
  margin-bottom:1.3rem;
}
.contact-icon{
  width:60px;height:60px;
  display:flex;align-items:center;justify-content:center;
  border-radius:12px;
  background:#f1f5f9;
  margin:2rem auto 1.6rem;
}
.contact-icon svg{
  width:32px;height:32px;
  stroke:var(--muted);fill:none;stroke-width:2;
}

/* ---- FOOTER layout ---- */
.footer-flex{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-bottom:1.2rem;
}
.footer-logo{
  height:var(--footer-logo-h);
  width:auto;
  display:block;
}
.linkedin svg{
  width:26px;height:26px;
  fill:#fff;
  transition:opacity .2s;
}
.linkedin:hover{opacity:.8;}

/* ===== Aesthetic pass – overrides ===== */

/* 1) Tokens: spacing, radius, shadows */
:root{
  --radius:18px;
  --radius-pill:999px;

  --shadow-sm:0 2px 8px rgba(0,0,0,.06);
  --shadow-md:0 8px 24px rgba(0,0,0,.10);
  --shadow-lg:0 18px 40px rgba(0,0,0,.12);
}

/* 2) Type scale (fluid) */
h1{ font-size:clamp(2.2rem, 2.4rem + 1.2vw, 3.2rem); letter-spacing:-.01em; }
h2{ font-size:clamp(1.6rem, 1.5rem + .6vw, 2.2rem);  letter-spacing:-.01em; }
h3{ font-size:clamp(1.05rem, 1rem + .3vw, 1.25rem); }

body{ font-size:clamp(.98rem, .95rem + .1vw, 1.05rem); }
p{ line-height:1.7; }

/* 3) Container breathing room */
.container{ max-width:1180px; }
section{ padding:5rem 0; }
.problem-title{ margin-bottom:3.2rem; }

/* 4) Header touch-up */
.header.scrolled{ box-shadow:var(--shadow-sm); }
.logo{ height:var(--logo-h); }

/* 5) Buttons – rounder + clearer focus */
.btn{
  border-radius:var(--radius-pill);
  box-shadow:0 2px 0 rgba(0,0,0,.05);
}
.btn:focus-visible{ outline:3px solid rgba(22,179,155,.35); outline-offset:2px; }

/* 6) Icon pills for tiles (unify style) */
.p-icon,.s-icon{
  width:44px;height:44px;stroke:var(--teal);fill:none;stroke-width:2;
}
.icon-pill{
  width:52px;height:52px;border-radius:14px;
  display:inline-flex;align-items:center;justify-content:center;
  background:#ecfdf7;border:1px solid #d6f5ee;
  box-shadow:var(--shadow-sm);
}

/* Use inside cards like:
   <span class="icon-pill"><svg class="p-icon">…</svg></span>
*/

/* 7) Cards – lighter borders, softer hover */
.card,.p-card{
  border:1px solid #eef0f2;
  border-radius:20px;
  box-shadow:var(--shadow-sm);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.card:hover,.p-card:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow-md);
  border-color:#e7eaee;
}

/* 8) Problem & solution grids – consistent spacing */
.problem-grid,.simple-sol-grid{ gap:2.2rem; }

/* 9) Hero – clearer hierarchy, subtler blobs */
.hero{ padding:9rem 0 6.5rem; }
.hero h1{ margin-bottom:.6rem; }
.tagline{ font-size:1.1rem; opacity:.9; }
.blob{ opacity:.12; filter:blur(50px); }

/* 10) “How” progress – slimmer + calmer */
.how-progress{ height:3px; border-radius:3px; background:linear-gradient(90deg,#16b39b,#10a58f); }

/* 11) Footer sizing to match new logo */
.footer-logo{ height:var(--footer-logo-h); }

/* ==== Healta brand alignment (blue + teal) ==== */
:root{
  /* core brand */
  --brand-blue:#0a69bb;      /* “Healta” in logo */
  --brand-teal:#1d9c86;      /* “Know your health Story!” */

  /* use brand shades across the site */
  --navy:#0a3f7a;            /* deeper blue for footer/strong surfaces */
  --teal:var(--brand-teal);  /* primary action color */

  /* optional light tints for chips/badges */
  --teal-50:#e8f5f1;         /* light teal background */
  --blue-50:#e9f1fb;         /* light blue background */
}

/* Headings lean into brand blue; body stays neutral */
h1,h2,h3{ color:var(--brand-blue); }
p, .nav-link{ color:var(--text); }

/* Links and subtle accents */
a{ color:var(--brand-blue); }
a:hover{ opacity:.9; }

/* Nav states */
.nav-link:hover{ color:var(--brand-blue); }
.nav-link.active{ color:var(--brand-teal); }
.nav-link.active::after{ background:var(--brand-teal); }

/* Primary CTA in brand teal; secondary in brand blue */
.btn-primary{
  background:var(--brand-teal); color:#fff;
}
.btn-primary:hover{ background:#178c77; } /* 10–12% darker */

.btn-accent{
  background:var(--brand-blue); color:#fff;
}
.btn-accent:hover{ background:#095fa6; }

/* Tagline + scroll cue in brand teal */
.tagline{ color:var(--brand-teal); }
.scroll-cue, .scroll-cue span{ border-color:var(--brand-teal); background:var(--brand-teal); }

/* Icons and line graphics in brand teal for consistency */
.s-icon, .p-icon, .persona-card .icon{
  stroke:var(--brand-teal);
}

/* Pills / badges use soft tints of brand colors */
.badge{ background:var(--teal-50); color:var(--brand-blue); }
.icon-pill{
  background:var(--teal-50); border:1px solid #d6eee7;
}

/* Progress bar blends teal→blue */
.how-progress{
  background:linear-gradient(90deg,var(--brand-teal),var(--brand-blue));
}

/* Hero blobs: teal + blue (replacing coral), lighter to avoid noise */
.blob-teal{ background:var(--brand-teal); }
.blob-coral{ background:var(--brand-blue); opacity:.10; }

/* Footer uses deeper brand blue and white content */
footer{ background:var(--navy); }
.linkedin:hover{ opacity:.85; }

/* ==== Footer: light variant that complements the colored logo ==== */
:root{
  --footer-bg:#fafcff;      /* very light blue */
  --footer-text:#0a69bb;    /* brand blue */
  --footer-border:#dfe9f7;  /* subtle divider */
}

footer{
  background:var(--footer-bg);
  color:var(--footer-text);
}

.footer-bottom{
  border-top:1px solid var(--footer-border);
  color:var(--footer-text);
}

.footer-flex{ padding-bottom:1rem; }

.footer-logo{ height:36px; }            /* slight bump for clarity */
.linkedin svg{ fill:var(--footer-text); }

.scroll-cue{
  border-color: rgba(10,105,187,.35);
  opacity: .9;
}
.scroll-cue span{
  background: #0a69bb;                  /* deep logo blue */
}
:root{
  /* your target “paper” color from the second image */
  --paper:#FAF7F2; /* adjust if you need */
}
