html,
body {
  margin: 0;
  min-height: 100%;
}

.hb-landing {
  --font-sans:
    'Nunito', 'Poppins', 'Avenir Next', 'Manrope', 'Segoe UI', ui-sans-serif, system-ui,
    sans-serif;
  --font-rounded:
    'Nunito', 'Avenir Next Rounded', 'SF Pro Rounded', 'Segoe UI', ui-rounded, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --hb-bg: #0b1510;
  --hb-surface: rgba(24, 37, 29, 0.82);
  --hb-surface-strong: #17251c;
  --hb-border: rgba(151, 187, 163, 0.2);
  --hb-text: #f8f2e8;
  --hb-muted: #bdc9c0;
  --hb-green: #7dc39a;
  --hb-deep-green: #1d5638;
  --hb-gold: #d6a84a;
  --hb-gold-soft: rgba(214, 168, 74, 0.18);
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
  color: var(--hb-text);
  background:
    radial-gradient(circle at 82% 2%, rgba(41, 111, 73, 0.34), transparent 34rem),
    radial-gradient(circle at 12% 34%, rgba(202, 150, 58, 0.1), transparent 28rem),
    linear-gradient(180deg, #0d1912 0%, var(--hb-bg) 56%, #0e1712 100%);
  font-family: var(--font-sans);
}

.hb-landing *,
.hb-landing *::before,
.hb-landing *::after {
  box-sizing: border-box;
}

.hb-landing a {
  color: inherit;
  text-decoration: none;
}

.hb-landing a:focus-visible {
  outline: 3px solid var(--hb-gold);
  outline-offset: 4px;
}

.hb-ambient {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
}

.hb-ambient-one {
  top: 8rem;
  right: -12rem;
  width: 32rem;
  height: 32rem;
  border: 1px solid rgba(125, 195, 154, 0.12);
  background: rgba(39, 96, 64, 0.12);
}

.hb-ambient-two {
  top: 44rem;
  left: -16rem;
  width: 29rem;
  height: 29rem;
  border: 1px solid rgba(214, 168, 74, 0.1);
  background: rgba(214, 168, 74, 0.045);
}

.hb-site-header,
.hb-hero,
.hb-flow,
.hb-benefits,
.hb-clonemini,
.hb-final-cta,
.hb-site-footer {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.hb-site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid var(--hb-border);
  border-radius: 24px;
  background: rgba(19, 33, 24, 0.82);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.hb-brand,
.hb-footer-brand,
.hb-phone-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hb-brand img,
.hb-footer-brand img,
.hb-phone-brand img {
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.24);
}

.hb-brand span,
.hb-footer-brand span {
  display: grid;
  gap: 1px;
}

.hb-brand strong,
.hb-footer-brand strong {
  font-family: var(--font-rounded);
  font-size: 17px;
  line-height: 1.2;
}

.hb-brand small,
.hb-footer-brand small {
  color: var(--hb-muted);
  font-size: 11px;
}

.hb-site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hb-nav-link,
.hb-open-app,
.hb-primary-action,
.hb-secondary-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
}

.hb-nav-link {
  padding: 0 16px;
  color: var(--hb-muted);
}

.hb-open-app {
  padding: 0 20px;
  border: 1px solid rgba(125, 195, 154, 0.42);
  background: var(--hb-deep-green);
}

.hb-hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
  padding-block: 86px 76px;
}

.hb-hero-copy {
  position: relative;
  z-index: 2;
}

.hb-eyebrow {
  margin: 0 0 14px;
  color: var(--hb-green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hb-hero h1,
.hb-section-heading h2,
.hb-final-cta h2 {
  margin: 0;
  font-family: var(--font-rounded);
  font-weight: 900;
  letter-spacing: -0.035em;
}

.hb-hero h1 {
  max-width: 720px;
  font-size: clamp(48px, 6.2vw, 78px);
  line-height: 0.98;
}

.hb-lead {
  max-width: 590px;
  margin: 26px 0 0;
  color: var(--hb-muted);
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.5;
}

.hb-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hb-primary-action,
.hb-secondary-action {
  gap: 12px;
  padding: 0 24px;
}

.hb-primary-action {
  border: 1px solid #8bd1a7;
  background: linear-gradient(135deg, #76bf92, #4d9e6c);
  color: #07110b !important;
  box-shadow: 0 14px 34px rgba(58, 139, 89, 0.24);
}

.hb-primary-action span {
  font-size: 20px;
}

.hb-secondary-action {
  border: 1px solid var(--hb-border);
  background: rgba(255, 255, 255, 0.035);
}

.hb-platform-note {
  margin: 18px 0 0;
  color: #8fa097;
  font-size: 13px;
}

.hb-product-stage {
  position: relative;
  display: grid;
  min-height: 530px;
  place-items: center;
}

.hb-product-glow {
  position: absolute;
  inset: 10% 3%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 195, 154, 0.25), transparent 65%);
  filter: blur(12px);
}

.hb-phone-card {
  position: relative;
  width: min(100%, 410px);
  padding: 18px;
  border: 1px solid rgba(169, 205, 180, 0.26);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 34%),
    rgba(19, 32, 24, 0.94);
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: rotate(1.2deg);
  backdrop-filter: blur(18px);
}

