:root{
  --sky:#9CD6FF;
  --sky-soft:#DFF4FF;
  --sky-pale:#F3FAFF;
  --ink:#4F4F4F;
  --deep:#22313A;
  --white:#FFFFFF;
  --line:#D8EDF8;
  --blue-text:#397A9C;
  --blue-hover:#55BDEB;
  --shadow:0 20px 50px rgba(34,49,58,.10);
  --soft-shadow:0 10px 28px rgba(34,49,58,.05);
  --radius:28px;
  --radius-lg:42px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:"SF Pro Display","SF Pro Text",-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  color:var(--ink);
  background:var(--white);
  line-height:1.6;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  max-width:100%;
  display:block;
}

.nav{
  position:sticky;
  top:0;
  z-index:20;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px clamp(22px,5vw,76px);
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--deep);
  font-weight:800;
  letter-spacing:.2px;
}

.logo-mark{
  width:46px;
  height:46px;
  border:3px solid var(--sky);
  border-radius:50%;
  position:relative;
  flex:0 0 auto;
}

.logo-mark:before{
  content:"";
  position:absolute;
  inset:8px;
  border:3px solid var(--sky);
  border-radius:50%;
}

.logo-mark:after{
  content:"";
  position:absolute;
  width:13px;
  height:13px;
  left:13px;
  top:13px;
  border:3px solid var(--sky);
  border-radius:50%;
  background:white;
}

.brand small{
  display:block;
  font-size:12px;
  font-weight:500;
  color:var(--ink);
  margin-top:-3px;
}

.links{
  display:flex;
  align-items:center;
  gap:24px;
  font-size:14px;
  font-weight:650;
}

.links a{
  opacity:.78;
}

.links a:hover,
.links a.active{
  opacity:1;
  color:var(--blue-hover);
}

.nav-toggle{
  display:none;
  width:44px;
  height:44px;
  border:1px solid var(--line);
  border-radius:14px;
  background:white;
  cursor:pointer;
}

.nav-toggle span{
  display:block;
  width:22px;
  height:2px;
  background:var(--deep);
  margin:5px auto;
  border-radius:999px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius:999px;
  padding:13px 21px;
  background:var(--deep);
  color:white;
  font-weight:750;
  font-size:14px;
  box-shadow:0 12px 28px rgba(34,49,58,.18);
  border:0;
  cursor:pointer;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn.light{
  background:white;
  color:var(--deep);
  box-shadow:none;
  border:1px solid rgba(255,255,255,.75);
}

.btn.sky{
  background:#77C8F4;
  color:#19313F;
}

section{
  padding:88px clamp(24px,7vw,110px);
}

.hero{
  padding-top:108px;
  padding-bottom:108px;
  background:
    radial-gradient(circle at 84% 18%,rgba(255,255,255,.75) 0 12%,transparent 13%),
    linear-gradient(135deg,#9CD6FF 0%,#DFF4FF 62%,#FFFFFF 100%);
}

.hero.home{
  min-height:84vh;
  display:grid;
  grid-template-columns:1.08fr .92fr;
  align-items:center;
  gap:50px;
}

.hero-inner{
  max-width:980px;
}

.eyebrow{
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:12px;
  font-weight:800;
  color:var(--blue-text);
}

h1,h2,h3{
  margin:0;
  color:var(--deep);
  line-height:1.06;
}

h1{
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(50px,7vw,88px);
  letter-spacing:-.055em;
  margin-top:12px;
}

h2{
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(34px,4.8vw,62px);
  letter-spacing:-.04em;
}

h3{
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(23px,2.4vw,34px);
  letter-spacing:-.025em;
}

.lead{
  font-size:clamp(18px,2vw,23px);
  max-width:840px;
  color:#42535E;
  margin:26px 0 28px;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.pill-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:24px;
}

.pill{
  padding:9px 13px;
  border-radius:999px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(85,189,235,.28);
  font-size:13px;
  font-weight:750;
  color:#2D5C73;
}

.hero-card{
  background:rgba(255,255,255,.78);
  border:1px solid rgba(255,255,255,.82);
  border-radius:var(--radius);
  padding:34px;
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}

.hero-card:before{
  content:"";
  position:absolute;
  width:220px;
  height:220px;
  border-radius:50%;
  right:-70px;
  top:-70px;
  background:rgba(156,214,255,.36);
}

.hero-card h3,
.hero-card p,
.hero-card .stats{
  position:relative;
}

.stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:30px;
}

.stat{
  padding:22px;
  border-radius:22px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(255,255,255,.84);
}

.stat strong{
  display:block;
  font-size:30px;
  color:var(--deep);
  line-height:1;
}

.stat span{
  font-size:13px;
  font-weight:650;
  color:#55707C;
}

.center{
  text-align:center;
  max-width:920px;
  margin:0 auto 48px;
}

.center p{
  font-size:18px;
}

.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
  align-items:start;
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.grid-4{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.problem{
  background:white;
}

.problem-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:stretch;
}

.box,
.card,
.panel,
.step,
.pillar,
.member,
.form-card,
.info-card{
  background:white;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:34px;
  box-shadow:var(--soft-shadow);
}

.card{
  box-shadow:var(--shadow);
  min-height:260px;
}

.card.soft,
.box.soft{
  background:var(--sky-pale);
  box-shadow:none;
}

.box.dark,
.info-card{
  background:var(--deep);
  color:white;
}

.box.dark h2,
.box.dark h3,
.info-card h2,
.info-card h3{
  color:white;
}

.box.dark p,
.info-card p{
  color:#D7F1FF;
}

.list{
  margin:18px 0 0;
  padding:0;
  list-style:none;
}

.list li{
  padding:10px 0 10px 30px;
  position:relative;
  border-bottom:1px solid rgba(79,79,79,.08);
}

.list li:before{
  content:"";
  position:absolute;
  left:0;
  top:19px;
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--sky);
}

