
:root{
  --bg:#f5f7f6;
  --ink:#111827;
  --muted:#667085;
  --line:#e4e7ec;
  --card:#ffffff;
  --green:#0f7a3f;
  --green-soft:#edf8f1;
  --blue:#2563eb;
  --blue-soft:#eff4ff;
  --purple:#7c3aed;
  --purple-soft:#f5f3ff;
  --shadow:0 20px 60px rgba(16,24,40,.10);
}
*{box-sizing:border-box}
html,body{margin:0;min-height:100%;font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;background:var(--bg);color:var(--ink);-webkit-font-smoothing:antialiased}
a{text-decoration:none;color:inherit}
.page{min-height:100vh;padding:46px 36px;display:flex;align-items:center;justify-content:center}
.wrap{max-width:1180px;width:100%}
.header{display:flex;align-items:flex-start;justify-content:space-between;gap:24px;margin-bottom:30px}
.brand{display:flex;align-items:center;gap:14px}
.logo{width:48px;height:48px;border:1.5px solid var(--ink);border-radius:12px;display:flex;align-items:center;justify-content:center;font-weight:950;font-size:20px;background:#fff}
h1{font-size:42px;line-height:1.02;letter-spacing:-.055em;margin:0}
.lead{font-size:15px;line-height:1.6;color:var(--muted);margin:12px 0 0;max-width:720px}
.badge{display:inline-flex;align-items:center;border:1px solid var(--line);background:#fff;border-radius:999px;padding:8px 12px;font-size:12px;font-weight:850;color:#344054;white-space:nowrap}
.tiles{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.tile{background:var(--card);border:1px solid var(--line);border-radius:18px;padding:22px;min-height:330px;box-shadow:var(--shadow);display:flex;flex-direction:column;justify-content:space-between;transition:.18s ease;position:relative;overflow:hidden}
.tile:hover{transform:translateY(-4px);box-shadow:0 28px 74px rgba(16,24,40,.16);border-color:#d0d5dd}
.tile:before{content:"";position:absolute;inset:auto -40px -60px auto;width:180px;height:180px;border-radius:50%;opacity:.9}
.tile.mobile:before{background:var(--green-soft)}
.tile.client:before{background:var(--blue-soft)}
.tile.super:before{background:var(--purple-soft)}
.icon{width:46px;height:46px;border-radius:13px;display:flex;align-items:center;justify-content:center;font-size:22px;font-weight:900;margin-bottom:18px}
.mobile .icon{background:var(--green-soft);color:var(--green)}
.client .icon{background:var(--blue-soft);color:var(--blue)}
.super .icon{background:var(--purple-soft);color:var(--purple)}
.tile h2{font-size:24px;line-height:1.12;letter-spacing:-.035em;margin:0 0 10px}
.tile p{font-size:14px;line-height:1.55;color:var(--muted);margin:0}
.meta{display:flex;gap:8px;flex-wrap:wrap;margin-top:18px}
.pill{font-size:11px;font-weight:850;padding:6px 9px;border-radius:999px;background:#f9fafb;border:1px solid var(--line);color:#344054}
.cta{margin-top:24px;display:flex;align-items:center;justify-content:space-between;gap:12px}
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;min-height:42px;padding:10px 14px;border-radius:11px;background:#111827;color:#fff;font-size:13px;font-weight:900}
.arrow{font-size:18px}
.footer{margin-top:24px;display:flex;align-items:center;justify-content:space-between;gap:16px;color:#667085;font-size:12px}
.footer code{background:#fff;border:1px solid var(--line);border-radius:8px;padding:5px 7px;color:#344054}
@media(max-width:980px){
  .header{flex-direction:column}
  .tiles{grid-template-columns:1fr}
  h1{font-size:34px}
  .page{padding:28px 18px}
}
