/* Hegemonic Growth — leads site */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root {
  --hg-bg: #030b10;
  --hg-surface: #071620;
  --hg-surface-2: #0b1f2c;
  --hg-surface-3: #102636;
  --hg-border: rgba(120, 200, 255, 0.12);
  --hg-border-strong: rgba(120, 200, 255, 0.22);
  --hg-text: #f0f8fc;
  --hg-muted: #7f9eb2;
  --hg-accent: #5ecfff;
  --hg-accent-2: #3aa8e8;
  --hg-accent-soft: rgba(94, 207, 255, 0.09);
  --hg-green: #4ade80;
  --hg-gold: #d4b86a;
  --hg-max: 1140px;
  --hg-radius: 18px;
  --hg-radius-sm: 12px;
  --hg-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  --hg-shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.hg-site {
  margin: 0;
  color: var(--hg-text);
  background: var(--hg-bg);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.hg-site * {
  box-sizing: border-box;
}

.hg-site a {
  color: inherit;
  text-decoration: none;
}

.hg-site::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(94, 207, 255, 0.11), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 20%, rgba(58, 168, 232, 0.06), transparent 50%),
    radial-gradient(ellipse 40% 30% at 0% 80%, rgba(94, 207, 255, 0.04), transparent 50%);
  content: "";
  pointer-events: none;
}

/* Header */

.hg-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(20px, 4vw, 40px);
  border-bottom: 1px solid transparent;
  background: rgba(3, 11, 16, 0.72);
  backdrop-filter: blur(16px);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.hg-header[data-elevated="true"] {
  border-color: var(--hg-border);
  background: rgba(3, 11, 16, 0.92);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.hg-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.hg-logo img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.hg-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 26px);
  font-size: 0.86rem;
  color: var(--hg-muted);
}

.hg-nav a:hover {
  color: var(--hg-text);
}

.hg-nav-active {
  color: var(--hg-text) !important;
  font-weight: 600;
}

.hg-nav-cta {
  padding: 9px 16px;
  border: 1px solid var(--hg-border-strong);
  border-radius: 999px;
  color: var(--hg-text) !important;
  background: linear-gradient(180deg, rgba(94, 207, 255, 0.14), rgba(94, 207, 255, 0.06));
  font-weight: 600;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}

.hg-nav-cta:hover {
  border-color: rgba(94, 207, 255, 0.45);
  background: rgba(94, 207, 255, 0.16);
  transform: translateY(-1px);
}

/* Layout */

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

.hg-section {
  padding: clamp(64px, 10vh, 104px) 0;
}

.hg-section-tight {
  padding: clamp(48px, 7vh, 80px) 0;
}

.hg-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 12px;
  border: 1px solid var(--hg-border);
  border-radius: 999px;
  color: var(--hg-accent);
  background: var(--hg-accent-soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hg-h1 {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 5.8vw, 3.75rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.hg-h2 {
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 3vw, 2.05rem);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.hg-lead {
  margin: 0;
  max-width: 54ch;
  color: var(--hg-muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.65;
}

.hg-lead-center {
  margin-inline: auto;
  text-align: center;
}

.hg-section-head {
  margin-bottom: 36px;
  text-align: center;
}

.hg-section-head .hg-lead {
  margin-inline: auto;
  max-width: 48ch;
}

/* Hero */

.hg-hero {
  padding: clamp(48px, 8vh, 88px) 0 clamp(40px, 6vh, 72px);
}

.hg-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.hg-hero-copy .hg-lead {
  margin-inline: auto;
}

.hg-hero-actions,
.hg-stats {
  justify-content: center;
}

.hg-hero-copy .hg-h1 {
  max-width: none;
}

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

.hg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: transform 0.15s, background 0.15s, border-color 0.15s, box-shadow 0.15s;
}

.hg-btn:hover {
  transform: translateY(-1px);
}

.hg-btn-primary {
  border: 1px solid rgba(94, 207, 255, 0.5);
  color: var(--hg-bg);
  background: linear-gradient(180deg, #7dd9ff, var(--hg-accent));
  box-shadow: 0 8px 28px rgba(94, 207, 255, 0.22);
}

.hg-btn-primary:hover {
  box-shadow: 0 12px 36px rgba(94, 207, 255, 0.32);
}

.hg-btn-ghost {
  border: 1px solid var(--hg-border);
  color: var(--hg-text);
  background: rgba(255, 255, 255, 0.02);
}

.hg-btn-ghost:hover {
  border-color: var(--hg-border-strong);
  background: var(--hg-accent-soft);
}

/* Phone + Slack demo frame */

.hg-demo-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.hg-demo-visual::before {
  position: absolute;
  inset: 10% 5%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 207, 255, 0.18), transparent 70%);
  filter: blur(40px);
  content: "";
  pointer-events: none;
}

.hg-phone {
  position: relative;
  z-index: 1;
  width: min(300px, 100%);
  padding: 12px 10px 14px;
  border-radius: 42px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(165deg, #2a2a2e, #111114 55%, #0a0a0c);
  box-shadow:
    var(--hg-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(0, 0, 0, 0.5);
}

.hg-phone-notch {
  width: 96px;
  height: 24px;
  margin: 0 auto 10px;
  border-radius: 0 0 16px 16px;
  background: #0a0a0c;
}

.hg-phone-screen {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #fff;
  aspect-ratio: 720 / 1558;
}

.hg-phone-screen video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  background: #fff;
}

.hg-slack-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: #1a1d21;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.hg-slack-hash {
  color: rgba(255, 255, 255, 0.45);
}

.hg-slack-live {
  margin-left: auto;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(74, 222, 128, 0.15);
  color: var(--hg-green);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Demo section — wide */

.hg-demo-section {
  border-top: 1px solid var(--hg-border);
  border-bottom: 1px solid var(--hg-border);
  background: linear-gradient(180deg, rgba(7, 22, 32, 0.6), rgba(3, 11, 16, 0.2));
}

.hg-demo-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}

.hg-demo-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.hg-demo-point {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--hg-border);
  border-radius: var(--hg-radius-sm);
  background: rgba(7, 22, 32, 0.7);
}

.hg-demo-point strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.9rem;
}

.hg-demo-point p {
  margin: 0;
  color: var(--hg-muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.hg-demo-point-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--hg-accent-soft);
  color: var(--hg-accent);
  font-size: 0.72rem;
  font-weight: 800;
}

.hg-demo-phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hg-demo-caption {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--hg-muted);
  font-size: 0.8rem;
}

.hg-slack-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(224, 100, 170, 0.15);
  color: #e8a4c8;
  font-size: 0.82rem;
  font-weight: 800;
}

/* Lead card preview */

.hg-lead-preview {
  margin-top: 32px;
  padding: 20px 22px;
  border: 1px solid var(--hg-border);
  border-radius: var(--hg-radius);
  background: var(--hg-surface);
  font-size: 0.82rem;
  line-height: 1.55;
}

.hg-lead-preview-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hg-border);
}

.hg-lead-preview-head h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.hg-lead-badge {
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(74, 222, 128, 0.12);
  color: var(--hg-green);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hg-lead-meta {
  color: var(--hg-muted);
  font-size: 0.8rem;
}

.hg-lead-fields {
  display: grid;
  gap: 8px;
}

.hg-lead-field {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
}

.hg-lead-field dt {
  margin: 0;
  color: var(--hg-muted);
  font-weight: 500;
}

.hg-lead-field dd {
  margin: 0;
  color: rgba(230, 244, 252, 0.92);
}

.hg-lead-opener {
  margin-top: 14px;
  padding: 12px 14px;
  border-left: 2px solid var(--hg-accent);
  border-radius: 0 var(--hg-radius-sm) var(--hg-radius-sm) 0;
  background: var(--hg-accent-soft);
  color: rgba(230, 244, 252, 0.9);
  font-size: 0.84rem;
  font-style: italic;
}

/* Lead directory preview */

.hg-directory-band {
  border-top: 1px solid var(--hg-border);
  background: linear-gradient(180deg, rgba(7, 22, 32, 0.35), transparent);
}

.hg-directory-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

.hg-directory-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.hg-directory-point {
  padding: 12px 14px;
  border: 1px solid var(--hg-border);
  border-radius: var(--hg-radius-sm);
  background: var(--hg-surface);
  font-size: 0.84rem;
  line-height: 1.45;
}

.hg-directory-point strong {
  color: var(--hg-accent);
}

.hg-directory-mock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hg-directory-stack {
  position: relative;
  width: min(240px, 72vw);
  padding: 10px;
  border: 1px solid var(--hg-border-strong);
  border-radius: var(--hg-radius-sm);
  background: var(--hg-surface);
  box-shadow: var(--hg-shadow-soft);
}

.hg-directory-cover {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hg-directory-peek {
  position: relative;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--hg-border);
}

.hg-directory-peek img {
  display: block;
  width: 100%;
  height: auto;
  filter: blur(3px) saturate(0.7);
  transform: scale(1.04);
  opacity: 0.55;
}

.hg-directory-peek::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 10%, rgba(3, 11, 16, 0.92));
  content: "";
  pointer-events: none;
}

