:root {
  --hh-primary: #0f6f8f;
  --hh-secondary: #3fb4d6;
  --hh-accent: #8edc4e;
  --hh-text: #1e2a32;
  --hh-text-muted: #6b7a88;
  --hh-background: #f6f8fa;
  --hh-surface: #ffffff;
  --hh-divider: #e3e8ed;
  --hh-navy: #162b43;
  --hh-navy-soft: #213a55;
  --hh-shadow-soft: 0 28px 70px rgba(15, 111, 143, 0.08);
  --hh-shadow-card: 0 18px 36px rgba(30, 42, 50, 0.08);
  --hh-shadow-hero: 0 42px 90px rgba(8, 24, 42, 0.3);
  --hh-radius-2xl: 32px;
  --hh-radius-xl: 24px;
  --hh-radius-lg: 18px;
  --hh-max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--hh-text);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(63, 180, 214, 0.16), transparent 25%),
    radial-gradient(circle at 90% 12%, rgba(142, 220, 78, 0.12), transparent 18%),
    linear-gradient(180deg, #fbfdfe 0%, #f4f9fb 24%, #f6f8fa 56%, #fbfcfd 100%);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.is-hidden {
  display: none !important;
}

.page-shell {
  width: 100%;
}

.content-frame {
  width: min(calc(100% - 40px), var(--hh-max-width));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  width: 100%;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(227, 232, 237, 0.8);
  backdrop-filter: blur(20px);
}

.topbar-frame {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 80px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  color: var(--hh-text);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.brand-tagline {
  color: var(--hh-text-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

.topnav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex: 1;
  font-size: 14px;
}

.topnav a {
  color: var(--hh-text-muted);
  text-decoration: none;
}

.topnav a:hover,
.topnav a:focus-visible {
  color: var(--hh-primary);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 8px;
}

.button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  padding: 14px 21px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--hh-primary), var(--hh-secondary));
  box-shadow: 0 16px 28px rgba(15, 111, 143, 0.18);
}

.button-secondary {
  color: var(--hh-primary);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--hh-divider);
}

.topbar-signin,
.topbar-cta {
  min-height: 46px;
  padding: 12px 18px;
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  width: 100%;
  min-height: min(920px, 100vh);
  padding: 138px 0 110px;
  background:
    linear-gradient(180deg, rgba(11, 29, 45, 0.1), rgba(11, 29, 45, 0.2)),
    linear-gradient(120deg, rgba(15, 111, 143, 0.52), rgba(22, 43, 67, 0.88)),
    radial-gradient(circle at 78% 18%, rgba(63, 180, 214, 0.42), transparent 24%),
    radial-gradient(circle at 22% 24%, rgba(142, 220, 78, 0.18), transparent 22%),
    linear-gradient(180deg, #294961 0%, #162b43 100%);
}

.hero-shell {
  position: relative;
  width: 100%;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 18, 31, 0.16), rgba(8, 18, 31, 0.52)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 45%);
  pointer-events: none;
}

.hero-photo-layer {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 23, 36, 0.74) 0%, rgba(9, 23, 36, 0.56) 26%, rgba(9, 23, 36, 0.18) 52%, rgba(9, 23, 36, 0.3) 100%),
    linear-gradient(180deg, rgba(7, 18, 29, 0.1), rgba(7, 18, 29, 0.38)),
    url("assets/images/landing_hero_background.png");
  background-position: center, center, 64% center;
  background-repeat: no-repeat;
  background-size: cover, cover, cover;
  opacity: 0.98;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
}

.hero-glow-left {
  inset: 18% auto auto 6%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(142, 220, 78, 0.16), transparent 68%);
}

.hero-glow-right {
  inset: auto 5% 10% auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(63, 180, 214, 0.26), transparent 68%);
}

.hero-frame {
  position: relative;
  z-index: 1;
}

.hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(260px, 0.72fr);
  gap: 22px;
  align-items: start;
  padding-top: 20px;
}

.hero-copy {
  max-width: 660px;
  color: #fff;
}

.eyebrow,
.panel-label,
.manage-kicker,
.persona-kicker,
.trust-kicker {
  margin: 0 0 12px;
  color: var(--hh-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

.hero h1,
.section-header h2,
.cta-card h2,
.dashboard-preview-copy h2,
.manage-feature h3 {
  margin: 0;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 12.5ch;
  color: #fff;
  font-size: clamp(2.6rem, 4.25vw, 4.2rem);
  line-height: 0.98;
}

.section-header h2,
.cta-card h2 {
  color: var(--hh-text);
  font-size: clamp(1.95rem, 2.85vw, 2.85rem);
  line-height: 1.08;
}

.dashboard-preview-copy h2 {
  color: var(--hh-text);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.08;
}

.manage-feature h3 {
  color: var(--hh-text);
  font-size: clamp(1.8rem, 2.5vw, 2.7rem);
  line-height: 1.06;
}

.hero-body,
.section-header p,
.manage-overview-card p,
.help-card p,
.timeline-content p,
.manage-card p,
.step-card p,
.persona-card p,
.benefit-row p,
.benefits-panel span,
.cta-card p,
.footer-brand p,
.hero-note,
.hero-proof-card span,
.dashboard-side-copy,
.dashboard-activity-item span,
.dashboard-section-header span,
.dashboard-stat-label,
.manage-feature p {
  margin: 0;
  color: var(--hh-text-muted);
  font-size: 16px;
  line-height: 1.65;
}

.hero-body,
.hero-note {
  color: rgba(247, 251, 253, 0.86);
}

.hero-body {
  max-width: 620px;
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.6;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-downloads {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.hero-downloads-label {
  color: rgba(247, 251, 253, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-download-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-actions {
  align-items: flex-start;
}

.hero-actions .button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
}

.hero-note-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.referral-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(142, 220, 78, 0.16);
  color: #d8f3be;
  font-size: 13px;
  font-weight: 700;
}

.hero-highlights {
  display: grid;
  gap: 12px;
}

.hero-proof-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  color: #f6fbfd;
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-proof-card strong {
  display: block;
  margin: 0 0 8px;
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
}

.hero-proof-card span {
  color: rgba(247, 251, 253, 0.82);
}

.hero-proof-card-primary {
  background:
    linear-gradient(135deg, rgba(63, 180, 214, 0.18), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.1);
}

.hero-visual {
  margin-top: 28px;
}

.hero-window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--hh-shadow-hero);
}

.hero-window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(227, 232, 237, 0.9);
  background: linear-gradient(180deg, rgba(246, 248, 250, 0.98), rgba(255, 255, 255, 0.92));
}

.hero-window-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(107, 122, 136, 0.35);
}

