/**
 * HostStack enterprise homepage — premium infrastructure SaaS layout
 */

body.hs-enterprise-home {
  --ent-bg: #020913;
  --ent-panel: rgba(6, 18, 38, 0.88);
  --ent-border: rgba(56, 189, 248, 0.14);
  --ent-cyan: #38bdf8;
  --ent-emerald: #34d399;
  --ent-violet: #a78bfa;
  --ent-text: #e8f4ff;
  --ent-muted: #8bacc8;
  --ent-faint: #6b8aad;
}

/* Override global mobile h1 width cap — hero uses controlled line breaks */
body.hs-enterprise-home .hs-ent-hero__title {
  max-width: none;
}

.hs-ent-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(1.75rem, 4vw, 3rem) 0 clamp(2rem, 4vw, 3rem);
}

.hs-ent-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 18% 0%, rgba(56, 189, 248, 0.12), transparent 58%),
    radial-gradient(ellipse 55% 45% at 88% 15%, rgba(99, 102, 241, 0.08), transparent 55%);
}

.hs-ent-hero__shell {
  position: relative;
  z-index: 1;
}

.hs-ent-hero__layout {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: stretch;
}

@media (min-width: 1024px) {
  .hs-ent-hero__layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(1.25rem, 2.5vw, 2rem);
    align-items: center;
  }
}

.hs-ent-hero__copy {
  max-width: 36rem;
}

.hs-ent-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ent-emerald);
  border: 1px solid rgba(52, 211, 153, 0.32);
  background: rgba(52, 211, 153, 0.07);
}

.hs-ent-eyebrow__dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--ent-emerald);
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.18);
}

.hs-ent-hero__title {
  margin: 0.85rem 0 0;
  font-family: var(--hs-font-display, "Space Grotesk", system-ui, sans-serif);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--ent-text);
}

.hs-ent-hero__title-line {
  display: block;
  font-size: clamp(1.85rem, 4.2vw, 3rem);
}

.hs-ent-hero__title-line--accent {
  margin-top: 0.15em;
  color: #c8dff5;
}

.hs-ent-hero__lead {
  margin: 1rem 0 0;
  max-width: 34rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ent-muted);
}

.hs-ent-hero__lead a {
  color: var(--ent-cyan);
  font-weight: 600;
  text-decoration: none;
}

.hs-ent-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.35rem;
}

.hs-ent-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 1.35rem 0 0;
  padding: 0;
}

@media (min-width: 640px) {
  .hs-ent-hero__stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.hs-ent-hero__stat {
  margin: 0;
  padding: 0.65rem 0.7rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(56, 189, 248, 0.12);
  background: rgba(4, 12, 28, 0.55);
}

.hs-ent-hero__stat dt {
  margin: 0;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ent-faint, #6b8aad);
}

.hs-ent-hero__stat dd {
  margin: 0.25rem 0 0;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ent-cyan);
}

.hs-ent-hero__stat dd span {
  display: block;
  margin-top: 0.15rem;
  font-family: var(--hs-font-body, Inter, system-ui, sans-serif);
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--ent-muted);
  line-height: 1.35;
}

.hs-ent-hint {
  margin: 0.65rem 0 0;
  font-size: 0.6875rem;
  line-height: 1.45;
  color: var(--ent-faint, #6b8aad);
}

/* Trust metrics strip (below hero) */
.hs-ent-proof-strip {
  margin-top: -0.25rem;
  margin-bottom: 0.5rem;
}

.hs-ent-proof-strip__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .hs-ent-proof-strip__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
  }
}

.hs-ent-proof-strip__item {
  padding: 0.75rem 0.85rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(56, 189, 248, 0.12);
  background: rgba(4, 12, 28, 0.55);
}

.hs-ent-proof-strip__val {
  display: block;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ent-cyan);
}

.hs-ent-proof-strip__lbl {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.6875rem;
  line-height: 1.35;
  color: var(--ent-muted);
}

.hs-ent-proof-strip__hint {
  margin: 0.55rem 0 0;
  font-size: 0.625rem;
  color: var(--ent-faint, #6b8aad);
}

/* Unified infrastructure panel */
.hs-ent-hero__panel {
  border-radius: 1rem;
  border: 1px solid rgba(56, 189, 248, 0.16);
  background:
    linear-gradient(165deg, rgba(10, 26, 52, 0.96) 0%, rgba(4, 12, 28, 0.98) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 24px 56px rgba(0, 0, 0, 0.38);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 0;
}

@media (min-width: 1024px) {
  .hs-ent-hero__panel {
    padding: 1.15rem;
  }
}

.hs-ent-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(56, 189, 248, 0.1);
}

.hs-ent-panel__label {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ent-text);
}