.hg-directory-lock {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 1;
  transform: translateX(-50%);
  padding: 6px 12px;
  border: 1px solid var(--hg-border-strong);
  border-radius: 999px;
  background: rgba(7, 22, 32, 0.92);
  color: var(--hg-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hg-directory-badge {
  color: var(--hg-gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* Stats bar */

.hg-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.hg-stat {
  padding: 16px 18px;
  border: 1px solid var(--hg-border);
  border-radius: var(--hg-radius-sm);
  background: rgba(7, 22, 32, 0.65);
  text-align: center;
}

.hg-stat strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--hg-accent);
}

.hg-stat span {
  color: var(--hg-muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

/* Pain / contrast */

.hg-pain {
  border-top: 1px solid var(--hg-border);
  border-bottom: 1px solid var(--hg-border);
  background: linear-gradient(180deg, rgba(7, 22, 32, 0.5), transparent);
}

.hg-contrast {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.hg-contrast-col {
  display: flex;
  flex-direction: column;
  padding: 26px 24px;
  border: 1px solid var(--hg-border);
  border-radius: var(--hg-radius);
  min-height: 100%;
}

.hg-contrast-col .hg-btn {
  margin-top: 18px;
  align-self: flex-start;
}

.hg-contrast-col.bad {
  background: rgba(20, 10, 10, 0.4);
  border-color: rgba(255, 100, 100, 0.15);
}

.hg-contrast-col.good {
  background: linear-gradient(180deg, rgba(94, 207, 255, 0.08), rgba(7, 22, 32, 0.8));
  border-color: rgba(94, 207, 255, 0.25);
}

.hg-contrast-col h3 {
  margin: 0 0 14px;
  font-size: 1rem;
  font-weight: 600;
}

.hg-contrast-col.bad h3 {
  color: rgba(255, 140, 140, 0.9);
}

.hg-contrast-col.good h3 {
  color: var(--hg-accent);
}

.hg-contrast-col ul {
  flex: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hg-contrast-col li {
  position: relative;
  padding: 6px 0 6px 20px;
  color: var(--hg-muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.hg-contrast-col.bad li::before {
  position: absolute;
  left: 0;
  content: "✕";
  color: rgba(255, 120, 120, 0.7);
  font-size: 0.72rem;
}

.hg-contrast-col.good li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--hg-green);
  font-size: 0.78rem;
  font-weight: 700;
}

.hg-contrast-col.good li {
  color: rgba(230, 244, 252, 0.88);
}

/* Qualify */

.hg-qualify-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.hg-qualify-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hg-qualify-item {
  padding: 16px 18px;
  border: 1px solid var(--hg-border);
  border-radius: var(--hg-radius-sm);
  background: linear-gradient(180deg, var(--hg-surface-2), var(--hg-surface));
  font-size: 0.86rem;
  line-height: 1.5;
}

.hg-qualify-item::before {
  margin-right: 8px;
  color: var(--hg-green);
  font-weight: 700;
  content: "→";
}

.hg-qualify-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 18px;
  border: 1px solid var(--hg-border);
  border-radius: var(--hg-radius-sm);
  background: linear-gradient(165deg, var(--hg-surface-2), var(--hg-surface));
  min-height: 100%;
}

.hg-qualify-card strong {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
}

.hg-qualify-card p {
  margin: 0;
  flex: 1;
  color: var(--hg-muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.hg-qualify-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  color: var(--hg-accent);
  background: var(--hg-accent-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

/* Niches */

.hg-niches {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 0 0 clamp(16px, 3vh, 32px);
}

.hg-niche {
  padding: 7px 14px;
  border: 1px solid var(--hg-border);
  border-radius: 999px;
  color: var(--hg-muted);
  background: rgba(7, 22, 32, 0.8);
  font-size: 0.8rem;
  font-weight: 550;
}

.hg-niches-section {
  background: linear-gradient(180deg, transparent, rgba(7, 22, 32, 0.45), transparent);
}

.hg-niche-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.hg-niche-card {
  padding: 16px 16px 14px;
  border: 1px solid var(--hg-border);
  border-radius: var(--hg-radius-sm);
  background: var(--hg-surface);
  transition: border-color 0.2s, transform 0.2s;
}

.hg-niche-card:hover {
  border-color: var(--hg-border-strong);
  transform: translateY(-1px);
}

.hg-niche-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  border-radius: 9px;
  background: var(--hg-accent-soft);
  color: var(--hg-accent);
}

.hg-niche-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hg-niche-card strong {
  display: block;
  margin-bottom: 5px;
  font-size: 0.88rem;
}

.hg-niche-card p {
  margin: 0;
  color: var(--hg-muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

/* Value stack */

.hg-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.hg-stack-item {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--hg-border);
  border-radius: var(--hg-radius-sm);
  background: var(--hg-surface);
}

.hg-stack-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.12);
  color: var(--hg-green);
  font-size: 0.72rem;
  font-weight: 800;
}

.hg-stack-item strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.88rem;
}

.hg-stack-item p {
  margin: 0;
  color: var(--hg-muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

/* Flow steps */

.hg-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hg-flow-step {
  position: relative;
  padding: 22px 20px;
  border: 1px solid var(--hg-border);
  border-radius: var(--hg-radius);
  background: var(--hg-surface);
}

.hg-flow-step span {
  display: block;
  margin-bottom: 10px;
  color: var(--hg-accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.hg-flow-step strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.98rem;
}

.hg-flow-step p {
  margin: 0;
  color: var(--hg-muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

/* Feature duo */

.hg-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.hg-card {
  padding: clamp(22px, 3vw, 28px);
  border: 1px solid var(--hg-border);
  border-radius: var(--hg-radius);
  background: var(--hg-surface);
}

.hg-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  font-weight: 600;
}

.hg-card > p {
  margin: 0 0 16px;
  color: var(--hg-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.hg-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hg-card li {
  position: relative;
  padding: 7px 0 7px 18px;
  border-top: 1px solid rgba(120, 200, 255, 0.07);
  color: rgba(230, 244, 252, 0.9);
  font-size: 0.86rem;
  line-height: 1.45;
}

.hg-card li::before {
  position: absolute;
  left: 0;
  top: 14px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--hg-accent);
  opacity: 0.75;
  content: "";
}

.hg-card li:first-child {
  border-top: 0;
}

.hg-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 9px;
  background: var(--hg-accent-soft);
  color: var(--hg-accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

/* Testimonials */

.hg-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hg-quote {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--hg-border);
  border-radius: var(--hg-radius);
  background: var(--hg-surface);
}

.hg-quote-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.hg-quote-niche {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 6px;
  background: var(--hg-accent-soft);
  color: var(--hg-accent);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hg-quote-plan {
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(212, 184, 106, 0.12);
  color: var(--hg-gold);
  font-size: 0.64rem;
  font-weight: 700;
}

.hg-quote-stars {
  margin-left: auto;
  color: var(--hg-gold);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.hg-quote p {
  flex: 1;
  margin: 0 0 16px;
  color: rgba(230, 244, 252, 0.9);
  font-size: 0.88rem;
  line-height: 1.55;
}

.hg-quote-result {
  margin: 0 0 14px;
  padding-top: 12px;
  border-top: 1px solid var(--hg-border);
  color: var(--hg-green);
  font-size: 0.78rem;
  font-weight: 600;
}

.hg-quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hg-quote-author img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--hg-border);
}

.hg-quote-author div strong {
  display: block;
  font-size: 0.86rem;
}

.hg-quote-author div span {
  color: var(--hg-muted);
  font-size: 0.76rem;
}

/* Pricing */

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

.hg-plan {
  display: flex;
  flex-direction: column;
  padding: 22px 20px;
  border: 1px solid var(--hg-border);
  border-radius: var(--hg-radius);
  background: var(--hg-surface);
  transition: border-color 0.2s, transform 0.2s;
}

.hg-plan:hover {
  border-color: var(--hg-border-strong);
}

.hg-plan.featured {
  border-color: rgba(94, 207, 255, 0.38);
  background: linear-gradient(180deg, rgba(94, 207, 255, 0.1), var(--hg-surface));
  box-shadow: var(--hg-shadow-soft);
  transform: translateY(-2px);
}

.hg-plan-tag {
  color: var(--hg-accent);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hg-plan-price {
  margin: 10px 0 4px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.hg-plan-price small {
  font-size: 0.42em;
  font-weight: 600;
  color: var(--hg-muted);
}

.hg-plan h3 {
  margin: 0 0 8px;
  font-size: 0.94rem;
  font-weight: 600;
}

.hg-plan > p {
  margin: 0 0 12px;
  color: var(--hg-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.hg-plan ul {
  flex: 1;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.hg-plan li {
  position: relative;
  padding: 5px 0 5px 16px;
  color: rgba(230, 244, 252, 0.82);
  font-size: 0.76rem;
  line-height: 1.4;
}

.hg-plan li::before {
  position: absolute;
  left: 0;
  color: var(--hg-green);
  font-size: 0.7rem;
  font-weight: 700;
  content: "✓";
}

.hg-plan .hg-btn {
  width: 100%;
  margin-top: auto;
  font-size: 0.8rem;
  padding: 11px 16px;
}

/* FAQ */

.hg-faq {
  display: grid;
  gap: 10px;
  max-width: 720px;
  margin-inline: auto;
}

.hg-faq-item {
  padding: 18px 20px;
  border: 1px solid var(--hg-border);
  border-radius: var(--hg-radius-sm);
  background: var(--hg-surface);
}

.hg-faq-item h3 {
  margin: 0 0 8px;
  font-size: 0.92rem;
  font-weight: 600;
}

.hg-faq-item p {
  margin: 0;
  color: var(--hg-muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

/* Final CTA band */

.hg-cta-band {
  text-align: center;
  border-top: 1px solid var(--hg-border);
  background: linear-gradient(180deg, rgba(94, 207, 255, 0.06), rgba(7, 22, 32, 0.5));
}

.hg-cta-band .hg-h2 {
  max-width: 20ch;
  margin-inline: auto;
}

.hg-cta-band .hg-lead {
  margin-inline: auto;
}

.hg-cta-band .hg-hero-actions {
  justify-content: center;
  margin-top: 24px;
}

.hg-urgency {
  display: inline-block;
  margin-top: 16px;
  color: var(--hg-gold);
  font-size: 0.82rem;
  font-weight: 600;
}

/* Calendly */

.hg-book {
  border-top: 1px solid var(--hg-border);
  background: linear-gradient(180deg, var(--hg-surface-2), var(--hg-bg));
}

.hg-book-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.hg-calendly-frame {
  border: 1px solid var(--hg-border-strong);
  border-radius: var(--hg-radius);
  overflow: hidden;
  background: var(--hg-surface);
  box-shadow: var(--hg-shadow-soft);
}

.hg-calendly-head {
  display: flex;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--hg-border);
  font-size: 0.8rem;
}

.hg-calendly-head b {
  color: var(--hg-muted);
  font-weight: 600;
}

.hg-cal-embed {
  width: 100%;
  min-width: 320px;
  min-height: 700px;
  height: 700px;
  overflow: auto;
  background: var(--hg-surface);
}

/* Footer */

.hg-footer {
  padding: 28px clamp(20px, 4vw, 40px);
  border-top: 1px solid var(--hg-border);
  color: var(--hg-muted);
  font-size: 0.8rem;
}

.hg-footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  width: min(var(--hg-max), calc(100% - 40px));
  margin: 0 auto;
}

.hg-footer a:hover {
  color: var(--hg-accent);
}

.hg-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  font-size: 0.82rem;
}

/* Growth platform */

.hg-growth-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 18px;
  padding: 10px clamp(20px, 4vw, 40px);
  border-bottom: 1px solid var(--hg-border);
  background: rgba(94, 207, 255, 0.04);
  color: var(--hg-muted);
  font-size: 0.78rem;
}

.hg-growth-bar b {
  color: var(--hg-text);
  font-weight: 600;
}

.hg-growth-bar span:last-child {
  color: var(--hg-accent);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hg-growth-pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.hg-growth-pillar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 24px;
  border: 1px solid var(--hg-border-strong);
  border-radius: var(--hg-radius);
  background: linear-gradient(165deg, rgba(94, 207, 255, 0.07), var(--hg-surface));
  min-height: 100%;
}

.hg-growth-pillar.is-primary {
  border-color: rgba(94, 207, 255, 0.38);
  box-shadow: var(--hg-shadow-soft);
}

.hg-growth-pillar-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.hg-growth-pillar-tag {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hg-accent);
}

.hg-growth-pillar-price {
  color: var(--hg-muted);
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
}

.hg-growth-pillar h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.hg-growth-pillar > p {
  margin: 0;
  flex: 1;
  color: var(--hg-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.hg-growth-pillar ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hg-growth-pillar li {
  position: relative;
  padding: 5px 0 5px 18px;
  color: rgba(230, 244, 252, 0.88);
  font-size: 0.82rem;
  line-height: 1.45;
}

.hg-growth-pillar li::before {
  position: absolute;
  left: 0;
  color: var(--hg-green);
  font-weight: 700;
  content: "✓";
}

.hg-growth-pillar .hg-btn {
  margin-top: auto;
  align-self: flex-start;
}

.hg-growth-pillar-foot {
  margin-top: auto;
  padding-top: 8px;
  color: var(--hg-muted);
  font-size: 0.74rem;
}

/* Distribution lane cross-sell */

.hg-distribution-lane {
  border-top: 1px solid var(--hg-border);
  border-bottom: 1px solid var(--hg-border);
  background: linear-gradient(180deg, rgba(94, 207, 255, 0.04), transparent 72%);
}

.hg-dist-entry-qualify {
  margin-bottom: 24px;
}

.hg-dist-entry-cta {
  justify-content: center;
  margin-bottom: 32px;
}

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

.hg-lane-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
  padding: 22px 20px;
  border: 1px solid var(--hg-border);
  border-radius: var(--hg-radius-sm);
  background: linear-gradient(180deg, var(--hg-surface-2), var(--hg-surface));
  transition: border-color 0.15s, transform 0.15s, background 0.15s, box-shadow 0.15s;
}

.hg-lane-card:hover {
  border-color: rgba(94, 207, 255, 0.35);
  background: rgba(94, 207, 255, 0.06);
  box-shadow: var(--hg-shadow-soft);
  transform: translateY(-2px);
}

.hg-lane-card h3 {
  font-size: 1rem;
  line-height: 1.35;
  color: var(--hg-text);
}

.hg-lane-card p {
  flex: 1;
  font-size: 0.86rem;
  color: var(--hg-muted);
  line-height: 1.5;
}

.hg-lane-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hg-accent);
}

.hg-lane-link {
  margin-top: auto;
  padding-top: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--hg-accent);
}

/* Growth system architecture */

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

.hg-system-node {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 22px;
  border: 1px solid var(--hg-border);
  border-radius: var(--hg-radius);
  background: linear-gradient(165deg, var(--hg-surface-2), var(--hg-surface));
  min-height: 100%;
}

.hg-system-node.is-core {
  border-color: rgba(94, 207, 255, 0.35);
  background: linear-gradient(165deg, rgba(94, 207, 255, 0.1), var(--hg-surface));
}

.hg-system-node-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  color: var(--hg-accent);
  background: var(--hg-accent-soft);
  font-size: 0.72rem;
  font-weight: 800;
}

.hg-system-node h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
}

.hg-system-node > p {
  margin: 0;
  flex: 1;
  color: var(--hg-muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.hg-system-node ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hg-system-node li {
  position: relative;
  padding: 4px 0 4px 16px;
  color: rgba(230, 244, 252, 0.9);
  font-size: 0.8rem;
  line-height: 1.45;
}

.hg-system-node li::before {
  position: absolute;
  left: 0;
  color: var(--hg-accent);
  content: "·";
  font-weight: 700;
}

.hg-system-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 20px 0 8px;
  color: var(--hg-muted);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hg-system-connector::before,
.hg-system-connector::after {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hg-border-strong), transparent);
  content: "";
}

/* Solutions catalog */

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

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

.hg-solution-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
  padding: 22px 20px;
  border: 1px solid var(--hg-border);
  border-radius: var(--hg-radius-sm);
  background: linear-gradient(180deg, var(--hg-surface-2), var(--hg-surface));
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}

.hg-solution-card:hover {
  border-color: rgba(94, 207, 255, 0.32);
  box-shadow: var(--hg-shadow-soft);
  transform: translateY(-2px);
}

.hg-solution-card.is-featured {
  border-color: rgba(94, 207, 255, 0.38);
  background: linear-gradient(165deg, rgba(94, 207, 255, 0.08), var(--hg-surface));
}

.hg-solution-lane {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hg-accent);
}

.hg-solution-lane.is-market {
  color: var(--hg-gold);
}

.hg-solution-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}

.hg-solution-card > p {
  margin: 0;
  flex: 1;
  color: var(--hg-muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.hg-solution-price {
  color: var(--hg-text);
  font-size: 0.88rem;
  font-weight: 700;
}

.hg-solution-price small {
  color: var(--hg-muted);
  font-size: 0.76rem;
  font-weight: 500;
}

.hg-solution-includes {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hg-solution-includes li {
  position: relative;
  padding: 3px 0 3px 16px;
  color: rgba(230, 244, 252, 0.88);
  font-size: 0.78rem;
  line-height: 1.4;
}

.hg-solution-includes li::before {
  position: absolute;
  left: 0;
  color: var(--hg-green);
  font-weight: 700;
  content: "✓";
}

.hg-solution-link {
  margin-top: auto;
  padding-top: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--hg-accent);
}

.hg-solution-agents {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.hg-solution-agent-tag {
  padding: 4px 8px;
  border: 1px solid var(--hg-border);
  border-radius: 999px;
  color: var(--hg-muted);
  background: rgba(7, 22, 32, 0.6);
  font-size: 0.68rem;
  font-weight: 600;
}

/* Growth agents */

.hg-agents-band {
  border-top: 1px solid var(--hg-border);
  border-bottom: 1px solid var(--hg-border);
  background: linear-gradient(180deg, rgba(94, 207, 255, 0.05), transparent 80%);
}

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

.hg-agent-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
  padding: 22px 20px;
  border: 1px solid var(--hg-border);
  border-radius: var(--hg-radius-sm);
  background: var(--hg-surface);
}

.hg-agent-card.is-pipeline {
  border-color: rgba(94, 207, 255, 0.22);
}

.hg-agent-card.is-market {
  border-color: rgba(212, 184, 106, 0.22);
}

.hg-agent-type {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hg-accent);
}

.hg-agent-card.is-market .hg-agent-type {
  color: var(--hg-gold);
}

.hg-agent-card h3 {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.35;
}

.hg-agent-card > p {
  margin: 0;
  flex: 1;
  color: var(--hg-muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.hg-agent-tier {
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--hg-border);
  color: var(--hg-muted);
  font-size: 0.74rem;
  line-height: 1.45;
}

.hg-agent-tier b {
  color: var(--hg-text);
  font-weight: 600;
}

.hg-agent-replaces {
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(212, 184, 106, 0.08);
  color: rgba(230, 244, 252, 0.9);
  font-size: 0.76rem;
  line-height: 1.45;
}

.hg-agent-replaces em {
  color: var(--hg-gold);
  font-style: normal;
  font-weight: 700;
}

.hg-agent-save {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--hg-green);
  background: rgba(74, 222, 128, 0.1);
  font-size: 0.72rem;
  font-weight: 700;
}

.hg-agents-stack-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 28px;
}

.hg-agents-stack-step {
  padding: 14px 16px;
  border: 1px solid var(--hg-border);
  border-radius: var(--hg-radius-sm);
  background: rgba(94, 207, 255, 0.04);
  text-align: center;
}

.hg-agents-stack-step strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.88rem;
}

.hg-agents-stack-step span {
  color: var(--hg-muted);
  font-size: 0.74rem;
  line-height: 1.4;
}

.hg-agents-stack-arrow {
  display: none;
}

/* Client savings / value */

.hg-value-band {
  border-top: 1px solid var(--hg-border);
  border-bottom: 1px solid var(--hg-border);
  background: linear-gradient(180deg, rgba(74, 222, 128, 0.04), transparent 72%);
}

.hg-value-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.hg-value-stat {
  padding: 24px 20px;
  border: 1px solid var(--hg-border-strong);
  border-radius: var(--hg-radius);
  background: linear-gradient(165deg, var(--hg-surface-2), var(--hg-surface));
  text-align: center;
}

.hg-value-stat strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--hg-green);
}

.hg-value-stat > span {
  display: block;
  color: var(--hg-muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.hg-value-stat > p {
  margin: 10px 0 0;
  color: rgba(230, 244, 252, 0.88);
  font-size: 0.78rem;
  line-height: 1.45;
}

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

.hg-replace-col {
  padding: 22px 20px;
  border: 1px solid var(--hg-border);
  border-radius: var(--hg-radius-sm);
  background: var(--hg-surface);
}

.hg-replace-col.is-saved {
  border-color: rgba(74, 222, 128, 0.28);
  background: linear-gradient(165deg, rgba(74, 222, 128, 0.06), var(--hg-surface));
}

.hg-replace-col h3 {
  margin: 0 0 12px;
  font-size: 0.95rem;
  font-weight: 600;
}

.hg-replace-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hg-replace-col li {
  position: relative;
  padding: 6px 0 6px 18px;
  font-size: 0.82rem;
  line-height: 1.45;
}

.hg-replace-col.is-stack li {
  color: var(--hg-muted);
}

.hg-replace-col.is-stack li::before {
  position: absolute;
  left: 0;
  color: #f87171;
  content: "×";
  font-weight: 700;
}

.hg-replace-col.is-saved li {
  color: rgba(230, 244, 252, 0.92);
}

.hg-replace-col.is-saved li::before {
  position: absolute;
  left: 0;
  color: var(--hg-green);
  content: "✓";
  font-weight: 700;
}

.hg-replace-total {
  margin-top: 16px;
  padding: 16px 20px;
  border: 1px solid rgba(74, 222, 128, 0.25);
  border-radius: var(--hg-radius-sm);
  background: rgba(74, 222, 128, 0.06);
  text-align: center;
  color: var(--hg-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.hg-replace-total b {
  color: var(--hg-green);
  font-size: 1.1rem;
}

/* Offering ladder */

.hg-ladder {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--hg-border-strong);
  border-radius: var(--hg-radius);
  overflow: hidden;
  background: var(--hg-surface);
}

.hg-ladder-step {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 20px;
  border-right: 1px solid var(--hg-border);
  min-height: 100%;
}

.hg-ladder-step:last-child {
  border-right: none;
}

.hg-ladder-step.is-active {
  background: linear-gradient(180deg, rgba(94, 207, 255, 0.1), transparent);
}

.hg-ladder-step-num {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hg-accent);
}

.hg-ladder-price {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hg-ladder-price small {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--hg-muted);
}

.hg-ladder-step h3 {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
}

.hg-ladder-step > p {
  margin: 0;
  flex: 1;
  color: var(--hg-muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.hg-ladder-adds {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hg-ladder-adds li {
  position: relative;
  padding: 3px 0 3px 16px;
  color: rgba(230, 244, 252, 0.9);
  font-size: 0.76rem;
  line-height: 1.4;
}

.hg-ladder-adds li::before {
  position: absolute;
  left: 0;
  color: var(--hg-green);
  font-weight: 700;
  content: "+";
}

.hg-ladder-step .hg-btn {
  margin-top: auto;
  align-self: flex-start;
  font-size: 0.78rem;
  padding: 10px 14px;
}

.hg-ladder-note {
  margin-top: 16px;
  padding: 14px 18px;
  border: 1px solid var(--hg-border);
  border-radius: var(--hg-radius-sm);
  background: rgba(94, 207, 255, 0.04);
  color: var(--hg-muted);
  font-size: 0.84rem;
  line-height: 1.55;
  text-align: center;
}

.hg-ladder-note a {
  color: var(--hg-accent);
  font-weight: 600;
}

/* Path picker */

.hg-path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.hg-path-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 24px;
  border: 1px solid var(--hg-border-strong);
  border-radius: var(--hg-radius);
  background: linear-gradient(165deg, var(--hg-surface-2), var(--hg-surface));
  min-height: 100%;
}

.hg-path-card h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
}

.hg-path-card > p {
  margin: 0;
  flex: 1;
  color: var(--hg-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.hg-path-signals {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hg-path-signal {
  padding: 10px 14px;
  border: 1px solid var(--hg-border);
  border-radius: var(--hg-radius-sm);
  background: rgba(7, 22, 32, 0.5);
  font-size: 0.82rem;
  line-height: 1.45;
}

.hg-path-signal strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.78rem;
  color: var(--hg-accent);
}

/* Homepage — minimal, problem-led */

.hg-home .hg-header {
  border-bottom-color: transparent;
}

.hg-home-hero {
  padding: clamp(56px, 10vh, 104px) 0 clamp(48px, 7vh, 80px);
}

.hg-home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hg-home-hero-copy .hg-label {
  margin-bottom: 18px;
}

.hg-home-hero-copy .hg-h1 {
  margin: 0 0 18px;
  max-width: 12.5em;
  font-size: clamp(2.35rem, 4.2vw, 3.55rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.hg-home-hero-copy .hg-lead {
  margin: 0 0 28px;
  max-width: 46ch;
  font-size: clamp(1rem, 1.35vw, 1.1rem);
  line-height: 1.68;
}

.hg-home-hero-copy .hg-hero-actions {
  justify-content: flex-start;
  margin-top: 0;
}

.hg-home-visual {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hg-home-panel {
  padding: 22px 24px;
  border: 1px solid var(--hg-border);
  border-radius: var(--hg-radius);
  background: linear-gradient(165deg, var(--hg-surface-2), var(--hg-surface));
  box-shadow: var(--hg-shadow-soft);
}

.hg-home-panel.is-pipeline {
  border-color: rgba(94, 207, 255, 0.2);
}

.hg-home-panel.is-visibility {
  border-color: rgba(212, 184, 106, 0.22);
}

.hg-home-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.hg-home-panel-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hg-accent);
}

.hg-home-panel.is-visibility .hg-home-panel-tag {
  color: var(--hg-gold);
}

.hg-home-panel-head b {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--hg-muted);
}

.hg-home-bars {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}

.hg-home-bar-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 7px;
  font-size: 0.8rem;
}

.hg-home-bar-label span {
  color: var(--hg-muted);
}

.hg-home-bar-label strong {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hg-text);
}

.hg-home-bar.is-weak .hg-home-bar-label strong {
  color: rgba(255, 140, 120, 0.9);
}

.hg-home-bar-track {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.hg-home-bar-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--hg-accent-2), var(--hg-accent));
}

.hg-home-panel.is-visibility .hg-home-bar:not(.is-weak) .hg-home-bar-track i {
  background: linear-gradient(90deg, #b8943f, var(--hg-gold));
}

.hg-home-bar.is-weak .hg-home-bar-track i {
  background: linear-gradient(90deg, rgba(255, 100, 80, 0.5), rgba(255, 140, 120, 0.85));
}

.hg-home-panel > p {
  margin: 0;
  color: var(--hg-muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.hg-home-problems {
  padding: clamp(64px, 9vh, 96px) 0;
  border-top: 1px solid var(--hg-border);
  background: linear-gradient(180deg, rgba(7, 22, 32, 0.35), transparent 70%);
}

.hg-home-problems .hg-section-head {
  margin-bottom: 40px;
}

.hg-home-problems-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.hg-home-problem-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 26px;
  border: 1px solid var(--hg-border-strong);
  border-radius: var(--hg-radius);
  background: linear-gradient(165deg, var(--hg-surface-2), var(--hg-surface));
  min-height: 100%;
}

.hg-home-problem-num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hg-accent);
}

.hg-home-problem-card:nth-child(2) .hg-home-problem-num {
  color: var(--hg-gold);
}

.hg-home-problem-card h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hg-home-problem-card > p {
  margin: 0;
  color: var(--hg-muted);
  font-size: 0.92rem;
  line-height: 1.62;
}

.hg-home-problem-card ul {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hg-home-problem-card li {
  position: relative;
  padding-left: 18px;
  color: var(--hg-text);
  font-size: 0.86rem;
  line-height: 1.45;
}

.hg-home-problem-card li::before {
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hg-accent);
  opacity: 0.55;
  content: "";
}

.hg-home-problem-card:nth-child(2) li::before {
  background: var(--hg-gold);
}

.hg-home-insight {
  padding: clamp(52px, 8vh, 80px) 0;
  border-top: 1px solid var(--hg-border);
  border-bottom: 1px solid var(--hg-border);
  background: linear-gradient(90deg, rgba(94, 207, 255, 0.07), rgba(7, 22, 32, 0.4) 40%, rgba(212, 184, 106, 0.05));
}

.hg-home-insight-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.6fr);
  gap: clamp(20px, 4vw, 40px);
  align-items: end;
}

.hg-home-insight-inner p {
  margin: 0;
  max-width: 28em;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.hg-home-insight-inner span {
  color: var(--hg-muted);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: right;
}

.hg-home-lanes {
  padding: clamp(64px, 9vh, 96px) 0;
}

.hg-home-lanes .hg-section-head {
  margin-bottom: 36px;
}

.hg-home-lanes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.hg-home-lane {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px 28px;
  border: 1px solid var(--hg-border-strong);
  border-radius: var(--hg-radius);
  background: linear-gradient(165deg, var(--hg-surface-2), var(--hg-surface));
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.hg-home-lane:hover {
  border-color: rgba(94, 207, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: var(--hg-shadow-soft);
}

.hg-home-lane-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hg-home-lane-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hg-accent);
}

.hg-home-lane-tag.is-gold {
  color: var(--hg-gold);
}

.hg-home-lane-price {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--hg-muted);
}

.hg-home-lane h3 {
  margin: 0;
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hg-home-lane p {
  margin: 0;
  flex: 1;
  color: var(--hg-muted);
  font-size: 0.92rem;
  line-height: 1.58;
}

.hg-home-lane-arrow {
  margin-top: 4px;
  color: var(--hg-accent);
  font-size: 0.88rem;
  font-weight: 600;
}

.hg-home-lanes-note {
  margin: 28px 0 0;
  text-align: center;
  color: var(--hg-muted);
  font-size: 0.86rem;
}

.hg-home-lanes-note a {
  color: var(--hg-accent);
  font-weight: 500;
}

.hg-home-lanes-note a:hover {
  text-decoration: underline;
}

.hg-home-solutions-block {
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--hg-border);
}

.hg-home-solutions-block.is-market {
  margin-top: 32px;
}

.hg-home-solutions-head {
  margin-bottom: 20px;
}

.hg-home-solutions-head .hg-h3 {
  margin: 8px 0 0;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.hg-home-solutions-block .hg-ladder {
  margin-bottom: 20px;
}

.hg-home-solutions-block .hg-tier-table {
  margin-bottom: 0;
}

.hg-home .hg-cta-band .hg-h2 {
  max-width: 22ch;
  margin-inline: auto;
}

/* Homepage — premium core offer */

.hg-home-hero-premium {
  position: relative;
  padding: clamp(64px, 12vh, 120px) 0 clamp(56px, 8vh, 96px);
}

.hg-home-hero-premium::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 55% at 80% 20%, rgba(94, 207, 255, 0.09), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(212, 184, 106, 0.05), transparent 50%);
  content: "";
  pointer-events: none;
}