.hero-window-title {
  margin: 0 0 0 8px;
  color: var(--hh-text-muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-window-body {
  padding: 20px;
}

.dashboard-preview-shell {
  display: grid;
  gap: 16px;
}

.dashboard-preview-copy {
  display: grid;
  gap: 10px;
}

.dashboard-section-header strong,
.dashboard-activity-item strong,
.persona-card h3,
.benefit-mini-card strong {
  display: block;
  margin: 0 0 8px;
  color: var(--hh-text);
  font-size: 22px;
  line-height: 1.2;
}

.dashboard-preview-copy > p:not(.panel-label),
.preview-card-header span {
  margin: 0;
  color: var(--hh-text-muted);
}

.dashboard-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.preview-card {
  display: flex;
  flex-direction: column;
  padding: 14px;
  border: 1px solid var(--hh-divider);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(241, 248, 250, 0.94)),
    var(--hh-surface);
  box-shadow: 0 14px 30px rgba(30, 42, 50, 0.06);
}

.preview-card-ios,
.preview-card-android {
  align-self: center;
}

.preview-card-web {
  min-width: 0;
}

.preview-card-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.preview-card-header strong {
  color: var(--hh-text);
  font-size: 16px;
  line-height: 1.2;
}

.preview-card-header span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.preview-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(15, 111, 143, 0.26);
  background:
    linear-gradient(180deg, rgba(15, 111, 143, 0.06), rgba(255, 255, 255, 0.88)),
    rgba(246, 248, 250, 0.92);
}

.preview-frame-browser {
  width: min(100%, 220px);
  height: 236px;
  min-height: 236px;
  margin: 0 auto;
  padding: 0;
  border-radius: 18px;
}

.preview-frame-mobile {
  width: min(100%, 220px);
  height: 236px;
  min-height: 236px;
  margin: 0 auto;
  border-radius: 28px;
}

.preview-frame-mobile-screenshot {
  overflow: hidden;
  padding: 0;
  gap: 0;
  background: linear-gradient(180deg, rgba(9, 23, 36, 0.06), rgba(255, 255, 255, 0.92));
}

.preview-screenshot {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center center;
}

.preview-toolbar,
.preview-phone-top,
.preview-line,
.preview-sidebar,
.preview-block,
.preview-stack-card {
  display: block;
  border-radius: 999px;
  background: rgba(22, 43, 67, 0.1);
}

.preview-toolbar {
  width: 72px;
  height: 12px;
  margin-bottom: 14px;
}

.preview-browser-layout {
  display: grid;
  gap: 12px;
  grid-template-columns: 84px minmax(0, 1fr);
  min-height: 154px;
}

.preview-sidebar {
  border-radius: 16px;
  min-height: 100%;
}

.preview-browser-main {
  display: grid;
  gap: 10px;
  align-content: start;
}

.preview-line {
  height: 10px;
}

.preview-line-short {
  width: 58%;
}

.preview-block-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 6px;
}

.preview-block {
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(63, 180, 214, 0.18), rgba(255, 255, 255, 0.6)),
    rgba(255, 255, 255, 0.9);
}

.preview-block {
  min-height: 74px;
}

.preview-block-tall {
  min-height: 112px;
}

.preview-phone-top {
  width: 44px;
  height: 6px;
  margin: 0 auto 4px;
}

.section {
  position: relative;
}

.section-band,
.section-benefits,
.site-footer {
  width: 100%;
}

.section-band {
  padding: 88px 0;
}

.section-header {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-header-wide {
  max-width: 880px;
}

.section-header-centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header h2,
.cta-card h2 {
  color: var(--hh-text);
}

.section-band-manage {
  background:
    radial-gradient(circle at 12% 14%, rgba(63, 180, 214, 0.1), transparent 22%),
    radial-gradient(circle at 88% 84%, rgba(142, 220, 78, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(248, 251, 253, 0.98), rgba(242, 248, 251, 0.98));
}

.manage-section-header {
  max-width: 840px;
}

.manage-intro {
  max-width: 760px;
  color: var(--hh-text);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}

.manage-flow {
  display: grid;
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
}

.manage-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.88fr);
  gap: 34px;
  align-items: center;
  padding: 30px 26px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.56)),
    rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.manage-story:nth-child(odd) {
  background:
    radial-gradient(circle at top left, rgba(63, 180, 214, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.56)),
    rgba(255, 255, 255, 0.3);
}

