/* styles.css */
:root{
  --bg: #F6F3EE;
  --card: rgba(255,255,255,.74);
  --text: #1F2420;
  --muted: rgba(31,36,32,.68);
  --green: #2F5A49;
  --border: rgba(31,36,32,.10);
  --shadow: 0 18px 50px rgba(0,0,0,.10);
  --radius: 22px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 20% 15%, rgba(47,90,73,.12), transparent 60%),
    radial-gradient(900px 600px at 80% 30%, rgba(47,90,73,.08), transparent 55%),
    linear-gradient(180deg, var(--bg), #F3EFE8);
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 28px 18px;
}

.wrap{ width:min(780px, 100%); }

.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 42px 36px;
}

.top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom: 18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width: 0;
}

.mark{
  width:44px; height:44px;
  border-radius: 14px;
  border: 1px solid var(--border);
  display:grid;
  place-items:center;
  background: rgba(47,90,73,.06);
  flex: 0 0 auto;
  color: var(--green);
}

.mark svg{ width:26px; height:26px; }

.title{
  display:flex;
  flex-direction:column;
  gap:2px;
  min-width: 0;
}

h1{
  margin:0;
  font-size: clamp(32px, 4.6vw, 44px);
  line-height: 1.05;
  letter-spacing: .2px;
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}

.tagline{
  margin:0;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: .2px;
}

.status{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.55);
  color: rgba(31,36,32,.78);
  font-size: 14px;
  flex: 0 0 auto;
}

.dot{
  width:10px; height:10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(47,90,73,.10);
}

.headline{
  margin: 18px 0 10px;
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1.05;
  letter-spacing: .2px;
  max-width: 22ch;
}

.blurb{
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  max-width: 60ch;
}

ul{
  list-style:none;
  padding:0;
  margin: 0 0 26px;
  display:grid;
  gap:12px;
  max-width: 62ch;
}

li{
  display:flex;
  gap:12px;
  align-items:flex-start;
  color: rgba(31,36,32,.78);
  line-height: 1.45;
  font-size: 16px;
}

.check{
  width:22px; height:22px;
  border-radius: 999px;
  background: rgba(47,90,73,.10);
  border: 1px solid rgba(47,90,73,.18);
  display:grid;
  place-items:center;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--green);
}

.check svg{ width:14px; height:14px; }

.actions{
  display:flex;
  gap:12px;
  flex-wrap: wrap;
  align-items:center;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(47,90,73,.22);
  background: var(--green);
  color: #fff;
  text-decoration:none;
  font-weight: 600;
  letter-spacing: .2px;
  min-width: 170px;
}

.btn:hover{ filter: brightness(1.03); }
.btn:active{ transform: translateY(1px); }

.sub{
  color: rgba(31,36,32,.55);
  font-size: 13p