.hg-home-hero-premium .hg-h1 {
  max-width: 11em;
  font-size: clamp(2.5rem, 4.8vw, 3.85rem);
  letter-spacing: -0.04em;
}

.hg-home-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--hg-border);
}

.hg-home-proof-row span {
  color: var(--hg-muted);
  font-size: 0.86rem;
}

.hg-home-proof-row strong {
  display: block;
  margin-bottom: 2px;
  color: var(--hg-text);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hg-home-offer-card {
  position: relative;
  padding: 32px 30px;
  border: 1px solid rgba(94, 207, 255, 0.22);
  border-radius: var(--hg-radius);
  background: linear-gradient(165deg, rgba(11, 31, 44, 0.9), rgba(7, 22, 32, 0.75));
  box-shadow: var(--hg-shadow);
  overflow: hidden;
}

.hg-home-offer-glow {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 70%;
  height: 80%;
  background: radial-gradient(circle, rgba(94, 207, 255, 0.14), transparent 65%);
  pointer-events: none;
}

.hg-home-offer-eyebrow {
  position: relative;
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hg-gold);
}

.hg-home-offer-card h2 {
  position: relative;
  margin: 0 0 24px;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.hg-home-offer-lines {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hg-home-offer-line {
  padding: 18px 20px;
  border: 1px solid var(--hg-border);
  border-radius: var(--hg-radius-sm);
  background: rgba(3, 11, 16, 0.45);
}

.hg-home-offer-line.is-pipeline {
  border-color: rgba(94, 207, 255, 0.2);
}

.hg-home-offer-line.is-visibility {
  border-color: rgba(212, 184, 106, 0.22);
}

.hg-home-offer-line > span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hg-accent);
}