.manage-story:nth-child(even) {
  background:
    radial-gradient(circle at top right, rgba(15, 111, 143, 0.06), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(247, 250, 252, 0.58)),
    rgba(255, 255, 255, 0.28);
}

.manage-story-reverse .manage-story-copy {
  order: 2;
}

.manage-story-reverse .manage-anchor {
  order: 1;
}

.manage-story-copy {
  display: grid;
  gap: 12px;
}

.manage-story-copy h3 {
  margin: 0;
  color: var(--hh-text);
  font-size: clamp(1.9rem, 2.7vw, 2.55rem);
  line-height: 1.08;
}

.manage-story-copy p:last-child {
  max-width: 620px;
}

.manage-anchor {
  position: relative;
  min-height: 224px;
  padding: 16px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(63, 180, 214, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(246, 250, 252, 0.96), rgba(252, 253, 254, 0.94));
}

.manage-anchor::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(15, 111, 143, 0.08);
  pointer-events: none;
}

.manage-anchor-structure,
.manage-anchor-records,
.manage-anchor-checklist,
.manage-anchor-timeline {
  display: grid;
  align-content: center;
}

.manage-panel {
  display: grid;
  gap: 10px;
  padding: 15px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 252, 0.92)),
    rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 0 0 1px rgba(15, 111, 143, 0.06);
}

