:root{
  --teal:#147C63;
  --teal-deep:#0C5847;
  --teal-light:#5DCAA5;
  --quiet:#E3F3EE;
  --coral:#D85A30;
  --coral-light:#F0997B;
  --amber:#E0A32B;
  --ink:#0A231D;
  --paper:#FBFAF7;
  --screen:#08453F;
  --rule:rgba(10,35,29,.14);
  --measure:62ch;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}}

body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:"IBM Plex Sans Arabic",system-ui,sans-serif;
  font-size:17px;
  line-height:1.85;
  -webkit-font-smoothing:antialiased;
}

h1,h2,h3{font-family:"Readex Pro",system-ui,sans-serif;line-height:1.3;margin:0}
h1{font-size:clamp(2rem,6vw,3.4rem);font-weight:600;letter-spacing:-.01em}
h2{font-size:clamp(1.35rem,3.6vw,1.9rem);font-weight:600}
h3{font-size:1.08rem;font-weight:600}
p{margin:0 0 1.1rem}
a{color:var(--teal-deep)}
a:focus-visible,button:focus-visible{outline:3px solid var(--coral);outline-offset:3px;border-radius:6px}

.wrap{max-width:1040px;margin:0 auto;padding:0 24px}
.narrow{max-width:var(--measure)}

/* header */
.site-head{padding:26px 0;border-bottom:1px solid var(--rule)}
.site-head .wrap{display:flex;align-items:center;justify-content:space-between;gap:16px}
.brand{display:flex;align-items:center;gap:11px;text-decoration:none;color:var(--ink)}
.brand-mark{width:34px;height:34px;flex:none}
.brand-name{font-family:"Readex Pro",sans-serif;font-size:1.22rem;font-weight:600}
.site-head nav{display:flex;gap:20px;font-size:.93rem}
.site-head nav a{color:var(--teal-deep);text-decoration:none}
.site-head nav a:hover{text-decoration:underline}

/* hero */
.hero{padding:64px 0 24px}
.hero .lede{max-width:34ch;font-size:clamp(1.02rem,2.4vw,1.2rem);color:#2c4a42;margin-top:20px}
.tag{font-family:"Readex Pro",sans-serif;color:var(--teal-deep)}

.pulse-panel{
  margin:44px 0 0;
  background:var(--screen);
  border-radius:18px;
  padding:26px 22px 20px;
  color:#CFE9E0;
}
.pulse-panel svg{width:100%;height:auto;display:block}
.pulse-caption{
  display:flex;flex-wrap:wrap;gap:14px 26px;
  margin-top:16px;font-size:.84rem;color:#9FC7BC;
}
.pulse-caption span{display:flex;align-items:center;gap:7px}
.dot{width:9px;height:9px;border-radius:50%;flex:none}

/* sections */
section{padding:56px 0}
section + section{border-top:1px solid var(--rule)}
.section-body{margin-top:18px;max-width:var(--measure)}

.steps{list-style:none;margin:26px 0 0;padding:0;counter-reset:s}
.steps li{
  counter-increment:s;
  position:relative;
  padding-inline-start:52px;
  margin-bottom:26px;
  max-width:var(--measure);
}
.steps li::before{
  content:counter(s);
  position:absolute;inset-inline-start:0;top:2px;
  width:34px;height:34px;border-radius:30px;
  background:var(--quiet);color:var(--teal-deep);
  font-family:"Readex Pro",sans-serif;font-size:.95rem;
  display:grid;place-items:center;
}
.steps h3{margin-bottom:4px}
.steps p{margin:0;color:#2c4a42}

.cards{display:grid;gap:16px;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));margin-top:26px}
.card{background:#fff;border:1px solid var(--rule);border-radius:18px;padding:20px 20px 16px}
.card h3{margin-bottom:6px}
.card p{margin:0;font-size:.95rem;color:#2c4a42}

.note{background:var(--quiet);border-radius:18px;padding:22px 24px;max-width:var(--measure)}
.note p:last-child{margin:0}

/* legal pages */
.legal{padding:52px 0 8px}
.legal h1{font-size:clamp(1.7rem,4.5vw,2.4rem)}
.legal .updated{color:#527069;font-size:.9rem;margin-top:10px}
.legal h2{margin:38px 0 10px;font-size:1.22rem}
.legal p,.legal li{max-width:var(--measure)}
.legal ul{padding-inline-start:22px}
.legal li{margin-bottom:8px}

/* footer */
.site-foot{border-top:1px solid var(--rule);padding:34px 0 54px;font-size:.9rem;color:#527069}
.site-foot a{color:var(--teal-deep)}
.foot-links{display:flex;flex-wrap:wrap;gap:18px;margin-bottom:16px}
.legal-name{line-height:1.7}

/* hero figure */
.hero-grid{display:grid;grid-template-columns:1fr auto;gap:28px;align-items:center}
.mascot{width:min(210px,34vw);height:auto;flex:none}
@media (max-width:620px){
  .hero-grid{grid-template-columns:1fr;gap:18px}
  .mascot{width:150px;justify-self:start}
}

/* pulse used as a section rule, per the identity guide */
.pulse-rule{width:180px;height:auto;display:block;margin-bottom:14px;opacity:.9}

/* legal pages carry the wordmark only — no character */
.brand-plain .brand-name{color:var(--teal-deep)}