.box.dark .list li,
.info-card .list li{
  border-bottom:1px solid rgba(255,255,255,.13);
}

.solutions,
.dna,
.founders,
.timeline,
.featured{
  background:linear-gradient(180deg,#F8FCFF 0%,#FFFFFF 100%);
}

.method,
.approach,
.modalities,
.network,
.personal,
.alt{
  background:#EFF9FF;
}

.num{
  display:inline-grid;
  place-items:center;
  width:54px;
  height:54px;
  border-radius:50%;
  background:var(--sky);
  color:white;
  font-weight:900;
  font-size:25px;
  margin-bottom:22px;
}

.card .num{
  width:50px;
  height:50px;
  font-size:24px;
}

.steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.step{
  padding:25px;
}

.step strong{
  display:inline-grid;
  place-items:center;
  width:42px;
  height:42px;
  border-radius:50%;
  background:var(--deep);
  color:white;
  margin-bottom:18px;
}

.team-preview{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:34px;
  align-items:center;
}

.portrait{
  min-height:420px;
  border-radius:var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(156,214,255,.72), rgba(255,255,255,.35)),
    url('../assets/images/hero-leadership.jpg');
  background-size:cover;
  background-position:center;
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}

.portrait:after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.35), transparent 25%),
    radial-gradient(circle at 90% 80%, rgba(255,255,255,.28), transparent 30%);
}

.quote-card,
.quote-band,
.feature-card{
  background:var(--deep);
  color:white;
  border-radius:var(--radius-lg);
  padding:54px clamp(26px,5vw,70px);
  box-shadow:var(--shadow);
}

.quote-card h2,
.quote-band h2,
.feature-card h2{
  color:white;
}

.quote{
  font-size:clamp(25px,3.2vw,42px);
  line-height:1.24;
  font-weight:700;
  color:white;
  margin:26px 0;
}

.quote-card p,
.quote-band p,
.feature-card p{
  color:#D7F1FF;
}

.quote-card small,
.attrib{
  display:block;
  color:#BDE8FF;
  margin-top:24px;
  font-weight:750;
}

.solution{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:34px;
  align-items:stretch;
  margin-bottom:32px;
}

.solution.reverse{
  grid-template-columns:1.15fr .85fr;
}

.visual{
  border-radius:38px;
  min-height:390px;
  background-size:cover;
  background-position:center;
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}

.visual:after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.30), transparent 26%),
    linear-gradient(135deg,rgba(156,214,255,.35),rgba(34,49,58,.10));
}

.v1{
  background-image:url('../assets/images/solutions-leadership.jpg');
}

.v2{
  background-image:url('../assets/images/solutions-team.jpg');
}

.v3{
  background-image:url('../assets/images/solutions-wellbeing.jpg');
}

.fit{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}

.phase{
  display:grid;
  grid-template-columns:260px 1fr;
  gap:34px;
  margin-bottom:26px;
  align-items:stretch;
}

.phase-label{
  background:var(--deep);
  color:white;
  border-radius:var(--radius);
  padding:30px;
  box-shadow:var(--shadow);
}

.phase-label strong{
  font-size:52px;
  line-height:1;
  display:block;
  margin-bottom:14px;
  color:var(--sky);
}

.phase-label h3{
  color:white;
}

.phase-panel{
  background:white;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:34px;
  box-shadow:var(--shadow);
}

.meta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:18px 0;
}

.meta .pill{
  background:var(--sky-pale);
}

.source-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.dashboard{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:center;
}

.mock{
  border-radius:38px;
  background:var(--sky-pale);
  border:1px solid var(--line);
  padding:30px;
  box-shadow:var(--shadow);
}

.bar{
  height:18px;
  background:white;
  border-radius:999px;
  overflow:hidden;
  margin:18px 0;
  border:1px solid var(--line);
}

.bar span{
  display:block;
  height:100%;
  background:var(--sky);
  border-radius:999px;
}

.metrics{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-top:20px;
}

.metric{
  background:white;
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
}

.metric strong{
  font-size:30px;
  color:var(--deep);
  line-height:1;
}

.founder-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}

