.hero{ padding:18px 0 10px; }

/* hero card */
.hero-card{
  border-radius:22px;
  border:1px solid var(--border);
  background:
    radial-gradient(1100px 520px at 16% 8%, rgba(245,130,0,.22), transparent 60%),
    radial-gradient(900px 440px at 86% 20%, rgba(255,178,84,.16), transparent 62%),
    linear-gradient(180deg, #fff 0%, #fff 68%, rgba(245,130,0,.03) 100%);
  box-shadow:var(--shadow2);
  overflow:hidden;
}

/* layout */
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:22px;
  padding:clamp(16px, 2.2vw, 28px);
  align-items:center;
}

.hero-title{
  font-family:var(--h-font);
  font-weight:950;
  font-size:clamp(28px, 3.2vw, 48px);
  margin:10px 0 10px;
  letter-spacing:.01em;
  line-height:1.18;
  color:rgba(17,17,17,.92);
}
.hero-title span{ color:var(--brand); }

.hero-sub{
  margin:0;
  color:var(--muted);
  font-weight:650;
  line-height:1.9;
  font-size:16px;
  max-width:62ch;
}

.hero-ctas{ display:flex; gap:10px; flex-wrap:wrap; margin-top:16px; }

/* Chips become links */
.hero-badges{ margin-top:14px; display:flex; gap:8px; flex-wrap:wrap; }
.chip{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:9px 12px;
  border-radius:999px;
  background:var(--brandSoft);
  border:1px solid var(--brandBorder);
  color:rgba(17,17,17,.90);
  font-weight:900;
  font-size:13px;
  text-decoration:none;
  transition:transform .18s ease, filter .18s ease;
}
.chip:hover{ transform:translateY(-2px); filter:brightness(1.02); }
.chip .material-symbols-rounded{ font-size:18px; line-height:1; }

/* Stats */
.hero-stats{
  margin-top:16px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:10px;
}
.stat{
  background:rgba(255,255,255,.78);
  border:1px solid rgba(17,17,17,.10);
  border-radius:16px;
  padding:12px 12px;
  box-shadow:0 12px 26px rgba(0,0,0,.06);
}
.stat .num{
  font-weight:950;
  font-size:18px;
  color:rgba(17,17,17,.92);
}
.stat .lbl{
  margin-top:6px;
  color:rgba(17,17,17,.68);
  font-weight:850;
  font-size:13px;
  display:flex;
  align-items:center;
  gap:8px;
}
.stat .lbl .material-symbols-rounded{
  font-size:18px;
  line-height:1;
  opacity:.80;
}

/* Media */
.hero-media{ position:relative; }
.hero-media img{
  border-radius:18px;
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 18px 44px rgba(0,0,0,.12);
  background:#fff;
}

/* Floating quick links */
.hero-float{
  position:absolute;
  right:14px;
  bottom:14px;
  width:min(300px, 88%);
  background:rgba(255,255,255,.80);
  backdrop-filter:blur(10px);
  border:1px solid rgba(17,17,17,.10);
  border-radius:18px;
  box-shadow:0 22px 60px rgba(0,0,0,.16);
  padding:12px;
}
.hero-float-title{
  font-weight:950;
  color:rgba(17,17,17,.92);
  margin-bottom:8px;
  display:flex;
  align-items:center;
  gap:8px;
}
.hero-float-title .material-symbols-rounded{ font-size:20px; line-height:1; opacity:.85; }

.hero-float a{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  padding:10px 10px;
  border-radius:14px;
  border:1px solid rgba(17,17,17,.08);
  background:#fff;
  font-weight:900;
  color:rgba(17,17,17,.86);
  margin:8px 0;
}
.hero-float a .material-symbols-rounded{ font-size:20px; line-height:1; opacity:.80; }
.hero-float a:hover{
  background:rgba(245,130,0,.08);
  border-color:rgba(245,130,0,.22);
}

/* Welcome */
.welcome{ padding:clamp(18px, 2.6vw, 32px); }
.welcome-grid{
  display:grid;
  grid-template-columns:360px 1fr;
  gap:24px;
  align-items:start;
}
.welcome-art img{
  border-radius:18px;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 16px 44px rgba(0,0,0,.12);
  background:#fff;
}
.welcome-title{ text-align:center; }
.welcome-lead{
  text-align:center;
  font-weight:900;
  color:rgba(17,17,17,.82);
  margin:10px 0 0;
  line-height:1.7;
}
.welcome-prose{
  margin-top:16px;
  color:rgba(17,17,17,.74);
  line-height:1.95;
  font-weight:550;
  font-size:16px;
}
.welcome-prose p{ margin:0 0 12px; }
.sign{
  margin-top:10px;
  font-weight:900;
  color:rgba(17,17,17,.88);
}
.welcome-actions{
  margin-top:16px;
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
}

.mini-note{
  margin-top:14px;
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(17,17,17,.10);
  background:rgba(255,255,255,.82);
  box-shadow:0 12px 26px rgba(0,0,0,.06);
  color:rgba(17,17,17,.72);
  font-weight:750;
  line-height:1.8;
}
.mini-note .material-symbols-rounded{
  font-size:20px;
  line-height:1;
  opacity:.80;
  margin-top:2px;
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-float{ position:static; width:100%; margin-top:12px; }
  .welcome-grid{ grid-template-columns:1fr; }
  .hero-stats{ grid-template-columns:1fr; }
}
@media (max-width: 520px){
  .btn{ width:100%; }
  .hero-title{ font-size:clamp(24px, 8.2vw, 36px); }
}