.hs-ent-panel__sub {
  margin: 0.2rem 0 0;
  font-size: 0.75rem;
  color: var(--ent-muted);
}

.hs-ent-panel__status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(52, 211, 153, 0.28);
  background: rgba(52, 211, 153, 0.08);
  font-size: 0.6875rem;
  font-weight: 600;
  color: #a7f3d0;
  text-decoration: none !important;
  white-space: nowrap;
}

.hs-ent-panel__status.is-warn {
  border-color: rgba(251, 191, 36, 0.35);
  background: rgba(251, 191, 36, 0.08);
  color: #fde68a;
}

.hs-ent-panel__status-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: #34d399;
  box-shadow: 0 0 0 2px rgba(52, 211, 153, 0.25);
}

.hs-ent-panel__status.is-warn .hs-ent-panel__status-dot {
  background: #fbbf24;
  box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.25);
}

.hs-ent-panel__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  flex: 1;
}

@media (min-width: 640px) {
  .hs-ent-panel__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.hs-ent-panel__cell {
  margin: 0;
  padding: 0.75rem 0.65rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(56, 189, 248, 0.1);
  background: rgba(2, 9, 19, 0.55);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hs-ent-panel__cell:hover {
  border-color: rgba(56, 189, 248, 0.28);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.hs-ent-panel__cell-icon {
  display: block;
  font-size: 1rem;
  line-height: 1;
  margin-bottom: 0.35rem;
  opacity: 0.9;
}

.hs-ent-panel__cell-title {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ent-text);
}

.hs-ent-panel__cell-meta {
  margin: 0.2rem 0 0;
  font-size: 0.6875rem;
  line-height: 1.4;
  color: var(--ent-muted);
}

.hs-ent-panel__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(56, 189, 248, 0.08);
}

.hs-ent-panel__foot a {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ent-cyan);
  text-decoration: none;
}

.hs-ent-panel__foot a:hover {
  color: #7dd3fc;
  text-decoration: none;
}

@media (max-width: 639px) {
  .hs-ent-cta-row {
    flex-direction: column;
  }

  .hs-ent-cta-row .hs-btn {
    width: 100%;
    justify-content: center;
    min-height: 2.875rem;
  }

  .hs-ent-hero {
    padding-top: 1.25rem;
  }

  .hs-ent-hero__copy {
    max-width: none;
  }
}

/* Section shells */
.hs-ent-section {
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.hs-ent-section__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 1.75rem;
}

.hs-ent-section__kicker {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ent-cyan);
  margin: 0;
}

.hs-ent-section__head h2 {
  margin: 0.45rem 0 0;
  font-family: var(--hs-font-display, "Space Grotesk", system-ui, sans-serif);
  font-size: clamp(1.375rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--ent-text);
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.hs-ent-section__head p {
  margin: 0.55rem 0 0;
  color: var(--ent-muted);
  font-size: 0.9375rem;
  line-height: 1.62;
  max-width: 42rem;
  margin-inline: auto;
}

.hs-ent-section__head a {
  color: var(--ent-cyan);
  font-weight: 600;
}

.hs-ent-split__title {
  margin: 0.45rem 0 0;
  font-family: var(--hs-font-display, "Space Grotesk", system-ui, sans-serif);
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ent-text);
}

.hs-ent-split__lead {
  margin: 0.65rem 0 0;
  color: var(--ent-muted);
  font-size: 0.9375rem;
  line-height: 1.62;
  max-width: 38rem;
}

.hs-ent-split__lead a {
  color: var(--ent-cyan);
  font-weight: 600;
}

.hs-ent-checklist {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  color: var(--ent-muted);
  line-height: 1.55;
}

.hs-ent-checklist li {
  padding: 0.35rem 0;
}

.hs-ent-checklist a {
  color: var(--ent-cyan);
  font-weight: 600;
}

.hs-ent-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 1rem;
}

.hs-ent-chip {
  padding: 0.45rem 0.65rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(4, 12, 28, 0.55);
  text-align: center;
}

.hs-ent-card__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ent-text);
}

.hs-ent-card__links {
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
  line-height: 1.75;
}