.founder{
  background:white;
  border:1px solid var(--line);
  border-radius:38px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.photo{
  height:360px;
  background-size:cover;
  background-position:center;
}

.p1{
  background-image:
    linear-gradient(135deg,rgba(156,214,255,.18),rgba(34,49,58,.10)),
    url('../assets/images/katherina-capra.jpg');
}

.p2{
  background-image:
    linear-gradient(135deg,rgba(156,214,255,.18),rgba(34,49,58,.10)),
    url('../assets/images/adriana-rodriguez.jpg');
}

.founder-body{
  padding:34px;
}

.credential,
.role{
  display:inline-block;
  margin:12px 0 16px;
  padding:8px 12px;
  border-radius:999px;
  background:var(--sky-pale);
  border:1px solid var(--line);
  font-size:13px;
  font-weight:800;
  color:var(--blue-text);
}

.team-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.member-photo{
  width:100%;
  aspect-ratio:1 / 1;
  border-radius:24px;
  background:var(--sky-pale);
  border:1px solid var(--line);
  margin-bottom:18px;
  background-size:cover;
  background-position:center;
  box-shadow:0 10px 24px rgba(34,49,58,.06);
}

.member-photo.yinan{
  background-image:url('../assets/images/yinan-gu.jpg');
}

.member-photo.katie{
  background-image:url('../assets/images/katie-drescher.jpg');
}

.member-photo.beatriz{
  background-image:url('../assets/images/beatriz-garcia.jpg');
}

.member-photo.catalina{
  background-image:url('../assets/images/catalina-alomia.jpg');
}

.member-photo.emily{
  background-image:url('../assets/images/emily-felt.jpeg');
}

.member-photo.rosario{
  background-image:url('../assets/images/rosario-kaune.jpg');
}

.avatar{
  width:72px;
  height:72px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--sky),white);
  border:1px solid var(--line);
  margin-bottom:18px;
  display:grid;
  place-items:center;
  color:var(--deep);
  font-weight:900;
  font-size:22px;
}

.logo-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.logo-card{
  background:white;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:30px;
  box-shadow:var(--soft-shadow);
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:170px;
}

.logo-card img{
  max-width:220px;
  max-height:110px;
  object-fit:contain;
}

.principles,
.outcomes,
.contact-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}

.contact-wrap{
  grid-template-columns:.85fr 1.15fr;
  align-items:start;
}

.detail{
  padding:18px 0;
  border-bottom:1px solid rgba(255,255,255,.13);
}

.detail strong{
  display:block;
  color:var(--sky);
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.12em;
  margin-bottom:4px;
}

.detail a{
  color:white;
  font-weight:750;
}

form{
  display:grid;
  gap:18px;
}

label{
  font-weight:800;
  color:var(--deep);
  font-size:14px;
}

input,
select,
textarea{
  width:100%;
  margin-top:7px;
  padding:14px 15px;
  border:1px solid var(--line);
  border-radius:16px;
  font:inherit;
  color:var(--deep);
  background:var(--sky-pale);
  outline:none;
}

input:focus,
select:focus,
textarea:focus{
  border-color:var(--sky);
  box-shadow:0 0 0 4px rgba(156,214,255,.25);
}

textarea{
  min-height:150px;
  resize:vertical;
}

.two{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.note{
  font-size:13px;
  color:#667985;
  margin-top:4px;
}

.notice{
  background:var(--sky-pale);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:28px;
  margin-bottom:28px;
}

.cta{
  text-align:center;
  background:linear-gradient(135deg,#9CD6FF,#DFF4FF);
}

.cta h2{
  max-width:850px;
  margin:auto;
}

.cta p{
  font-size:20px;
  max-width:760px;
  margin:22px auto 30px;
}

footer{
  padding:38px clamp(24px,7vw,110px);
  background:var(--deep);
  color:white;
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

footer small{
  opacity:.75;
}

@media(max-width:920px){
  .nav{
    align-items:center;
  }

  .nav-toggle{
    display:block;
  }

  .links{
    display:none;
    position:absolute;
    top:82px;
    left:22px;
    right:22px;
    background:white;
    border:1px solid var(--line);
    border-radius:22px;
    box-shadow:var(--shadow);
    padding:18px;
    flex-direction:column;
    align-items:flex-start;
    gap:16px;
  }

  .links.open{
    display:flex;
  }

  .hero.home,
  .problem-grid,
  .team-preview,
  .solution,
  .solution.reverse,
  .fit,
  .phase,
  .dashboard,
  .founder-grid,
  .principles,
  .outcomes,
  .contact-wrap,
  .grid-2,
  .two,
  .logo-grid{
    grid-template-columns:1fr;
  }

  .grid-3,
  .grid-4,
  .steps,
  .stats,
  .source-grid,
  .team-grid{
    grid-template-columns:1fr;
  }

  section{
    padding:68px 22px;
  }

  .hero.home{
    min-height:auto;
  }

  h1{
    font-size:48px;
  }

  .visual{
    min-height:300px;
  }

  .photo{
    height:300px;
  }

  .member-photo{
    max-width:360px;
  }
}