:root {
  --honest-purple: #b428f4;
  --honest-purple-dark: #7514ca;
  --honest-green: #63dda1;
  --honest-white: #ffffff;
  --honest-ink: #190829;
  --honest-muted: rgba(255,255,255,.82);
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; font-family: Arial, Helvetica, sans-serif; color: var(--honest-white); background: var(--honest-purple); }
a { color: inherit; }
body {
  background:
    radial-gradient(circle at 85% 10%, rgba(99,221,161,.24), transparent 26%),
    radial-gradient(circle at 8% 92%, rgba(255,255,255,.13), transparent 22%),
    linear-gradient(135deg, var(--honest-purple) 0%, #aa20ef 46%, var(--honest-purple-dark) 100%);
  background-attachment: fixed;
}

.hb-shell { min-height: 100vh; display: flex; flex-direction: column; }
.hb-nav {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 3;
}
.hb-logo { width: min(230px, 54vw); height: auto; display: block; }
.hb-menu { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; justify-content: flex-end; }
.hb-menu a {
  text-decoration: none;
  font-weight: 800;
  font-size: .95rem;
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(255,255,255,.88);
}
.hb-menu a:hover, .hb-menu a[aria-current="page"] { background: rgba(255,255,255,.14); color: #fff; }
.hb-contact-pill { background: var(--honest-green)!important; color: var(--honest-ink)!important; }

.hb-hero, .hb-page-header {
  width: min(1120px, calc(100% - 40px));
  margin: auto;
  padding: 72px 0 88px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.hb-kicker { display: inline-block; color: var(--honest-ink); background: var(--honest-green); border-radius: 999px; padding: 8px 16px; font-size: .85rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 20px; }
h1 { margin: 0; font-size: clamp(3rem, 8vw, 7.4rem); line-height: .92; font-weight: 900; letter-spacing: -.07em; }
.hb-page-header h1 { font-size: clamp(2.8rem, 7vw, 5.6rem); }
.hb-lead { max-width: 760px; margin: 26px auto 0; font-size: clamp(1.05rem, 2.2vw, 1.45rem); line-height: 1.55; font-weight: 650; color: rgba(255,255,255,.92); }
.hb-rule { width: 96px; height: 7px; border: 0; border-radius: 999px; background: var(--honest-green); margin: 32px auto 26px; }
.hb-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 30px; }
.hb-button { border-radius: 999px; padding: 14px 24px; font-weight: 900; text-decoration: none; border: 2px solid rgba(255,255,255,.9); transition: transform .18s ease, box-shadow .18s ease; }
.hb-button-primary { background: var(--honest-green); border-color: var(--honest-green); color: var(--honest-ink); box-shadow: 0 14px 35px rgba(25,8,41,.22); }
.hb-button-secondary { background: rgba(255,255,255,.08); backdrop-filter: blur(10px); }
.hb-button:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(25,8,41,.28); }

.hb-content { width: min(1120px, calc(100% - 40px)); margin: 0 auto 72px; position: relative; z-index: 2; }
.hb-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.hb-card { background: rgba(255,255,255,.11); border: 1px solid rgba(255,255,255,.18); border-radius: 28px; padding: 28px; box-shadow: 0 22px 60px rgba(25,8,41,.16); backdrop-filter: blur(12px); }
.hb-card h2, .hb-card h3 { margin-top: 0; letter-spacing: -.03em; }
.hb-card p, .hb-card li { color: var(--honest-muted); line-height: 1.65; }
.hb-card a { font-weight: 900; text-decoration-thickness: 3px; text-decoration-color: var(--honest-green); text-underline-offset: 5px; }
.hb-chip-icon { width: 42px; height: 42px; border-radius: 12px; background: var(--honest-green); box-shadow: 0 0 0 7px rgba(99,221,161,.16); margin-bottom: 20px; }
.hb-list { padding-left: 20px; }
.hb-footer { width: min(1180px, calc(100% - 40px)); margin: auto auto 0; padding: 28px 0; display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.78); font-size: .95rem; border-top: 1px solid rgba(255,255,255,.14); }

@media (max-width: 850px) { .hb-nav, .hb-footer { flex-direction: column; align-items: flex-start; } .hb-menu { justify-content: flex-start; } .hb-grid { grid-template-columns: 1fr; } .hb-hero, .hb-page-header { padding: 48px 0 60px; text-align: left; } .hb-rule { margin-left: 0; } .hb-actions { justify-content: flex-start; } }