.hg-home-offer-line.is-visibility > span {
  color: var(--hg-gold);
}

.hg-home-offer-line p {
  margin: 0 0 10px;
  color: var(--hg-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.hg-home-offer-line a {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--hg-accent);
}

.hg-home-pillars {
  padding: clamp(56px, 8vh, 88px) 0;
  border-top: 1px solid var(--hg-border);
  border-bottom: 1px solid var(--hg-border);
  background: linear-gradient(180deg, rgba(7, 22, 32, 0.4), transparent);
}

.hg-home-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 40px);
}

.hg-home-pillars-grid article {
  padding: 0 8px;
}

.hg-home-pillar-num {
  display: block;
  margin-bottom: 14px;
  color: var(--hg-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.hg-home-pillars-grid h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hg-home-pillars-grid p {
  margin: 0;
  color: var(--hg-muted);
  font-size: 0.92rem;
  line-height: 1.62;
}

.hg-home-lane-premium {
  border-color: rgba(94, 207, 255, 0.18);
  background: linear-gradient(165deg, rgba(11, 31, 44, 0.65), var(--hg-surface));
}

.hg-home-agents-teaser {
  padding: clamp(64px, 9vh, 96px) 0;
  border-top: 1px solid var(--hg-border);
}

.hg-home-agents-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}

.hg-home-agents-inner .hg-lead {
  margin-bottom: 24px;
}

.hg-home-agents-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hg-home-agents-preview-col {
  padding: 22px 20px;
  border: 1px solid var(--hg-border-strong);
  border-radius: var(--hg-radius);
  background: linear-gradient(165deg, var(--hg-surface-2), var(--hg-surface));
}

.hg-home-agents-preview-col.is-gold {
  border-color: rgba(212, 184, 106, 0.25);
}

.hg-home-agents-preview-col > span {
  display: block;
  margin-bottom: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hg-accent);
}

