:root{
  --brand: #00857c;
  --brand-2: #0aa79b;
  --bg: #f6fbfa;
  --text: #0f172a;
  --muted: #475569;
  --card: #ffffff;
  --ring: rgba(0,133,124,.25);
  --shadow: 0 18px 50px rgba(2, 44, 41, .10);
  --radius: 18px;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 10% 10%, rgba(0,133,124,.10), transparent 55%),
    radial-gradient(900px 500px at 90% 20%, rgba(10,167,155,.12), transparent 60%),
    var(--bg);
}

.page{
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 18px 48px;
}

.topbar{
  display: grid;
  gap: 16px;
  margin-bottom: 18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:16px;
}

.brand__logo{
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(2, 44, 41, .10);
  border: 1px solid rgba(15, 23, 42, .06);
  padding: 8px;
}

.brand__title{
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.02em;
}

.brand__subtitle{
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.topbar__line{
  height: 10px;
  position: relative;
}
.topbar__line span{
  display:block;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), rgba(0,133,124,.20));
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,133,124,.10);
}
.topbar__line span::before,
.topbar__line span::after{
  content:"";
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 4px solid #0b0f1a;
  background: #fff;
}
.topbar__line span::before{ left: -4px; }
.topbar__line span::after{ right: -4px; }

.content{
  display: grid;
  gap: 18px;
  margin-top: 10px;
}

/* =========================
   CARD (REVISI)
   - putihnya lebih "panjang"
   - padding bawah ditambah
   - dekorasi lebih halus
   ========================= */
.card{
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, .07);
  position: relative;
  overflow: hidden;

  /* bikin area putih lebih lega ke bawah */
  padding-bottom: 26px;      /* <-- ini yang kamu minta */
  min-height: 260px;         /* <-- biar card nggak pendek */
}

.card::before{
  content:"";
  position:absolute;
  left: 18px;
  right: 18px;
  top: 70px;                 /* dekorasi mulai agak turun */
  bottom: 18px;              /* ngikut sampai bawah */
  background: rgba(0,133,124,.08);
  border-radius: 26px;
  z-index: 0;
}

.card::after{
  content:"";
  position:absolute;
  right: -40px;
  top: 60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at 30% 30%, rgba(0,133,124,.18), transparent 60%);
  z-index: 0;
  filter: blur(1px);
}

.card__header{
  position: relative;
  z-index: 1;
  padding: 22px 22px 10px;
}

.card__title{
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.card__desc{
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.tool-list{
  list-style: none;
  padding: 12px 16px 10px;
  margin: 0;
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.tool-link{
  display: grid;
  grid-template-columns: 14px 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 4px 12px;
  padding: 14px 14px;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(15, 23, 42, .06);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
  backdrop-filter: blur(6px);
}

.tool-link:hover{
  transform: translateY(-1px);
  border-color: rgba(0,133,124,.30);
  box-shadow: 0 14px 30px rgba(0, 133, 124, .12);
  background: rgba(255,255,255,.88);
}

.tool-dot{
  grid-row: 1 / span 2;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 6px var(--ring);
  margin-left: 2px;
}

.tool-name{
  font-weight: 600;
  letter-spacing: -0.01em;
}

.tool-meta{
  grid-column: 2 / 3;
  color: var(--muted);
  font-size: 12.5px;
  word-break: break-word;
}

.tool-arrow{
  grid-column: 3 / 4;
  grid-row: 1 / span 2;
  font-size: 18px;
  color: var(--brand);
  padding-left: 10px;
}

.footer{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  padding: 6px 0 0;
}

.footer__link{
  color: var(--brand);
  text-decoration: none;
  border-bottom: 1px dashed rgba(0,133,124,.45);
}
.footer__link:hover{
  border-bottom-style: solid;
}

.footer__sep{ opacity: .65; }

/* =========================
   MOBILE (REVISI)
   - topbar jadi rapih
   - card padding lebih kecil
   - item tool jadi stacked
   ========================= */
@media (max-width: 720px){
  .page{ padding: 22px 14px 40px; }

  .brand{ gap: 12px; }
  .brand__logo{ width: 48px; height: 48px; padding: 7px; }
  .brand__subtitle{ font-size: 13px; }

  .topbar__line{ height: 8px; }
  .topbar__line span{ height: 5px; }
  .topbar__line span::before,
  .topbar__line span::after{
    width: 14px;
    height: 14px;
    border-width: 3px;
  }

  .card{
    min-height: 240px;
    padding-bottom: 22px;
  }

  .card__header{ padding: 18px 16px 8px; }
  .tool-list{ padding: 10px 12px 10px; }
}

/* extra small */
@media (max-width: 520px){
  .brand{
    align-items: flex-start;
  }
  .brand__text{
    padding-top: 2px;
  }

  /* item tool: bikin 1 kolom biar enak dibaca */
  .tool-link{
    grid-template-columns: 14px 1fr;
    grid-template-rows: auto auto;
    padding: 12px 12px;
    gap: 4px 10px;
  }
  .tool-arrow{
  grid-column: 3 / 4;
  grid-row: 1 / span 2;
  align-self: center;   
  justify-self: end;
  font-size: 18px;
  color: var(--brand);
  padding-left: 10px;
}
  .tool-meta{
    grid-column: 2 / 3;
    font-size: 12px;
  }

  /* dekorasi card biar nggak kebesaran di hp */
  .card::after{
    width: 160px;
    height: 160px;
    right: -50px;
    top: 80px;
  }
  .card::before{
    left: 12px;
    right: 12px;
    top: 76px;
    bottom: 12px;
  }

  .footer{
    flex-wrap: wrap;
    row-gap: 6px;
  }
}
