
:root{
  --bg:#f4f8f5;
  --ink:#15211b;
  --muted:#68756d;
  --green:#168451;
  --deep:#075c38;
  --line:#dfe9e3;
}
*{box-sizing:border-box}
html,body{margin:0;min-height:100%;font-family:Inter,Segoe UI,Arial,sans-serif}
body{
  color:var(--ink);
  background:
    radial-gradient(circle at 8% 8%,rgba(36,171,99,.12),transparent 27rem),
    radial-gradient(circle at 92% 12%,rgba(63,145,220,.10),transparent 25rem),
    linear-gradient(145deg,#ffffff,#f2f7f4);
}
a{text-decoration:none;color:inherit}
.screen{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  padding:18px 24px;
}
.topbar{
  width:min(1180px,100%);
  margin:0 auto;
  height:64px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.brand{display:flex;align-items:center;gap:12px;font-weight:900;letter-spacing:.3px}
.brand-logo{
  width:46px;
  height:46px;
  object-fit:contain;
  filter:drop-shadow(0 8px 16px rgba(22,132,81,.18));
}
.brand-name{
  font-size:24px;
  font-weight:900;
  color:#111;
  letter-spacing:.8px;
}
.tag{font-size:13px;color:var(--muted);font-weight:700}
.content{
  width:min(1180px,100%);
  margin:auto;
  display:flex;
  flex-direction:column;
  justify-content:center;
  flex:1;
  padding:8px 0 18px;
}
.title{
  text-align:center;
  margin:0 auto 20px;
}
.title h1{
  margin:0 0 7px;
  font-size:clamp(29px,3.5vw,44px);
  letter-spacing:-1.3px;
}
.title p{
  margin:0;
  color:var(--muted);
  font-size:15px;
}
.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:15px;
}
.card{
  min-height:128px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.92);
  border-radius:20px;
  padding:16px;
  display:flex;
  align-items:center;
  gap:15px;
  box-shadow:0 10px 28px rgba(28,72,50,.07);
  transition:.2s ease;
  position:relative;
  overflow:hidden;
}
.card:before{
  content:"";
  position:absolute;
  width:110px;height:110px;border-radius:50%;
  right:-45px;bottom:-55px;
  background:var(--glow);
}
.card:hover{
  transform:translateY(-4px);
  border-color:rgba(22,132,81,.35);
  box-shadow:0 17px 38px rgba(28,72,50,.13);
}
.icon{
  flex:0 0 64px;
  width:64px;height:64px;
  border-radius:19px;
  display:grid;
  place-items:center;
  background:var(--grad);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.55),0 9px 22px rgba(0,0,0,.09);
}
.icon svg{width:34px;height:34px;stroke:#fff;stroke-width:2;fill:none;stroke-linecap:round;stroke-linejoin:round}
.card h3{margin:0 0 5px;font-size:17px;line-height:1.25}
.card small{color:var(--muted);font-weight:650;font-size:12px}
.arrow{
  margin-left:auto;
  width:31px;height:31px;border-radius:10px;
  display:grid;place-items:center;
  color:var(--green);
  background:#edf7f1;
  font-weight:900;
  position:relative;z-index:2;
}
.c1{--grad:linear-gradient(135deg,#ffb44a,#ff7a33);--glow:rgba(255,139,51,.16)}
.c2{--grad:linear-gradient(135deg,#4db5ff,#2876d7);--glow:rgba(40,118,215,.14)}
.c3{--grad:linear-gradient(135deg,#9e7bff,#6848d6);--glow:rgba(104,72,214,.14)}
.c4{--grad:linear-gradient(135deg,#ff8297,#e94b6d);--glow:rgba(233,75,109,.14)}
.c5{--grad:linear-gradient(135deg,#52d68a,#15995d);--glow:rgba(21,153,93,.14)}
.c6{--grad:linear-gradient(135deg,#f4ce4f,#d99e11);--glow:rgba(217,158,17,.14)}
.c7{--grad:linear-gradient(135deg,#51d7cd,#168f88);--glow:rgba(22,143,136,.14)}
.c8{--grad:linear-gradient(135deg,#738cff,#485bd0);--glow:rgba(72,91,208,.14)}
.c9{--grad:linear-gradient(135deg,#bd72ec,#8a35c4);--glow:rgba(138,53,196,.14)}
.bottom{
  width:min(1180px,100%);
  margin:0 auto;
  display:flex;
  justify-content:center;
  padding-top:13px;
  color:#77837c;
  font-size:12px;
}
@media(max-width:900px){
  .screen{padding:14px}
  .grid{grid-template-columns:repeat(2,1fr)}
  .card{min-height:114px}
}
@media(max-width:580px){
  .topbar{height:auto;padding:4px 0 12px}
  .tag{display:none}
  .content{justify-content:flex-start}
  .title{margin:8px auto 14px}
  .title h1{font-size:28px}
  .grid{grid-template-columns:1fr;gap:10px}
  .card{min-height:91px;padding:12px;border-radius:16px}
  .icon{width:54px;height:54px;flex-basis:54px;border-radius:16px}
  .icon svg{width:29px;height:29px}
}

@media(max-width:580px){
  .brand-logo{width:40px;height:40px}
  .brand-name{font-size:20px}
}