.hg-home-agents-preview-col.is-gold > span {
  color: var(--hg-gold);
}

.hg-home-agents-preview-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hg-home-agents-preview-col li {
  color: var(--hg-muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

/* Agents page */

.hg-agents-hero {
  padding: clamp(56px, 10vh, 104px) 0 clamp(48px, 7vh, 80px);
}

.hg-agents-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}

.hg-agents-hero .hg-h1 {
  max-width: 11em;
  font-size: clamp(2.35rem, 4.2vw, 3.5rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.hg-dept-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hg-dept-card {
  padding: 24px 26px;
  border: 1px solid var(--hg-border-strong);
  border-radius: var(--hg-radius);
  background: linear-gradient(165deg, var(--hg-surface-2), var(--hg-surface));
}

.hg-dept-card.is-pipeline {
  border-color: rgba(94, 207, 255, 0.22);
}

.hg-dept-card.is-market {
  border-color: rgba(212, 184, 106, 0.25);
}

.hg-dept-card > span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hg-accent);
}

.hg-dept-card.is-market > span {
  color: var(--hg-gold);
}

.hg-dept-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
  font-weight: 600;
}

.hg-dept-card > p {
  margin: 0 0 12px;
  color: var(--hg-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.hg-dept-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hg-dept-card li {
  position: relative;
  padding-left: 14px;
  color: var(--hg-text);
  font-size: 0.82rem;
  line-height: 1.4;
}

.hg-dept-card li::before {
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--hg-accent);
  opacity: 0.55;
  content: "";
}

.hg-dept-card.is-market li::before {
  background: var(--hg-gold);
}

.hg-agents-framing {
  border-top: 1px solid var(--hg-border);
  background: linear-gradient(180deg, rgba(7, 22, 32, 0.35), transparent);
}

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

.hg-dept-model article {
  padding: 26px 24px;
  border: 1px solid var(--hg-border);
  border-radius: var(--hg-radius);
  background: linear-gradient(165deg, var(--hg-surface-2), var(--hg-surface));
}

.hg-dept-model-num {
  display: block;
  margin-bottom: 12px;
  color: var(--hg-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hg-dept-model h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 600;
}

.hg-dept-model p {
  margin: 0;
  color: var(--hg-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.hg-agents-band.is-market {
  border-top: 1px solid var(--hg-border);
  background: linear-gradient(180deg, rgba(212, 184, 106, 0.04), transparent 60%);
}

.hg-agents-stack-bar.is-market .hg-agents-stack-step strong {
  color: var(--hg-gold);
}

/* PDF documents */

.hg-docs-band {
  border-top: 1px solid var(--hg-border);
  background: linear-gradient(180deg, rgba(94, 207, 255, 0.03), transparent 85%);
}

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

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

.hg-docs-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hg-docs-embed-wrap {
  margin-bottom: 24px;
}

.hg-doc-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 100%;
  padding: 20px 18px;
  border: 1px solid var(--hg-border);
  border-radius: var(--hg-radius-sm);
  background: linear-gradient(180deg, var(--hg-surface-2), var(--hg-surface));
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}

.hg-doc-card:hover {
  border-color: rgba(94, 207, 255, 0.3);
  box-shadow: var(--hg-shadow-soft);
  transform: translateY(-2px);
}

.hg-doc-card.is-featured {
  border-color: rgba(94, 207, 255, 0.35);
  background: linear-gradient(165deg, rgba(94, 207, 255, 0.08), var(--hg-surface));
}

.hg-doc-card.is-market .hg-doc-lane {
  color: var(--hg-gold);
}

.hg-doc-kind {
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hg-accent);
}

.hg-doc-lane {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--hg-muted);
}

.hg-doc-card h3 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
}

