@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root{
  --bg:#F6F7F5;
  --surface:#E7EDEC;
  --ink:#2E4C54;        /* exact wordmark colour from the brand logo */
  --muted:#5A6F75;
  --teal:#3F5C63;        /* accessible interactive shade derived from the brand wave */
  --teal-dark:#2A3F44;
  --teal-light:#8CA6AB;
  --wave:#708F95;        /* exact brand wave colour — decorative use only */
  --line:#DDE4E3;
  --footer-bg:#1E3238;
  --footer-ink:#EFF3F2;
  --footer-muted:#9BB0B4;
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}*{transition:none!important}}
body{
  background:var(--bg);
  color:var(--ink);
  font-family:'Poppins',system-ui,sans-serif;
  font-weight:400;
  font-size:1.0625rem;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
.wrap{max-width:1080px;margin:0 auto;padding:0 24px}
a{color:inherit}
img,svg{display:block;max-width:100%}

/* ---------- Nav ---------- */
nav{border-bottom:1px solid var(--line);background:var(--bg)}
.nav-inner{display:flex;align-items:center;justify-content:space-between;padding-top:18px;padding-bottom:18px}
.brand{display:flex;align-items:center;gap:10px;text-decoration:none;color:var(--ink)}
.brand img{width:34px;height:auto;flex-shrink:0}
.brand-text{font-weight:700;font-size:1.05rem;letter-spacing:.01em;line-height:1.05}
.nav-links{display:flex;align-items:center;flex-wrap:wrap;row-gap:8px}
.nav-links a{
  color:var(--muted);text-decoration:none;font-size:.95rem;
  margin-left:26px;padding-bottom:3px;
  border-bottom:1.5px solid transparent;
  transition:color .15s,border-color .15s;
}
.nav-links a:hover,.nav-links a:focus-visible{color:var(--ink);border-color:var(--teal)}
.nav-links a[aria-current]{color:var(--ink);border-color:var(--teal)}
a:focus-visible{outline:2px solid var(--teal);outline-offset:3px;border-radius:2px}

/* ---------- Hero ---------- */
.hero{padding:76px 0 64px;overflow:hidden}
.hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:32px;align-items:center}
.hero h1{
  font-weight:700;
  font-size:clamp(2rem,4.4vw,3.05rem);
  line-height:1.1;letter-spacing:-.015em;
}
.hero .ethos{
  margin-top:24px;font-size:clamp(1.05rem,2vw,1.3rem);
  line-height:1.4;color:var(--teal);font-weight:500;max-width:30ch;
}
.hero p.intro{margin-top:22px;color:var(--muted);max-width:52ch}
.hero-actions{margin-top:34px;display:flex;align-items:center;gap:26px;flex-wrap:wrap}

.hero-visual{position:relative;margin-top:8px}
.hero-visual .w1{opacity:.25}
.hero-visual .w2{opacity:.5;margin-top:-18%}
.hero-visual .w3{opacity:1;margin-top:-16%}

.button{
  display:inline-block;background:var(--teal);color:#fff;text-decoration:none;
  padding:14px 28px;font-size:1rem;border-radius:100px;font-weight:600;
  transition:background .15s;
}
.button:hover,.button:focus-visible{background:var(--teal-dark)}
.textlink{
  color:var(--teal);text-decoration:none;font-weight:600;
  border-bottom:1.5px solid transparent;transition:border-color .15s;
}
.textlink:hover,.textlink:focus-visible{border-color:var(--teal)}

/* ---------- Eyebrow / section heads ---------- */
.eyebrow{
  text-transform:uppercase;letter-spacing:.13em;font-size:.75rem;
  font-weight:600;color:var(--teal);
}
.section-head h2{
  font-weight:700;font-size:clamp(1.4rem,2.6vw,1.85rem);
  margin-top:10px;letter-spacing:-.01em;max-width:44ch;line-height:1.3;
}
.section-head p{margin-top:12px;color:var(--muted);max-width:56ch}

