:root{
  --deep:#08293D;
  --green:#00A854;
  --green-lt:#7FD7AC;
  --blue:#2E86DE;
  --teal:#37B6AE;
  --paper:#EEF6F4;
  --muted:#9DB6C4;
  --line:rgba(255,255,255,.09);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  overflow-x:hidden;
  font-family:"Segoe UI",system-ui,-apple-system,BlinkMacSystemFont,Arial,sans-serif;
  line-height:1.55;
  color:var(--paper);
  background:
    radial-gradient(1200px 600px at 78% -8%,rgba(46,134,222,.30),transparent 60%),
    radial-gradient(900px 600px at 8% 108%,rgba(0,168,84,.24),transparent 58%),
    var(--deep);
  background-attachment:fixed;
  -webkit-font-smoothing:antialiased;
}

a{
  color:inherit;
}

.wrap{
  width:100%;
  max-width:1120px;
  margin:0 auto;
  padding:0 30px;
}

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.site-header{
  padding:30px 0 0;
}

.brand{
  width:max-content;
  display:flex;
  align-items:center;
  gap:13px;
  text-decoration:none;
  border-radius:10px;
}

.brand:focus-visible,
.foot a:focus-visible{
  outline:3px solid var(--green-lt);
  outline-offset:4px;
}

.brand svg{
  width:46px;
  height:46px;
  flex:0 0 auto;
}

.brand-text{
  font-size:1.3rem;
  font-weight:700;
  letter-spacing:.2px;
}

.brand-text small{
  color:var(--green-lt);
  font-weight:700;
}

.hero{
  padding:clamp(56px,11vw,120px) 0 46px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:9px;
  margin-bottom:26px;
  color:var(--green-lt);
  font-size:.8rem;
  font-weight:600;
  letter-spacing:2.5px;
  text-transform:uppercase;
}

.eyebrow::before{
  content:"";
  width:26px;
  height:1px;
  background:var(--green-lt);
  opacity:.7;
}

h1{
  max-width:16ch;
  font-size:clamp(2.4rem,6.4vw,4.6rem);
  font-weight:800;
  line-height:1.02;
  letter-spacing:-1.4px;
}

h1 .grad{
  background:linear-gradient(100deg,var(--green) 0%,var(--teal) 52%,var(--blue) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
}

.lede{
  max-width:58ch;
  margin-top:28px;
  color:var(--muted);
  font-size:clamp(1.05rem,2.1vw,1.28rem);
  font-weight:400;
}

.bento{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-auto-rows:minmax(150px,auto);
  gap:16px;
  margin-top:56px;
}

.tile{
  position:relative;
  overflow:hidden;
  padding:26px;
  border:1px solid var(--line);
  border-radius:20px;
  background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.015));
}

.tile h3{
  margin:10px 0 8px;
  font-size:1.4rem;
  font-weight:700;
  letter-spacing:-.4px;
}

.tile p{
  color:var(--muted);
  font-size:.96rem;
  line-height:1.5;
}

.tile .glow{
  position:absolute;
  right:-30px;
  bottom:-40px;
  z-index:0;
  width:150px;
  height:150px;
  border-radius:50%;
  filter:blur(46px);
  opacity:.5;
}

.tile > *{
  position:relative;
  z-index:1;
}

.t-lead{
  grid-column:span 2;
  grid-row:span 2;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.t-lead h2{
  font-size:clamp(1.5rem,3vw,2rem);
  font-weight:800;
  line-height:1.12;
  letter-spacing:-.6px;
}

.t-lead .molecule{
  width:92px;
  height:92px;
  margin-bottom:18px;
  margin-left:-9px;
}

.lead-copy{
  margin-top:14px;
}

.t-a{
  grid-column:span 2;
}

.t-b,
.t-c{
  grid-column:span 1;
}

.t-wide{
  grid-column:span 2;
}

.g-green{
  background:var(--green);
}

.g-blue{
  background:var(--blue);
}

.g-teal{
  background:var(--teal);
}

.num{
  color:var(--green-lt);
  font-size:.8rem;
  font-weight:700;
  letter-spacing:1px;
}

.wide-title{
  margin-top:8px !important;
}

.cta{
  grid-column:span 2;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:14px;
  margin-top:22px;
  padding:30px;
  border:1px solid var(--line);
  border-radius:20px;
  background:linear-gradient(120deg,rgba(0,168,84,.14),rgba(46,134,222,.14));
}

.cta h3{
  font-size:1.3rem;
  font-weight:700;
  letter-spacing:-.3px;
}

.cta p{
  color:var(--muted);
}

.cta a{
  align-self:flex-start;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:13px 24px;
  border-radius:12px;
  background:var(--paper);
  color:var(--deep);
  font-size:1rem;
  font-weight:700;
  text-decoration:none;
  transition:transform .16s ease,box-shadow .16s ease;
}

.cta a:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 30px rgba(0,0,0,.32);
}

.cta a:focus-visible{
  outline:3px solid var(--green-lt);
  outline-offset:3px;
}

footer{
  margin-top:64px;
  border-top:1px solid var(--line);
}

.foot{
  max-width:1120px;
  margin:0 auto;
  padding:24px 30px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  color:var(--muted);
  font-size:.85rem;
}

.foot a{
  color:var(--green-lt);
  text-decoration:none;
  border-radius:4px;
}

.foot a:hover{
  text-decoration:underline;
}

@media(max-width:860px){
  body{
    background-attachment:scroll;
  }

  .bento{
    grid-template-columns:repeat(2,1fr);
  }

  .t-lead{
    grid-column:span 2;
    grid-row:auto;
  }

  .t-a,
  .t-wide,
  .cta{
    grid-column:span 2;
  }

  .t-b,
  .t-c{
    grid-column:span 1;
  }
}

@media(max-width:540px){
  .wrap{
    padding:0 20px;
  }

  .bento{
    grid-template-columns:1fr;
  }

  .t-lead,
  .t-a,
  .t-b,
  .t-c,
  .t-wide,
  .cta{
    grid-column:span 1;
  }

  h1{
    letter-spacing:-.8px;
  }

  .foot{
    padding:22px 20px;
  }
}

@media(prefers-reduced-motion:no-preference){
  .reveal{
    opacity:0;
    transform:translateY(18px);
    animation:rise .7s cubic-bezier(.2,.7,.3,1) forwards;
  }

  .hero .eyebrow{
    animation-delay:.04s;
  }

  h1{
    animation-delay:.12s;
  }

  .lede{
    animation-delay:.24s;
  }

  .bento .tile,
  .bento .cta{
    opacity:0;
    transform:translateY(18px);
    animation:rise .6s cubic-bezier(.2,.7,.3,1) forwards;
  }

  .bento > *:nth-child(2){
    animation-delay:.34s;
  }

  .bento > *:nth-child(3){
    animation-delay:.42s;
  }

  .bento > *:nth-child(4){
    animation-delay:.50s;
  }

  .bento > *:nth-child(5){
    animation-delay:.58s;
  }

  .bento > *:nth-child(6){
    animation-delay:.66s;
  }

  .bento > *:nth-child(7){
    animation-delay:.74s;
  }
}

@keyframes rise{
  to{
    opacity:1;
    transform:none;
  }
}