.hg-doc-card > p {
  margin: 0;
  flex: 1;
  color: var(--hg-muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.hg-doc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: auto;
  padding-top: 8px;
}

.hg-doc-open,
.hg-doc-dl {
  font-size: 0.8rem;
  font-weight: 600;
}

.hg-doc-open {
  color: var(--hg-accent);
}

.hg-doc-dl {
  color: var(--hg-muted);
}

.hg-doc-dl:hover,
.hg-doc-open:hover {
  color: var(--hg-text);
}

.hg-pdf-embed {
  border: 1px solid var(--hg-border-strong);
  border-radius: var(--hg-radius);
  background: var(--hg-surface);
  overflow: hidden;
  box-shadow: var(--hg-shadow-soft);
}

.hg-pdf-embed-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--hg-border);
  background: linear-gradient(180deg, var(--hg-surface-2), var(--hg-surface));
}

.hg-pdf-embed-head strong {
  display: block;
  margin-top: 4px;
  font-size: 0.95rem;
  font-weight: 600;
}

.hg-pdf-embed-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hg-pdf-embed-actions .hg-btn {
  font-size: 0.78rem;
  padding: 9px 14px;
}

.hg-pdf-embed-frame {
  display: block;
  width: 100%;
  border: 0;
  background: #0a1520;
}

.hg-pdf-embed-note {
  margin: 0;
  padding: 10px 18px 14px;
  color: var(--hg-muted);
  font-size: 0.74rem;
  line-height: 1.45;
  text-align: center;
}

.hg-docs-compact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.hg-docs-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--hg-border);
  border-radius: 999px;
  background: rgba(7, 22, 32, 0.7);
  color: var(--hg-muted);
  font-size: 0.8rem;
  font-weight: 600;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.hg-docs-chip:hover {
  border-color: rgba(94, 207, 255, 0.35);
  color: var(--hg-text);
  background: rgba(94, 207, 255, 0.06);
}

.hg-docs-chip b {
  color: var(--hg-text);
  font-weight: 600;
}

.hg-offer-briefs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.hg-offer-brief {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
  padding: 22px 20px;
  border: 1px solid var(--hg-border);
  border-radius: var(--hg-radius-sm);
  background: linear-gradient(180deg, var(--hg-surface-2), var(--hg-surface));
}

.hg-offer-brief.is-pipeline {
  border-color: rgba(94, 207, 255, 0.22);
}

.hg-offer-brief-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.hg-offer-brief-price {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--hg-accent);
}

.hg-offer-brief-status {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hg-muted);
}

.hg-offer-brief h3 {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.35;
}

.hg-offer-brief > p {
  margin: 0;
  flex: 1;
  color: var(--hg-muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.hg-doc-request {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--hg-accent);
}

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

.hg-brief-lane-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
  padding: 22px 20px;
  border: 1px solid var(--hg-border);
  border-radius: var(--hg-radius-sm);
  background: linear-gradient(180deg, var(--hg-surface-2), var(--hg-surface));
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}

.hg-brief-lane-card:hover {
  border-color: rgba(94, 207, 255, 0.32);
  box-shadow: var(--hg-shadow-soft);
  transform: translateY(-2px);
}

.hg-brief-lane-tag {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hg-accent);
}

.hg-brief-lane-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}

.hg-brief-lane-card p {
  margin: 0;
  flex: 1;
  color: var(--hg-muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.hg-brief-lane-link {
  margin-top: auto;
  padding-top: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--hg-accent);
}

/* Sell system — animations, infographics, case studies */

@keyframes hg-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

@keyframes hg-slide-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hg-orbit {
  from { transform: rotate(0deg) translateX(88px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(88px) rotate(-360deg); }
}

@keyframes hg-ring-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes hg-reveal-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hg-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.hg-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hg-pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hg-green);
  box-shadow: 0 0 12px rgba(74, 222, 128, 0.55);
  animation: hg-pulse 2s ease-in-out infinite;
}

.hg-slack-live,
.hg-updates-feed {
  padding: 20px 22px;
  border: 1px solid rgba(94, 207, 255, 0.22);
  border-radius: var(--hg-radius);
  background: linear-gradient(165deg, rgba(11, 31, 44, 0.95), rgba(7, 22, 32, 0.85));
  box-shadow: var(--hg-shadow);
}

.hg-slack-live-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hg-border);
  font-size: 0.88rem;
}

.hg-slack-live-head b {
  flex: 1;
  font-weight: 600;
}

.hg-slack-live-status {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(74, 222, 128, 0.12);
  color: var(--hg-green);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hg-slack-live-feed {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 220px;
}

.hg-slack-msg {
  padding: 12px 14px;
  border-left: 3px solid var(--hg-accent);
  border-radius: 0 var(--hg-radius-sm) var(--hg-radius-sm) 0;
  background: rgba(7, 22, 32, 0.65);
  animation: hg-slide-in 0.55s ease backwards;
  animation-delay: var(--delay, 0s);
  animation-fill-mode: both;
}

.hg-slack-msg.is-reply { border-left-color: var(--hg-green); }
.hg-slack-msg.is-book { border-left-color: var(--hg-gold); }
.hg-slack-msg.is-kpi { border-left-color: rgba(94, 207, 255, 0.5); }

.hg-slack-msg-tag {
  display: block;
  margin-bottom: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hg-muted);
}

.hg-slack-msg p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.45;
}

.hg-slack-live-caption,
.hg-updates-feed-caption {
  margin: 16px 0 0;
  color: var(--hg-muted);
  font-size: 0.8rem;
  line-height: 1.5;
  text-align: center;
}

.hg-updates-feed-head,
.hg-slack-live-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--hg-border);
  font-size: 0.88rem;
}

.hg-updates-feed-head b,
.hg-slack-live-head b {
  flex: 1;
  font-weight: 600;
}

.hg-updates-feed-status,
.hg-slack-live-status {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(74, 222, 128, 0.12);
  color: var(--hg-green);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hg-updates-channels {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.hg-updates-channels span {
  padding: 5px 12px;
  border: 1px solid var(--hg-border);
  border-radius: 999px;
  color: var(--hg-muted);
  background: rgba(3, 11, 16, 0.4);
  font-size: 0.72rem;
  font-weight: 600;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.hg-updates-channels span.is-active {
  border-color: rgba(94, 207, 255, 0.35);
  color: var(--hg-accent);
  background: rgba(94, 207, 255, 0.08);
}

.hg-updates-feed-body,
.hg-slack-live-feed {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 200px;
}

.hg-updates-msg,
.hg-slack-msg {
  padding: 12px 14px;
  border-left: 3px solid var(--hg-accent);
  border-radius: 0 var(--hg-radius-sm) var(--hg-radius-sm) 0;
  background: rgba(7, 22, 32, 0.65);
  animation: hg-slide-in 0.55s ease backwards;
  animation-delay: var(--delay, 0s);
  animation-fill-mode: both;
}

.hg-updates-msg.is-warm,
.hg-slack-msg.is-reply { border-left-color: var(--hg-green); }
.hg-updates-msg.is-book,
.hg-slack-msg.is-book { border-left-color: var(--hg-gold); }
.hg-updates-msg.is-kpi,
.hg-slack-msg.is-kpi { border-left-color: rgba(94, 207, 255, 0.5); }

.hg-updates-msg > span,
.hg-slack-msg-tag {
  display: block;
  margin-bottom: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hg-muted);
}

.hg-updates-msg p,
.hg-slack-msg p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.45;
}

.hg-operate-band {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.hg-operate-list-inline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
  text-align: left;
}

.hg-operate-list-inline li {
  padding: 14px 16px;
  border: 1px solid var(--hg-border);
  border-radius: var(--hg-radius-sm);
  background: rgba(7, 22, 32, 0.45);
  font-size: 0.86rem;
}

.hg-dept-simple-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.hg-dept-simple {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 26px;
  border: 1px solid var(--hg-border-strong);
  border-radius: var(--hg-radius);
  background: linear-gradient(165deg, var(--hg-surface-2), var(--hg-surface));
}

.hg-dept-simple.is-pipeline { border-color: rgba(94, 207, 255, 0.2); }
.hg-dept-simple.is-market { border-color: rgba(212, 184, 106, 0.22); }

.hg-dept-simple > span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hg-accent);
}

.hg-dept-simple.is-market > span { color: var(--hg-gold); }

.hg-dept-simple h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
}

.hg-dept-simple > p {
  margin: 0;
  flex: 1;
  color: var(--hg-muted);
  font-size: 0.9rem;
  line-height: 1.58;
}

.hg-dept-simple ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hg-dept-simple li {
  font-size: 0.84rem;
  color: var(--hg-text);
}

.hg-dept-simple > a {
  margin-top: 4px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--hg-accent);
}

.hg-operate-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.hg-operate-steps article {
  padding: 22px 20px;
  border: 1px solid var(--hg-border);
  border-radius: var(--hg-radius);
  background: linear-gradient(165deg, var(--hg-surface-2), var(--hg-surface));
}

.hg-operate-steps article strong {
  display: block;
  margin-bottom: 10px;
  color: var(--hg-accent);
  font-size: 1.1rem;
  font-weight: 700;
}

.hg-operate-steps h3 {
  margin: 0 0 6px;
  font-size: 0.95rem;
  font-weight: 600;
}

