:root{
  --bg:#f7f8fb;
  --panel:#ffffff;
  --text:#101828;
  --muted:#667085;
  --border:#eaecf0;
  --shadow:0 14px 36px rgba(16,24,40,.10);
  --shadow-sm:0 6px 18px rgba(16,24,40,.10);
  --brand:#ff7a00;
  --brand-2:#ff4d00;
  --radius:14px;
}

*{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:linear-gradient(180deg,#fafbff 0%, var(--bg) 100%);
}

a{color:inherit;text-decoration:none}

.app{
  min-height:100vh;
  display:grid;
  grid-template-columns: 300px 1fr;
}

.sidebar{
  position:sticky;
  top:0;
  align-self:start;
  height:100vh;
  background:linear-gradient(180deg,#ffffff 0%, #fbfbff 100%);
  border-right:1px solid var(--border);
  padding:18px 14px;
  overflow:auto;
}

.sidebar__brand{
  display:flex;
  gap:12px;
  align-items:center;
  padding:10px 10px 16px;
}
.brand__logo{
  width:44px;height:44px;border-radius:12px;
  display:grid;place-items:center;
  color:#fff;
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  box-shadow:var(--shadow-sm);
  font-weight:800;
}
.brand__name{font-weight:800;letter-spacing:-.02em}
.brand__sub{color:var(--muted);font-size:12px;margin-top:2px}

.sidebar__section{padding:8px 10px 14px}
.sidebar__sectionTitle{
  color:var(--muted);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:700;
  margin:8px 0 10px;
}

.nav{display:flex;flex-direction:column;gap:4px}
.nav__item{
  display:flex;align-items:center;gap:10px;
  padding:10px 10px;
  border-radius:12px;
  color:#1d2939;
  transition:background .15s ease, transform .05s ease;
}
.nav__item:hover{background:#f2f4f7}
.nav__item:active{transform:translateY(1px)}
.nav__item.is-active{
  background:#fff4ea;
  border:1px solid #ffe2c7;
}
.nav__icon{width:22px;text-align:center}
.nav__label{font-size:14px;font-weight:600;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}

.main{padding:24px}
.main__inner{max-width:1100px;margin:0 auto}

.pageHeader{margin:8px 0 18px}
.pageHeader__kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  letter-spacing:-.02em;
  color:#111827;
  margin-bottom:8px;
}
.homeIcon{
  width:32px;height:32px;border-radius:10px;
  display:grid;place-items:center;
  background:#fff;
  border:1px solid var(--border);
  box-shadow:0 1px 0 rgba(16,24,40,.05);
}

h1{font-size:34px;letter-spacing:-.03em;margin:8px 0 8px}
h2{font-size:22px;letter-spacing:-.02em;margin:0}
h3{font-size:18px;letter-spacing:-.01em;margin:0 0 6px}
p{line-height:1.55}
.muted{color:var(--muted)}
.tiny{font-size:12px}

.card{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:0 2px 0 rgba(16,24,40,.03);
  padding:18px;
}
.card--hero{
  padding:22px;
  box-shadow:var(--shadow);
  border-color:#f1f2f6;
}
.card--cta{
  margin-top:18px;
  background:linear-gradient(135deg,#fff 0%, #fff8f2 100%);
  border-color:#ffe2c7;
}

.section{margin-top:18px}
.section__titleRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin:14px 0 12px;
}
.badge{
  font-size:12px;
  font-weight:700;
  color:#7a2e00;
  background:#fff4ea;
  border:1px solid #ffe2c7;
  padding:6px 10px;
  border-radius:999px;
}

.grid{display:grid;gap:14px}
.grid--2{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid--3{grid-template-columns:repeat(3,minmax(0,1fr))}

.listBlock{margin-top:12px}
.listBlock__title{font-weight:800;font-size:13px;margin-bottom:6px}
.list{margin:0;padding-left:18px;color:#1f2937}
.list li{margin:6px 0}
.list--checks{list-style:none;padding-left:0}
.list--checks li{
  padding-left:28px;
  position:relative;
}
.list--checks li::before{
  content:"✓";
  position:absolute;
  left:0;top:0;
  width:20px;height:20px;border-radius:6px;
  display:grid;place-items:center;
  background:#ecfdf3;
  border:1px solid #a6f4c5;
  color:#027a48;
  font-weight:900;
}

.heroActions{display:flex;flex-wrap:wrap;gap:10px;margin-top:14px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:12px;
  padding:10px 14px;
  font-weight:800;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .05s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}
.btn:active{transform:translateY(1px)}
.btn--primary{
  color:#fff;
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  box-shadow:0 12px 26px rgba(255,122,0,.25);
}
.btn--primary:hover{box-shadow:0 14px 30px rgba(255,122,0,.32)}
.btn--ghost{
  background:#fff;
  border-color:var(--border);
}
.btn--ghost:hover{background:#f9fafb}
.btn--full{width:100%}

.card--plan{
  padding:18px;
  box-shadow:var(--shadow-sm);
}
.planHead{
  display:flex;align-items:flex-start;justify-content:space-between;gap:10px;
  margin-bottom:12px;
}
.planTitle{font-size:18px;margin:0 0 6px}
.planPrice{font-weight:900;font-size:16px}
.pill{
  font-size:12px;
  font-weight:900;
  padding:6px 10px;
  border-radius:999px;
  background:#f2f4f7;
  border:1px solid var(--border);
  color:#344054;
  white-space:nowrap;
}

@media (max-width: 980px){
  .app{grid-template-columns: 1fr}
  .sidebar{position:relative;height:auto}
  .grid--2,.grid--3{grid-template-columns:1fr}
  .main{padding:16px}
}