.manage-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.manage-panel-label {
  margin: 0 0 4px;
  color: var(--hh-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.manage-panel-header strong,
.manage-panel-tabs span,
.manage-panel-row span,
.manage-task-row span,
.manage-history-copy span {
  min-width: 0;
  color: var(--hh-text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.manage-panel-meta,
.manage-panel-row small,
.manage-history-copy small,
.manage-history-row > small {
  min-width: 0;
  color: var(--hh-text-muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.manage-panel-list,
.manage-history-list {
  display: grid;
  gap: 8px;
}

.manage-panel-row,
.manage-task-row,
.manage-history-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
}

.manage-panel-row-stacked {
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.manage-panel-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.manage-panel-tabs span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--hh-text-muted);
  font-size: 13px;
  font-weight: 700;
}

.manage-panel-tabs .is-active {
  background: rgba(15, 111, 143, 0.12);
  color: var(--hh-primary);
}

.manage-panel-records {
  gap: 10px;
}

.manage-records-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(112px, 0.8fr);
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.manage-records-feature-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.manage-records-feature-copy strong,
.manage-records-related-copy span {
  min-width: 0;
  color: var(--hh-text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.manage-records-feature-copy small,
.manage-records-related-copy small {
  min-width: 0;
  color: var(--hh-text-muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.manage-records-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}

.manage-records-meta span,
.manage-record-tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(15, 111, 143, 0.08);
  color: var(--hh-primary);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.manage-records-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  align-content: stretch;
}

.manage-records-strip div {
  min-height: 40px;
  border-radius: 12px;
  color: transparent;
  font-size: 0;
  line-height: 0;
  user-select: none;
  background:
    linear-gradient(180deg, rgba(63, 180, 214, 0.22), rgba(15, 111, 143, 0.12)),
    rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 0 0 1px rgba(15, 111, 143, 0.08);
}

.manage-records-strip div:nth-child(2),
.manage-records-strip div:nth-child(3) {
  opacity: 0.9;
}

.manage-records-strip div:nth-child(4) {
  opacity: 0.75;
}

.manage-records-related {
  display: grid;
  gap: 8px;
}

.manage-records-related-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
}

.manage-records-related-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.manage-task-row {
  justify-content: space-between;
}

.manage-status-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(63, 180, 214, 0.14);
  color: #215f76;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
}

.manage-status-chip-warning {
  background: rgba(15, 111, 143, 0.16);
  color: #144f66;
}

.manage-status-chip-complete {
  background: rgba(142, 220, 78, 0.2);
  color: #356814;
}

.manage-panel-history {
  gap: 10px;
}

.manage-history-row {
  position: relative;
  align-items: flex-start;
  min-height: 0;
  padding-left: 16px;
}

.manage-history-row::before {
  content: "";
  position: absolute;
  top: -10px;
  bottom: -10px;
  left: 16px;
  width: 2px;
  background: rgba(15, 111, 143, 0.12);
}

.manage-history-row:first-child::before {
  top: 16px;
}

.manage-history-row:last-child::before {
  bottom: 16px;
}

.manage-history-dot {
  position: relative;
  z-index: 1;
  width: 10px;
  height: 10px;
  margin-top: 4px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--hh-primary), var(--hh-secondary));
  flex: 0 0 auto;
}

.manage-history-copy {
  display: grid;
  gap: 2px;
  flex: 1;
}

.section-helps {
  background:
    radial-gradient(circle at 15% 18%, rgba(63, 180, 214, 0.12), transparent 20%),
    linear-gradient(180deg, #f4f9fb 0%, #edf5f9 100%);
}

.section-band-helps {
  padding-top: 84px;
  padding-bottom: 92px;
}

.help-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.help-card,
.persona-card,
.cta-card {
  border: 1px solid rgba(227, 232, 237, 0.96);
  box-shadow: var(--hh-shadow-soft);
}

.help-card {
  padding: 26px 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
}

.help-card-primary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(232, 245, 248, 0.98)),
    var(--hh-surface);
}

.help-card-offset {
  margin-top: 28px;
}

.help-card p:last-of-type {
  margin-top: 12px;
}

.section-band-audience {
  background:
    radial-gradient(circle at top right, rgba(63, 180, 214, 0.22), transparent 24%),
    radial-gradient(circle at 10% 70%, rgba(142, 220, 78, 0.12), transparent 24%),
    linear-gradient(135deg, #193652 0%, #132638 100%);
}

.audience-header {
  max-width: 760px;
}

.audience-header .eyebrow {
  color: rgba(196, 233, 244, 0.84);
}

.audience-header h2,
.audience-header p {
  color: #fff;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.persona-card {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 12px 24px rgba(8, 19, 33, 0.09);
  backdrop-filter: blur(8px);
}

.persona-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.persona-icon {
  position: relative;
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  flex: 0 0 auto;
  overflow: hidden;
}

.persona-icon::before,
.persona-icon::after,
.persona-icon span {
  position: absolute;
  display: block;
  color: transparent;
  font-size: 0;
  line-height: 0;
  user-select: none;
}

.persona-icon::before,
.persona-icon::after {
  content: "";
}

.persona-icon span {
  background: linear-gradient(135deg, rgba(196, 233, 244, 0.96), rgba(63, 180, 214, 0.78));
}

.persona-icon-homeowners span:nth-child(1) {
  top: 10px;
  left: 11px;
  width: 28px;
  height: 15px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.persona-icon-homeowners span:nth-child(2) {
  top: 23px;
  left: 14px;
  width: 22px;
  height: 16px;
  border-radius: 4px;
}

.persona-icon-homeowners span:nth-child(3) {
  top: 28px;
  left: 22px;
  width: 6px;
  height: 11px;
  border-radius: 2px 2px 0 0;
  background: rgba(15, 111, 143, 0.42);
}

.persona-icon-multi::before {
  left: 9px;
  top: 22px;
  width: 12px;
  height: 14px;
  border-radius: 3px;
  background: linear-gradient(135deg, rgba(196, 233, 244, 0.88), rgba(63, 180, 214, 0.66));
}

.persona-icon-multi::after {
  left: 23px;
  top: 18px;
  width: 16px;
  height: 18px;
  border-radius: 3px;
  background: linear-gradient(135deg, rgba(196, 233, 244, 0.96), rgba(63, 180, 214, 0.78));
}

.persona-icon-multi span:nth-child(1) {
  top: 12px;
  left: 7px;
  width: 16px;
  height: 12px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.persona-icon-multi span:nth-child(2) {
  top: 8px;
  left: 21px;
  width: 20px;
  height: 13px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.persona-icon-multi span:nth-child(3) {
  top: 25px;
  left: 27px;
  width: 5px;
  height: 11px;
  border-radius: 2px 2px 0 0;
  background: rgba(15, 111, 143, 0.42);
}

.persona-icon-rentals::before {
  left: 13px;
  top: 11px;
  width: 24px;
  height: 28px;
  border-radius: 4px 4px 3px 3px;
  background:
    linear-gradient(90deg, transparent 0 22%, rgba(15, 111, 143, 0.28) 22% 30%, transparent 30% 46%, rgba(15, 111, 143, 0.28) 46% 54%, transparent 54% 70%, rgba(15, 111, 143, 0.28) 70% 78%, transparent 78% 100%),
    linear-gradient(180deg, transparent 0 18%, rgba(15, 111, 143, 0.28) 18% 26%, transparent 26% 44%, rgba(15, 111, 143, 0.28) 44% 52%, transparent 52% 70%, rgba(15, 111, 143, 0.28) 70% 78%, transparent 78% 100%),
    linear-gradient(135deg, rgba(196, 233, 244, 0.96), rgba(63, 180, 214, 0.78));
}

.persona-icon-rentals span:nth-child(1) {
  top: 7px;
  left: 16px;
  width: 18px;
  height: 8px;
  border-radius: 3px 3px 0 0;
  background: rgba(196, 233, 244, 0.86);
}

.persona-icon-rentals span:nth-child(2) {
  top: 29px;
  left: 22px;
  width: 6px;
  height: 10px;
  border-radius: 2px 2px 0 0;
  background: rgba(15, 111, 143, 0.42);
}

.persona-icon-rentals span:nth-child(3) {
  display: none;
}

.persona-icon-realtors::before {
  left: 15px;
  top: 12px;
  width: 3px;
  height: 27px;
  border-radius: 999px;
  background: rgba(196, 233, 244, 0.86);
}

.persona-icon-realtors span:nth-child(1) {
  top: 13px;
  left: 18px;
  width: 16px;
  height: 3px;
  border-radius: 999px;
}

.persona-icon-realtors span:nth-child(2) {
  top: 15px;
  left: 22px;
  width: 16px;
  height: 13px;
  border-radius: 4px;
}

.persona-icon-realtors span:nth-child(3) {
  top: 19px;
  left: 26px;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: rgba(15, 111, 143, 0.42);
}

.persona-icon-lenders::before {
  left: 12px;
  top: 10px;
  width: 22px;
  height: 28px;
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(15, 111, 143, 0.22), rgba(15, 111, 143, 0.22)) 6px 8px / 10px 2px no-repeat,
    linear-gradient(180deg, rgba(15, 111, 143, 0.22), rgba(15, 111, 143, 0.22)) 6px 14px / 12px 2px no-repeat,
    linear-gradient(180deg, rgba(15, 111, 143, 0.22), rgba(15, 111, 143, 0.22)) 6px 20px / 9px 2px no-repeat,
    linear-gradient(135deg, rgba(196, 233, 244, 0.96), rgba(63, 180, 214, 0.78));
}

.persona-icon-lenders span:nth-child(1) {
  top: 10px;
  left: 28px;
  width: 7px;
  height: 7px;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  background: rgba(230, 244, 248, 0.95);
}

.persona-icon-lenders span:nth-child(2) {
  top: 27px;
  left: 23px;
  width: 14px;
  height: 3px;
  border-radius: 999px;
  transform: rotate(-38deg);
}

.persona-icon-lenders span:nth-child(3) {
  top: 23px;
  left: 30px;
  width: 5px;
  height: 10px;
  border-radius: 999px;
  transform: rotate(-38deg);
  background: rgba(15, 111, 143, 0.42);
}

.persona-icon-commercial::before {
  left: 12px;
  top: 14px;
  width: 13px;
  height: 24px;
  border-radius: 3px 3px 2px 2px;
  background:
    linear-gradient(90deg, transparent 0 30%, rgba(15, 111, 143, 0.28) 30% 40%, transparent 40% 60%, rgba(15, 111, 143, 0.28) 60% 70%, transparent 70% 100%),
    linear-gradient(180deg, transparent 0 24%, rgba(15, 111, 143, 0.28) 24% 34%, transparent 34% 56%, rgba(15, 111, 143, 0.28) 56% 66%, transparent 66% 100%),
    linear-gradient(135deg, rgba(196, 233, 244, 0.86), rgba(63, 180, 214, 0.66));
}

.persona-icon-commercial::after {
  left: 26px;
  top: 9px;
  width: 14px;
  height: 29px;
  border-radius: 3px 3px 2px 2px;
  background:
    linear-gradient(90deg, transparent 0 28%, rgba(15, 111, 143, 0.28) 28% 38%, transparent 38% 62%, rgba(15, 111, 143, 0.28) 62% 72%, transparent 72% 100%),
    linear-gradient(180deg, transparent 0 20%, rgba(15, 111, 143, 0.28) 20% 30%, transparent 30% 48%, rgba(15, 111, 143, 0.28) 48% 58%, transparent 58% 76%, rgba(15, 111, 143, 0.28) 76% 86%, transparent 86% 100%),
    linear-gradient(135deg, rgba(196, 233, 244, 0.96), rgba(63, 180, 214, 0.78));
}

.persona-icon-commercial span:nth-child(1) {
  top: 35px;
  left: 18px;
  width: 4px;
  height: 3px;
  border-radius: 999px;
  background: rgba(15, 111, 143, 0.42);
}

.persona-icon-commercial span:nth-child(2) {
  top: 35px;
  left: 31px;
  width: 4px;
  height: 3px;
  border-radius: 999px;
  background: rgba(15, 111, 143, 0.42);
}

.persona-icon-commercial span:nth-child(3) {
  display: none;
}

.persona-kicker {
  margin: 0;
  color: rgba(196, 233, 244, 0.88);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.35;
  text-transform: uppercase;
}

.persona-card h3,
.persona-card p {
  color: #fff;
}

.persona-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.26;
}

.persona-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.persona-chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(240, 247, 250, 0.82);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.section-band-steps {
  background:
    radial-gradient(circle at 84% 20%, rgba(63, 180, 214, 0.08), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.timeline-list {
  position: relative;
  display: grid;
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.timeline-list::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 30px;
  width: 1px;
  background: rgba(15, 111, 143, 0.14);
}

.timeline-step {
  display: grid;
  grid-template-columns: 60px minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 20px;
  align-items: start;
  padding: 18px 0;
}

.timeline-step-reverse .timeline-content {
  grid-column: 3;
}

.timeline-step-reverse .timeline-preview {
  grid-column: 2;
}

.timeline-marker {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 2px;
}

.timeline-content {
  display: grid;
  gap: 8px;
  align-content: start;
  padding-top: 6px;
}

.timeline-content h3 {
  margin: 0;
  font-size: clamp(1.9rem, 2.7vw, 2.45rem);
  line-height: 1.08;
}

.timeline-content p {
  max-width: 560px;
}

.timeline-step-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.timeline-preview {
  position: relative;
  min-height: 224px;
  padding: 12px;
  border-radius: 22px;
  background: rgba(248, 251, 253, 0.92);
  box-shadow: 0 8px 18px rgba(15, 111, 143, 0.05);
}

.timeline-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(15, 111, 143, 0.08);
  pointer-events: none;
}

.timeline-panel {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 0 0 1px rgba(15, 111, 143, 0.06);
}

.timeline-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.timeline-panel-header strong,
.timeline-data-row span,
.timeline-data-row small,
.timeline-mini-row span,
.timeline-mini-row small,
.timeline-history-row span,
.timeline-history-row small,
.timeline-doc-row span,
.timeline-doc-row small,
.timeline-doc-row em {
  min-width: 0;
  overflow-wrap: anywhere;
}

.timeline-panel-header strong,
.timeline-data-row small,
.timeline-mini-row span,
.timeline-history-row span,
.timeline-doc-row span {
  color: var(--hh-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.timeline-panel-meta,
.timeline-data-row span,
.timeline-mini-row small,
.timeline-history-row small,
.timeline-doc-row small,
.timeline-doc-row em {
  color: var(--hh-text-muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.35;
}

.timeline-setup-list,
.timeline-mini-list,
.timeline-history-stack {
  display: grid;
  gap: 8px;
}

.timeline-data-row,
.timeline-mini-row,
.timeline-history-row,
.timeline-doc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 40px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
}

.timeline-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.timeline-inline-chip,
.timeline-add-action,
.timeline-doc-row em {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
}

.timeline-inline-chip {
  background: rgba(63, 180, 214, 0.12);
  color: var(--hh-primary);
  font-size: 12px;
  font-weight: 700;
}

.timeline-add-action {
  background: rgba(255, 255, 255, 0.76);
  color: var(--hh-primary);
  font-size: 12px;
  font-weight: 700;
}

.timeline-mixed-grid,
.timeline-usage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.timeline-mini-group {
  display: grid;
  gap: 8px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
}

.timeline-mini-group-wide {
  grid-column: 1 / -1;
}

.timeline-doc-row {
  margin-top: 2px;
}

.timeline-doc-row > div {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: rgba(240, 247, 250, 0.98);
  color: var(--hh-primary);
  font-size: 16px;
  letter-spacing: 0.04em;
  font-weight: 800;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(15, 111, 143, 0.1);
}

.section-cta {
  padding: 20px 0 88px;
  background:
    radial-gradient(circle at 18% 16%, rgba(63, 180, 214, 0.1), transparent 18%),
    linear-gradient(180deg, #f7fbfd 0%, #eff6fa 100%);
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 32px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(63, 180, 214, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(15, 111, 143, 0.18), rgba(63, 180, 214, 0.08), rgba(142, 220, 78, 0.12)),
    rgba(255, 255, 255, 0.97);
}

.cta-copy {
  max-width: 660px;
}

.cta-downloads {
  display: grid;
  gap: 8px;
  flex-basis: 100%;
  margin-top: 2px;
}

.cta-downloads-label {
  color: var(--hh-text-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.cta-download-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-badge-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.store-badge-image {
  display: block;
  width: auto;
  height: 40px;
}

.site-footer {
  padding: 32px 0 42px;
  background:
    linear-gradient(180deg, #182c43 0%, #132638 100%);
}

.site-footer-frame {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  max-width: 520px;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-logo {
  display: block;
  width: auto;
  height: 38px;
}

.footer-brand p,
.footer-links a {
  color: rgba(247, 251, 253, 0.72);
}

.footer-copyright {
  margin: 14px 0 0;
  color: rgba(247, 251, 253, 0.56);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 24px;
  min-width: min(100%, 460px);
}

.footer-links-group {
  display: grid;
  gap: 10px;
}

.footer-links-label {
  margin: 0;
  color: rgba(247, 251, 253, 0.56);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
}

.app-shell {
  min-height: 100vh;
  background: var(--hh-background);
}

.app-splash {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--hh-text-muted);
}

.app-splash-logo {
  width: min(240px, calc(100vw - 80px));
  height: auto;
  max-height: 88px;
}

.legal-page-main {
  padding-top: 0;
}

.section-band-legal {
  padding: 98px 0 58px;
  background:
    radial-gradient(circle at 12% 16%, rgba(63, 180, 214, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(249, 252, 253, 0.98), rgba(242, 247, 250, 0.96));
}

.legal-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 28px;
  align-items: start;
}

.legal-hero-copy {
  max-width: 760px;
}

.legal-page-title {
  margin: 0;
  color: var(--hh-text);
  font-size: clamp(2.2rem, 3.2vw, 3.35rem);
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.legal-page-intro {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--hh-text-muted);
  font-size: 17px;
  line-height: 1.7;
}

.legal-hero-card,
.legal-section-card,
.legal-side-card {
  border: 1px solid rgba(227, 232, 237, 0.94);
  box-shadow: var(--hh-shadow-soft);
}

.legal-hero-card {
  display: grid;
  gap: 10px;
  padding: 22px 20px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 251, 0.94)),
    var(--hh-surface);
}

.legal-meta-label {
  margin: 0;
  color: var(--hh-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.legal-hero-card strong {
  color: var(--hh-text);
  font-size: 18px;
  line-height: 1.35;
}

.legal-hero-card p:last-child,
.legal-side-card p,
.legal-section-card p {
  margin: 0;
  color: var(--hh-text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.legal-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.34fr);
  gap: 24px;
  align-items: start;
  padding-bottom: 88px;
}

.legal-content-column,
.legal-side-column {
  display: grid;
  gap: 18px;
}

.legal-section-card,
.legal-side-card {
  display: grid;
  gap: 12px;
  padding: 26px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
}

.legal-section-card h2 {
  margin: 0;
  color: var(--hh-text);
  font-size: 28px;
  letter-spacing: -0.03em;
  line-height: 1.16;
}

.legal-list,
.legal-link-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--hh-text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.legal-link-list-inline {
  padding-left: 18px;
}

.legal-list li,
.legal-link-list li {
  padding-left: 2px;
}

.legal-contact-link {
  color: var(--hh-primary);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
}

.legal-contact-link:hover,
.legal-contact-link:focus-visible,
.legal-link-list a:hover,
.legal-link-list a:focus-visible,
.legal-section-card a:hover,
.legal-section-card a:focus-visible {
  color: var(--hh-primary);
}

.legal-side-button {
  min-height: 46px;
}

.pricing-page-stack,
.coming-soon-grid {
  padding-bottom: 88px;
}

.pricing-plan-grid,
.interest-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pricing-plan-card,
.interest-audience-card {
  display: grid;
  gap: 10px;
  padding: 22px 20px;
  border: 1px solid rgba(227, 232, 237, 0.94);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 251, 0.95)),
    var(--hh-surface);
}

.pricing-plan-card strong,
.interest-audience-card strong,
.interest-form-title {
  color: var(--hh-text);
  font-size: 22px;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.pricing-plan-card p:last-child,
.interest-audience-card p:last-child,
.interest-form-intro {
  margin: 0;
  color: var(--hh-text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.pricing-hero-button {
  width: 100%;
  margin-top: 8px;
}

.coming-soon-copy-card,
.interest-form-card {
  gap: 16px;
}

.interest-form-title {
  margin: 0;
}

.interest-mailto-stack {
  display: grid;
  gap: 14px;
}

.interest-mailto-link {
  color: var(--hh-primary);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.interest-mailto-link:hover,
.interest-mailto-link:focus-visible {
  color: var(--hh-primary);
}

.interest-mailto-note {
  margin: 0;
  color: var(--hh-text-muted);
  font-size: 14px;
  line-height: 1.6;
}

@keyframes hhFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-copy,
.hero-highlights,
.hero-window,
.manage-story,
.help-card,
.persona-card,
.timeline-step,
.cta-card {
  opacity: 0;
  animation: hhFadeUp 0.75s ease forwards;
  will-change: transform, opacity;
}

.hero-copy {
  animation-delay: 0.05s;
}

.hero-highlights {
  animation-delay: 0.14s;
}

.hero-window {
  animation-delay: 0.24s;
}

.manage-story:nth-child(1),
.help-card:nth-child(1),
.persona-card:nth-child(1),
.timeline-step:nth-child(1) {
  animation-delay: 0.1s;
}

.manage-story:nth-child(2),
.help-card:nth-child(2),
.persona-card:nth-child(2),
.timeline-step:nth-child(2) {
  animation-delay: 0.18s;
}

.manage-story:nth-child(3),
.help-card:nth-child(3),
.persona-card:nth-child(3),
.timeline-step:nth-child(3) {
  animation-delay: 0.26s;
}

.manage-story:nth-child(4),
.persona-card:nth-child(4),
.cta-card {
  animation-delay: 0.34s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-copy,
  .hero-highlights,
  .hero-window,
.manage-story,
.help-card,
  .persona-card,
.timeline-step,
  .cta-card {
    opacity: 1;
    animation: none;
  }
}

@media (max-width: 1140px) {
  .hero-stage,
  .hero-window-body,
  .manage-story,
  .legal-hero-grid,
  .legal-content-grid,
  .cta-card,
  .site-footer-frame {
    display: grid;
    grid-template-columns: 1fr;
  }

  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-links-grid {
    width: 100%;
  }

  .legal-content-grid {
    padding-bottom: 78px;
  }

  .pricing-plan-grid,
  .interest-audience-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .topnav a {
    display: none;
  }

  .topnav {
    justify-content: flex-end;
  }

  .hero,
  .section-band {
    padding-top: 96px;
  }

  .hero {
    padding: 114px 0 96px;
  }

  .hero-stage {
    padding-top: 16px;
  }

  .hero-window-body,
  .dashboard-preview-grid,
  .help-cards,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .help-card-offset {
    margin-top: 0;
  }

  .manage-story {
    gap: 24px;
    padding: 26px 22px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.2rem, 7vw, 3.45rem);
  }

  .section-header h2,
  .cta-card h2,
  .manage-story-copy h3,
  .help-card h3,
  .timeline-content h3 {
    font-size: clamp(1.75rem, 5.8vw, 2.35rem);
  }
}

@media (max-width: 720px) {
  .content-frame {
    width: min(calc(100% - 24px), var(--hh-max-width));
  }

  .topbar-frame {
    min-height: 0;
    gap: 10px;
    padding: 12px 0;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .brand-tagline {
    font-size: 11px;
  }

  .topnav {
    width: 100%;
    flex: 0 0 100%;
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .topbar-actions,
  .hero-actions,
  .cta-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .topbar-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-left: 0;
  }

  .topnav-legal {
    gap: 12px;
  }

  .topnav-legal a {
    font-size: 13px;
  }

  .button,
  .topbar-signin,
  .topbar-cta {
    width: 100%;
  }

  .cta-download-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .store-badge-link {
    width: 100%;
  }

  .store-badge-image {
    height: 38px;
  }

  .hero-download-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .store-download-button {
    width: 100%;
  }

  .hero {
    padding: 112px 0 82px;
  }

  .hero-stage {
    gap: 20px;
    padding-top: 12px;
  }

  .section-band {
    padding: 70px 0;
  }

  .section-header {
    margin-bottom: 24px;
  }

  .hero-body {
    font-size: 16px;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero-proof-card {
    padding: 18px 16px;
  }

  .hero-proof-card strong {
    font-size: 19px;
  }

  .manage-story {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 18px;
    border-radius: 24px;
  }

  .manage-story-reverse .manage-story-copy,
  .manage-story-reverse .manage-anchor {
    order: initial;
  }

  .manage-anchor,
  .help-card,
  .timeline-preview,
  .persona-card,
  .cta-card {
    padding: 20px;
  }

  .manage-anchor {
    min-height: 0;
    width: 100%;
    padding: 16px;
  }

  .persona-card {
    gap: 14px;
  }

  .persona-card h3 {
    font-size: 23px;
  }

  .manage-panel-header,
  .manage-panel-row,
  .manage-task-row,
  .manage-records-related-row {
    align-items: flex-start;
  }

  .manage-panel-header,
  .manage-task-row,
  .manage-records-related-row {
    flex-direction: column;
  }

  .timeline-step {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 16px 18px;
    padding: 16px 0;
  }

  .timeline-step-reverse .timeline-content,
  .timeline-step-reverse .timeline-preview {
    grid-column: 2;
  }

  .timeline-list::before {
    left: 28px;
  }

  .timeline-preview {
    min-height: 0;
    width: 100%;
    grid-column: 2;
    padding: 14px;
  }

  .timeline-panel {
    gap: 10px;
    padding: 14px;
  }

  .timeline-panel-header,
  .timeline-data-row,
  .timeline-mini-row,
  .timeline-doc-row {
    align-items: flex-start;
  }

  .timeline-panel-header,
  .timeline-doc-row {
    flex-direction: column;
  }

  .timeline-data-row,
  .timeline-mini-row,
  .timeline-history-row,
  .timeline-doc-row {
    min-height: 0;
    padding: 10px;
  }

  .timeline-mixed-grid,
  .timeline-usage-grid {
    grid-template-columns: 1fr;
  }

  .timeline-action-row {
    flex-wrap: wrap;
  }

  .timeline-doc-row em {
    align-self: flex-start;
  }

  .step-number {
    width: 54px;
    height: 54px;
  }

  .manage-panel {
    gap: 10px;
    padding: 14px;
  }

  .manage-panel-row,
  .manage-task-row,
  .manage-history-row,
  .manage-records-related-row {
    min-height: 0;
    padding: 10px;
  }

  .manage-task-row .manage-status-chip {
    align-self: flex-start;
  }

  .manage-anchor-checklist .manage-task-row {
    flex-direction: row;
    align-items: center;
  }

  .manage-anchor-checklist .manage-task-row .manage-status-chip {
    align-self: center;
    margin-left: auto;
  }

  .manage-anchor-records .manage-records-related-row {
    flex-direction: row;
    align-items: center;
  }

  .manage-anchor-records .manage-record-tag {
    align-self: center;
    margin-left: auto;
  }

  .manage-records-feature {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
  }

  .manage-records-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .manage-record-tag {
    align-self: flex-start;
  }

  .manage-history-row {
    display: grid;
    grid-template-columns: 10px minmax(0, 1fr);
    grid-template-areas:
      "dot content"
      ". meta";
    align-items: start;
    column-gap: 12px;
    row-gap: 4px;
    padding-left: 14px;
  }

  .manage-history-row::before {
    left: 14px;
  }

  .manage-history-dot {
    grid-area: dot;
    margin-top: 5px;
  }

  .manage-history-copy {
    grid-area: content;
  }

  .manage-history-row > small {
    grid-area: meta;
  }

  .manage-panel-tabs {
    gap: 6px;
  }

  .hero-photo-layer {
    background-position: center, center, 70% center;
  }

  .hero-window,
  .cta-card,
  .persona-card,
  .manage-anchor,
  .help-card,
  .timeline-preview,
  .preview-card {
    border-radius: 22px;
  }

  .site-footer-frame {
    gap: 18px;
  }

  .cta-card {
    gap: 18px;
    padding: 28px 24px;
  }

  .section-band-legal {
    padding: 92px 0 48px;
  }

  .legal-content-grid {
    gap: 20px;
    padding-bottom: 72px;
  }
}

@media (max-width: 430px) {
  .content-frame {
    width: min(calc(100% - 20px), var(--hh-max-width));
  }

  .hero h1 {
    font-size: clamp(1.9rem, 10.5vw, 2.45rem);
  }

  .topbar-frame {
    gap: 8px;
    padding: 10px 0;
  }

  .topbar-actions {
    grid-template-columns: 1fr;
  }

  .manage-flow {
    gap: 16px;
  }

  .manage-story {
    gap: 16px;
    padding: 20px 14px;
  }

  .manage-story-copy {
    gap: 12px;
  }

  .persona-card {
    gap: 14px;
  }

  .persona-card-top {
    gap: 10px;
  }

  .persona-icon {
    width: 44px;
    height: 44px;
    padding: 8px;
    border-radius: 14px;
  }

  .persona-card h3 {
    font-size: 22px;
  }

  .persona-chip-row {
    gap: 6px;
  }

  .cta-downloads {
    gap: 8px;
  }

  .store-badge-image {
    height: 36px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-band-legal {
    padding: 88px 0 44px;
  }

  .legal-page-title {
    font-size: clamp(2rem, 9vw, 2.45rem);
  }

  .legal-page-intro {
    font-size: 16px;
    margin-top: 14px;
  }

  .legal-hero-card,
  .legal-section-card,
  .legal-side-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .legal-section-card h2 {
    font-size: 24px;
  }

  .legal-content-grid {
    gap: 18px;
    padding-bottom: 68px;
  }

  .timeline-preview {
    padding: 14px;
    border-radius: 22px;
  }

  .timeline-step {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px 14px;
    padding: 16px 0;
  }

  .timeline-panel {
    padding: 12px;
    border-radius: 18px;
  }

  .step-number {
    width: 52px;
    height: 52px;
    font-size: 14px;
  }

  .timeline-list::before {
    left: 25px;
  }

  .timeline-data-row,
  .timeline-mini-row,
  .timeline-history-row,
  .timeline-doc-row {
    padding: 9px 10px;
  }

  .manage-anchor {
    padding: 14px;
    border-radius: 22px;
  }

  .manage-panel {
    padding: 12px;
    border-radius: 18px;
  }

  .manage-records-feature {
    padding: 9px;
  }

  .manage-panel-tabs span {
    min-height: 32px;
    padding: 6px 10px;
    font-size: 12px;
  }

  .manage-panel-row,
  .manage-task-row,
  .manage-history-row,
  .manage-records-related-row {
    padding: 9px 10px;
  }

  .manage-records-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .manage-records-strip div {
    min-height: 34px;
  }

  .manage-history-row {
    column-gap: 10px;
    padding-left: 12px;
  }

  .manage-history-row::before {
    left: 12px;
  }
}