.hg-operate-steps p {
  margin: 0;
  color: var(--hg-muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.hg-tier-table {
  border: 1px solid var(--hg-border-strong);
  border-radius: var(--hg-radius);
  overflow: hidden;
}

.hg-tier-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.2fr;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--hg-border);
  font-size: 0.88rem;
  line-height: 1.45;
}

.hg-tier-row:last-child { border-bottom: none; }

.hg-tier-row.is-header {
  background: rgba(7, 22, 32, 0.6);
  color: var(--hg-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hg-tier-row:not(.is-header) span:first-child b {
  color: var(--hg-text);
  font-weight: 600;
}

.hg-tier-row:not(.is-header) span:not(:first-child) {
  color: var(--hg-muted);
}

.hg-home-simple {
  padding: clamp(56px, 8vh, 88px) 0;
  border-top: 1px solid var(--hg-border);
}

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

.hg-simple-card {
  padding: 28px 24px;
  border: 1px solid var(--hg-border);
  border-radius: var(--hg-radius);
  background: linear-gradient(165deg, var(--hg-surface-2), var(--hg-surface));
}

.hg-simple-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  color: var(--hg-accent);
}

.hg-simple-icon.is-gold { color: var(--hg-gold); }

.hg-simple-icon svg {
  width: 100%;
  height: 100%;
}

.hg-simple-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  font-weight: 600;
}

.hg-simple-card p {
  margin: 0;
  color: var(--hg-muted);
  font-size: 0.9rem;
  line-height: 1.58;
}

.hg-home-autopilot {
  padding: clamp(64px, 9vh, 96px) 0;
  border-top: 1px solid var(--hg-border);
  background:
    radial-gradient(ellipse 80% 50% at 70% 40%, rgba(94, 207, 255, 0.06), transparent),
    linear-gradient(180deg, rgba(7, 22, 32, 0.55), transparent);
}

.hg-autopilot-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}

.hg-autopilot-copy .hg-lead {
  margin-inline: 0;
  text-align: left;
}

.hg-autopilot-copy .hg-h2 {
  text-align: left;
}

.hg-autopilot-timeline {
  margin: 28px 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.hg-autopilot-timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, var(--hg-accent), rgba(212, 184, 106, 0.4));
  border-radius: 2px;
}

.hg-autopilot-timeline li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  padding: 14px 0;
}

.hg-autopilot-timeline-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(94, 207, 255, 0.35);
  border-radius: 50%;
  background: var(--hg-surface-2);
  color: var(--hg-accent);
  font-size: 0.78rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.hg-autopilot-timeline li strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.92rem;
}

.hg-autopilot-timeline li p {
  margin: 0;
  color: var(--hg-muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.hg-autopilot-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  margin-bottom: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--hg-border);
  border-bottom: 1px solid var(--hg-border);
}

.hg-autopilot-metric strong {
  display: block;
  color: var(--hg-accent);
  font-size: 1.2rem;
  font-weight: 700;
}

.hg-autopilot-metric span {
  color: var(--hg-muted);
  font-size: 0.74rem;
}

.hg-autopilot-panel {
  padding: 22px 24px;
  border: 1px solid rgba(94, 207, 255, 0.22);
  border-radius: var(--hg-radius);
  background: linear-gradient(165deg, rgba(11, 31, 44, 0.95), rgba(7, 22, 32, 0.88));
  box-shadow: var(--hg-shadow);
}

.hg-autopilot-panel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hg-border);
  font-size: 0.88rem;
}

.hg-autopilot-panel-head b {
  flex: 1;
  font-weight: 600;
}

.hg-autopilot-panel-live {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(74, 222, 128, 0.12);
  color: var(--hg-green);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hg-autopilot-diagram {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.hg-autopilot-col-label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hg-autopilot-col.is-run .hg-autopilot-col-label {
  color: var(--hg-accent);
}

.hg-autopilot-col.is-loop .hg-autopilot-col-label {
  color: var(--hg-gold);
}

.hg-autopilot-agents,
.hg-autopilot-pings {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hg-autopilot-agents li,
.hg-autopilot-pings li {
  padding: 6px 10px;
  border: 1px solid var(--hg-border);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  text-align: center;
}

.hg-autopilot-agents li.is-pipeline {
  color: var(--hg-accent);
  border-color: rgba(94, 207, 255, 0.25);
  background: rgba(94, 207, 255, 0.06);
}

.hg-autopilot-agents li.is-market {
  color: var(--hg-gold);
  border-color: rgba(212, 184, 106, 0.28);
  background: rgba(212, 184, 106, 0.06);
}

.hg-autopilot-pings li.is-lead {
  color: var(--hg-accent);
  border-color: rgba(94, 207, 255, 0.25);
}

.hg-autopilot-pings li.is-warm {
  color: var(--hg-green);
  border-color: rgba(74, 222, 128, 0.3);
}

.hg-autopilot-pings li.is-book {
  color: var(--hg-gold);
  border-color: rgba(212, 184, 106, 0.3);
}

.hg-autopilot-pings li.is-kpi {
  color: var(--hg-muted);
}

.hg-autopilot-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.hg-autopilot-channels span {
  padding: 4px 10px;
  border: 1px solid var(--hg-border);
  border-radius: 999px;
  color: var(--hg-muted);
  font-size: 0.65rem;
  font-weight: 600;
}

.hg-autopilot-channels span.is-active {
  color: var(--hg-accent);
  border-color: rgba(94, 207, 255, 0.35);
  background: rgba(94, 207, 255, 0.08);
}

.hg-autopilot-engine {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hg-autopilot-ring.is-inner {
  inset: 24px;
  border-style: solid;
  border-color: rgba(212, 184, 106, 0.15);
  animation-direction: reverse;
  animation-duration: 18s;
}

.hg-autopilot-flow-arrows {
  display: flex;
  gap: 48px;
  color: rgba(94, 207, 255, 0.45);
  font-size: 1.1rem;
  font-weight: 700;
}

.hg-autopilot-arrow-in,
.hg-autopilot-arrow-out {
  animation: hg-pulse 2.5s ease-in-out infinite;
}

.hg-autopilot-week {
  margin-bottom: 16px;
  padding: 14px 16px;
  border: 1px solid var(--hg-border);
  border-radius: var(--hg-radius-sm);
  background: rgba(0, 0, 0, 0.15);
}

.hg-autopilot-week-label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hg-muted);
}

.hg-autopilot-week-days {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hg-autopilot-week-days span {
  padding: 5px 10px;
  border: 1px solid var(--hg-border);
  border-radius: 999px;
  color: var(--hg-muted);
  font-size: 0.68rem;
  font-weight: 600;
}

.hg-autopilot-week-days span.is-done {
  color: rgba(230, 244, 252, 0.75);
  border-color: rgba(94, 207, 255, 0.2);
}

.hg-autopilot-week-days span.is-active {
  color: var(--hg-green);
  border-color: rgba(74, 222, 128, 0.35);
  background: rgba(74, 222, 128, 0.08);
  animation: hg-pulse 2s ease-in-out infinite;
}

.hg-autopilot-feed {
  padding: 16px 18px;
  border: none;
  background: rgba(0, 0, 0, 0.2);
  box-shadow: none;
}

.hg-autopilot-feed .hg-updates-feed-body {
  min-height: 0;
}

.hg-operate-list {
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hg-operate-list li {
  padding-left: 0;
  color: var(--hg-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.hg-operate-list strong {
  color: var(--hg-text);
}

.hg-autopilot-viz {
  position: relative;
  width: min(280px, 100%);
  height: 280px;
  margin-inline: auto;
}

.hg-autopilot-ring {
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(94, 207, 255, 0.25);
  border-radius: 50%;
  animation: hg-ring-spin 24s linear infinite;
}

.hg-autopilot-core {
  position: absolute;
  inset: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin: -44px 0 0 -44px;
  border: 1px solid rgba(94, 207, 255, 0.35);
  border-radius: 50%;
  background: var(--hg-surface-2);
  text-align: center;
  box-shadow: 0 0 32px rgba(94, 207, 255, 0.15);
}

.hg-autopilot-core span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hg-muted);
}

.hg-autopilot-core strong {
  font-size: 0.78rem;
  font-weight: 600;
}

.hg-autopilot-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 28px;
  margin: -14px 0 0 -28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hg-border-strong);
  border-radius: 999px;
  background: var(--hg-surface);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--hg-accent);
  animation: hg-orbit 12s linear infinite;
  transform-origin: 28px 14px;
}

.hg-autopilot-orbit.is-1 { animation-duration: 14s; animation-delay: 0s; }
.hg-autopilot-orbit.is-2 { animation-duration: 16s; animation-delay: -2s; color: var(--hg-text); }
.hg-autopilot-orbit.is-3 { animation-duration: 18s; animation-delay: -4s; }
.hg-autopilot-orbit.is-4 { animation-duration: 20s; animation-delay: -6s; color: var(--hg-gold); }
.hg-autopilot-orbit.is-5 { animation-duration: 22s; animation-delay: -8s; }

.hg-lane-bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hg-lane-bullets li {
  position: relative;
  padding-left: 14px;
  color: var(--hg-muted);
  font-size: 0.84rem;
  line-height: 1.4;
}

.hg-lane-bullets li::before {
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--hg-accent);
  opacity: 0.6;
  content: "";
}

.hg-home-hero-revenue {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--hg-border);
}

.hg-home-hero-rev-pill {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 16px;
  border: 1px solid var(--hg-border);
  border-radius: var(--hg-radius-sm);
  background: rgba(255, 255, 255, 0.02);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}