.hs-ent-card__links a {
  color: var(--ent-cyan);
  font-weight: 600;
}

.hs-ent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.hs-ent-actions--center {
  justify-content: center;
  margin-top: 1.25rem;
}

/* Cards grid */
.hs-ent-grid {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.hs-ent-grid > * {
  min-width: 0;
}

.hs-ent-grid--2 {
  grid-template-columns: 1fr;
}

.hs-ent-grid--3 {
  grid-template-columns: 1fr;
}

.hs-ent-grid--4 {
  grid-template-columns: repeat(2, 1fr);
}

.hs-ent-grid--stack {
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .hs-ent-grid--2 { grid-template-columns: repeat(2, 1fr); }
  .hs-ent-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .hs-ent-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.hs-ent-card {
  position: relative;
  border-radius: 0.875rem;
  border: 1px solid rgba(56, 189, 248, 0.12);
  background:
    linear-gradient(165deg, rgba(10, 26, 52, 0.94) 0%, rgba(4, 12, 28, 0.97) 100%);
  padding: 1.15rem 1.2rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.035) inset,
    0 10px 28px rgba(0, 0, 0, 0.24);
}

.hs-ent-card:hover {
  border-color: rgba(56, 189, 248, 0.26);
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 16px 40px rgba(0, 0, 0, 0.32);
}

.hs-ent-card__num {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--ent-cyan);
  letter-spacing: 0.08em;
}

.hs-ent-card h3 {
  margin: 0.5rem 0 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ent-text);
}

.hs-ent-card__cta {
  margin-top: 1rem;
}

.hs-ent-card p {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ent-muted);
  flex: 1;
}

.hs-ent-card a {
  color: var(--ent-cyan);
}

/* Benchmark cards */
.hs-ent-bench {
  text-align: center;
  align-items: center;
}

.hs-ent-bench__value {
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  font-weight: 800;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  color: var(--ent-cyan);
  letter-spacing: -0.02em;
}

.hs-ent-bench__suite {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ent-violet);
  margin-top: 0.35rem;
}

.hs-ent-bench__ctx {
  font-size: 0.75rem;
  color: var(--ent-muted);
  margin-top: 0.35rem;
}

/* Latency table */
.hs-ent-table-wrap {
  overflow-x: auto;
  border-radius: 0.875rem;
  border: 1px solid rgba(56, 189, 248, 0.12);
  background:
    linear-gradient(165deg, rgba(10, 26, 52, 0.92) 0%, rgba(4, 12, 28, 0.96) 100%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.hs-ent-table-wrap--spaced {
  margin-top: 1.15rem;
}

.hs-ent-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.hs-ent-table th,
.hs-ent-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(56, 189, 248, 0.08);
}

.hs-ent-table th {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ent-muted);
  background: rgba(2, 9, 19, 0.5);
}

.hs-ent-table td {
  color: var(--ent-text);
}

.hs-ent-table tr:last-child td {
  border-bottom: 0;
}

.hs-ent-table .hs-ent-rtt {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-weight: 600;
  color: var(--ent-emerald);
}

/* Pricing cards */
.hs-ent-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hs-ent-price-card--featured {
  border-color: rgba(167, 139, 250, 0.38);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 0 0 1px rgba(167, 139, 250, 0.12),
    0 20px 48px rgba(0, 0, 0, 0.32);
}

.hs-ent-price-tag {
  position: absolute;
  top: -0.55rem;
  right: 1rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: linear-gradient(90deg, #7c3aed, #2563eb);
  color: #fff;
}

.hs-ent-price {
  margin: 0.75rem 0 0;
  font-size: 2rem;
  font-weight: 800;
  color: var(--ent-text);
}

.hs-ent-price small {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ent-muted);
}

.hs-ent-spec-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  flex: 1;
}

.hs-ent-spec-list li {
  font-size: 0.8rem;
  color: var(--ent-muted);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(56, 189, 248, 0.06);
}

.hs-ent-spec-list li:last-child {
  border-bottom: 0;
}

/* Deploy flow */
.hs-ent-flow {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .hs-ent-flow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
  }
}

.hs-ent-flow__step {
  position: relative;
  padding: 1rem 0.95rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(56, 189, 248, 0.12);
  background:
    linear-gradient(165deg, rgba(8, 20, 40, 0.9) 0%, rgba(2, 9, 19, 0.95) 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03) inset;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.hs-ent-flow__step:hover {
  border-color: rgba(56, 189, 248, 0.24);
  transform: translateY(-1px);
}

.hs-ent-flow__num {
  font-size: 0.625rem;
  font-weight: 800;
  color: var(--ent-cyan);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: 0.06em;
}

.hs-ent-flow__title {
  margin: 0.45rem 0 0;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ent-text);
}

