:root{
  --bg:#fff7ed;
  --bg2:#ffedd5;
  --dark:#1f1308;
  --text:#2d1b0f;
  --muted:#7c5a3a;
  --orange:#f97316;
  --orange2:#ea580c;
  --amber:#f59e0b;
  --card:#ffffff;
  --line:#fed7aa;
  --shadow:0 24px 70px rgba(154,72,12,.16);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Segoe UI,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 80% 10%,rgba(249,115,22,.22),transparent 34%),
    radial-gradient(circle at 10% 20%,rgba(245,158,11,.20),transparent 30%),
    linear-gradient(135deg,#fffaf4,#fff7ed 48%,#ffedd5);
  min-height:100vh;
}
.topbar{
  position:sticky;
  top:0;
  z-index:10;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:18px clamp(18px,4vw,58px);
  backdrop-filter:blur(16px);
  background:rgba(255,247,237,.72);
  border-bottom:1px solid rgba(254,215,170,.75);
}
.logo{
  font-weight:950;
  font-size:24px;
  letter-spacing:-.8px;
  color:var(--dark);
}
.logo span{
  margin-left:6px;
  padding:4px 8px;
  border-radius:999px;
  color:white;
  background:linear-gradient(135deg,var(--orange),var(--amber));
  font-size:13px;
  vertical-align:middle;
}
nav{display:flex;align-items:center;gap:12px;flex-wrap:wrap}
nav a{
  color:var(--muted);
  text-decoration:none;
  font-weight:800;
  font-size:14px;
}
.login-link{
  color:white!important;
  background:var(--orange);
  padding:10px 16px;
  border-radius:999px;
  box-shadow:0 10px 22px rgba(249,115,22,.28);
}
.hero{
  min-height:calc(100vh - 72px);
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:40px;
  align-items:center;
  padding:clamp(36px,6vw,92px) clamp(18px,5vw,80px);
}
.eyebrow{
  display:inline-flex;
  background:rgba(249,115,22,.12);
  color:var(--orange2);
  border:1px solid rgba(249,115,22,.22);
  padding:8px 13px;
  border-radius:999px;
  font-weight:900;
  font-size:13px;
  margin-bottom:18px;
}
h1{
  margin:0;
  font-size:clamp(42px,6vw,86px);
  line-height:.95;
  letter-spacing:-3px;
  color:var(--dark);
}
.hero-copy p{
  max-width:660px;
  font-size:clamp(17px,2vw,22px);
  line-height:1.55;
  color:var(--muted);
  margin:26px 0;
}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:24px}
.btn{
  text-decoration:none;
  padding:14px 19px;
  border-radius:14px;
  font-weight:950;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.btn.primary{
  background:linear-gradient(135deg,var(--orange),var(--amber));
  color:white;
  box-shadow:0 18px 35px rgba(249,115,22,.32);
}
.btn.secondary{
  background:white;
  color:var(--orange2);
  border:1px solid var(--line);
}
.quote{
  max-width:590px;
  background:rgba(255,255,255,.62);
  border:1px solid rgba(254,215,170,.8);
  border-left:5px solid var(--orange);
  padding:16px 18px;
  border-radius:16px;
  color:#6f4423;
  font-weight:800;
}
.hero-visual{
  position:relative;
  min-height:520px;
}
.orb{
  position:absolute;
  border-radius:999px;
  filter:blur(2px);
}
.orb1{
  width:340px;height:340px;
  right:12%;top:4%;
  background:linear-gradient(135deg,rgba(249,115,22,.35),rgba(245,158,11,.12));
}
.orb2{
  width:220px;height:220px;
  left:4%;bottom:8%;
  background:linear-gradient(135deg,rgba(251,146,60,.28),rgba(255,255,255,.35));
}
.dash-card,.mini-card{
  position:absolute;
  background:rgba(255,255,255,.86);
  border:1px solid rgba(254,215,170,.9);
  box-shadow:var(--shadow);
  backdrop-filter:blur(15px);
}
.main-card{
  width:min(420px,82vw);
  right:8%;
  top:90px;
  border-radius:28px;
  padding:26px;
}
.card-head{display:flex;gap:7px;margin-bottom:24px}
.card-head span{width:12px;height:12px;border-radius:50%;background:#fdba74}
.card-head span:first-child{background:#fb923c}
.card-head span:last-child{background:#fed7aa}
.main-card h3{font-size:28px;margin:0 0 20px;color:var(--dark)}
.metric{display:flex;align-items:end;gap:13px;margin-bottom:18px}
.metric b{font-size:74px;line-height:.85;color:var(--orange2)}
.metric small{font-weight:900;color:var(--muted);padding-bottom:7px}
.bars{display:grid;gap:11px}
.bars i{
  height:13px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--orange),var(--amber));
}
.mini-card{
  border-radius:19px;
  padding:18px;
  font-weight:850;
  color:var(--muted);
}
.mini-card b{display:block;color:var(--dark);margin-top:4px}
.one{right:0;bottom:105px}
.two{left:3%;top:170px}
.three{left:18%;bottom:28px}
.section{
  padding:70px clamp(18px,5vw,80px);
}
.section-title{max-width:820px;margin-bottom:24px}
.section-title span{
  color:var(--orange2);
  font-size:13px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:2px;
}
.section-title h2{
  margin:10px 0 0;
  font-size:clamp(30px,4vw,52px);
  letter-spacing:-1.8px;
  line-height:1.05;
}
.values,.module-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.values article,.module-grid a{
  background:rgba(255,255,255,.78);
  border:1px solid rgba(254,215,170,.85);
  border-radius:24px;
  padding:24px;
  box-shadow:0 12px 35px rgba(154,72,12,.08);
}
.values b{
  color:var(--orange);
  font-size:13px;
}
.values h3{font-size:26px;margin:12px 0 8px}
.values p{color:var(--muted);line-height:1.55}
.module-grid a{
  text-decoration:none;
  color:var(--text);
  display:flex;
  flex-direction:column;
  gap:8px;
  font-size:26px;
  transition:.18s ease;
}
.module-grid a:hover{
  transform:translateY(-4px);
  border-color:var(--orange);
  box-shadow:0 18px 45px rgba(249,115,22,.16);
}
.module-grid b{font-size:22px}
.module-grid small{font-size:14px;color:var(--muted);line-height:1.4}
footer{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  padding:25px clamp(18px,5vw,80px);
  color:var(--muted);
  border-top:1px solid rgba(254,215,170,.85);
}
footer b{color:var(--orange2)}
@media(max-width:980px){
  .hero{grid-template-columns:1fr}
  .hero-visual{min-height:430px}
  .main-card{left:50%;right:auto;transform:translateX(-50%);top:40px}
  .two{left:0;top:230px}
  .one{right:0;bottom:40px}
  .three{left:26%;bottom:0}
  .values,.module-grid{grid-template-columns:1fr}
}
@media(max-width:620px){
  .topbar{align-items:flex-start;flex-direction:column}
  nav{width:100%}
  nav a{font-size:13px}
  .login-link{margin-left:auto}
  .hero{padding-top:36px}
  h1{letter-spacing:-1.8px}
  .hero-actions .btn{width:100%}
  .hero-visual{min-height:380px}
  .main-card{width:100%;top:20px}
  .mini-card{font-size:13px;padding:13px}
  .two{top:255px}
  .one{bottom:18px}
  .three{display:none}
}