.hb-phone-card::before {
  content: '';
  position: absolute;
  inset: 10px;
  z-index: -1;
  border: 1px solid rgba(214, 168, 74, 0.08);
  border-radius: 26px;
}

.hb-phone-topline,
.hb-mini-heading,
.hb-preview-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.hb-phone-topline {
  padding: 4px 2px 18px;
}

.hb-phone-brand {
  font-size: 13px;
  font-weight: 900;
}

.hb-live-pill,
.hb-preview-item em {
  border-radius: 999px;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.hb-live-pill {
  padding: 6px 10px;
  background: rgba(125, 195, 154, 0.15);
  color: var(--hb-green);
}

.hb-mini-heading {
  margin-bottom: 12px;
  padding: 20px;
  border: 1px solid var(--hb-border);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(214, 168, 74, 0.2), rgba(214, 168, 74, 0.07));
}

.hb-mini-heading span {
  color: var(--hb-muted);
  font-size: 13px;
  font-weight: 700;
}

.hb-mini-heading strong {
  font-family: var(--font-rounded);
  font-size: 24px;
}

.hb-list-preview {
  display: grid;
  gap: 10px;
}

.hb-preview-item {
  min-height: 76px;
  padding: 14px 15px;
  border: 1px solid var(--hb-border);
  border-radius: 20px;
}

.hb-preview-item span {
  display: grid;
  gap: 4px;
}

.hb-preview-item strong {
  font-family: var(--font-rounded);
  font-size: 16px;
}

.hb-preview-item small {
  color: var(--hb-muted);
  font-size: 11px;
}

.hb-preview-pending {
  background: linear-gradient(135deg, rgba(214, 168, 74, 0.18), rgba(214, 168, 74, 0.08));
}

.hb-preview-pending em {
  padding: 6px 9px;
  background: var(--hb-gold-soft);
  color: #e8bd66;
}

.hb-preview-bought {
  background: rgba(125, 195, 154, 0.07);
}

.hb-preview-bought em {
  padding: 6px 9px;
  background: rgba(125, 195, 154, 0.14);
  color: var(--hb-green);
}

.hb-phone-action {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 2px auto;
  padding: 12px 18px;
  border: 1px solid #83cda0;
  border-radius: 999px;
  background: #66ad81;
  color: #08140c;
  font-size: 13px;
  font-weight: 900;
}

.hb-phone-action span {
  font-size: 19px;
  line-height: 1;
}

.hb-flow,
.hb-benefits {
  padding-block: 82px;
}

.hb-flow {
  border-top: 1px solid var(--hb-border);
}

.hb-section-heading {
  max-width: 700px;
  margin-bottom: 34px;
}

.hb-section-heading h2,
.hb-final-cta h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
}

.hb-step-grid,
.hb-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hb-step-grid li,
.hb-benefit-grid article {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--hb-border);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 45%),
    var(--hb-surface);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.hb-step-grid li > span {
  display: block;
  margin-bottom: 56px;
  color: var(--hb-gold);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
}

.hb-step-grid h3,
.hb-benefit-grid h3 {
  margin: 0;
  font-family: var(--font-rounded);
  font-size: 22px;
}

.hb-step-grid p,
.hb-benefit-grid p {
  margin: 10px 0 0;
  color: var(--hb-muted);
  font-size: 15px;
  line-height: 1.55;
}

.hb-benefits {
  padding-top: 38px;
}

.hb-section-heading-compact {
  max-width: 760px;
}

.hb-benefit-grid article {
  min-height: 190px;
}

.hb-benefit-mark {
  width: 34px;
  height: 5px;
  display: block;
  margin-bottom: 40px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--hb-green), var(--hb-gold));
}

.hb-clonemini {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  align-items: center;
  gap: clamp(36px, 6vw, 72px);
  margin-block: 42px 84px;
  padding: clamp(30px, 5vw, 58px);
  overflow: hidden;
  border: 1px solid rgba(255, 91, 65, 0.32);
  border-radius: 34px;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 83, 56, 0.18), transparent 23rem),
    radial-gradient(circle at 92% 82%, rgba(78, 104, 183, 0.2), transparent 28rem),
    linear-gradient(135deg, #111a34, #0c1328 68%, #12182d);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.hb-clonemini::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  content: '';
  opacity: 0.24;
  pointer-events: none;
}

.hb-clonemini-copy,
.hb-clonemini-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hb-clonemini-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.hb-clonemini-brand img {
  display: block;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.28));
}

.hb-clonemini-brand span {
  display: grid;
  gap: 2px;
}

.hb-clonemini-brand strong {
  font-family: var(--font-rounded);
  font-size: 24px;
  line-height: 1;
}

