:root{
  --whl-bg:#f8f5ef;
  --whl-nav:#081225;
  --whl-orange:#ff7a00;
  --whl-orange-dark:#e96f00;
  --whl-text:#101828;
  --whl-muted:#475467;
  --whl-card:#ffffff;
  --whl-soft:#fff7ed;
  --whl-border:#ece7dc;
  --whl-shadow:0 18px 45px rgba(16,24,40,.08);
}

*{box-sizing:border-box}

body{
  margin:0;
  background:var(--whl-bg);
  color:var(--whl-text);
  font-family:Arial,sans-serif;
}

.whl-header{
  background:var(--whl-nav);
  color:#fff;
  position:sticky;
  top:0;
  z-index:9999;
  box-shadow:0 10px 28px rgba(8,18,37,.18);
}

.whl-nav{
  max-width:1150px;
  margin:auto;
  padding:17px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}

.whl-brand{
  color:#fff;
  text-decoration:none;
  font-size:28px;
  font-weight:900;
  white-space:nowrap;
}

.whl-brand span{
  color:var(--whl-orange);
}

.whl-menu{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:16px;
  flex-wrap:wrap;
}

.whl-menu a{
  color:#fff;
  text-decoration:none;
  font-size:14px;
  font-weight:800;
}

.whl-menu a:hover{
  color:var(--whl-orange);
}

.whl-page{
  max-width:1150px;
  margin:auto;
  padding:56px 20px 28px;
}

.whl-hero{
  display:grid;
  grid-template-columns:1.25fr .95fr;
  gap:28px;
  margin-bottom:28px;
}

.whl-hero-left,
.whl-hero-right,
.whl-card{
  background:var(--whl-card);
  border:1px solid var(--whl-border);
  border-radius:28px;
  box-shadow:var(--whl-shadow);
}

.whl-hero-left,
.whl-hero-right{
  padding:28px;
}

.whl-pill{
  display:inline-flex;
  background:var(--whl-soft);
  color:var(--whl-text);
  padding:10px 16px;
  border-radius:999px;
  font-weight:900;
  margin-bottom:18px;
}

.whl-title{
  font-size:48px;
  line-height:1.05;
  color:var(--whl-text);
  margin:0 0 18px;
}

.whl-title .orange,
.whl-orange{
  color:var(--whl-orange);
}

.whl-text{
  color:var(--whl-muted);
  font-size:18px;
  line-height:1.65;
  margin:0 0 22px;
}

.whl-btn,
button.whl-btn,
a.whl-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--whl-orange);
  color:#fff;
  border:0;
  border-radius:14px;
  padding:15px 24px;
  font-weight:900;
  text-decoration:none;
  cursor:pointer;
}

.whl-btn:hover{
  background:var(--whl-orange-dark);
  color:#fff;
}

.whl-stage-road{
  display:flex;
  justify-content:space-between;
  align-items:center;
  border:1px solid var(--whl-border);
  background:var(--whl-soft);
  border-radius:18px;
  padding:18px;
  color:var(--whl-orange);
  font-weight:900;
}

.whl-panel{
  background:var(--whl-card);
  border:1px solid var(--whl-border);
  border-radius:28px;
  padding:28px;
  box-shadow:var(--whl-shadow);
}

.whl-stat-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:12px;
  margin-bottom:18px;
}

.whl-stat{
  background:var(--whl-soft);
  border:1px solid var(--whl-border);
  border-radius:18px;
  padding:14px;
  text-align:center;
  font-weight:900;
}

.whl-stat small{
  display:block;
  color:var(--whl-muted);
  margin-bottom:6px;
}

.whl-stat strong,
.whl-stat span{
  color:var(--whl-orange);
  font-size:26px;
}

.whl-footer{
  padding:30px 20px;
  text-align:center;
  color:var(--whl-muted);
}

@media(max-width:900px){
  .whl-nav{
    align-items:flex-start;
    flex-direction:column;
  }
  .whl-menu{
    justify-content:flex-start;
    gap:12px;
  }
  .whl-page{
    padding-top:30px;
  }
  .whl-hero{
    grid-template-columns:1fr;
  }
  .whl-title{
    font-size:36px;
  }
  .whl-stat-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

/* Global Mobile Hamburger Menu */
.whl-menu-toggle{
  display:none;
  width:44px;
  height:44px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:14px;
  background:rgba(255,255,255,.08);
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
}

.whl-menu-toggle span{
  width:22px;
  height:2px;
  background:#fff;
  border-radius:99px;
  display:block;
  transition:.2s ease;
}

.whl-menu-backdrop{
  display:none;
}

@media(max-width:900px){
  .whl-nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
  }

  .whl-menu-toggle{
    display:flex;
  }

  .whl-menu{
    position:fixed;
    top:0;
    right:-310px;
    width:290px;
    height:100vh;
    background:#081225;
    z-index:99999;
    padding:86px 18px 24px;
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
    box-shadow:-20px 0 50px rgba(0,0,0,.35);
    transition:.25s ease;
    overflow:auto;
  }

  .whl-menu a{
    width:100%;
    display:block;
    padding:13px 14px;
    border-radius:14px;
    background:rgba(255,255,255,.06);
  }

  body.whl-menu-open .whl-menu{
    right:0;
  }

  body.whl-menu-open .whl-menu-backdrop{
    display:block;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    z-index:99998;
  }

  body.whl-menu-open .whl-menu-toggle span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
  }

  body.whl-menu-open .whl-menu-toggle span:nth-child(2){
    opacity:0;
  }

  body.whl-menu-open .whl-menu-toggle span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
  }
}

/* Force Hamburger Visibility Fix */
@media(max-width:900px){
  .whl-header{
    position:relative;
    z-index:100000;
  }

  .whl-nav{
    display:flex !important;
    flex-direction:row !important;
    justify-content:space-between !important;
    align-items:center !important;
    gap:12px !important;
  }

  .whl-brand{
    display:block !important;
    flex:1 !important;
    min-width:0 !important;
  }

  .whl-menu-toggle{
    display:flex !important;
    flex:0 0 46px !important;
    width:46px !important;
    height:46px !important;
    opacity:1 !important;
    visibility:visible !important;
    position:relative !important;
    z-index:100001 !important;
  }

  .whl-menu-toggle span{
    display:block !important;
    background:#fff !important;
  }
}

/* Visible Orange Hamburger Final Fix */
@media(max-width:900px){
  .whl-menu-toggle{
    background:#ff7a00 !important;
    border:2px solid #fff !important;
    box-shadow:0 8px 24px rgba(0,0,0,.35) !important;
  }

  .whl-menu-toggle span{
    background:#fff !important;
    height:3px !important;
    width:24px !important;
  }
}