.hs-ent-flow__detail {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--ent-muted);
}

/* Logos strip */
.hs-ent-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.hs-ent-logos--spaced {
  margin-bottom: 1.35rem;
}

.hs-ent-logo-chip {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--ent-border);
  background: rgba(4, 12, 28, 0.5);
  font-size: 0.78rem;
  font-weight: 600;
  color: #94a3b8;
}

.hs-ent-logo-chip span {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--ent-muted);
  margin-top: 0.1rem;
}

/* Testimonials */
.hs-ent-quote {
  margin: 0;
  padding: 1.2rem;
  border-radius: 0.875rem;
  border: 1px solid rgba(56, 189, 248, 0.12);
  background:
    linear-gradient(165deg, rgba(10, 26, 52, 0.92) 0%, rgba(4, 12, 28, 0.96) 100%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.hs-ent-quote:hover {
  border-color: rgba(56, 189, 248, 0.22);
  transform: translateY(-1px);
}

.hs-ent-quote p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ent-text);
  font-style: italic;
}

.hs-ent-quote cite {
  display: block;
  margin-top: 0.85rem;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 600;
  color: var(--ent-cyan);
}

/* Transparency block */
.hs-ent-legal-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .hs-ent-legal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.hs-ent-legal-grid dl {
  margin: 0;
  font-size: 0.82rem;
}

.hs-ent-legal-grid dt {
  font-weight: 700;
  color: var(--ent-muted);
  margin-top: 0.65rem;
}

.hs-ent-legal-grid dt:first-child {
  margin-top: 0;
}

.hs-ent-legal-grid dd {
  margin: 0.15rem 0 0;
  color: var(--ent-text);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.78rem;
}

/* Mega CTA */
.hs-ent-mega-cta {
  text-align: center;
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  border-radius: 1rem;
  border: 1px solid rgba(56, 189, 248, 0.14);
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(56, 189, 248, 0.08), transparent 60%),
    linear-gradient(165deg, rgba(10, 26, 52, 0.94) 0%, rgba(4, 12, 28, 0.97) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 16px 40px rgba(0, 0, 0, 0.28);
}

.hs-ent-mega-cta h2 {
  margin: 0;
  font-family: var(--hs-font-display, "Space Grotesk", system-ui, sans-serif);
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ent-text);
}

.hs-ent-mega-cta__lead {
  margin: 0.65rem auto 0;
  max-width: 42rem;
  color: var(--ent-muted);
  font-size: 0.9375rem;
  line-height: 1.62;
}

.hs-ent-cta-row--center {
  justify-content: center;
  margin-top: 1.25rem;
}

/* Sticky mobile CTA */
.hs-ent-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: flex;
  gap: 0.5rem;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0));
  background: rgba(2, 9, 19, 0.96);
  border-top: 1px solid var(--ent-border);
  backdrop-filter: blur(12px);
}

.hs-ent-sticky .hs-btn {
  flex: 1;
  justify-content: center;
  min-height: 2.75rem;
}

@media (min-width: 768px) {
  .hs-ent-sticky {
    display: none;
  }
}

body.hs-enterprise-home.hs-sticky-safe {
  padding-bottom: calc(4.5rem + env(safe-area-inset-bottom, 0));
}

@media (min-width: 768px) {
  body.hs-enterprise-home.hs-sticky-safe {
    padding-bottom: 0;
  }
}

/* Compare highlight column */
.hs-ent-table .hs-ent-col-us {
  background: rgba(56, 189, 248, 0.06);
  font-weight: 600;
}

.hs-ent-split {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

@media (min-width: 960px) {
  .hs-ent-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 639px) {
  .hs-ent-section__head {
    text-align: left;
    margin-bottom: 1.35rem;
  }

  .hs-ent-section__head p {
    font-size: 0.875rem;
  }
}

.hs-ent-hint {
  font-size: 0.72rem;
  color: var(--ent-muted);
  opacity: 0.85;
  margin-top: 0.75rem;
}

.hs-ent-hint--spaced {
  margin-top: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .hs-ent-eyebrow__dot,
  .hs-ent-flow-line {
    animation: none;
  }
}