.hb-clonemini-brand small {
  color: #ff8b75;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hb-clonemini h2 {
  max-width: 520px;
  margin: 0;
  font-family: var(--font-rounded);
  font-size: clamp(34px, 3.7vw, 50px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.hb-clonemini-copy > p:not(.hb-eyebrow) {
  max-width: 540px;
  margin: 20px 0 0;
  color: #c7cad6;
  font-size: 16px;
  line-height: 1.6;
}

.hb-clonemini-action {
  min-height: 50px;
  width: max-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  padding: 0 22px;
  border: 1px solid #ff8068;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff674d, #e84231);
  box-shadow: 0 16px 36px rgba(229, 66, 49, 0.24);
  color: #fff !important;
  font-weight: 900;
}

.hb-clonemini-visual {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background: #10182f;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34);
}

.hb-clonemini-visual img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.hb-final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-block: 54px 92px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(214, 168, 74, 0.3);
  border-radius: 34px;
  background:
    radial-gradient(circle at 84% 20%, rgba(214, 168, 74, 0.18), transparent 20rem),
    linear-gradient(135deg, rgba(38, 87, 58, 0.84), rgba(20, 36, 26, 0.92));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.hb-final-cta > div {
  max-width: 720px;
}

.hb-final-cta .hb-primary-action {
  flex: 0 0 auto;
  min-height: 52px;
}

.hb-site-footer {
  display: grid;
  grid-template-columns: minmax(250px, 1.2fr) 1fr 1fr;
  align-items: start;
  gap: 36px;
  padding-block: 30px 48px;
  border-top: 1px solid var(--hb-border);
}

.hb-site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.hb-site-footer nav a {
  color: var(--hb-muted);
  font-size: 13px;
  font-weight: 700;
}

.hb-site-footer nav a:hover,
.hb-nav-link:hover {
  color: var(--hb-text);
}

@media (max-width: 840px) {
  .hb-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 70px 48px;
  }

  .hb-product-stage {
    min-height: 500px;
  }

  .hb-step-grid,
  .hb-benefit-grid {
    grid-template-columns: 1fr;
  }

  .hb-clonemini {
    grid-template-columns: 1fr;
  }

  .hb-step-grid li,
  .hb-benefit-grid article {
    min-height: auto;
  }

  .hb-step-grid li > span,
  .hb-benefit-mark {
    margin-bottom: 30px;
  }

  .hb-final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .hb-site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hb-site-header,
  .hb-hero,
  .hb-flow,
  .hb-benefits,
  .hb-clonemini,
  .hb-final-cta,
  .hb-site-footer {
    width: min(100% - 24px, 1160px);
  }

  .hb-site-header {
    margin-top: 10px;
    border-radius: 20px;
  }

  .hb-brand small,
  .hb-nav-link {
    display: none;
  }

  .hb-brand img {
    width: 40px;
    height: 40px;
  }

  .hb-open-app {
    min-height: 40px;
    padding-inline: 16px;
    font-size: 13px;
  }

  .hb-hero {
    gap: 34px;
    padding-block: 58px 34px;
  }

  .hb-hero h1 {
    font-size: clamp(43px, 13vw, 60px);
  }

  .hb-lead {
    font-size: 18px;
  }

  .hb-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hb-primary-action,
  .hb-secondary-action {
    width: 100%;
  }

  .hb-product-stage {
    min-height: 450px;
  }

  .hb-phone-card {
    padding: 14px;
    border-radius: 28px;
    transform: none;
  }

  .hb-flow,
  .hb-benefits {
    padding-block: 64px;
  }

  .hb-clonemini {
    gap: 30px;
    margin-block: 20px 62px;
    padding: 24px;
    border-radius: 26px;
  }

  .hb-clonemini h2 {
    font-size: 34px;
  }

  .hb-clonemini-action {
    width: 100%;
  }

  .hb-clonemini-visual {
    border-radius: 20px;
  }

  .hb-section-heading h2,
  .hb-final-cta h2 {
    font-size: 34px;
  }

  .hb-step-grid li,
  .hb-benefit-grid article {
    padding: 22px;
    border-radius: 22px;
  }

  .hb-final-cta {
    margin-block: 24px 70px;
    border-radius: 26px;
  }

  .hb-footer-brand small {
    max-width: 240px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hb-phone-card {
    animation: hb-rise-in 700ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
  }

  .hb-hero-copy {
    animation: hb-rise-in 560ms 80ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
  }

  .hb-primary-action,
  .hb-open-app,
  .hb-secondary-action,
  .hb-clonemini-action,
  .hb-clonemini-visual img {
    transition: transform 160ms ease, filter 160ms ease, border-color 160ms ease;
  }

  .hb-primary-action:hover,
  .hb-open-app:hover,
  .hb-secondary-action:hover,
  .hb-clonemini-action:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
  }

  .hb-clonemini-visual:hover img {
    transform: scale(1.015);
    filter: brightness(1.04);
  }
}

@keyframes hb-rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