.hg-home-hero-rev-pill:hover {
  border-color: rgba(94, 207, 255, 0.35);
  transform: translateY(-2px);
}

.hg-home-hero-rev-pill.is-gold:hover {
  border-color: rgba(212, 184, 106, 0.4);
}

.hg-home-hero-rev-pill strong {
  color: var(--hg-accent);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hg-home-hero-rev-pill.is-gold strong {
  color: var(--hg-gold);
}

.hg-home-hero-rev-pill span {
  color: var(--hg-muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hg-home-niches {
  padding: clamp(64px, 9vh, 96px) 0;
  border-top: 1px solid var(--hg-border);
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(212, 184, 106, 0.05), transparent),
    linear-gradient(180deg, rgba(7, 22, 32, 0.4), transparent);
}

.hg-home-niche-total {
  max-width: 520px;
  margin: 0 auto 36px;
  padding: 28px 32px;
  border: 1px solid rgba(212, 184, 106, 0.22);
  border-radius: var(--hg-radius);
  background: linear-gradient(135deg, rgba(212, 184, 106, 0.06), rgba(94, 207, 255, 0.04));
  text-align: center;
}

.hg-home-niche-total-amount {
  display: block;
  font-size: clamp(2.5rem, 6vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--hg-gold);
}

.hg-home-niche-total-label {
  display: block;
  margin-top: 10px;
  color: var(--hg-muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.hg-home-niche-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.hg-home-niche-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 20px;
  border: 1px solid var(--hg-border);
  border-radius: var(--hg-radius-sm);
  background: linear-gradient(165deg, var(--hg-surface-2), var(--hg-surface));
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.hg-home-niche-card:hover {
  border-color: rgba(94, 207, 255, 0.35);
  transform: translateY(-3px);
  box-shadow: var(--hg-shadow-soft);
}

.hg-home-niche-card.is-gold {
  border-color: rgba(212, 184, 106, 0.28);
}

.hg-home-niche-card.is-gold:hover {
  border-color: rgba(212, 184, 106, 0.45);
}

.hg-home-niche-tag {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hg-muted);
}

.hg-home-niche-rev {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--hg-accent);
}

.hg-home-niche-card.is-gold .hg-home-niche-rev {
  color: var(--hg-gold);
}

.hg-home-niche-desc {
  flex: 1;
  color: var(--hg-muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.hg-home-niche-cta {
  margin-top: 6px;
  color: var(--hg-accent);
  font-size: 0.78rem;
  font-weight: 600;
}

.hg-home-niche-card.is-gold .hg-home-niche-cta {
  color: var(--hg-gold);
}

.hg-quote-rev {
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--hg-accent);
  background: rgba(94, 207, 255, 0.1);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hg-quote-rev.is-gold {
  color: var(--hg-gold);
  background: rgba(212, 184, 106, 0.12);
}

.hg-home-proof {
  padding: clamp(56px, 8vh, 88px) 0;
  border-top: 1px solid var(--hg-border);
}

.hg-quote-case {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--hg-accent);
}

.hg-faq-band {
  border-top: 1px solid var(--hg-border);
  background: linear-gradient(180deg, rgba(7, 22, 32, 0.35), transparent 85%);
}

.hg-hero-note {
  margin: 20px 0 0;
  color: var(--hg-muted);
  font-size: 0.86rem;
}

.hg-hero-note a {
  color: var(--hg-accent);
  font-weight: 500;
}

.hg-leads-minimal .hg-hero {
  padding-bottom: clamp(32px, 5vh, 56px);
}

.hg-leads-minimal .hg-demo-section {
  padding-top: clamp(40px, 6vh, 64px);
}

/* Case study pages */

.hg-case-page .hg-header {
  border-bottom: 1px solid var(--hg-border);
}

.hg-case-main {
  padding: clamp(40px, 8vh, 72px) 0 clamp(64px, 10vh, 96px);
}

.hg-case-article {
  max-width: 680px;
}

.hg-case-back {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--hg-muted);
  font-size: 0.86rem;
  font-weight: 500;
}

.hg-case-back:hover {
  color: var(--hg-accent);
}

.hg-case-article h1 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.hg-case-meta {
  margin: 0 0 28px;
  color: var(--hg-muted);
  font-size: 0.92rem;
}

.hg-case-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 36px;
  padding: 20px;
  border: 1px solid var(--hg-border-strong);
  border-radius: var(--hg-radius);
  background: linear-gradient(165deg, var(--hg-surface-2), var(--hg-surface));
}

.hg-case-stats strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--hg-accent);
}

.hg-case-stats span {
  font-size: 0.78rem;
  color: var(--hg-muted);
}

.hg-case-article section {
  margin-bottom: 32px;
}

.hg-case-article h2 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  font-weight: 600;
}

.hg-case-article p,
.hg-case-article li {
  color: var(--hg-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.hg-case-article ul {
  margin: 0;
  padding-left: 20px;
}

.hg-case-article blockquote {
  margin: 20px 0;
  padding: 18px 22px;
  border-left: 3px solid var(--hg-accent);
  border-radius: 0 var(--hg-radius-sm) var(--hg-radius-sm) 0;
  background: rgba(94, 207, 255, 0.06);
  color: var(--hg-text);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.5;
}

.hg-case-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--hg-border);
}

@media (prefers-reduced-motion: reduce) {
  .hg-slack-msg,
  .hg-pulse-dot,
  .hg-autopilot-ring,
  .hg-autopilot-orbit,
  .hg-reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Responsive */

@media (max-width: 960px) {
  .hg-home-hero-grid,
  .hg-agents-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hg-home-visual,
  .hg-home-offer-card,
  .hg-slack-live,
  .hg-updates-feed,
  .hg-dept-stack {
    order: -1;
  }

  .hg-autopilot-layout,
  .hg-simple-grid {
    grid-template-columns: 1fr;
  }

  .hg-home-insight-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hg-home-insight-inner span {
    text-align: left;
  }

  .hg-hero-grid,
  .hg-demo-layout,
  .hg-duo,
  .hg-flow,
  .hg-quotes,
  .hg-pricing,
  .hg-book-grid,
  .hg-contrast,
  .hg-qualify-grid,
  .hg-qualify-grid-3,
  .hg-growth-pillars,
  .hg-niche-grid,
  .hg-system-map,
  .hg-solutions-grid,
  .hg-agents-grid,
  .hg-ladder {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hg-ladder-step:nth-child(2) {
    border-right: none;
  }

  .hg-ladder-step:nth-child(odd) {
    border-bottom: 1px solid var(--hg-border);
  }

  .hg-stack,
  .hg-stats,
  .hg-directory-layout {
    grid-template-columns: 1fr;
  }

  .hg-quotes {
    grid-template-columns: 1fr;
  }

  .hg-hero-copy .hg-h1 {
    max-width: none;
  }

  .hg-demo-visual {
    order: -1;
  }

  .hg-lead-field {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .hg-header {
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .hg-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
    gap: 10px;
    scrollbar-width: none;
  }

  .hg-nav::-webkit-scrollbar {
    display: none;
  }

  .hg-nav a {
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 0.8rem;
  }

  .hg-lane-grid,
  .hg-docs-grid,
  .hg-docs-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hg-footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 1100px) and (min-width: 961px) {
  .hg-quotes {
    grid-template-columns: repeat(2, 1fr);
  }

  .hg-lane-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 640px) {
  .hg-niche-grid,
  .hg-qualify-grid,
  .hg-qualify-grid-3,
  .hg-growth-pillars,
  .hg-contrast,
  .hg-system-map,
  .hg-solutions-grid,
  .hg-solutions-grid-2,
  .hg-agents-grid,
  .hg-path-grid,
  .hg-home-pillars-grid,
  .hg-home-agents-inner,
  .hg-home-agents-preview,
  .hg-autopilot-layout,
  .hg-autopilot-diagram {
    grid-template-columns: 1fr;
  }

  .hg-autopilot-engine {
    order: -1;
    margin-bottom: 8px;
  }

  .hg-autopilot-col.is-run,
  .hg-autopilot-col.is-loop {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    align-items: start;
  }

  .hg-autopilot-agents,
  .hg-autopilot-pings {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hg-autopilot-flow-arrows {
    display: none;
  }

  .hg-simple-grid,
  .hg-case-stats,
  .hg-dept-simple-grid,
  .hg-operate-steps,
  .hg-operate-list-inline,
  .hg-tier-row,
  .hg-agents-hero-grid,
  .hg-dept-model,
  .hg-home-problems-grid,
  .hg-home-lanes-grid,
  .hg-home-niche-grid,
  .hg-docs-grid,
  .hg-docs-grid-2,
  .hg-docs-grid-4,
  .hg-value-stats,
  .hg-replace-grid,
  .hg-agents-stack-bar,
  .hg-offer-briefs-grid,
  .hg-brief-lanes-grid {
    grid-template-columns: 1fr;
  }

  .hg-pdf-embed-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .hg-ladder {
    grid-template-columns: 1fr;
  }

  .hg-ladder-step {
    border-right: none;
    border-bottom: 1px solid var(--hg-border);
  }

  .hg-ladder-step:last-child {
    border-bottom: none;
  }

  .hg-growth-bar {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hg-plan.featured {
    transform: none;
  }

  .hg-hero .hg-h1 br,
  .hg-home-hero-copy .hg-h1 br {
    display: none;
  }

  .hg-home-hero-copy .hg-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hg-home-hero-copy .hg-btn {
    width: 100%;
  }

  .hg-quote-stars {
    margin-left: 0;
    width: 100%;
  }
}