:root{
  --navy:#061712;
  --green:#0b3d2e;
  --green2:#14734f;
  --gold:#d6a84f;
  --gold2:#f4d891;
  --bg:#f3f6f4;
  --card:#ffffff;
  --text:#101828;
  --muted:#667085;
  --border:#e6ebe8;
  --danger:#b42318;
  --success:#027a48;
}

body{
  background:
    radial-gradient(circle at top left, rgba(20,115,79,.12), transparent 28%),
    radial-gradient(circle at top right, rgba(214,168,79,.14), transparent 24%),
    var(--bg)!important;
  color:var(--text);
}

.fe-shell{
  max-width:1380px;
  margin:auto;
  padding:28px;
}

.fe-topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(255,255,255,.78);
  backdrop-filter:blur(16px);
  border:1px solid rgba(230,235,232,.9);
  border-radius:24px;
  padding:16px 20px;
  margin-bottom:24px;
  box-shadow:0 12px 35px rgba(16,24,40,.06);
}

.fe-brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:950;
  color:var(--green);
  font-size:24px;
}

.fe-logo{
  width:42px;
  height:42px;
  border-radius:14px;
  background:linear-gradient(135deg,var(--green),var(--gold));
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  font-weight:950;
}

.fe-nav a{
  display:inline-flex;
  align-items:center;
  padding:10px 14px;
  border-radius:12px;
  margin-left:6px;
  color:var(--green);
  font-weight:850;
  text-decoration:none!important;
}

.fe-nav a:hover{
  background:#eaf6ef;
}

.fe-hero{
  position:relative;
  overflow:hidden;
  color:white;
  padding:76px 56px;
  border-radius:36px;
  background:
    linear-gradient(135deg,rgba(6,23,18,.98),rgba(11,61,46,.94)),
    radial-gradient(circle at 85% 15%,rgba(214,168,79,.55),transparent 30%);
  box-shadow:0 34px 80px rgba(6,23,18,.35);
}

.fe-hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(255,255,255,.07) 1px,transparent 1px),
    linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px);
  background-size:44px 44px;
  opacity:.35;
}

.fe-hero > *{
  position:relative;
  z-index:1;
}

.fe-pill{
  display:inline-flex;
  padding:9px 16px;
  border-radius:999px;
  background:rgba(214,168,79,.18);
  color:#ffe9b6;
  border:1px solid rgba(214,168,79,.42);
  font-size:12px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.7px;
}

.fe-hero h1{
  max-width:880px;
  font-size:68px;
  line-height:.98;
  font-weight:950;
  letter-spacing:-2.6px;
  margin:20px 0 16px;
}

.fe-hero p{
  max-width:820px;
  font-size:20px;
  line-height:1.75;
  color:rgba(255,255,255,.86);
}

.fe-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:28px;
}

.fe-btn,.fe-btn-light{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:14px 22px;
  border-radius:15px;
  font-weight:950;
  text-decoration:none!important;
}

.fe-btn{
  color:#1a1205!important;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  box-shadow:0 16px 34px rgba(214,168,79,.28);
}

.fe-btn-light{
  color:white!important;
  background:rgba(255,255,255,.13);
  border:1px solid rgba(255,255,255,.25);
}

.fe-section{
  margin-top:52px;
}

.fe-section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:20px;
  margin-bottom:22px;
}

.fe-section h2{
  font-size:36px;
  font-weight:950;
  letter-spacing:-1px;
  margin-bottom:4px;
}

.fe-muted{
  color:var(--muted);
  font-size:16px;
}

.fe-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.fe-grid-4{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.fe-card{
  position:relative;
  background:rgba(255,255,255,.86);
  backdrop-filter:blur(14px);
  border:1px solid rgba(230,235,232,.95);
  border-radius:28px;
  padding:30px;
  box-shadow:0 18px 48px rgba(16,24,40,.08);
  color:var(--text)!important;
  text-decoration:none!important;
  overflow:hidden;
}

.fe-card:after{
  content:"";
  position:absolute;
  right:-40px;
  top:-40px;
  width:110px;
  height:110px;
  border-radius:50%;
  background:rgba(214,168,79,.10);
}

.fe-card:hover{
  transform:translateY(-7px);
  transition:.22s ease;
  box-shadow:0 30px 70px rgba(16,24,40,.14);
}

.fe-icon{
  width:56px;
  height:56px;
  border-radius:18px;
  background:linear-gradient(135deg,#eaf6ef,#fff8ea);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  margin-bottom:18px;
  border:1px solid var(--border);
}

.fe-card h3,.fe-card h4{
  font-weight:950;
  letter-spacing:-.4px;
}

.fe-card h2{
  color:var(--green);
  font-size:42px;
  font-weight:950;
}

.fe-kpi{
  min-height:160px;
}

.fe-kpi small{
  color:var(--muted);
  font-weight:750;
}

.fe-band{
  margin-top:52px;
  padding:42px;
  border-radius:34px;
  background:linear-gradient(135deg,#fff8ea,#eef8f2);
  border:1px solid #f0dfb8;
  box-shadow:0 18px 45px rgba(214,168,79,.12);
}

.fe-price{
  font-size:42px;
  font-weight:950;
  color:var(--green);
}

.fe-list{
  padding-left:18px;
  color:var(--muted);
  line-height:1.9;
}

.fe-table-card{
  overflow:auto;
}

.fe-table-card table{
  margin-bottom:0;
}

.fe-table-card thead{
  background:#f8faf9;
}

.fe-status{
  display:inline-flex;
  padding:6px 11px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  background:#eaf6ef;
  color:var(--success);
}

.fe-dashboard-layout{
  display:grid;
  grid-template-columns:260px 1fr;
  gap:24px;
}

.fe-side{
  background:rgba(255,255,255,.86);
  border:1px solid var(--border);
  border-radius:28px;
  padding:22px;
  box-shadow:0 18px 45px rgba(16,24,40,.07);
  height:max-content;
  position:sticky;
  top:20px;
}

.fe-side a{
  display:block;
  padding:12px 14px;
  border-radius:14px;
  color:var(--green);
  font-weight:850;
  text-decoration:none!important;
  margin-bottom:6px;
}

.fe-side a:hover{
  background:#eaf6ef;
}

@media(max-width:1000px){
  .fe-shell{padding:16px;}
  .fe-topbar{display:block;}
  .fe-nav{margin-top:12px;}
  .fe-nav a{margin:4px 4px 0 0;}
  .fe-hero{padding:48px 26px;border-radius:26px;}
  .fe-hero h1{font-size:42px;letter-spacing:-1px;}
  .fe-grid,.fe-grid-4,.fe-dashboard-layout{grid-template-columns:1fr;}
  .fe-section-head{display:block;}
}