/* ---------- Principles (icon grid) ---------- */
.principles{padding:68px 0;border-top:1px solid var(--line)}
.principle-grid{margin-top:42px;display:grid;grid-template-columns:repeat(5,1fr);gap:28px}
.icon-badge{
  width:44px;height:44px;border-radius:12px;background:var(--surface);
  display:flex;align-items:center;justify-content:center;color:var(--teal);
  margin-bottom:18px;
}
.icon-badge svg{width:22px;height:22px}
.principle h3{font-weight:600;font-size:1.02rem;letter-spacing:-.005em}
.principle p{margin-top:9px;color:var(--muted);font-size:.94rem;line-height:1.55}

.proof-teaser{display:block;text-decoration:none;color:inherit}
.proof-teaser .icon-badge{transition:background .15s,color .15s}
.proof-teaser h3{font-weight:600;font-size:1.02rem;letter-spacing:-.005em;transition:color .15s}
.proof-teaser p{margin-top:9px;color:var(--muted);font-size:.94rem;line-height:1.5}
.proof-teaser:hover .icon-badge,.proof-teaser:focus-visible .icon-badge{background:var(--teal);color:#fff}
.proof-teaser:hover h3,.proof-teaser:focus-visible h3{color:var(--teal)}

/* ---------- Quote ---------- */
.quote{border-top:1px solid var(--line);border-bottom:1px solid var(--line);padding:72px 0}
blockquote{
  font-weight:600;font-size:clamp(1.6rem,4.6vw,2.7rem);
  line-height:1.18;letter-spacing:-.01em;
}
blockquote span{color:var(--teal)}
.quote cite{display:block;margin-top:22px;font-style:normal;color:var(--muted);font-size:.95rem}

/* ---------- Proof ---------- */
.proof{padding:72px 0}
.proof .section-head p{max-width:58ch}
.system{border-top:1px solid var(--line);margin-top:50px;padding-top:32px}
.system:first-of-type{margin-top:58px}
.system-head{display:flex;align-items:center;gap:14px}
.system-icon{
  width:40px;height:40px;border-radius:10px;background:var(--surface);
  display:flex;align-items:center;justify-content:center;color:var(--teal);
  flex-shrink:0;
}
.system-icon svg{width:20px;height:20px}
.system h3{font-weight:700;font-size:1.15rem;letter-spacing:-.005em}
.system h3 small{
  display:block;margin-top:2px;font-size:.76rem;font-weight:500;
  letter-spacing:.08em;text-transform:uppercase;color:var(--muted);
}
.system p{margin-top:16px;max-width:64ch}
.does{color:var(--teal);font-weight:600}

/* ---------- Steps (shared: home teaser + full page) ---------- */
.steps{padding:72px 0;border-top:1px solid var(--line)}
.step-row{margin-top:50px;display:grid;grid-template-columns:repeat(3,1fr);gap:0;position:relative}
.step-row::before{
  content:"";position:absolute;top:22px;left:calc(100%/6);right:calc(100%/6);
  height:1px;background-image:linear-gradient(to right,var(--line) 0 6px,transparent 6px 12px);
  background-size:12px 1px;background-repeat:repeat-x;z-index:0;
}
.step-item{position:relative;padding-right:20px}
.step-icon{
  width:44px;height:44px;border-radius:50%;background:var(--bg);
  border:1.5px solid var(--line);
  display:flex;align-items:center;justify-content:center;color:var(--teal);
  position:relative;z-index:1;
}
.step-icon svg{width:20px;height:20px}
.step-item h3{margin-top:20px;font-weight:600;font-size:1.05rem;letter-spacing:-.005em}
.step-item p{margin-top:10px;color:var(--muted);font-size:.94rem;max-width:34ch}

/* full detail steps (how-it-works page) */
.step-detail{border-top:1px solid var(--line);padding:38px 0;display:grid;grid-template-columns:56px 1fr;gap:22px;align-items:start}
.step-detail:first-of-type{border-top:none}
.step-detail .step-icon{width:48px;height:48px}
.step-detail .step-icon svg{width:22px;height:22px}
.step-detail h2{font-weight:700;font-size:1.28rem;letter-spacing:-.005em;line-height:1.25}
.step-detail .step-eyebrow{
  display:block;font-size:.75rem;text-transform:uppercase;letter-spacing:.11em;
  color:var(--teal);font-weight:600;margin-bottom:6px;
}
.step-detail p{margin-top:14px;max-width:58ch;color:var(--ink)}
.price-row{display:flex;align-items:baseline;justify-content:space-between;gap:16px;flex-wrap:wrap}
.price-tag{font-weight:700;font-size:1.35rem;color:var(--teal);white-space:nowrap;letter-spacing:-.01em}

/* ---------- CTA band ---------- */
.cta{border-top:1px solid var(--line);padding:0}
.cta-panel{
  background:var(--surface);border-radius:20px;margin:68px 0 92px;
  padding:50px 40px;display:flex;align-items:center;justify-content:space-between;
  gap:32px;flex-wrap:wrap;
}
.cta-left{display:flex;align-items:center;gap:26px}
.cta-left img{width:60px;height:auto;flex-shrink:0}
.cta-panel p{font-weight:500;font-size:clamp(1.15rem,2.2vw,1.45rem);line-height:1.32;max-width:22ch}
.cta-panel .button{flex-shrink:0}

/* ---------- Footer ---------- */
footer{background:var(--footer-bg);color:var(--footer-muted);padding:42px 0}
.footer-inner{display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap}
.footer-brand{display:flex;align-items:center;gap:10px;text-decoration:none;color:var(--footer-ink)}
.footer-brand img{width:28px;height:auto}
.footer-brand span{font-weight:700;font-size:.98rem}
footer a.footer-email{color:var(--footer-ink);text-decoration:none;border-bottom:1px solid var(--footer-muted);transition:border-color .15s}
footer a.footer-email:hover,footer a.footer-email:focus-visible{border-color:var(--teal-light)}
footer .footer-note{font-size:.85rem}

/* ---------- Contact page specifics ---------- */
main{flex:1}
.email-block{padding:16px 0 100px}
.email-link{
  display:inline-block;font-weight:600;
  font-size:clamp(1.3rem,4.4vw,2.3rem);letter-spacing:-.01em;
  color:var(--teal);text-decoration:none;
  border-bottom:3px solid var(--teal);padding-bottom:6px;
  transition:color .15s,border-color .15s;word-break:break-all;
}
.email-link:hover,.email-link:focus-visible{color:var(--teal-dark);border-color:var(--teal-dark)}
.contact-visual{width:100%;max-width:420px;margin-top:52px;opacity:.85}

/* ---------- Responsive ---------- */
@media (max-width:900px){
  .hero-grid{grid-template-columns:1fr}
  .hero-visual{min-height:0;margin-top:8px;max-width:420px}
  .principle-grid{grid-template-columns:repeat(3,1fr);row-gap:36px}
}
@media (max-width:680px){
  .hero{padding:52px 0 44px}
  .principles,.proof,.steps{padding:52px 0}
  .principle-grid{grid-template-columns:repeat(2,1fr)}
  .step-row{grid-template-columns:1fr;gap:40px}
  .step-row::before{display:none}
  .cta-panel{padding:34px 22px;margin:52px 0 68px}
  .cta-left{gap:16px}
  .cta-left img{width:46px}
  .step-detail{grid-template-columns:44px 1fr;gap:16px}
  .footer-inner{flex-direction:column;align-items:flex-start}
}
@media (max-width:520px){
  .nav-inner{flex-wrap:wrap;row-gap:12px}
  .brand{flex:1 1 auto}
  .nav-links{width:100%;justify-content:flex-start}
  .nav-links a{margin-left:0;margin-right:20px;white-space:nowrap;font-size:.92rem}
}
