:root{
  --navy:#0f2d5b;
  --navy-d:#0a2044;
  --green:#2fb76b;
  --green-d:#1f9d57;
  --bg:#f4f6fb;
  --ink:#1f2937;
  --muted:#6b7488;
  --line:#e6e9f0;
  --white:#ffffff;
  --shadow:0 10px 30px rgba(19,62,155,.08);
  --shadow-h:0 18px 44px rgba(19,62,155,.16);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{margin:0}
body{
  font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--ink);
  background:var(--bg);
  min-height:100vh;
  display:flex;
  flex-direction:column;
  -webkit-font-smoothing:antialiased;
}

/* Decorative background */
.bg-decor{
  position:fixed;
  inset:0;
  z-index:0;
  pointer-events:none;
  background:
    radial-gradient(680px 380px at 88% -6%, rgba(0,168,89,.10), transparent 60%),
    radial-gradient(720px 460px at -8% 4%, rgba(19,62,155,.10), transparent 60%);
}

/* Topbar */
.topbar{
  position:relative;
  z-index:1;
  display:flex;
  align-items:center;
  padding:20px clamp(18px,5vw,56px);
}
.brand{display:flex;align-items:center;gap:12px}
.logo-icon{
  width:46px;height:46px;
  display:grid;place-items:center;
  background:var(--white);
  border-radius:13px;
  box-shadow:var(--shadow);
}
.logo-svg{width:32px;height:32px}
.logo-svg .p-stem{stroke:var(--green);stroke-width:11;stroke-linecap:round;stroke-linejoin:round}
.logo-svg .p-bowl{stroke:var(--navy);stroke-width:11;stroke-linecap:round;stroke-linejoin:round}
.brand-name{font-weight:800;font-size:20px;letter-spacing:-.02em;line-height:1}
.brand-tag{font-size:12.5px;color:var(--muted);font-weight:500;margin-top:3px}

/* Wrap / hero */
.wrap{
  position:relative;
  z-index:1;
  width:100%;
  max-width:1080px;
  margin:0 auto;
  padding:14px clamp(18px,5vw,40px) 40px;
  flex:1;
}
.hero{margin:22px 0 30px;max-width:640px}
.hero h1{
  font-size:clamp(28px,5vw,40px);
  line-height:1.1;
  letter-spacing:-.03em;
  margin:0 0 12px;
  font-weight:800;
}
.hero h1 span{color:var(--navy)}
.hero p{margin:0;color:var(--muted);font-size:16px;line-height:1.55}

/* Grid */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(250px,1fr));
  gap:20px;
}

/* Card */
.card{
  position:relative;
  display:flex;
  flex-direction:column;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:22px;
  box-shadow:var(--shadow);
  text-decoration:none;
  color:inherit;
  overflow:hidden;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card::before{
  content:"";
  position:absolute;
  left:0;top:0;bottom:0;
  width:4px;
  background:var(--navy);
  opacity:.9;
}
.accent-green::before{background:var(--green)}
.accent-navy::before{background:var(--navy)}

.card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:16px;
}
.card-icon{
  width:48px;height:48px;
  display:grid;place-items:center;
  border-radius:13px;
  background:rgba(19,62,155,.08);
  color:var(--navy);
}
.accent-green .card-icon{background:rgba(0,168,89,.10);color:var(--green-d)}
.card-icon svg{width:26px;height:26px}

.card h2{font-size:18px;margin:0 0 6px;letter-spacing:-.01em;font-weight:700}
.card p{margin:0 0 18px;color:var(--muted);font-size:14px;line-height:1.5;flex:1}

.badge{
  font-size:11.5px;
  font-weight:700;
  padding:5px 11px;
  border-radius:999px;
  letter-spacing:.01em;
}
.badge-on{color:var(--green-d);background:rgba(0,168,89,.12)}
.badge-soon{color:var(--muted);background:#eef0f5}

.card-cta{
  display:inline-flex;
  align-items:center;
  gap:7px;
  font-weight:700;
  font-size:14px;
  color:var(--navy);
}
.card-cta svg{width:18px;height:18px;transition:transform .18s ease}
.card-cta.muted{color:var(--muted);font-weight:600}

/* Active hover */
.card.is-active{cursor:pointer}
.card.is-active:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-h);
  border-color:rgba(19,62,155,.25);
}
.card.is-active:hover .card-cta svg{transform:translateX(4px)}

/* Soon */
.card.is-soon{cursor:not-allowed}
.card.is-soon .card-icon{filter:grayscale(.25);opacity:.75}
.card.is-soon h2,.card.is-soon p{opacity:.85}
.card.is-soon::before{opacity:.35}

/* Footer */
.foot{
  position:relative;
  z-index:1;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  justify-content:center;
  align-items:center;
  padding:22px 20px 30px;
  color:var(--muted);
  font-size:13px;
}
.foot-dot{opacity:.5}

@media (max-width:520px){
  .grid{grid-template-columns:1fr}
  .foot-dot{display:none}
}
