:root {
  --hg-color-primary: var(--hg-color-blue-600);
  --hg-color-primary-strong: var(--hg-color-blue-700);
  --hg-color-secondary: var(--hg-color-green-600);
  --hg-color-accent: var(--hg-color-amber-500);
  --hg-color-surface: var(--hg-color-surface-primary);
  --hg-color-surface-muted: var(--hg-color-surface-secondary);
  --hg-color-border: var(--hg-color-border-default);
  --hg-color-text: var(--hg-color-text-primary);
  --hg-color-text-muted: var(--hg-color-text-secondary);
  --hg-color-success: var(--hg-color-green-700);
  --hg-color-warning: var(--hg-color-amber-700);
  --hg-color-danger: var(--hg-color-red-600);
  --hg-radius-sm: 4px;
  --hg-radius-md: 8px;
  --hg-radius-lg: 12px;
  --hg-shadow-sm: 0 1px 2px rgba(17, 24, 39, 0.08);
  --hg-shadow-md: 0 12px 28px rgba(17, 24, 39, 0.12);
  --hg-space-1: 4px;
  --hg-space-2: 8px;
  --hg-space-3: 12px;
  --hg-space-4: 16px;
  --hg-space-5: 24px;
  --hg-space-6: 32px;
}

/* Front marketing v2 */
.hg-front-v2 {
  --hg-front-max: 1248px;
  --hg-front-card-radius: var(--hg-radius-3);
}

.hg-front-v2 .hg-front-container {
  width: min(var(--hg-front-max), calc(100% - 48px));
}

.hg-front-v2 .hg-front-header {
  padding-inline: max(24px, calc((100vw - var(--hg-front-max)) / 2));
}

.hg-front-v2 .hg-front-button,
.hg-front-v2 .hg-front-button:hover,
.hg-front-v2 .hg-front-button:focus {
  border-radius: var(--hg-radius-3);
  transition: background var(--hg-duration-base) var(--hg-ease-standard),
    border-color var(--hg-duration-base) var(--hg-ease-standard),
    color var(--hg-duration-base) var(--hg-ease-standard),
    transform var(--hg-duration-base) var(--hg-ease-standard);
}

.hg-front-v2 .hg-front-button:hover {
  transform: translateY(-1px);
}

.hg-front-v2 .hg-front-button-primary {
  background: var(--hg-color-action-primary-bg);
  color: var(--hg-color-action-primary-text);
}

.hg-front-v2 .hg-front-button-primary:hover,
.hg-front-v2 .hg-front-button-primary:focus {
  background: var(--hg-color-action-primary-bg-hover);
}

.hg-hero-lab,
.hg-pricing-hero-rich {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--hg-color-border-subtle);
  background:
    linear-gradient(180deg, rgba(248, 248, 248, 0.84), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 18% 18%, rgba(59, 130, 246, 0.10), transparent 32%),
    var(--hg-color-surface-primary);
}

.hg-hero-lab::before,
.hg-pricing-hero-rich::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(10, 10, 10, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 10, 10, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

.hg-hero-lab-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1fr);
  gap: 72px;
  align-items: center;
}

.hg-hero-proof-row,
.hg-pricing-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--hg-space-3);
  margin-top: var(--hg-space-6);
}

.hg-hero-proof-row span,
.hg-pricing-hero-metrics span {
  display: grid;
  gap: 2px;
  min-height: 72px;
  align-content: center;
  padding: var(--hg-space-4);
  border: 1px solid var(--hg-color-border-default);
  border-radius: var(--hg-front-card-radius);
  background: rgba(255, 255, 255, 0.78);
  color: var(--hg-color-text-secondary);
  line-height: 1.35;
}

.hg-hero-proof-row strong,
.hg-pricing-hero-metrics strong {
  color: var(--hg-color-text-primary);
}

.hg-ops-console {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--hg-color-border-default);
  border-radius: var(--hg-radius-3);
  background: var(--hg-color-surface-primary);
  box-shadow: 0 24px 70px rgba(10, 10, 10, 0.12);
}

.hg-ops-console::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--hg-color-blue-600), var(--hg-color-green-600), var(--hg-color-purple-600));
}

.hg-ops-console-top {
  display: flex;
  align-items: center;
  gap: var(--hg-space-2);
  padding: var(--hg-space-4);
  border-bottom: 1px solid var(--hg-color-border-subtle);
  background: var(--hg-color-surface-secondary);
}

.hg-ops-console-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--hg-color-gray-400);
}

.hg-ops-console-top small {
  margin-left: var(--hg-space-3);
  color: var(--hg-color-text-tertiary);
}

.hg-ops-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--hg-space-4);
  padding: var(--hg-space-6);
}

.hg-ops-status small,
.hg-ops-grid small,
.hg-ops-timeline small {
  display: block;
  color: var(--hg-color-text-tertiary);
}

.hg-ops-status strong {
  display: block;
  margin-top: var(--hg-space-1);
  color: var(--hg-color-text-primary);
  font-size: 24px;
}

.hg-ops-status > span {
  padding: var(--hg-space-1) var(--hg-space-3);
  border-radius: var(--hg-radius-pill);
  background: var(--hg-color-status-protected-bg);
  color: var(--hg-color-status-protected-text);
  font-size: 12px;
  font-weight: 900;
}

.hg-ops-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--hg-space-3);
  padding: 0 var(--hg-space-6) var(--hg-space-6);
}

.hg-ops-grid article,
.hg-ops-timeline,
.hg-capability-grid article,
.hg-compare-panel,
.hg-solution-mini,
.hg-solution-paths-rich article {
  border: 1px solid var(--hg-color-border-default);
  border-radius: var(--hg-front-card-radius);
  background: var(--hg-color-surface-primary);
}

.hg-ops-grid article {
  padding: var(--hg-space-4);
}

.hg-ops-grid i {
  color: var(--hg-color-icon-brand);
}

.hg-ops-grid strong {
  display: block;
  margin-top: var(--hg-space-2);
  color: var(--hg-color-text-primary);
}

.hg-ops-timeline {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) auto;
  gap: var(--hg-space-4);
  align-items: center;
  margin: 0 var(--hg-space-6) var(--hg-space-6);
  padding: var(--hg-space-4);
  background: var(--hg-color-surface-secondary);
}

.hg-ops-timeline > span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--hg-color-green-600);
  box-shadow: 0 0 0 6px var(--hg-color-green-50);
}

.hg-ops-timeline strong,
.hg-solution-mini strong,
.hg-compare-panel strong,
.hg-solution-paths-rich strong {
  display: block;
  color: var(--hg-color-text-primary);
}

.hg-ops-timeline a {
  color: var(--hg-color-link-default);
  font-weight: 900;
  text-decoration: none;
}

.hg-logo-strip {
  overflow: hidden;
  padding: 64px 0 65px;
  border-bottom: 1px solid #f5f5f5;
  background: #ffffff;
}

.hg-logo-strip-container {
  position: relative;
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 0 32px;
  overflow: hidden;
}

.hg-logo-strip-container::before,
.hg-logo-strip-container::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 120px;
  pointer-events: none;
}

.hg-logo-strip-container::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.hg-logo-strip-container::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.hg-logo-strip-track {
  display: flex;
  width: max-content;
  opacity: 0.6;
  animation: hg-logo-marquee 34s linear infinite;
}

.hg-logo-strip-group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 64px;
  padding: 0 32px;
}

.hg-logo-mark {
  display: inline-flex;
  height: 30px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.hg-logo-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.hg-logo-mark-stripe,
.hg-logo-mark-aws,
.hg-logo-mark-cloudflare {
  width: 37.5px;
}

.hg-logo-mark-slack {
  width: 26.25px;
}

.hg-logo-mark-github {
  width: 29.06px;
}

.hg-logo-mark-digitalocean {
  width: 30px;
}

@keyframes hg-logo-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hg-logo-strip-track {
    animation: none;
    transform: translate3d(0, 0, 0);
  }

  .hg-template-slider-track {
    animation: none;
    transform: translate3d(0, 0, 0);
  }

  .hg-steps-slider-list button.is-active .hg-steps-progress span {
    animation: none;
    width: 100%;
  }
}

.hg-front-section.hg-capabilities-section {
  padding: 92px 0 88px;
  background: #fafafa;
}

.hg-capabilities-section .hg-front-container {
  width: min(1200px, calc(100% - 48px));
}

.hg-capabilities-section .hg-front-section-heading {
  max-width: 650px;
  margin: 0 0 48px;
  text-align: left;
}

.hg-capabilities-section .hg-front-section-heading h2 {
  margin: 0;
  color: #171717;
  font-family: var(--hg-font-family-sans);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

.hg-capabilities-section .hg-front-section-heading p {
  max-width: 640px;
  margin: 18px 0 0;
  color: #737373;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

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

.hg-capability-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 406px;
  padding: 34px 32px 32px;
  border: 1px solid var(--hg-color-border-default);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: none;
  transition: transform var(--hg-duration-base) var(--hg-ease-standard),
    border-color var(--hg-duration-base) var(--hg-ease-standard),
    box-shadow var(--hg-duration-base) var(--hg-ease-standard);
}

.hg-capability-grid article:hover,
.hg-solution-paths-rich article:hover,
.hg-pricing-card:hover,
.hg-front-plan:hover {
  transform: translateY(-2px);
  border-color: var(--hg-color-border-strong);
}

.hg-capability-mock {
  position: relative;
  display: grid;
  width: 100%;
  height: 180px;
  place-items: center;
  margin-top: auto;
  overflow: hidden;
  border: 1px solid #ececec;
  border-radius: 8px;
  background:
    linear-gradient(rgba(10, 10, 10, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 10, 10, 0.035) 1px, transparent 1px),
    #fafafa;
  background-size: 24px 24px;
}

.hg-capability-mock::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 22%, rgba(0, 123, 255, 0.14), transparent 28%),
    radial-gradient(circle at 82% 72%, rgba(236, 72, 153, 0.10), transparent 28%);
}

.hg-capability-grid article > i {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 12px;
  background: #f5f5f5;
  color: #171717;
  font-size: 18px;
}

.hg-capability-grid h3 {
  margin: 0 0 12px;
  color: #171717;
  font-family: var(--hg-font-family-sans);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
}

.hg-capability-grid p {
  max-width: 292px;
  margin: 0 0 36px;
  color: #737373;
  font-size: 14px;
  line-height: 1.42;
}

.hg-capability-browser,
.hg-capability-preview,
.hg-capability-shield,
.hg-capability-scan,
.hg-capability-rings,
.hg-capability-bars,
.hg-capability-columns,
.hg-capability-branch,
.hg-capability-chat,
.hg-capability-agent,
.hg-capability-canvas,
.hg-capability-tools {
  position: relative;
  z-index: 1;
}

.hg-capability-browser {
  position: absolute;
  top: 30px;
  left: 34px;
  display: flex;
  gap: 5px;
}

.hg-capability-browser span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d4d4d4;
}

.hg-capability-preview {
  display: grid;
  width: 168px;
  min-height: 96px;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
  padding: 18px;
  border: 1px solid #e7e7e7;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(10, 10, 10, 0.08);
}

.hg-capability-preview strong {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  grid-row: span 3;
  border-radius: 10px;
  background: #171717;
  color: #ffffff;
  font-size: 14px;
}

.hg-capability-preview span,
.hg-capability-scan span,
.hg-capability-bars span,
.hg-capability-chat span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: #d9d9d9;
}

.hg-capability-preview span:nth-child(2) { width: 78px; }
.hg-capability-preview span:nth-child(3) { width: 58px; }
.hg-capability-preview span:nth-child(4) { width: 88px; }

.hg-capability-shield {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border: 1px solid #d7eadf;
  border-radius: 24px;
  background: #f2fbf5;
  color: #16a34a;
  font-size: 34px;
  box-shadow: 0 18px 38px rgba(22, 163, 74, 0.12);
}

.hg-capability-scan {
  position: absolute;
  right: 34px;
  bottom: 28px;
  display: grid;
  width: 118px;
  gap: 8px;
  padding: 14px;
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
}

.hg-capability-scan span:nth-child(1) { width: 86px; background: #b9e8c7; }
.hg-capability-scan span:nth-child(2) { width: 68px; }
.hg-capability-scan span:nth-child(3) { width: 92px; }

.hg-capability-rings {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(#171717 0 78%, #ececec 78% 100%);
}

.hg-capability-rings span {
  grid-area: 1 / 1;
  border-radius: 50%;
}

.hg-capability-rings span:nth-child(1) {
  width: 68px;
  height: 68px;
  background: #ffffff;
}

.hg-capability-rings span:nth-child(2) {
  width: 42px;
  height: 42px;
  background: #f5f5f5;
}

.hg-capability-rings span:nth-child(3) {
  width: 16px;
  height: 16px;
  background: #171717;
}

.hg-capability-bars {
  position: absolute;
  right: 38px;
  bottom: 34px;
  display: grid;
  gap: 7px;
}

.hg-capability-bars span:nth-child(1) { width: 76px; }
.hg-capability-bars span:nth-child(2) { width: 54px; background: #b9d8ff; }
.hg-capability-bars span:nth-child(3) { width: 88px; }

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

.hg-capability-columns span {
  height: 96px;
  border: 1px solid #e7e7e7;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #f4f4f5);
}

.hg-capability-columns span:nth-child(2) {
  background: linear-gradient(180deg, #eff6ff, #ffffff);
}

.hg-capability-branch {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 18px;
}

.hg-capability-branch::before {
  content: "";
  position: absolute;
  right: 18px;
  left: 18px;
  height: 2px;
  background: #171717;
}

.hg-capability-branch i {
  position: relative;
  width: 13px;
  height: 13px;
  border: 2px solid #171717;
  border-radius: 50%;
  background: #ffffff;
}

.hg-capability-chat {
  display: grid;
  width: 176px;
  gap: 10px;
}

.hg-capability-chat span {
  height: 30px;
  border-radius: 14px 14px 14px 4px;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(10, 10, 10, 0.08);
}

.hg-capability-chat span:nth-child(2) {
  width: 118px;
  justify-self: end;
  border-radius: 14px 14px 4px 14px;
  background: #171717;
}

.hg-capability-agent {
  position: absolute;
  right: 42px;
  bottom: 34px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: #f5f5f5;
  color: #171717;
}

.hg-capability-canvas {
  display: grid;
  width: 170px;
  height: 102px;
  grid-template-columns: 1fr 1.25fr;
  gap: 10px;
  padding: 12px;
  border: 1px solid #e7e7e7;
  border-radius: 14px;
  background: #ffffff;
}

.hg-capability-canvas span {
  border-radius: 10px;
}

.hg-capability-canvas span:nth-child(1) {
  grid-row: span 2;
  background: #eff6ff;
}

.hg-capability-canvas span:nth-child(2) {
  background: #fdf2f8;
}

.hg-capability-canvas span:nth-child(3) {
  background: #f4f4f5;
}

.hg-capability-tools {
  position: absolute;
  left: 42px;
  bottom: 32px;
  display: flex;
  gap: 8px;
}

.hg-capability-tools i {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: #171717;
}

.hg-capability-tools i:nth-child(2) { background: #007bff; }
.hg-capability-tools i:nth-child(3) { background: #ec4899; }

.hg-template-slider-section {
  overflow: hidden;
  padding: 40px 0 60px;
  background: #fafafa;
}

.hg-template-slider-heading {
  display: flex;
  width: min(1200px, calc(100% - 48px));
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin: 0 auto 40px;
}

.hg-template-slider-heading > div {
  width: min(780px, 100%);
}

.hg-template-slider-heading h2 {
  margin: 0;
  color: #171717;
  font-family: var(--hg-font-family-sans);
  font-size: 48px;
  font-weight: 600;
  line-height: 56px;
  letter-spacing: 0;
}

.hg-template-slider-heading p {
  max-width: 650px;
  margin: 12px 0 0;
  color: #808080;
  font-size: 18px;
  font-weight: 400;
  line-height: 23.4px;
  letter-spacing: 0;
}

.hg-template-slider-button,
.hg-template-slider-button:hover,
.hg-template-slider-button:focus {
  display: inline-flex;
  width: 249px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 16px;
  background: #171717;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  text-decoration: none;
}

.hg-template-slider-button i {
  font-size: 12px;
}

.hg-template-slider {
  width: 100%;
  overflow: hidden;
}

.hg-template-slider-track {
  display: flex;
  width: max-content;
  animation: hg-template-slider-marquee 42s linear infinite;
}

.hg-template-slider-group {
  display: flex;
  flex: 0 0 auto;
  gap: 24px;
  padding-right: 24px;
}

.hg-template-card,
.hg-template-card:hover,
.hg-template-card:focus {
  position: relative;
  display: block;
  width: 400px;
  height: 520px;
  overflow: hidden;
  flex: 0 0 auto;
  border-radius: 8px;
  color: #ffffff;
  text-decoration: none;
}

.hg-template-card img {
  position: absolute;
  top: 0;
  left: -4.79%;
  width: 109.59%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.hg-template-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36, 36, 36, 0) 0%, rgba(36, 36, 36, 0) 62%, rgba(36, 36, 36, 0.75) 100%);
}

.hg-template-card span {
  position: absolute;
  z-index: 1;
  bottom: 20px;
  left: 24px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  white-space: nowrap;
}

.hg-steps-slider-section {
  padding: 80px 0 64px;
  overflow: hidden;
  background: #fafafa;
}

.hg-steps-slider-container {
  display: flex;
  width: min(1200px, calc(100% - 48px));
  flex-direction: column;
  gap: 40px;
  margin: 0 auto;
}

.hg-steps-slider-heading {
  max-width: 900px;
  min-height: 182px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hg-steps-slider-heading h2 {
  max-width: 685px;
  margin: 0;
  color: #171717;
  font-family: var(--hg-font-family-sans);
  font-size: 48px;
  font-weight: 500;
  line-height: 56px;
  letter-spacing: 0;
}

.hg-steps-slider-heading p {
  max-width: 685px;
  margin: 12px 0 0;
  color: #737373;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.hg-steps-slider-mock {
  position: relative;
  width: 100%;
  aspect-ratio: 1296 / 729;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
    url("../img/home-steps-texture.png") 0 0 / 625px 625px,
    #f7f7f7;
}

.hg-steps-slider-mock img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.012);
  transition: opacity 420ms var(--hg-ease-standard),
    transform 520ms var(--hg-ease-standard);
}

.hg-steps-slider-mock img.is-active {
  opacity: 1;
  transform: scale(1);
}

.hg-steps-slider-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.hg-steps-slider-list button {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  border: 0;
  background: transparent;
  color: #080808;
  font-family: var(--hg-font-family-sans);
  text-align: left;
  opacity: 0.5;
  transition: color var(--hg-duration-base) var(--hg-ease-standard),
    opacity var(--hg-duration-base) var(--hg-ease-standard);
}

.hg-steps-slider-list button.is-active {
  color: #080808;
  opacity: 1;
}

.hg-steps-progress {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  margin-bottom: 24px;
  overflow: hidden;
  background: #f0f0f0;
}

.hg-steps-progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: #080808;
}

.hg-steps-slider-list button.is-active .hg-steps-progress span {
  animation: hg-steps-progress var(--hg-steps-duration, 5200ms) linear forwards;
}

.hg-steps-slider-list strong {
  display: block;
  margin: 0;
  color: currentColor;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}

.hg-steps-slider-list em {
  display: block;
  max-width: 365px;
  margin-top: 16px;
  color: currentColor;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

@keyframes hg-steps-progress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.hg-plan-compare-section {
  position: relative;
  isolation: isolate;
  padding: 80px 0 64px;
  overflow: hidden;
  background: #171717;
}

.hg-plan-compare-section::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  width: min(1180px, 100%);
  height: 320px;
  background:
    radial-gradient(
      ellipse at 50% 0%,
      rgba(0, 123, 255, 0.22) 0%,
      rgba(0, 123, 255, 0.1) 30%,
      rgba(23, 23, 23, 0) 72%
    );
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.hg-plan-compare-container {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(1200px, calc(100% - 48px));
  flex-direction: column;
  gap: 40px;
  margin: 0 auto;
}

.hg-plan-compare-heading {
  display: flex;
  min-height: 182px;
  max-width: 900px;
  flex-direction: column;
  justify-content: center;
}

.hg-plan-compare-heading h2 {
  max-width: 685px;
  margin: 0;
  color: #ffffff;
  font-family: var(--hg-font-family-sans);
  font-size: 48px;
  font-weight: 400;
  line-height: 56px;
  letter-spacing: 0;
}

.hg-plan-compare-heading p {
  max-width: 685px;
  margin: 12px 0 0;
  color: #a3a3a3;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.hg-plan-compare-accordion {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.hg-plan-compare-group {
  min-width: 0;
  max-width: 100%;
  overflow: visible;
  border: 1px solid #262626;
  border-radius: 12px;
  background: rgba(38, 38, 38, 0.28);
}

.hg-plan-compare-group summary {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  border-bottom: 1px solid transparent;
  color: #ffffff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  list-style: none;
}

.hg-plan-compare-group summary::-webkit-details-marker {
  display: none;
}

.hg-plan-compare-group summary i {
  color: #737373;
  font-size: 12px;
  transition: transform 180ms var(--hg-ease-standard),
    color 180ms var(--hg-ease-standard);
}

.hg-plan-compare-group summary:hover i,
.hg-plan-compare-group summary:focus-visible i {
  color: #ffffff;
}

.hg-plan-compare-group summary:focus-visible {
  outline: 2px solid rgba(0, 123, 255, 0.45);
  outline-offset: -2px;
}

.hg-plan-compare-group[open] summary {
  border-bottom-color: #262626;
}

.hg-plan-compare-group[open] summary i {
  transform: rotate(180deg);
}

.hg-plan-compare-table-wrap {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  border-radius: 0 0 24px 24px;
  background: rgba(38, 38, 38, 0.4);
  backdrop-filter: blur(2px);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.38) rgba(255, 255, 255, 0.08);
}

.hg-plan-compare-table-wrap::-webkit-scrollbar {
  height: 8px;
}

.hg-plan-compare-table-wrap::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
}

.hg-plan-compare-table-wrap::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
}

.hg-plan-compare-table {
  width: 100%;
  min-width: 1030px;
  border-collapse: separate;
  border-spacing: 0;
  color: #a3a3a3;
  font-family: var(--hg-font-family-sans);
  font-size: 14px;
  line-height: 20px;
}

.hg-plan-compare-table th,
.hg-plan-compare-table td {
  height: 70px;
  padding: 24px;
  border: 0;
  border-top: 1px solid rgba(38, 38, 38, 0.5);
  vertical-align: middle;
}

.hg-plan-compare-table thead th {
  height: 69px;
  border-top: 0;
  border-bottom: 1px solid #262626;
  background: rgba(23, 23, 23, 0.5);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.hg-plan-compare-table thead th:first-child {
  text-align: left;
}

.hg-plan-compare-table th:first-child {
  width: auto;
}

.hg-plan-compare-table thead th:not(:first-child),
.hg-plan-compare-table td {
  width: 250px;
  text-align: center;
}

.hg-plan-compare-table tbody th {
  color: #d4d4d4;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
}

.hg-plan-compare-table tbody th > span {
  display: inline-block;
  max-width: calc(100% - 36px);
  vertical-align: middle;
}

.hg-plan-compare-table td {
  color: #a3a3a3;
  font-weight: 400;
}

.hg-plan-compare-table .is-featured {
  background: rgba(0, 123, 255, 0.05);
  color: #ffffff;
  font-weight: 500;
}

.hg-plan-compare-table thead .is-featured {
  color: #007bff;
  font-weight: 600;
}

.hg-plan-compare-table td i.fa-check {
  color: #ffffff;
  font-size: 14px;
}

.hg-plan-info {
  position: relative;
  display: inline-flex;
  width: 19px;
  height: 19px;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  padding: 0;
  border: 1px solid #525252;
  border-radius: 999px;
  background: transparent;
  color: #a3a3a3;
  font-size: 9px;
  line-height: 1;
  vertical-align: middle;
  cursor: help;
}

.hg-plan-info::after {
  position: absolute;
  z-index: 10;
  left: 0;
  bottom: calc(100% + 12px);
  width: max-content;
  max-width: min(300px, calc(100vw - 48px));
  padding: 10px 12px;
  border: 1px solid #404040;
  border-radius: 10px;
  background: #262626;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  color: #f5f5f5;
  content: attr(data-tooltip);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  opacity: 0;
  pointer-events: none;
  text-align: left;
  transform: translateY(4px);
  transition: opacity 160ms var(--hg-ease-standard),
    transform 160ms var(--hg-ease-standard);
  white-space: normal;
}

.hg-plan-info::before {
  position: absolute;
  z-index: 11;
  left: 5px;
  bottom: calc(100% + 7px);
  width: 10px;
  height: 10px;
  border-right: 1px solid #404040;
  border-bottom: 1px solid #404040;
  background: #262626;
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: rotate(45deg) translateY(4px);
  transition: opacity 160ms var(--hg-ease-standard),
    transform 160ms var(--hg-ease-standard);
}

.hg-plan-info:hover,
.hg-plan-info:focus-visible {
  border-color: #737373;
  color: #ffffff;
  outline: none;
}

.hg-plan-info:hover::before,
.hg-plan-info:hover::after,
.hg-plan-info:focus-visible::before,
.hg-plan-info:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.hg-plan-info:hover::before,
.hg-plan-info:focus-visible::before {
  transform: rotate(45deg) translateY(0);
}

.hg-website-build-section {
  padding: 80px 0 64px;
  overflow: clip;
  background: #fafafa;
}

.hg-website-build-container {
  display: flex;
  width: min(1200px, calc(100% - 48px));
  flex-direction: column;
  gap: 40px;
  margin: 0 auto;
}

.hg-website-build-heading {
  display: flex;
  max-width: 900px;
  min-height: 205px;
  flex-direction: column;
  justify-content: center;
}

.hg-website-build-heading h2 {
  max-width: 685px;
  margin: 0;
  color: #171717;
  font-family: var(--hg-font-family-sans);
  font-size: 48px;
  font-weight: 500;
  line-height: 56px;
  letter-spacing: 0;
}

.hg-website-build-heading p {
  max-width: 685px;
  margin: 12px 0 0;
  color: #737373;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.hg-website-build-scroll {
  position: relative;
  display: grid;
  min-height: 1780px;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 540px);
  gap: 60px;
  align-items: start;
}

.hg-website-build-copy {
  display: grid;
  gap: 80px;
  padding-top: 0;
}

.hg-website-build-step {
  display: grid;
  min-height: 540px;
  grid-template-columns: minmax(160px, 0.5fr) minmax(320px, 1fr);
  gap: 32px;
  color: #171717;
  opacity: 0.42;
  transition: opacity 240ms var(--hg-ease-standard);
}

.hg-website-build-step.is-active {
  opacity: 1;
}

.hg-website-build-step > span {
  color: #171717;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

.hg-website-build-step h3 {
  max-width: 410px;
  margin: 0 0 16px;
  color: #171717;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0;
}

.hg-website-build-step a {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid #d4d4d4;
  color: #525252;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  transition: color 180ms var(--hg-ease-standard),
    border-color 180ms var(--hg-ease-standard);
}

.hg-website-build-step a:hover,
.hg-website-build-step a:focus {
  border-color: #171717;
  color: #171717;
}

.hg-website-build-step a i {
  flex: 0 0 auto;
  color: currentColor;
  font-size: 13px;
}

.hg-website-build-media {
  position: relative;
  height: 1780px;
  padding: 0 16px;
}

.hg-website-build-sticky {
  position: sticky;
  top: 96px;
  width: 100%;
  aspect-ratio: 507.91 / 571.39;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(23, 23, 23, 0.12);
}

.hg-website-build-sticky figure {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 360ms var(--hg-ease-standard),
    transform 520ms var(--hg-ease-standard);
}

.hg-website-build-sticky figure.is-active {
  opacity: 1;
  transform: scale(1);
}

.hg-website-build-sticky img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hg-website-build-sticky figure::after {
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  background: linear-gradient(180deg, rgba(23, 23, 23, 0) 0%, rgba(23, 23, 23, 0.78) 100%);
  content: "";
}

.hg-website-build-sticky figcaption {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  gap: 6px;
  color: #ffffff;
}

.hg-website-build-sticky figcaption strong {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  line-height: 28px;
}

.hg-website-build-sticky figcaption span {
  max-width: 330px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 20px;
}

.hg-pricing-why-section .hg-website-build-scroll {
  min-height: 1540px;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 421px);
  gap: 64px;
}

.hg-pricing-why-section .hg-website-build-copy {
  gap: 70px;
}

.hg-pricing-why-section .hg-website-build-step {
  min-height: 460px;
  grid-template-columns: minmax(160px, 0.42fr) minmax(320px, 1fr);
  gap: 36px;
}

.hg-pricing-why-section .hg-website-build-step > span {
  color: #525252;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

.hg-pricing-why-section .hg-website-build-step.is-active > span {
  color: #171717;
}

.hg-pricing-why-section .hg-website-build-step p {
  max-width: 420px;
  margin: 0;
  color: #171717;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.hg-pricing-why-section .hg-website-build-media {
  height: 1540px;
  padding: 0;
}

.hg-pricing-why-section .hg-website-build-sticky {
  box-shadow: none;
}

.hg-pricing-why-section .hg-website-build-sticky img {
  object-position: left center;
}

.hg-pricing-services-section {
  padding: 88px 0 64px;
  background: #ffffff;
}

.hg-pricing-services-section .hg-front-container {
  width: min(1200px, calc(100% - 48px));
}

.hg-pricing-services-heading {
  max-width: 640px;
  margin: 0 0 44px;
}

.hg-pricing-services-heading h2 {
  margin: 0;
  color: #171717;
  font-family: var(--hg-font-family-sans);
  font-size: 48px;
  font-weight: 500;
  line-height: 56px;
  letter-spacing: 0;
}

.hg-pricing-services-heading p {
  max-width: 620px;
  margin: 16px 0 0;
  color: #737373;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.hg-pricing-services-grid {
  gap: 24px;
}

.hg-pricing-services-grid article {
  min-height: 406px;
  padding: 34px 32px 32px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: none;
}

.hg-pricing-services-grid article:hover {
  transform: none;
  border: 1px solid #e5e5e5;
  box-shadow: none;
}

.hg-pricing-services-grid h3 {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
}

.hg-pricing-services-grid p {
  max-width: 290px;
  margin-bottom: 36px;
  color: #737373;
  font-size: 18px;
  line-height: 28px;
}

.hg-pricing-services-grid .hg-capability-mock {
  height: 180px;
  border-color: #e5e5e5;
  border-radius: 8px;
  background-color: #fafafa;
}

.hg-testimonials-row-section {
  padding: 96px 80px 97px;
  border-bottom: 1px solid #f5f5f5;
  background: #ffffff;
}

.hg-testimonials-row-container {
  display: flex;
  width: min(1280px, 100%);
  flex-direction: column;
  gap: 64px;
  margin: 0 auto;
  padding: 0 32px;
}

.hg-testimonials-row-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.hg-testimonials-row-heading h2 {
  margin: 0;
  color: #171717;
  font-family: var(--hg-font-family-sans);
  font-size: 48px;
  font-weight: 500;
  line-height: 56px;
  letter-spacing: 0;
}

.hg-testimonials-row-heading p {
  margin: 0;
  color: #525252;
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
}

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

.hg-testimonial-card {
  position: relative;
  display: flex;
  min-height: 314px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 33px;
  border: 1px solid #f5f5f5;
  border-radius: 8px;
  background: #fafafa;
}

.hg-testimonial-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #171717;
  font-size: 14px;
  line-height: 1;
}

.hg-testimonial-card p {
  margin: 0;
  color: #404040;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}

.hg-testimonial-author {
  display: flex;
  align-items: center;
  margin-top: auto;
  padding-top: 8px;
}

.hg-testimonial-author img {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: 2px solid #ffffff;
  border-radius: 9999px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  object-fit: cover;
}

.hg-testimonial-author div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding-left: 16px;
}

.hg-testimonial-author strong {
  color: #171717;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.hg-testimonial-author span {
  color: #737373;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  white-space: nowrap;
}

.hg-testimonial-quote {
  position: absolute;
  top: 32px;
  right: 32px;
  color: #e5e5e5;
  font-size: 34px;
  line-height: 1;
}

.hg-final-cta-section {
  display: flex;
  min-height: 527px;
  align-items: center;
  justify-content: center;
  padding: 112px 24px;
  background: #171717;
}

.hg-final-cta-container {
  display: flex;
  width: min(832px, 100%);
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.hg-final-cta-container h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--hg-font-family-sans);
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  letter-spacing: 0;
}

.hg-final-cta-container h2 span,
.hg-final-cta-container h2 strong {
  display: block;
}

.hg-final-cta-container h2 strong {
  background: linear-gradient(90deg, #007bff 0%, #ec4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.hg-final-cta-container p {
  max-width: 730px;
  margin: 0;
  color: #a3a3a3;
  font-size: 20px;
  font-weight: 400;
  line-height: 32.5px;
}

.hg-final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 8px;
}

.hg-final-cta-button,
.hg-final-cta-button:hover,
.hg-final-cta-button:focus {
  display: inline-flex;
  width: 249px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 17px 25px;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  text-decoration: none;
}

.hg-final-cta-button-secondary,
.hg-final-cta-button-secondary:hover,
.hg-final-cta-button-secondary:focus {
  background: #ffffff;
  color: #404040;
}

.hg-final-cta-button-primary,
.hg-final-cta-button-primary:hover,
.hg-final-cta-button-primary:focus {
  background: #171717;
  color: #ffffff;
}

.hg-final-cta-button i {
  font-size: 12px;
}

.hg-home-footer {
  padding: 65px 80px 64px;
  border-top: 1px solid rgba(229, 229, 229, 0.08);
  background: #171717;
}

.hg-home-footer-container {
  display: flex;
  width: min(1280px, 100%);
  flex-direction: column;
  gap: 64px;
  margin: 0 auto;
  padding: 0 32px;
}

.hg-home-footer-main {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 48px;
}

.hg-home-footer-brand {
  display: flex;
  grid-column: span 2;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.hg-home-footer-logo,
.hg-home-footer-logo:hover,
.hg-home-footer-logo:focus {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
}

.hg-home-footer-logo span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  color: #171717;
  font-size: 16px;
}

.hg-home-footer-logo strong {
  display: block;
  padding-left: 12px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0;
}

.hg-home-footer-brand p {
  max-width: 448px;
  margin: 0;
  color: #a3a3a3;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
}

.hg-home-footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 8px;
}

.hg-home-footer-social a,
.hg-home-footer-social a:hover,
.hg-home-footer-social a:focus {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.6);
  color: #171717;
  font-size: 16px;
  text-decoration: none;
  transition: background 180ms var(--hg-ease-standard),
    color 180ms var(--hg-ease-standard);
}

.hg-home-footer-social a:hover,
.hg-home-footer-social a:focus {
  background: #ffffff;
}

.hg-home-footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 22px;
}

.hg-home-footer-nav strong {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.hg-home-footer-nav a,
.hg-home-footer-nav a:hover,
.hg-home-footer-nav a:focus {
  color: #a3a3a3;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  transition: color 180ms var(--hg-ease-standard);
}

.hg-home-footer-nav a:hover,
.hg-home-footer-nav a:focus {
  color: #ffffff;
}

.hg-home-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(229, 229, 229, 0.08);
}

.hg-home-footer-bottom p,
.hg-home-footer-bottom a,
.hg-home-footer-bottom a:hover,
.hg-home-footer-bottom a:focus {
  margin: 0;
  color: #737373;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
}

.hg-home-footer-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hg-home-footer-bottom a i {
  color: #22c55e;
  font-size: 8px;
}

@keyframes hg-template-slider-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.hg-comparison-split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 72px;
  align-items: center;
}

.hg-comparison-split h2 {
  margin: 0;
  color: var(--hg-color-text-primary);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.08;
}

.hg-comparison-split p {
  margin: var(--hg-space-4) 0 0;
  color: var(--hg-color-text-secondary);
  font-size: 18px;
  line-height: 1.65;
}

.hg-compare-panel {
  display: grid;
  overflow: hidden;
}

.hg-compare-panel > div {
  display: grid;
  gap: var(--hg-space-2);
  padding: var(--hg-space-5);
  border-bottom: 1px solid var(--hg-color-border-subtle);
}

.hg-compare-panel > div:first-child {
  background: var(--hg-color-gray-950);
}

.hg-compare-panel > div:first-child strong,
.hg-compare-panel > div:first-child span {
  color: var(--hg-color-gray-0);
}

.hg-compare-panel > div:last-child {
  border-bottom: 0;
}

.hg-compare-panel span,
.hg-solution-mini span,
.hg-solution-paths-rich span {
  color: var(--hg-color-text-secondary);
  line-height: 1.55;
}

.hg-plan-grid-rich .hg-front-plan {
  border-radius: var(--hg-front-card-radius);
  transition: transform var(--hg-duration-base) var(--hg-ease-standard),
    border-color var(--hg-duration-base) var(--hg-ease-standard);
}

.hg-plan-price {
  display: flex;
  align-items: baseline;
  gap: var(--hg-space-2);
}

.hg-plan-price strong {
  color: var(--hg-color-text-primary);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.hg-plan-price span {
  color: var(--hg-color-text-tertiary);
}

.hg-steps-rich article {
  position: relative;
  border-radius: var(--hg-front-card-radius);
}

.hg-solution-mini {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.hg-solution-mini > div {
  padding: var(--hg-space-5);
  border-bottom: 1px solid var(--hg-color-border-subtle);
}

.hg-solution-mini .hg-front-button {
  margin: var(--hg-space-5);
}

.hg-pricing-hero-rich {
  padding: 104px 0 80px;
}

.hg-pricing-hero-rich .hg-front-container {
  position: relative;
}

.hg-pricing-hero-metrics {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

.hg-pricing-table-rich {
  border-radius: var(--hg-front-card-radius);
}

.hg-pricing-table-rich .hg-pricing-table th {
  background: var(--hg-color-gray-950);
  color: var(--hg-color-gray-0);
}

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

.hg-payment-model > div:first-child {
  background: var(--hg-color-status-info-bg);
}

.hg-payment-model > div:first-child strong {
  color: var(--hg-color-text-primary);
}

.hg-payment-model > div:first-child span {
  color: var(--hg-color-text-secondary);
}

.hg-solution-paths-rich {
  gap: var(--hg-space-5);
}

.hg-solution-paths-rich article {
  padding: var(--hg-space-6);
  transition: transform var(--hg-duration-base) var(--hg-ease-standard),
    border-color var(--hg-duration-base) var(--hg-ease-standard);
}

.hg-solution-paths-rich p {
  margin-bottom: var(--hg-space-4);
}

[data-hg-animate] {
  will-change: transform, opacity;
}

@media (max-width: 1199px) {
  .hg-hero-lab-grid,
  .hg-comparison-split {
    grid-template-columns: 1fr;
  }

  .hg-ops-console {
    max-width: 720px;
  }

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

@media (max-width: 991px) {
  .hg-hero-proof-row,
  .hg-pricing-hero-metrics {
    grid-template-columns: 1fr;
  }

  .hg-front-v2 .hg-front-header {
    position: relative;
  }
}

@media (max-width: 720px) {
  .hg-front-section.hg-capabilities-section {
    padding: 64px 0;
  }

  .hg-capabilities-section .hg-front-container {
    width: min(100% - 32px, 1200px);
  }

  .hg-capabilities-section .hg-front-section-heading {
    margin-bottom: 32px;
  }

  .hg-capabilities-section .hg-front-section-heading h2 {
    font-size: 38px;
  }

  .hg-template-slider-section {
    padding: 36px 0 52px;
  }

  .hg-template-slider-heading {
    width: min(100% - 32px, 1200px);
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
  }

  .hg-template-slider-heading h2 {
    font-size: 38px;
    line-height: 44px;
  }

  .hg-template-slider-heading p {
    font-size: 16px;
    line-height: 22px;
  }

  .hg-template-slider-button,
  .hg-template-slider-button:hover,
  .hg-template-slider-button:focus {
    width: 100%;
  }

  .hg-template-card,
  .hg-template-card:hover,
  .hg-template-card:focus {
    width: 304px;
    height: 395px;
  }

  .hg-steps-slider-section {
    padding: 64px 0 56px;
  }

  .hg-steps-slider-container {
    width: min(100% - 32px, 1200px);
    gap: 32px;
  }

  .hg-steps-slider-heading {
    min-height: auto;
  }

  .hg-steps-slider-heading h2 {
    font-size: 38px;
    line-height: 44px;
  }

  .hg-steps-slider-heading p {
    font-size: 16px;
  }

  .hg-steps-slider-list {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hg-steps-slider-list em {
    max-width: none;
  }

  .hg-plan-compare-section {
    padding: 64px 0 56px;
  }

  .hg-plan-compare-container {
    width: min(100% - 32px, 1200px);
    gap: 32px;
  }

  .hg-plan-compare-heading {
    min-height: auto;
  }

  .hg-plan-compare-heading h2 {
    font-size: 38px;
    line-height: 44px;
  }

  .hg-plan-compare-heading p {
    font-size: 16px;
  }

  .hg-plan-compare-accordion {
    gap: 12px;
  }

  .hg-plan-compare-group {
    border-radius: 20px;
  }

  .hg-plan-compare-group summary {
    min-height: 58px;
    padding: 18px 20px;
    font-size: 14px;
  }

  .hg-plan-compare-table-wrap {
    margin-right: 0;
    border-radius: 0 0 20px 20px;
  }

  .hg-plan-compare-table {
    width: max-content;
    min-width: 880px;
  }

  .hg-plan-compare-table thead th:not(:first-child),
  .hg-plan-compare-table td {
    width: 190px;
  }

  .hg-plan-compare-table th,
  .hg-plan-compare-table td {
    padding: 20px;
  }

  .hg-website-build-section {
    padding: 64px 0 56px;
  }

  .hg-website-build-container {
    width: min(100% - 32px, 1200px);
    gap: 32px;
  }

  .hg-website-build-heading {
    min-height: auto;
  }

  .hg-website-build-heading h2 {
    font-size: 38px;
    line-height: 44px;
  }

  .hg-website-build-heading p {
    font-size: 16px;
  }

  .hg-website-build-scroll {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hg-website-build-copy {
    gap: 36px;
    order: 2;
  }

  .hg-website-build-step {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 12px;
    opacity: 1;
  }

  .hg-website-build-step h3 {
    max-width: none;
  }

  .hg-website-build-step a {
    min-height: 62px;
    font-size: 15px;
    line-height: 22px;
  }

  .hg-website-build-media {
    height: auto;
    padding: 0;
    order: 1;
  }

  .hg-website-build-sticky {
    position: relative;
    top: auto;
    max-width: 520px;
  }

  .hg-pricing-why-section .hg-website-build-scroll {
    min-height: 0;
    gap: 32px;
  }

  .hg-pricing-why-section .hg-website-build-copy {
    gap: 36px;
  }

  .hg-pricing-why-section .hg-website-build-step {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hg-pricing-why-section .hg-website-build-step p {
    max-width: none;
    font-size: 16px;
    line-height: 24px;
  }

  .hg-pricing-why-section .hg-website-build-media {
    height: auto;
  }

  .hg-testimonials-row-section {
    padding: 64px 0 56px;
  }

  .hg-testimonials-row-container {
    width: min(100% - 32px, 1280px);
    gap: 32px;
    padding: 0;
  }

  .hg-testimonials-row-heading h2 {
    font-size: 38px;
    line-height: 44px;
  }

  .hg-testimonials-row-heading p {
    font-size: 16px;
    line-height: 24px;
  }

  .hg-testimonials-row-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hg-testimonial-card {
    min-height: 0;
    padding: 28px;
  }

  .hg-testimonial-author span {
    white-space: normal;
  }

  .hg-final-cta-section {
    min-height: auto;
    padding: 72px 16px;
  }

  .hg-final-cta-container {
    gap: 24px;
  }

  .hg-final-cta-container h2 {
    font-size: 38px;
    line-height: 44px;
  }

  .hg-final-cta-container p {
    font-size: 16px;
    line-height: 26px;
  }

  .hg-final-cta-actions {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .hg-final-cta-button,
  .hg-final-cta-button:hover,
  .hg-final-cta-button:focus {
    width: min(100%, 320px);
  }

  .hg-home-footer {
    padding: 56px 0;
  }

  .hg-home-footer-container {
    width: min(100% - 32px, 1280px);
    gap: 40px;
    padding: 0;
  }

  .hg-home-footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hg-home-footer-brand {
    grid-column: auto;
  }

  .hg-home-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hg-home-footer-bottom p,
  .hg-home-footer-bottom a,
  .hg-home-footer-bottom a:hover,
  .hg-home-footer-bottom a:focus {
    white-space: normal;
  }

  .hg-front-v2 .hg-front-container {
    width: min(100% - 32px, var(--hg-front-max));
  }

  .hg-hero-lab,
  .hg-pricing-hero-rich {
    padding-top: 56px;
  }

  .hg-hero-lab-grid {
    gap: var(--hg-space-8);
  }

  .hg-ops-status,
  .hg-ops-timeline {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hg-ops-status {
    flex-direction: column;
    align-items: flex-start;
  }

  .hg-ops-grid,
  .hg-capability-grid,
  .hg-addon-grid,
  .hg-comparison-split {
    grid-template-columns: 1fr;
  }

  .hg-capability-grid article {
    min-height: auto;
  }
}

.hg-care-page .hg-dashboard-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--hg-space-4);
  margin-bottom: var(--hg-space-5);
}

.hg-care-form {
  display: grid;
  gap: var(--hg-space-4);
}

.hg-care-form label {
  color: var(--hg-color-text-secondary);
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 var(--hg-space-2);
}

.hg-care-form textarea {
  resize: vertical;
}

.hg-care-form-actions {
  align-items: center;
  display: flex;
  gap: var(--hg-space-4);
  justify-content: space-between;
}

.hg-care-form-actions p {
  color: var(--hg-color-text-secondary);
  margin: 0;
}

.hg-care-request-actions {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: var(--hg-space-2);
  min-width: 160px;
  text-align: right;
}

.hg-care-request-card {
  align-items: center;
  border: 1px solid var(--hg-color-border-default);
  border-radius: var(--hg-radius-lg);
  display: grid;
  gap: var(--hg-space-4);
  grid-template-columns: minmax(0, 1fr) auto;
  padding: var(--hg-space-5);
}

.hg-care-request-main h4 {
  font-size: 18px;
  margin: var(--hg-space-1) 0 var(--hg-space-2);
}

.hg-care-request-main h4 a {
  color: var(--hg-color-text-primary);
  text-decoration: none;
}

.hg-care-request-main p {
  color: var(--hg-color-text-secondary);
  margin: 0;
}

.hg-care-request-meta {
  color: var(--hg-color-text-tertiary);
  display: flex;
  flex-wrap: wrap;
  gap: var(--hg-space-3);
  margin-top: var(--hg-space-3);
}

.hg-care-detail {
  margin-bottom: var(--hg-space-5);
}

.hg-care-detail-header {
  align-items: flex-start;
  display: flex;
  gap: var(--hg-space-5);
  justify-content: space-between;
}

.hg-care-detail-header h3 {
  font-size: 28px;
  margin: var(--hg-space-1) 0 var(--hg-space-2);
}

.hg-care-detail-header p {
  color: var(--hg-color-text-secondary);
  margin: 0;
  max-width: 760px;
}

.hg-care-back-link {
  color: var(--hg-color-link-default);
  display: inline-flex;
  gap: var(--hg-space-2);
  margin-bottom: var(--hg-space-3);
  text-decoration: none;
}

.hg-care-detail-status {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: var(--hg-space-3);
}

.hg-care-detail-grid {
  display: grid;
  gap: var(--hg-space-3);
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  margin: var(--hg-space-5) 0;
}

.hg-care-detail-grid > div {
  background: var(--hg-color-surface-secondary);
  border: 1px solid var(--hg-color-border-default);
  border-radius: var(--hg-radius-md);
  padding: var(--hg-space-4);
}

.hg-care-detail-grid span {
  color: var(--hg-color-text-tertiary);
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hg-care-detail-grid strong {
  color: var(--hg-color-text-primary);
  display: block;
  margin-top: var(--hg-space-1);
}

.hg-care-thread {
  border-top: 1px solid var(--hg-color-border-default);
  display: grid;
  gap: var(--hg-space-3);
  padding-top: var(--hg-space-5);
}

.hg-care-thread h4 {
  margin: 0;
}

.hg-care-message {
  border: 1px solid var(--hg-color-border-default);
  border-radius: var(--hg-radius-md);
  padding: var(--hg-space-4);
}

.hg-care-message.is-admin {
  background: var(--hg-color-brand-50);
}

.hg-care-message > div {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: var(--hg-space-3);
}

.hg-care-message strong {
  color: var(--hg-color-text-primary);
}

.hg-care-message span {
  color: var(--hg-color-text-tertiary);
  font-size: 13px;
}

.hg-care-message p {
  color: var(--hg-color-text-secondary);
  margin: var(--hg-space-2) 0 0;
}

.hg-care-message-form {
  border-top: 1px solid var(--hg-color-border-default);
  margin-top: var(--hg-space-5);
  padding-top: var(--hg-space-5);
}

.hg-care-request-ledger {
  display: grid;
  gap: var(--hg-space-3);
}

.hg-care-ledger-row {
  align-items: center;
  border: 1px solid var(--hg-color-border-default);
  border-radius: var(--hg-radius-md);
  display: grid;
  gap: var(--hg-space-4);
  grid-template-columns: minmax(0, 1fr) auto;
  padding: var(--hg-space-4);
}

.hg-care-ledger-row strong,
.hg-care-ledger-row span,
.hg-care-ledger-row small {
  display: block;
}

.hg-care-ledger-row p {
  color: var(--hg-color-text-secondary);
  margin: var(--hg-space-1) 0 0;
}

.hg-care-ledger-row > div:last-child {
  text-align: right;
}

.hg-care-ledger-row small {
  color: var(--hg-color-text-tertiary);
  margin-top: var(--hg-space-1);
}

.hg-care-packages {
  display: grid;
  gap: var(--hg-space-3);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hg-care-package {
  align-items: stretch;
  border: 1px solid var(--hg-color-border-default);
  border-radius: var(--hg-radius-lg);
  display: flex;
  flex-direction: column;
  gap: var(--hg-space-4);
  justify-content: space-between;
  padding: var(--hg-space-4);
}

.hg-care-package strong,
.hg-care-package span {
  color: var(--hg-color-text-primary);
  display: block;
  font-weight: 800;
}

.hg-care-package p {
  color: var(--hg-color-text-secondary);
  margin: var(--hg-space-1) 0 0;
}

.hg-care-package > div:last-child {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: var(--hg-space-3);
}

@media (max-width: 1100px) {
  .hg-care-page .hg-dashboard-grid-4,
  .hg-care-packages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .hg-care-page .hg-dashboard-grid-4,
  .hg-care-packages,
  .hg-care-detail-grid,
  .hg-care-request-card,
  .hg-care-ledger-row {
    grid-template-columns: 1fr;
  }

  .hg-care-detail-header {
    flex-direction: column;
  }

  .hg-care-form-actions,
  .hg-care-request-actions,
  .hg-care-detail-status {
    align-items: stretch;
    flex-direction: column;
    text-align: left;
  }
}

body {
  color: var(--hg-color-text);
}

body:has(.hg-app-shell) {
  background: var(--hg-color-surface-primary);
}

body:has(.hg-order-domain-flow) {
  background: var(--hg-color-surface-primary);
}

body:has(.hg-front-page) {
  background: var(--hg-color-surface-primary);
}

body:has(.hg-pricing-page) {
  background: var(--hg-color-surface-primary);
}

body:has(.hg-app-shell) #header,
body:has(.hg-app-shell) .master-breadcrumb,
body:has(.hg-app-shell) footer.footer {
  display: none !important;
}

body:has(.hg-order-domain-flow) #header,
body:has(.hg-order-domain-flow) .master-breadcrumb,
body:has(.hg-order-domain-flow) footer.footer {
  display: none !important;
}

body:has(.hg-front-page) #header,
body:has(.hg-front-page) .master-breadcrumb,
body:has(.hg-front-page) #frmDomainHomepage,
body:has(.hg-front-page) footer.footer {
  display: none !important;
}

body:has(.hg-pricing-page) #header,
body:has(.hg-pricing-page) .master-breadcrumb,
body:has(.hg-pricing-page) footer.footer {
  display: none !important;
}

body:has(.hg-app-shell) #main-body {
  padding: 0 !important;
  background: var(--hg-color-surface-primary);
}

body:has(.hg-order-domain-flow) #main-body {
  padding: 0 !important;
  background: var(--hg-color-surface-primary) !important;
}

body:has(.hg-front-page) #main-body {
  padding: 0 !important;
  background: var(--hg-color-surface-primary) !important;
}

body:has(.hg-pricing-page) #main-body {
  padding: 0 !important;
  background: var(--hg-color-surface-primary) !important;
}

body:has(.hg-app-shell) #main-body > .container {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
}

body:has(.hg-order-domain-flow) #main-body > .container {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
}

body:has(.hg-front-page) #main-body > .container {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
}

body:has(.hg-pricing-page) #main-body > .container {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
}

body:has(.hg-app-shell) #main-body .row {
  margin: 0 !important;
}

body:has(.hg-order-domain-flow) #main-body .row {
  margin: 0 !important;
}

body:has(.hg-order-checkout) #main-body .hg-checkout-panel .row {
  margin: 0 -15px !important;
}

body:has(.hg-front-page) #main-body .row {
  margin: 0 !important;
}

body:has(.hg-pricing-page) #main-body .row {
  margin: 0 !important;
}

body:has(.hg-app-shell) #main-body .row:has(.hg-app-shell) > [class*="col-lg-4"] {
  display: none !important;
}

body:has(.hg-front-page) #main-body .row:has(.hg-front-page) > [class*="col-lg-4"] {
  display: none !important;
}

body:has(.hg-pricing-page) #main-body .row:has(.hg-pricing-page) > [class*="col-lg-4"] {
  display: none !important;
}

body:has(.hg-app-shell) #main-body .row:has(.hg-app-shell) > .primary-content {
  flex: 0 0 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
}

body:has(.hg-front-page) #main-body .row:has(.hg-front-page) > .primary-content {
  flex: 0 0 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
}

body:has(.hg-pricing-page) #main-body .row:has(.hg-pricing-page) > .primary-content {
  flex: 0 0 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
}

.hg-app-shell {
  display: grid;
  grid-template-columns: 256px minmax(0, 1fr);
  min-height: 100vh;
  background: var(--hg-color-surface-primary);
  color: var(--hg-color-text);
}

.hg-app-shell-wizard {
  grid-template-columns: minmax(0, 1fr);
}

.hg-app-shell-wizard .hg-app-sidebar {
  display: none;
}

.hg-front-page {
  min-height: 100vh;
  overflow-x: clip;
  overflow-y: visible;
  background: var(--hg-color-surface-primary);
  color: var(--hg-color-text);
}

.hg-front-container {
  width: min(1216px, calc(100% - 48px));
  margin: 0 auto;
}

.hg-front-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  min-height: 81px;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  padding: 0 max(24px, calc((100vw - 1216px) / 2));
  border-bottom: 1px solid #e7e7e7;
  background: #ffffff;
  backdrop-filter: none;
}

.hg-front-menu-panel {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  gap: 38px;
  min-width: 0;
}

.hg-front-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: #111111;
  color: #ffffff;
  cursor: pointer;
}

.hg-front-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms var(--hg-ease-standard),
    opacity 180ms var(--hg-ease-standard);
}

.hg-front-header.is-mobile-menu-open .hg-front-menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hg-front-header.is-mobile-menu-open .hg-front-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.hg-front-header.is-mobile-menu-open .hg-front-menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hg-front-brand,
.hg-front-brand:hover,
.hg-front-brand:focus {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
  color: #151515;
  font-size: 24px;
  line-height: 32px;
  font-weight: 800;
  text-decoration: none;
}

.hg-front-brand span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  background: #111111;
  color: #ffffff;
  box-shadow: 0 9px 18px rgba(17, 17, 17, 0.08);
  font-size: 19px;
}

.hg-front-nav,
.hg-front-actions,
.hg-front-hero-actions,
.hg-front-trust-list,
.hg-front-proof-grid {
  display: flex;
  align-items: center;
}

.hg-front-nav {
  flex: 1 1 auto;
  justify-content: center;
  gap: 38px;
  min-width: 0;
}

.hg-front-nav a,
.hg-front-link,
.hg-front-footer a {
  color: #4a4a4a;
  font-size: 15px;
  line-height: 22px;
  font-weight: 500;
  text-decoration: none;
}

.hg-front-nav a:hover,
.hg-front-link:hover,
.hg-front-footer a:hover {
  color: #151515;
}

.hg-front-nav a.is-active {
  color: #151515;
}

.hg-front-actions,
.hg-front-hero-actions {
  gap: 28px;
}

.hg-front-actions {
  flex: 0 0 auto;
}

.hg-front-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.hg-front-link i {
  color: #343434;
  font-size: 14px;
}

.hg-front-nav a i {
  margin-left: 10px;
  color: #777777;
  font-size: 11px;
}

.hg-front-button,
.hg-front-button:hover,
.hg-front-button:focus {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: var(--hg-space-2);
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  text-decoration: none;
}

.hg-front-button-primary {
  background: var(--hg-color-primary);
  color: var(--hg-color-surface-primary);
}

.hg-front-button-primary:hover,
.hg-front-button-primary:focus {
  background: var(--hg-color-primary-strong);
  color: var(--hg-color-surface-primary);
}

.hg-front-button-secondary {
  border-color: var(--hg-color-border);
  background: var(--hg-color-surface-primary);
  color: var(--hg-color-text);
}

.hg-front-button-secondary:hover,
.hg-front-button-secondary:focus {
  border-color: var(--hg-color-border-strong);
  color: var(--hg-color-text);
}

.hg-front-header .hg-front-button-primary,
.hg-front-header .hg-front-button-primary:hover,
.hg-front-header .hg-front-button-primary:focus {
  min-width: 99px;
  background: #111111;
  color: #ffffff;
}

.hg-front-hero {
  padding: 80px 0 72px;
  background:
    linear-gradient(135deg, rgba(33, 102, 243, 0.08), transparent 42%),
    linear-gradient(315deg, rgba(24, 179, 126, 0.1), transparent 36%),
    var(--hg-color-surface-primary);
}

.hg-front-hero-grid,
.hg-front-domain-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  gap: 64px;
  align-items: center;
}

.hg-front-kicker,
.hg-front-eyebrow,
.hg-front-section-heading span {
  display: inline-flex;
  margin-bottom: var(--hg-space-3);
  color: var(--hg-color-primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hg-front-hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--hg-color-text-primary);
  font-size: clamp(42px, 5.2vw, 72px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.hg-front-lead {
  max-width: 640px;
  margin: var(--hg-space-5) 0;
  color: var(--hg-color-text-muted);
  font-size: 20px;
  line-height: 1.6;
}

.hg-front-trust-list {
  flex-wrap: wrap;
  gap: var(--hg-space-4);
  margin: var(--hg-space-5) 0 0;
  padding: 0;
  color: var(--hg-color-text-muted);
  list-style: none;
}

.hg-front-trust-list i,
.hg-front-plan li i {
  color: var(--hg-color-secondary);
}

.hg-front-hero-product {
  overflow: hidden;
  border: 1px solid var(--hg-color-border);
  border-radius: var(--hg-radius-lg);
  background: var(--hg-color-surface-primary);
  box-shadow: var(--hg-shadow-md);
}

.hg-front-browser-bar {
  display: flex;
  align-items: center;
  gap: var(--hg-space-2);
  padding: var(--hg-space-3) var(--hg-space-4);
  border-bottom: 1px solid var(--hg-color-border-default);
  background: var(--hg-color-surface-hover);
}

.hg-front-browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--hg-color-border-strong);
}

.hg-front-browser-bar small {
  margin-left: var(--hg-space-3);
  color: var(--hg-color-text-muted);
}

.hg-front-product-layout {
  display: grid;
  grid-template-columns: 160px 1fr;
  min-height: 360px;
}

.hg-front-product-layout aside {
  display: flex;
  flex-direction: column;
  gap: var(--hg-space-2);
  padding: var(--hg-space-5);
  border-right: 1px solid var(--hg-color-border-subtle);
  background: var(--hg-color-surface-secondary);
}

.hg-front-product-layout aside strong {
  margin-bottom: var(--hg-space-4);
}

.hg-front-product-layout aside span {
  display: flex;
  align-items: center;
  gap: var(--hg-space-2);
  padding: var(--hg-space-2);
  border-radius: var(--hg-radius-md);
  color: var(--hg-color-text-muted);
  font-size: 13px;
}

.hg-front-product-layout aside .is-active {
  background: var(--hg-color-blue-50);
  color: var(--hg-color-primary);
  font-weight: 800;
}

.hg-front-product-layout section {
  padding: var(--hg-space-6);
}

.hg-front-product-top,
.hg-front-site-card,
.hg-front-metrics-mini {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--hg-space-4);
}

.hg-front-product-top small,
.hg-front-site-card small,
.hg-front-metrics-mini small {
  display: block;
  color: var(--hg-color-text-muted);
}

.hg-front-product-top button {
  min-height: 36px;
  padding: 0 var(--hg-space-4);
  border: 0;
  border-radius: var(--hg-radius-md);
  background: var(--hg-color-primary);
  color: var(--hg-color-surface-primary);
  font-weight: 800;
}

.hg-front-site-card {
  margin-top: var(--hg-space-6);
  padding: var(--hg-space-5);
  border: 1px solid var(--hg-color-border);
  border-radius: var(--hg-radius-lg);
}

.hg-front-site-card span {
  color: var(--hg-color-success);
  font-size: 28px;
  font-weight: 900;
}

.hg-front-metrics-mini {
  margin-top: var(--hg-space-4);
}

.hg-front-metrics-mini span {
  flex: 1;
  padding: var(--hg-space-4);
  border-radius: var(--hg-radius-md);
  background: var(--hg-color-surface-muted);
}

.hg-front-metrics-mini strong {
  display: block;
  font-size: 22px;
}

.hg-front-proof {
  padding: var(--hg-space-6) 0;
  border-top: 1px solid var(--hg-color-border-subtle);
  border-bottom: 1px solid var(--hg-color-border-subtle);
  background: var(--hg-color-surface-secondary);
}

.hg-front-proof p {
  margin: 0 0 var(--hg-space-4);
  color: var(--hg-color-text-muted);
  text-align: center;
}

.hg-front-proof-grid {
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--hg-space-3);
}

.hg-front-proof-grid span {
  min-width: 150px;
  padding: var(--hg-space-3) var(--hg-space-4);
  border: 1px solid var(--hg-color-border);
  border-radius: var(--hg-radius-md);
  background: var(--hg-color-surface-primary);
  color: var(--hg-color-text-muted);
  font-weight: 800;
  text-align: center;
}

.hg-front-section {
  padding: 88px 0;
}

.hg-front-section-muted {
  background: var(--hg-color-surface-muted);
}

.hg-front-section-heading {
  max-width: 760px;
  margin: 0 auto var(--hg-space-6);
  text-align: center;
}

.hg-front-section-heading h2,
.hg-front-domain-grid h2,
.hg-front-cta h2 {
  margin: 0;
  color: var(--hg-color-text-primary);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.hg-front-section-heading p,
.hg-front-domain-grid p,
.hg-front-cta p {
  margin: var(--hg-space-4) 0 0;
  color: var(--hg-color-text-muted);
  font-size: 18px;
  line-height: 1.6;
}

.hg-front-steps,
.hg-front-plan-grid,
.hg-front-feature-grid {
  display: grid;
  gap: var(--hg-space-5);
}

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

.hg-front-steps article,
.hg-front-plan,
.hg-front-feature-grid article,
.hg-front-domain-search,
.hg-front-faq details {
  border: 1px solid var(--hg-color-border);
  border-radius: var(--hg-radius-lg);
  background: var(--hg-color-surface-primary);
  box-shadow: var(--hg-shadow-sm);
}

.hg-front-steps article {
  padding: var(--hg-space-5);
}

.hg-front-steps article > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: var(--hg-space-5);
  border-radius: var(--hg-radius-md);
  background: var(--hg-color-blue-50);
  color: var(--hg-color-primary);
  font-weight: 900;
}

.hg-front-steps h3,
.hg-front-plan h3,
.hg-front-feature-grid h3 {
  margin: 0 0 var(--hg-space-3);
  color: var(--hg-color-text-primary);
  font-size: 21px;
  font-weight: 900;
}

.hg-front-steps p,
.hg-front-plan p,
.hg-front-feature-grid p,
.hg-front-faq p {
  margin: 0;
  color: var(--hg-color-text-muted);
  line-height: 1.6;
}

.hg-front-plan-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.hg-front-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--hg-space-5);
  padding: var(--hg-space-6);
}

.hg-front-plan.is-featured {
  border-color: rgba(33, 102, 243, 0.42);
  box-shadow: var(--hg-shadow-md);
}

.hg-front-badge {
  align-self: flex-start;
  padding: var(--hg-space-1) var(--hg-space-3);
  border-radius: 999px;
  background: var(--hg-color-blue-50);
  color: var(--hg-color-primary);
  font-size: 12px;
  font-weight: 900;
}

.hg-front-plan ul {
  display: grid;
  gap: var(--hg-space-3);
  margin: 0;
  padding: 0;
  list-style: none;
}

.hg-front-plan li {
  display: flex;
  gap: var(--hg-space-2);
  color: var(--hg-color-text);
}

.hg-front-plan .hg-front-button {
  margin-top: auto;
  width: 100%;
}

.hg-front-domain-search {
  padding: var(--hg-space-6);
}

.hg-front-domain-search label {
  display: block;
  margin-bottom: var(--hg-space-3);
  font-weight: 900;
}

.hg-front-domain-search div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--hg-space-3);
}

.hg-front-domain-search input {
  min-height: 48px;
  padding: 0 var(--hg-space-4);
  border: 1px solid var(--hg-color-border);
  border-radius: var(--hg-radius-md);
}

.hg-front-domain-search button {
  min-height: 48px;
  padding: 0 var(--hg-space-5);
  border: 0;
  border-radius: var(--hg-radius-md);
  background: var(--hg-color-primary);
  color: var(--hg-color-surface-primary);
  font-weight: 900;
}

.hg-front-domain-search small {
  display: block;
  margin-top: var(--hg-space-3);
  color: var(--hg-color-text-muted);
}

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

.hg-front-feature-grid article {
  padding: var(--hg-space-5);
}

.hg-front-feature-grid i {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: var(--hg-space-5);
  border-radius: var(--hg-radius-md);
  background: var(--hg-color-blue-50);
  color: var(--hg-color-primary);
}

.hg-front-faq {
  display: grid;
  max-width: 900px;
  margin: 0 auto;
  gap: var(--hg-space-3);
}

.hg-front-faq details {
  padding: var(--hg-space-5);
}

.hg-front-faq summary {
  cursor: pointer;
  color: var(--hg-color-text-primary);
  font-weight: 900;
}

.hg-front-faq p {
  margin-top: var(--hg-space-3);
}

.hg-front-cta {
  padding: 88px 0;
  background: var(--hg-color-text-primary);
  color: var(--hg-color-surface-primary);
  text-align: center;
}

.hg-front-cta h2,
.hg-front-cta p {
  max-width: 840px;
  margin-right: auto;
  margin-left: auto;
  color: var(--hg-color-surface-primary);
}

.hg-front-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.hg-front-cta .hg-front-hero-actions {
  justify-content: center;
  margin-top: var(--hg-space-6);
}

.hg-front-footer {
  padding: 64px 0;
  background: var(--hg-color-gray-950);
  color: var(--hg-color-surface-primary);
}

.hg-front-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) repeat(3, minmax(160px, 1fr));
  gap: var(--hg-space-6);
}

.hg-front-footer .hg-front-brand,
.hg-front-footer .hg-front-brand:hover {
  color: var(--hg-color-surface-primary);
}

.hg-front-footer p {
  max-width: 420px;
  margin: var(--hg-space-4) 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

.hg-front-footer strong,
.hg-front-footer a {
  display: block;
}

.hg-front-footer strong {
  margin-bottom: var(--hg-space-3);
  color: var(--hg-color-surface-primary);
}

.hg-front-footer a {
  margin-top: var(--hg-space-2);
  color: rgba(255, 255, 255, 0.68);
}

.hg-static-page .hg-front-section {
  overflow: hidden;
}

.hg-static-hero {
  padding: 96px 0 72px;
  background:
    linear-gradient(135deg, rgba(33, 102, 243, 0.08), transparent 42%),
    linear-gradient(315deg, rgba(24, 179, 126, 0.08), transparent 34%),
    var(--hg-color-surface-primary);
}

.hg-static-hero h1,
.hg-auth-copy h1,
.hg-error-shell h1 {
  max-width: 920px;
  margin: 0;
  color: var(--hg-color-text-primary);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

.hg-static-hero p,
.hg-auth-copy p,
.hg-error-shell p {
  max-width: 760px;
  margin: var(--hg-space-5) 0 0;
  color: var(--hg-color-text-muted);
  font-size: 20px;
  line-height: 1.6;
}

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

.hg-static-feature-split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: 64px;
  align-items: start;
}

.hg-static-feature-split h2 {
  margin: 0;
  color: var(--hg-color-text-primary);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.08;
}

.hg-static-feature-split p {
  margin: var(--hg-space-4) 0 0;
  color: var(--hg-color-text-muted);
  font-size: 18px;
  line-height: 1.6;
}

.hg-static-card-list,
.hg-static-help-grid {
  display: grid;
  gap: var(--hg-space-4);
}

.hg-static-card-list article,
.hg-static-help-grid a {
  display: grid;
  gap: var(--hg-space-3);
  padding: var(--hg-space-5);
  border: 1px solid var(--hg-color-border);
  border-radius: var(--hg-radius-lg);
  background: var(--hg-color-surface-primary);
  color: var(--hg-color-text);
  text-decoration: none;
  box-shadow: var(--hg-shadow-sm);
}

.hg-static-card-list i,
.hg-static-help-grid i {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: var(--hg-radius-md);
  background: var(--hg-color-blue-50);
  color: var(--hg-color-primary);
}

.hg-static-card-list strong,
.hg-static-help-grid strong {
  font-size: 18px;
}

.hg-static-card-list span,
.hg-static-help-grid span {
  color: var(--hg-color-text-muted);
  line-height: 1.55;
}

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

.hg-auth-page,
.hg-error-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(33, 102, 243, 0.08), transparent 42%),
    var(--hg-color-surface-primary);
}

.hg-auth-shell,
.hg-register-shell {
  width: min(1216px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.hg-auth-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 520px);
  gap: 72px;
  align-items: start;
}

.hg-register-shell {
  display: grid;
  gap: var(--hg-space-6);
}

.hg-register-shell .hg-auth-copy {
  max-width: 820px;
}

.hg-auth-card,
.hg-register-form .hg-auth-card {
  padding: var(--hg-space-6);
  border: 1px solid var(--hg-color-border);
  border-radius: var(--hg-radius-lg);
  background: var(--hg-color-surface-primary);
  box-shadow: var(--hg-shadow-md);
}

.hg-register-form {
  display: grid;
  gap: var(--hg-space-5);
}

.hg-auth-card-head {
  margin-bottom: var(--hg-space-5);
}

.hg-auth-card-head h2,
.hg-auth-card h2 {
  margin: 0;
  color: var(--hg-color-text-primary);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0;
}

.hg-auth-card-head p,
.hg-auth-card > p {
  margin: var(--hg-space-2) 0 0;
  color: var(--hg-color-text-muted);
}

.hg-auth-card label {
  color: var(--hg-color-text);
  font-weight: 800;
}

.hg-auth-card .form-control,
.hg-auth-card .field {
  min-height: 44px;
  border-color: var(--hg-color-border);
  border-radius: var(--hg-radius-md);
  box-shadow: none;
}

.hg-auth-card .input-group-text {
  border-color: var(--hg-color-border);
  background: var(--hg-color-surface-hover);
  color: var(--hg-color-text-muted);
}

.hg-public-support-page {
  background: #fafafa;
}

.hg-public-support-hero {
  display: flex;
  width: min(1200px, calc(100% - 48px));
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin: 0 auto;
  padding: 80px 0 48px;
}

.hg-public-support-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #171717;
  font-family: var(--hg-font-family-sans);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

.hg-public-support-hero p {
  max-width: 680px;
  margin: 16px 0 0;
  color: #737373;
  font-size: 18px;
  line-height: 1.5;
}

.hg-public-support-section {
  padding: 80px 0 96px;
}

.hg-public-support-container {
  display: flex;
  width: min(928px, calc(100% - 48px));
  flex-direction: column;
  gap: 24px;
  margin: 0 auto;
}

.hg-public-support-card {
  padding: 40px;
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 54px rgba(23, 23, 23, 0.06);
}

.hg-public-support-card .hg-dashboard-section-heading {
  margin-bottom: 28px;
}

.hg-public-support-card .hg-dashboard-section-heading h2 {
  font-size: 28px;
  line-height: 36px;
}

.hg-public-support-card .form-control {
  min-height: 48px;
  border-color: #e5e5e5;
  border-radius: 12px;
  box-shadow: none;
}

.hg-public-support-card textarea.form-control {
  min-height: 180px;
}

.hg-auth-label-row,
.hg-auth-actions,
.hg-auth-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--hg-space-4);
}

.hg-auth-label-row a,
.hg-auth-card-footer a {
  color: var(--hg-color-primary);
  font-weight: 800;
  text-decoration: none;
}

.hg-auth-actions {
  margin-top: var(--hg-space-5);
}

.hg-auth-remember {
  display: inline-flex;
  align-items: center;
  gap: var(--hg-space-2);
  margin: 0;
  color: var(--hg-color-text-muted);
  font-weight: 700;
}

.hg-auth-card-footer {
  margin: var(--hg-space-5) calc(var(--hg-space-6) * -1) calc(var(--hg-space-6) * -1);
  padding: var(--hg-space-4) var(--hg-space-6);
  border-top: 1px solid var(--hg-color-border);
  border-radius: 0 0 var(--hg-radius-lg) var(--hg-radius-lg);
  background: var(--hg-color-surface-hover);
  color: var(--hg-color-text-muted);
}

.hg-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--hg-space-4);
}

.hg-form-span-2 {
  grid-column: 1 / -1;
}

.hg-auth-final {
  display: grid;
  gap: var(--hg-space-4);
  justify-items: start;
}

.hg-error-shell {
  display: grid;
  width: min(860px, calc(100% - 48px));
  min-height: calc(100vh - 64px);
  place-items: center;
  align-content: center;
  margin: 0 auto;
  padding: 72px 0;
  text-align: center;
}

.hg-error-shell > span {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin-bottom: var(--hg-space-4);
  border-radius: var(--hg-radius-lg);
  background: var(--hg-color-blue-50);
  color: var(--hg-color-primary);
  font-size: 28px;
}

.hg-error-shell > strong {
  color: var(--hg-color-primary);
  font-size: 18px;
  font-weight: 900;
}

.hg-error-shell p {
  margin-right: auto;
  margin-left: auto;
}

.hg-error-shell .hg-front-hero-actions {
  justify-content: center;
  margin-top: var(--hg-space-6);
}

.hg-pricing-page {
  min-height: 100vh;
  background: var(--hg-color-surface-primary);
  color: var(--hg-color-text);
}

.hg-front-nav a.is-active {
  color: var(--hg-color-text);
  font-weight: 900;
}

.hg-pricing-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 64px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(33, 102, 243, 0.08), transparent 44%),
    var(--hg-color-surface-primary);
}

.hg-pricing-badge {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: var(--hg-space-2);
  margin-bottom: var(--hg-space-5);
  padding: 0 var(--hg-space-4);
  border-radius: 999px;
  background: var(--hg-color-blue-50);
  color: var(--hg-color-primary);
  font-size: 13px;
  font-weight: 900;
}

.hg-pricing-hero h1 {
  max-width: 840px;
  margin: 0 auto;
  color: var(--hg-color-text-primary);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

.hg-pricing-hero p {
  max-width: 780px;
  margin: var(--hg-space-5) auto 0;
  color: var(--hg-color-text-muted);
  font-size: 20px;
  line-height: 1.6;
}

.hg-pricing-hero-rich {
  min-height: 306px;
  padding: 80px 0 16px;
  border-bottom: 1px solid #e5e5e5;
  background: #ffffff;
  text-align: left;
}

.hg-pricing-hero-rich::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(0, 123, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 123, 255, 0.09) 1px, transparent 1px),
    radial-gradient(circle at 47% 15%, rgba(0, 123, 255, 0.14), transparent 40%),
    radial-gradient(circle at 62% 18%, rgba(236, 72, 153, 0.12), transparent 38%);
  background-size: 32px 32px, 32px 32px, 100% 100%, 100% 100%;
  pointer-events: none;
}

.hg-pricing-hero-rich::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 145px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff 84%);
  pointer-events: none;
}

.hg-pricing-hero-rich .hg-front-container {
  position: relative;
  z-index: 1;
}

.hg-pricing-hero-rich h1 {
  max-width: 900px;
  margin: 0;
  color: #171717;
  font-family: var(--hg-font-family-sans);
  font-size: 72px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
}

.hg-pricing-cycle-toggle {
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: 6px;
  margin-top: 54px;
  color: #5a5a5a;
}

.hg-pricing-cycle-toggle a {
  color: #5a5a5a;
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
}

.hg-pricing-cycle-toggle a.is-active {
  color: #080808;
}

.hg-pricing-switch {
  position: relative;
  display: inline-flex;
  width: 42px;
  height: 24px;
  align-items: center;
  padding: 1.5px;
  border-radius: 32px;
  background: #146ef5;
}

.hg-pricing-switch span {
  display: block;
  width: 21px;
  height: 21px;
  border-radius: 10.5px;
  background: #ffffff;
  transform: translateX(0);
  transition: transform 180ms var(--hg-ease-standard);
}

.hg-pricing-switch.is-annual span {
  transform: translateX(18px);
}

.hg-pricing-toggle-section {
  padding: var(--hg-space-5) 0;
  border-top: 1px solid var(--hg-color-border-subtle);
  border-bottom: 1px solid var(--hg-color-border-subtle);
  background: var(--hg-color-surface-secondary);
}

.hg-pricing-toggle {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: var(--hg-space-3);
  margin: 0 auto;
  color: var(--hg-color-text-muted);
}

.hg-pricing-toggle a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 var(--hg-space-4);
  border-radius: 999px;
  color: var(--hg-color-text-muted);
  font-weight: 800;
  text-decoration: none;
}

.hg-pricing-toggle a.is-active {
  background: var(--hg-color-text-primary);
  color: var(--hg-color-surface-primary);
}

.hg-pricing-toggle em {
  display: inline-flex;
  align-items: center;
  gap: var(--hg-space-2);
  color: var(--hg-color-success);
  font-style: normal;
  font-weight: 800;
}

.hg-pricing-plans {
  padding: 80px 0 64px;
  background: #ffffff;
}

.hg-pricing-plans-heading {
  max-width: 685px;
  margin-bottom: 42px;
}

.hg-pricing-plans-heading h2 {
  margin: 0;
  color: #171717;
  font-size: 48px;
  font-weight: 500;
  line-height: 56px;
  letter-spacing: 0;
}

.hg-pricing-plans-heading p {
  margin: 12px 0 0;
  color: #737373;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
}

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

.hg-pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 817px;
  gap: 0;
  padding: 24px;
  border: 1px solid #d4d4d4;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: none;
}

.hg-pricing-card.is-featured {
  border-color: #d4d4d4;
  box-shadow: none;
}

.hg-pricing-card-badge {
  position: absolute;
  top: -21px;
  left: 50%;
  display: inline-flex;
  min-width: 159px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  background: #11385a;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  transform: translateX(-50%);
}

.hg-pricing-card-head h2 {
  margin: 0;
  color: #171717;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.hg-pricing-card-head p {
  min-height: 72px;
  margin: 16px 0 0;
  color: #525252;
  font-size: 16px;
  line-height: 24px;
}

.hg-pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0;
  margin-top: 26px;
}

.hg-pricing-price strong {
  color: #080808;
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
}

.hg-pricing-price span,
.hg-pricing-card-head small {
  color: #525252;
  font-size: 16px;
  line-height: 24px;
}

.hg-pricing-card-head small {
  display: block;
  margin-top: 0;
}

.hg-pricing-card > .hg-front-button {
  width: 100%;
  min-height: 54px;
  margin-top: 28px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
}

.hg-pricing-card > .hg-front-button-secondary {
  border-color: #e5e5e5;
  background: #ffffff;
  color: #343434;
  box-shadow: 0 1px 2px rgba(17, 17, 17, 0.08);
}

.hg-pricing-card > .hg-front-button-primary {
  background: #171717;
  color: #ffffff;
}

.hg-pricing-feature-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  padding-top: 24px;
  border-top: 1px solid #e5e5e5;
}

.hg-pricing-feature-list div {
  display: grid;
  min-height: 24px;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.hg-pricing-feature-list i,
.hg-pricing-table i {
  color: #146ef5;
}

.hg-pricing-feature-list span {
  color: #525252;
  font-size: 16px;
  line-height: 24px;
}

.hg-pricing-feature-list i {
  margin-top: 5px;
  font-size: 12px;
  line-height: 14px;
}

.hg-pricing-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: auto;
  padding-top: 28px;
  color: #171717;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
}

.hg-pricing-more:hover,
.hg-pricing-more:focus {
  color: #171717;
  text-decoration: none;
}

.hg-pricing-section {
  padding: 88px 0;
}

#comparativa.hg-pricing-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 64px;
  background:
    radial-gradient(circle at 22% 0%, rgba(0, 123, 255, 0.10), transparent 34%),
    radial-gradient(circle at 78% 0%, rgba(236, 72, 153, 0.08), transparent 32%),
    #fafafa;
}

#comparativa.hg-pricing-section::before {
  position: absolute;
  inset: 0 0 auto;
  height: 360px;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(250, 250, 250, 0) 0%, #fafafa 100%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0) 62%);
  content: "";
}

#comparativa.hg-pricing-section .hg-front-container {
  position: relative;
  z-index: 1;
}

.hg-pricing-section-muted {
  background: var(--hg-color-surface-muted);
}

.hg-pricing-ops-section {
  padding: 80px 0;
  background: #fafafa;
}

.hg-pricing-ops-section .hg-front-container {
  width: min(1200px, calc(100% - 48px));
}

.hg-pricing-ops-heading {
  max-width: 690px;
  margin: 0 0 48px;
}

.hg-pricing-ops-heading h2 {
  margin: 0;
  color: #171717;
  font-family: var(--hg-font-family-sans);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.17;
  letter-spacing: 0;
}

.hg-pricing-ops-heading p {
  max-width: 560px;
  margin: 18px 0 0;
  color: #737373;
  font-size: 16px;
  line-height: 1.55;
}

.hg-pricing-ops-section .hg-capability-grid article {
  min-height: 406px;
  border-color: #e5e5e5;
  border-radius: 12px;
}

.hg-pricing-ops-section .hg-capability-mock {
  border-color: #e5e5e5;
  border-radius: 8px;
}

.hg-pricing-included-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--hg-space-5);
}

.hg-pricing-included-grid article {
  padding: var(--hg-space-5);
  border: 1px solid var(--hg-color-border);
  border-radius: var(--hg-radius-lg);
  background: var(--hg-color-surface-primary);
  box-shadow: var(--hg-shadow-sm);
}

.hg-pricing-included-grid i {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: var(--hg-space-5);
  border-radius: var(--hg-radius-md);
  background: var(--hg-color-blue-50);
  color: var(--hg-color-primary);
}

.hg-pricing-included-grid h3 {
  margin: 0 0 var(--hg-space-3);
  color: var(--hg-color-text-primary);
  font-size: 20px;
  font-weight: 900;
}

.hg-pricing-included-grid p {
  margin: 0;
  color: var(--hg-color-text-muted);
  line-height: 1.6;
}

.hg-pricing-table-wrap {
  overflow: visible;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: none;
}

.hg-pricing-compare-heading {
  max-width: 685px;
  margin: 0 0 40px;
}

.hg-pricing-compare-heading h2 {
  margin: 0;
  color: #171717;
  font-size: 48px;
  font-weight: 400;
  line-height: 56px;
  letter-spacing: 0;
}

.hg-pricing-compare-heading p {
  margin: 12px 0 0;
  color: #525252;
  font-size: 18px;
  line-height: 1.5;
}

.hg-pricing-table {
  width: 100%;
  min-width: 1000px;
  border-collapse: separate;
  border-spacing: 0;
  color: #737373;
  font-size: 14px;
  line-height: 20px;
}

.hg-pricing-table th,
.hg-pricing-table td {
  padding: 24px;
  border: 0;
  border-top: 1px solid #e5e5e5;
  text-align: center;
  vertical-align: middle;
}

.hg-pricing-table thead {
  position: sticky;
  top: 81px;
  z-index: 20;
}

.hg-pricing-table thead th {
  position: relative;
  min-height: 214px;
  border-top: 0;
  background: #fafafa;
  color: #171717;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-transform: none;
}

.hg-pricing-table th:first-child,
.hg-pricing-table td:first-child {
  text-align: left;
}

.hg-pricing-table thead th:first-child {
  width: auto;
  min-width: 250px;
  opacity: 0;
}

.hg-pricing-table thead th:not(:first-child),
.hg-pricing-table tbody td:not(:first-child) {
  width: 250px;
}

.hg-pricing-table thead th:nth-child(3),
.hg-pricing-table tbody td:nth-child(3) {
  background: rgba(0, 123, 255, 0.05);
}

.hg-pricing-table-plan {
  display: flex;
  min-height: 196px;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  text-align: left;
}

.hg-pricing-table-plan strong {
  color: #171717;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.hg-pricing-table thead th:nth-child(3) .hg-pricing-table-plan strong {
  color: #007bff;
}

.hg-pricing-table-plan p {
  min-height: 96px;
  margin: 0;
  padding-bottom: 16px;
  color: #525252;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.hg-pricing-table-plan a {
  display: inline-flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 13px 25px;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  background: #ffffff;
  color: #404040;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
}

.hg-pricing-table thead th:nth-child(3) .hg-pricing-table-plan a {
  border-color: #171717;
  background: #171717;
  color: #ffffff;
}

.hg-pricing-table td {
  color: #737373;
  font-weight: 400;
}

.hg-pricing-table tbody td:first-child {
  color: #737373;
  font-weight: 500;
  white-space: nowrap;
}

.hg-pricing-table tbody td:first-child i {
  color: rgba(115, 115, 115, 0.5);
  font-size: 16px;
  margin-left: 8px;
  vertical-align: -2px;
}

.hg-pricing-table tbody td strong {
  color: #171717;
  font-weight: 500;
}

.hg-pricing-table tr:last-child td {
  border-bottom: 0;
}

.hg-pricing-table span {
  color: #737373;
}

.hg-pricing-faq-grid {
  display: grid;
  max-width: 900px;
  margin: 0 auto;
  gap: var(--hg-space-3);
}

.hg-pricing-faq-grid details {
  padding: var(--hg-space-5);
  border: 1px solid var(--hg-color-border);
  border-radius: var(--hg-radius-lg);
  background: var(--hg-color-surface-primary);
  box-shadow: var(--hg-shadow-sm);
}

.hg-pricing-faq-grid summary {
  cursor: pointer;
  color: var(--hg-color-text-primary);
  font-weight: 900;
}

.hg-pricing-faq-grid p {
  margin: var(--hg-space-3) 0 0;
  color: var(--hg-color-text-muted);
  line-height: 1.6;
}

.hg-pricing-faq-section {
  padding: 96px 0;
  background: #ffffff;
}

.hg-pricing-faq-section .hg-front-container {
  width: min(928px, calc(100% - 48px));
}

.hg-pricing-faq-heading {
  margin: 0 0 64px;
  text-align: center;
}

.hg-pricing-faq-heading h2 {
  margin: 0;
  color: #171717;
  font-family: var(--hg-font-family-sans);
  font-size: 48px;
  font-weight: 500;
  line-height: 56px;
  letter-spacing: 0;
}

.hg-pricing-faq-heading span {
  display: block;
  margin-top: 20px;
  color: #737373;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.hg-pricing-faq-section .hg-pricing-faq-grid {
  max-width: none;
  gap: 16px;
}

.hg-pricing-faq-section .hg-pricing-faq-grid details {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: none;
}

.hg-pricing-faq-section .hg-pricing-faq-grid details[open] {
  box-shadow: 0 18px 54px rgba(23, 23, 23, 0.08);
}

.hg-pricing-faq-section .hg-pricing-faq-grid summary {
  position: relative;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 23px 64px 23px 24px;
  color: #171717;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  list-style: none;
}

.hg-pricing-faq-section .hg-pricing-faq-grid summary::-webkit-details-marker {
  display: none;
}

.hg-pricing-faq-section .hg-pricing-faq-grid summary::before,
.hg-pricing-faq-section .hg-pricing-faq-grid summary::after {
  position: absolute;
  top: 50%;
  right: 32px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #171717;
  content: "";
  transform: translateY(-50%);
}

.hg-pricing-faq-section .hg-pricing-faq-grid summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.hg-pricing-faq-section .hg-pricing-faq-grid details[open] summary::after {
  transform: translateY(-50%) rotate(0deg);
}

.hg-pricing-faq-section .hg-pricing-faq-grid p {
  max-width: 800px;
  margin: 0;
  padding: 2px 24px 26px;
  color: #5f6673;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.hg-solutions-hero {
  background: #ffffff;
}

.hg-solution-card.is-manual {
  background: #ffffff;
}

.hg-solution-price-stack {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.hg-solution-price-stack > div {
  display: grid;
  min-height: 84px;
  gap: 6px;
  padding: 16px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #fafafa;
}

.hg-solution-price-stack small {
  color: #737373;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  text-transform: none;
}

.hg-solution-price-stack strong {
  color: #171717;
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
}

.hg-solution-price-stack span {
  color: #737373;
  font-size: 14px;
  line-height: 20px;
}

.hg-solutions-flow-grid article i {
  background: var(--hg-color-gray-100);
  color: var(--hg-color-text-primary);
}

.hg-solution-paths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--hg-space-5);
}

.hg-solution-paths article {
  min-height: 282px;
  padding: 34px 32px 32px;
  border: 0;
  border-radius: 12px;
  background: #f5f5f5;
  box-shadow: none;
}

.hg-solution-paths strong {
  display: block;
  color: #171717;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
}

.hg-solution-paths p {
  margin: 16px 0 0;
  color: #737373;
  font-size: 18px;
  line-height: 28px;
}

.hg-domain-select-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--hg-space-5);
}

.hg-domain-select-form {
  display: grid;
  gap: var(--hg-space-3);
}

.hg-domain-select-form label {
  margin: 0;
  color: var(--hg-color-text-primary);
  font-size: 13px;
  font-weight: 900;
}

.hg-domain-select-form .hg-front-button {
  width: 100%;
  border: 0;
}

.hg-app-sidebar {
  position: sticky;
  top: 0;
  display: flex;
  height: 100vh;
  flex-direction: column;
  gap: var(--hg-space-6);
  padding: var(--hg-space-5) var(--hg-space-5) var(--hg-space-5) var(--hg-space-4);
  border-right: 1px solid var(--hg-color-border-subtle);
  background: var(--hg-color-surface-primary);
}

.hg-app-brand,
.hg-app-brand:hover {
  display: flex;
  align-items: center;
  gap: var(--hg-space-3);
  color: var(--hg-color-text);
  font-weight: 800;
  text-decoration: none;
}

.hg-app-brand span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: var(--hg-radius-md);
  background: var(--hg-color-surface-active);
  color: var(--hg-color-text-secondary);
}

.hg-app-nav {
  display: grid;
  gap: var(--hg-space-2);
}

.hg-app-nav a {
  display: flex;
  min-height: 36px;
  align-items: center;
  gap: var(--hg-space-3);
  padding: var(--hg-space-2) var(--hg-space-3);
  border-radius: 12px;
  color: var(--hg-color-gray-800);
  font-size: 14px;
  text-decoration: none;
}

.hg-app-nav a:hover,
.hg-app-nav a.is-active {
  background: var(--hg-color-surface-active);
  color: var(--hg-color-text-primary);
  text-decoration: none;
}

.hg-app-nav a i {
  width: 14px;
  text-align: center;
}

.hg-app-nav a span {
  margin-left: auto;
  padding: 2px 6px;
  border-radius: 999px;
  background: var(--hg-color-text-primary);
  color: var(--hg-color-surface-primary);
  font-size: 10px;
  line-height: 16px;
}

.hg-app-nav-group {
  margin: 0 0 -20px;
  padding: 0 var(--hg-space-4);
  color: var(--hg-color-text-tertiary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.hg-upgrade-card {
  display: grid;
  justify-items: center;
  gap: var(--hg-space-2);
  margin-top: auto;
  padding: 17px;
  border: 1px solid var(--hg-color-gray-850);
  border-radius: 16px;
  background: var(--hg-color-gray-950);
  color: var(--hg-color-surface-primary);
  text-align: center;
}

.hg-upgrade-card span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.2);
  color: var(--hg-color-blue-400);
}

.hg-upgrade-card strong {
  font-size: 13px;
}

.hg-upgrade-card small {
  color: var(--hg-color-gray-500);
  font-size: 11px;
}

.hg-upgrade-card a {
  display: flex;
  width: 100%;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--hg-color-surface-primary);
  color: var(--hg-color-text-primary);
  font-weight: 700;
  text-decoration: none;
}

.hg-app-main {
  min-width: 0;
  padding: var(--hg-space-5);
}

.hg-app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--hg-space-5);
  margin-bottom: var(--hg-space-5);
}

.hg-app-topbar h2 {
  margin: 0;
  color: var(--hg-color-text-primary);
  font-size: 20px;
  font-weight: 800;
  line-height: 28px;
}

.hg-app-topbar p {
  margin: 0;
  color: var(--hg-color-text-tertiary);
  font-size: 14px;
  line-height: 20px;
}

.hg-app-topbar-actions {
  display: flex;
  align-items: center;
  gap: var(--hg-space-3);
}

.hg-app-notification {
  position: relative;
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--hg-color-gray-800);
}

.hg-app-notification span {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--hg-color-surface-primary);
  border-radius: 999px;
  background: var(--hg-color-red-500);
}

.hg-app-topbar .btn {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: var(--hg-space-2);
  border-radius: 12px;
  font-weight: 700;
}

a {
  color: var(--hg-color-primary);
}

a:hover,
a:focus {
  color: var(--hg-color-primary-strong);
}

.btn-primary,
.primary-bg-color {
  background-color: var(--hg-color-action-primary-bg);
  border-color: var(--hg-color-action-primary-bg);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--hg-color-action-primary-bg-hover);
  border-color: var(--hg-color-action-primary-bg-hover);
}

.card,
.panel,
.tiles .tile {
  border-color: var(--hg-color-border);
  border-radius: var(--hg-radius-md);
  box-shadow: var(--hg-shadow-sm);
}

.alert {
  border-radius: var(--hg-radius-md);
}

.hg-wp-service-status {
  display: inline-flex;
  align-items: center;
  gap: var(--hg-space-2);
  padding: var(--hg-space-1) var(--hg-space-3);
  border-radius: 999px;
  background: var(--hg-color-surface-muted);
  color: var(--hg-color-text-muted);
  font-size: 13px;
  font-weight: 600;
}

.hg-managed-wordpress {
  display: grid;
  gap: var(--hg-space-5);
}

.hg-wp-card {
  overflow: hidden;
}

.hg-wp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--hg-space-2);
  justify-content: flex-end;
}

.hg-wp-actions form {
  margin: 0;
}

.hg-wp-metrics strong {
  display: block;
  margin-bottom: var(--hg-space-1);
}

.hg-wp-operational-row {
  row-gap: var(--hg-space-5);
}

.hg-wp-operational-row h4 {
  margin: 0 0 var(--hg-space-4);
  font-size: 18px;
}

.hg-wp-operational-row code {
  color: var(--hg-color-text);
  white-space: normal;
  word-break: break-word;
}

.hg-store-hero {
  padding: 56px 0 32px;
  background: var(--hg-color-surface-muted);
  border-bottom: 1px solid var(--hg-color-border);
}

.hg-store-kicker {
  margin: 0 0 var(--hg-space-3);
  color: var(--hg-color-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hg-store-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--hg-color-text);
  font-size: 40px;
  line-height: 1.15;
}

.hg-store-lead {
  max-width: 780px;
  margin: var(--hg-space-4) 0 0;
  color: var(--hg-color-text-muted);
  font-size: 18px;
  line-height: 1.6;
}

.hg-store-plans {
  padding: 40px 0 64px;
  background: var(--hg-color-surface);
}

.hg-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--hg-space-5);
}

.hg-plan-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: var(--hg-space-5);
  border: 1px solid var(--hg-color-border);
  border-radius: var(--hg-radius-md);
  background: var(--hg-color-surface);
  box-shadow: var(--hg-shadow-sm);
}

.hg-plan-card-featured {
  border-color: var(--hg-color-primary);
  box-shadow: var(--hg-shadow-md);
}

.hg-plan-badge {
  align-self: flex-start;
  margin-bottom: var(--hg-space-4);
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(33, 102, 243, 0.1);
  color: var(--hg-color-primary-strong);
  font-size: 12px;
  font-weight: 700;
}

.hg-plan-heading h2 {
  margin: 0;
  color: var(--hg-color-text);
  font-size: 24px;
  line-height: 1.25;
}

.hg-plan-heading p {
  min-height: 48px;
  margin: var(--hg-space-3) 0 0;
  color: var(--hg-color-text-muted);
  line-height: 1.5;
}

.hg-plan-price {
  display: flex;
  align-items: baseline;
  gap: var(--hg-space-2);
  margin: var(--hg-space-5) 0;
}

.hg-plan-price span {
  color: var(--hg-color-text);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.hg-plan-price small {
  color: var(--hg-color-text-muted);
  font-size: 14px;
}

.hg-plan-features {
  display: grid;
  gap: var(--hg-space-2);
  margin: 0 0 var(--hg-space-5);
  padding: 0;
  color: var(--hg-color-text);
  list-style: none;
}

.hg-plan-features li {
  position: relative;
  padding-left: 20px;
  line-height: 1.45;
}

.hg-plan-features li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--hg-color-success);
  content: "✓";
  font-weight: 800;
}

.hg-plan-action {
  margin-top: auto;
}

@media (max-width: 991px) {
  .hg-plan-grid {
    grid-template-columns: 1fr;
  }

  .hg-store-hero h1 {
    font-size: 32px;
  }
}

.hg-saas-dashboard {
  display: grid;
  gap: var(--hg-space-6);
  max-width: 1216px;
  margin: 0 auto;
  padding: var(--hg-space-6) 0 64px;
}

.hg-dashboard-hero,
.hg-dashboard-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--hg-space-5);
}

.hg-dashboard-hero h1,
.hg-dashboard-section-heading h2 {
  margin: 0;
  color: var(--hg-color-text);
  letter-spacing: 0;
}

.hg-dashboard-hero h1 {
  font-size: 32px;
  line-height: 1.2;
}

.hg-dashboard-section-heading h2 {
  font-size: 26px;
  line-height: 1.25;
}

.hg-dashboard-hero p,
.hg-dashboard-section-heading p {
  margin: var(--hg-space-2) 0 0;
  color: var(--hg-color-text-muted);
  font-size: 16px;
  line-height: 1.5;
}

.hg-dashboard-section-heading.compact {
  align-items: flex-start;
  margin-bottom: var(--hg-space-4);
}

.hg-dashboard-section-heading.compact h2 {
  font-size: 22px;
}

.hg-dashboard-section-heading > a {
  display: inline-flex;
  align-items: center;
  gap: var(--hg-space-2);
  color: var(--hg-color-primary);
  font-weight: 700;
}

.hg-dashboard-primary-action {
  display: inline-flex;
  align-items: center;
  gap: var(--hg-space-2);
  min-height: 48px;
  white-space: nowrap;
}

.hg-dashboard-metrics,
.hg-quick-actions,
.hg-resource-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--hg-space-5);
}

.hg-dashboard-metric-card,
.hg-quick-action,
.hg-site-card,
.hg-dashboard-panel,
.hg-resource-card,
.hg-dashboard-empty {
  border: 1px solid var(--hg-color-border);
  border-radius: var(--hg-radius-md);
  background: var(--hg-color-surface);
  box-shadow: var(--hg-shadow-sm);
}

.hg-dashboard-metric-card {
  display: grid;
  gap: var(--hg-space-3);
  min-height: 198px;
  padding: var(--hg-space-5);
}

.hg-dashboard-metric-top,
.hg-site-card-header,
.hg-site-actions,
.hg-account-summary a,
.hg-activity-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--hg-space-4);
}

.hg-dashboard-icon,
.hg-quick-action span,
.hg-resource-card span,
.hg-account-summary span,
.hg-dashboard-empty span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--hg-radius-md);
  background: var(--hg-color-surface-muted);
  color: var(--hg-color-primary);
  font-size: 18px;
}

.hg-dashboard-icon {
  width: 40px;
  height: 40px;
  font-size: 15px;
}

.hg-dashboard-icon-success {
  background: rgba(19, 138, 91, 0.1);
  color: var(--hg-color-success);
}

.hg-dashboard-icon-warning {
  background: rgba(154, 91, 0, 0.1);
  color: var(--hg-color-warning);
}

.hg-dashboard-icon-primary {
  background: rgba(33, 102, 243, 0.1);
  color: var(--hg-color-primary);
}

.hg-dashboard-icon-danger {
  background: rgba(196, 29, 53, 0.1);
  color: var(--hg-color-danger);
}

.hg-dashboard-badge {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--hg-color-surface-muted);
  color: var(--hg-color-text-muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.hg-dashboard-badge-success {
  background: rgba(19, 138, 91, 0.1);
  color: var(--hg-color-success);
}

.hg-dashboard-badge-warning {
  background: rgba(154, 91, 0, 0.1);
  color: var(--hg-color-warning);
}

.hg-dashboard-badge-primary {
  background: rgba(33, 102, 243, 0.1);
  color: var(--hg-color-primary);
}

.hg-dashboard-metric-card strong {
  color: var(--hg-color-text);
  font-size: 34px;
  line-height: 1;
}

.hg-dashboard-metric-card p {
  margin: 0;
  color: var(--hg-color-text);
  font-weight: 600;
}

.hg-dashboard-metric-card small {
  color: var(--hg-color-text-muted);
  font-size: 13px;
}

.hg-dashboard-section {
  display: grid;
  gap: var(--hg-space-5);
}

.hg-quick-actions {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.hg-quick-action,
.hg-resource-card {
  display: grid;
  gap: var(--hg-space-3);
  min-height: 182px;
  padding: var(--hg-space-5);
  color: var(--hg-color-text);
  text-decoration: none;
}

.hg-quick-action:hover,
.hg-resource-card:hover {
  border-color: var(--hg-color-primary);
  color: var(--hg-color-text);
  text-decoration: none;
  box-shadow: var(--hg-shadow-md);
}

.hg-quick-action strong,
.hg-resource-card strong {
  color: var(--hg-color-text);
  font-size: 18px;
  line-height: 1.3;
}

.hg-quick-action small,
.hg-resource-card small {
  color: var(--hg-color-text-muted);
  line-height: 1.45;
}

.hg-sites-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--hg-space-5);
}

.hg-site-card {
  display: grid;
  gap: var(--hg-space-4);
  padding: var(--hg-space-5);
}

.hg-site-card-header {
  align-items: flex-start;
}

.hg-site-card h3 {
  display: flex;
  align-items: center;
  gap: var(--hg-space-2);
  margin: 0;
  color: var(--hg-color-text);
  font-size: 20px;
  line-height: 1.35;
}

.hg-site-card p {
  margin: var(--hg-space-2) 0 0;
  color: var(--hg-color-text-muted);
}

.hg-site-dot {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  border-radius: 999px;
  background: var(--hg-color-text-muted);
}

.hg-site-dot-success {
  background: var(--hg-color-success);
}

.hg-site-dot-warning {
  background: var(--hg-color-warning);
}

.hg-site-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--hg-space-2);
  margin-top: var(--hg-space-3);
}

.hg-icon-button {
  display: inline-flex;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hg-color-border);
  border-radius: var(--hg-radius-sm);
  color: var(--hg-color-text-muted);
}

.hg-card-menu {
  position: relative;
}

.hg-card-menu .hg-icon-button {
  background: var(--hg-color-surface-primary);
}

.hg-card-menu-popover {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 20;
  display: none;
  min-width: 220px;
  padding: 6px;
  border: 1px solid var(--hg-color-border);
  border-radius: var(--hg-radius-sm);
  background: var(--hg-color-surface-primary);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.14);
}

.hg-card-menu.is-open .hg-card-menu-popover {
  display: grid;
  gap: 2px;
}

.hg-card-menu-popover a {
  display: flex;
    gap: 8px;
    align-items: center;
    padding: 8px 12px;
    border-radius: var(--hg-radius-sm);
    color: var(--hg-color-text-secondary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.hg-card-menu-popover a:hover {
  background: var(--hg-color-surface-muted);
}

.hg-card-menu-popover a i {
  width: 16px;
  color: var(--hg-color-text-muted);
  text-align: center;
}

.hg-card-menu-popover a.is-danger {
  color: var(--hg-color-danger);
}

.hg-card-menu-popover a.is-danger i {
  color: var(--hg-color-danger);
}

.hg-site-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--hg-space-4);
  padding-top: var(--hg-space-4);
  border-top: 1px solid var(--hg-color-border);
}

.hg-site-stats span {
  display: block;
  color: var(--hg-color-text-muted);
  font-size: 12px;
  font-weight: 700;
}

.hg-site-stats strong {
  display: block;
  margin-top: var(--hg-space-1);
  color: var(--hg-color-text);
}

.hg-site-actions {
  align-items: stretch;
}

.hg-site-actions .btn {
  display: inline-flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: var(--hg-space-2);
  min-height: 38px;
}

.hg-sites-page {
  padding-top: 0;
}

.hg-sites-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--hg-space-3);
}

.hg-sites-hero-actions .btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: var(--hg-space-2);
  border-radius: 12px;
  font-weight: 700;
}

.hg-sites-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--hg-space-4);
}

.hg-sites-tabs,
.hg-sites-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--hg-space-2);
}

.hg-sites-tabs button,
.hg-sites-tools .btn,
.hg-sites-tools select,
.hg-sites-search {
  min-height: 38px;
  border: 1px solid var(--hg-color-border);
  border-radius: var(--hg-radius-md);
  background: var(--hg-color-surface);
  color: var(--hg-color-text);
  font-size: 14px;
}

.hg-sites-tabs button {
  padding: 0 var(--hg-space-4);
}

.hg-sites-tabs button.is-active {
  border-color: var(--hg-color-text);
  background: var(--hg-color-text);
  color: var(--hg-color-surface-primary);
}

.hg-sites-search {
  display: inline-flex;
  min-width: 256px;
  align-items: center;
  gap: var(--hg-space-2);
  padding: 0 var(--hg-space-3);
  color: var(--hg-color-text-muted);
}

.hg-sites-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
}

.hg-sites-tools select {
  min-width: 180px;
  padding: 0 var(--hg-space-3);
}

.hg-my-sites-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--hg-space-5);
}

.hg-domain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--hg-space-5);
}

.hg-my-site-card,
.hg-domain-card {
  display: grid;
  gap: var(--hg-space-4);
  overflow: visible;
  border: 1px solid var(--hg-color-border);
  border-radius: var(--hg-radius-md);
  background: var(--hg-color-surface);
  box-shadow: var(--hg-shadow-sm);
}

.hg-domain-card.hg-feature-card {
  grid-auto-rows: min-content;
}

.hg-domain-card.hg-feature-card.is-current {
  border-color: rgba(33, 102, 243, 0.35);
  box-shadow: 0 0 0 1px rgba(33, 102, 243, 0.15), var(--hg-shadow-sm);
}

.hg-my-site-card > .hg-site-card-header,
.hg-my-site-card > .hg-site-stats,
.hg-my-site-card > .hg-site-meta-grid,
.hg-domain-card > .hg-site-card-header,
.hg-domain-card > .hg-site-meta-grid {
  margin-right: var(--hg-space-5);
  margin-left: var(--hg-space-5);
}

.hg-my-site-card > .hg-site-card-header,
.hg-domain-card > .hg-site-card-header {
  margin-top: var(--hg-space-5);
}

.hg-site-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--hg-space-3);
}

.hg-site-meta-grid div {
  padding: var(--hg-space-3);
  border-radius: var(--hg-radius-sm);
  background: var(--hg-color-surface-muted);
}

.hg-site-meta-grid span,
.hg-site-meta-grid strong {
  display: block;
}

.hg-site-meta-grid span {
  color: var(--hg-color-text-muted);
  font-size: 12px;
  font-weight: 700;
}

.hg-site-meta-grid strong {
  margin-top: var(--hg-space-1);
}

.hg-my-site-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--hg-space-2);
  padding: var(--hg-space-4);
  border-top: 1px solid var(--hg-color-border);
  background: var(--hg-color-surface-muted);
}

.hg-my-site-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--hg-space-2);
  min-height: 38px;
  border-radius: var(--hg-radius-sm);
}

.hg-feature-copy {
  margin: 0 var(--hg-space-5);
  color: var(--hg-color-text-muted);
  line-height: 1.6;
}

.hg-quick-action-static {
  cursor: default;
}

.hg-dashboard-empty-inline {
  min-height: 0;
  margin-top: var(--hg-space-4);
}

.hg-attention-list {
  display: grid;
  gap: var(--hg-space-4);
}

.hg-attention-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: var(--hg-space-4);
  align-items: flex-start;
  padding: var(--hg-space-5);
  border: 1px solid var(--hg-color-border);
  border-left: 4px solid var(--hg-color-warning);
  border-radius: var(--hg-radius-md);
  background: var(--hg-color-surface);
  box-shadow: var(--hg-shadow-sm);
}

.hg-attention-item h3 {
  margin: 0;
  color: var(--hg-color-text);
  font-size: 18px;
}

.hg-attention-item p {
  margin: var(--hg-space-2) 0 0;
  color: var(--hg-color-text-muted);
}

.hg-attention-item > small {
  color: var(--hg-color-text-muted);
  white-space: nowrap;
}

.hg-attention-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--hg-space-2);
  margin-top: var(--hg-space-4);
}

.hg-site-detail-page {
  padding-top: 0;
}

.hg-site-detail-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--hg-space-5);
  padding-bottom: var(--hg-space-4);
  border-bottom: 1px solid var(--hg-color-border);
}

.hg-back-link {
  display: inline-flex;
  align-items: center;
  gap: var(--hg-space-2);
  margin-bottom: var(--hg-space-3);
  color: var(--hg-color-text-muted);
  font-size: 14px;
  font-weight: 700;
}

.hg-site-detail-hero h1 {
  display: flex;
  align-items: center;
  gap: var(--hg-space-2);
  margin: 0;
  color: var(--hg-color-text);
  font-size: 32px;
  line-height: 1.2;
}

.hg-site-detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--hg-space-2);
  margin-top: var(--hg-space-2);
  color: var(--hg-color-text-muted);
}

.hg-site-tabs {
  display: flex;
  min-height: 54px;
  overflow-x: auto;
  border-bottom: 1px solid var(--hg-color-border);
}

.hg-site-tabs a {
  display: inline-flex;
  align-items: center;
  padding: 0 var(--hg-space-4);
  border-bottom: 2px solid transparent;
  color: var(--hg-color-text-muted);
  font-weight: 700;
  white-space: nowrap;
}

.hg-site-tabs a:hover,
.hg-site-tabs a.is-active {
  border-bottom-color: var(--hg-color-primary);
  color: var(--hg-color-text);
  text-decoration: none;
}

.hg-site-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--hg-space-5);
}

.hg-site-readiness-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: var(--hg-space-4);
  padding: var(--hg-space-5);
  border: 1px solid var(--hg-color-border);
  border-radius: var(--hg-radius-md);
  background: var(--hg-color-surface);
  box-shadow: var(--hg-shadow-sm);
}

.hg-site-readiness-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--hg-radius-md);
  background: rgba(33, 102, 243, 0.1);
  color: var(--hg-color-primary);
  font-size: 18px;
}

.hg-site-readiness-success .hg-site-readiness-icon {
  background: rgba(19, 138, 91, 0.1);
  color: var(--hg-color-success);
}

.hg-site-readiness-warning .hg-site-readiness-icon {
  background: rgba(154, 91, 0, 0.1);
  color: var(--hg-color-warning);
}

.hg-site-readiness-body {
  display: grid;
  gap: var(--hg-space-3);
}

.hg-site-readiness-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--hg-space-4);
}

.hg-site-readiness-heading span:first-child {
  color: var(--hg-color-text-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hg-site-readiness-heading h3 {
  margin: var(--hg-space-1) 0 0;
  color: var(--hg-color-text);
  font-size: 22px;
  line-height: 1.25;
}

.hg-site-readiness-body p,
.hg-site-readiness-body small {
  margin: 0;
  color: var(--hg-color-text-muted);
  line-height: 1.5;
}

.hg-site-readiness-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--hg-color-surface-muted);
}

.hg-site-readiness-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--hg-color-primary);
}

.hg-site-readiness-success .hg-site-readiness-progress span {
  background: var(--hg-color-success);
}

.hg-site-readiness-warning .hg-site-readiness-progress span {
  background: var(--hg-color-warning);
}

.hg-domain-action-panel {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: var(--hg-space-4);
  align-items: center;
  padding: var(--hg-space-5);
  border: 1px solid var(--hg-color-border);
  border-radius: var(--hg-radius-md);
  background: var(--hg-color-surface);
  box-shadow: var(--hg-shadow-sm);
}

.hg-domain-action-panel-warning {
  border-color: rgba(154, 91, 0, 0.28);
  background: var(--hg-color-amber-50);
}

.hg-domain-action-panel-success {
  border-color: rgba(19, 138, 91, 0.22);
  background: var(--hg-color-green-50);
}

.hg-domain-action-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: var(--hg-radius-md);
  background: rgba(33, 102, 243, 0.1);
  color: var(--hg-color-primary);
  font-size: 20px;
}

.hg-domain-action-panel-warning .hg-domain-action-icon {
  background: rgba(154, 91, 0, 0.12);
  color: var(--hg-color-warning);
}

.hg-domain-action-panel-success .hg-domain-action-icon {
  background: rgba(19, 138, 91, 0.12);
  color: var(--hg-color-success);
}

.hg-domain-action-copy {
  display: grid;
  gap: var(--hg-space-2);
}

.hg-domain-action-copy span {
  color: var(--hg-color-text-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hg-domain-action-copy h3,
.hg-domain-action-copy p,
.hg-domain-action-copy small {
  margin: 0;
}

.hg-domain-action-copy h3 {
  color: var(--hg-color-text);
  font-size: 22px;
  line-height: 1.25;
}

.hg-domain-action-copy p,
.hg-domain-action-copy small {
  color: var(--hg-color-text-muted);
  line-height: 1.5;
}

.hg-domain-action-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: var(--hg-space-2);
}

.hg-domain-action-buttons form {
  margin: 0;
}

.hg-detail-panel {
  display: grid;
  gap: var(--hg-space-4);
  padding: var(--hg-space-5);
  border: 1px solid var(--hg-color-border);
  border-radius: var(--hg-radius-md);
  background: var(--hg-color-surface);
  box-shadow: var(--hg-shadow-sm);
}

.hg-detail-panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--hg-space-4);
}

.hg-site-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--hg-space-2);
  margin-top: var(--hg-space-4);
}

.hg-responsive-table {
  width: 100%;
  overflow-x: auto;
}

.hg-responsive-table .table {
  min-width: 760px;
  margin-bottom: 0;
}

.hg-detail-panel-heading h3 {
  margin: 0;
  color: var(--hg-color-text);
  font-size: 20px;
}

.hg-detail-panel-heading select {
  min-height: 38px;
  border: 1px solid var(--hg-color-border);
  border-radius: var(--hg-radius-md);
  background: var(--hg-color-surface-primary);
  color: var(--hg-color-text);
}

.hg-detail-big-number {
  color: var(--hg-color-text);
  font-size: 36px;
  line-height: 1;
}

.hg-bar-chart {
  display: grid;
  height: 184px;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: var(--hg-space-4);
  align-items: end;
  padding: var(--hg-space-3);
  border-radius: var(--hg-radius-md);
  background: var(--hg-color-surface-muted);
}

.hg-bar-chart span {
  border-radius: var(--hg-radius-sm) var(--hg-radius-sm) 0 0;
  background: rgba(33, 102, 243, 0.35);
}

.hg-resource-usage-list {
  display: grid;
  gap: var(--hg-space-5);
}

.hg-resource-usage-list div {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--hg-space-2);
  padding-bottom: 20px;
}

.hg-resource-usage-list div::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 12px;
  border-radius: 999px;
  background: var(--hg-color-surface-muted);
  content: "";
}

.hg-resource-usage-list em {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 12px;
  border-radius: 999px;
  background: var(--hg-color-primary);
}

.hg-danger-panel {
  border-color: rgba(201, 52, 52, 0.35);
  background: var(--hg-color-red-50);
}

.hg-danger-panel h2 {
  color: var(--hg-color-danger);
}

.hg-delete-confirm-form {
  display: grid;
  gap: var(--hg-space-3);
}

.hg-delete-context {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--hg-space-3);
  margin-bottom: var(--hg-space-4);
}

.hg-delete-context div {
  border: 1px solid rgba(201, 52, 52, 0.18);
  border-radius: var(--hg-radius-sm);
  background: var(--hg-color-surface-primary);
  padding: var(--hg-space-3);
}

.hg-delete-context span {
  display: block;
  color: var(--hg-color-text-muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hg-delete-context strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--hg-color-text);
}

.hg-delete-confirm-form label {
  margin: 0;
  color: var(--hg-color-text);
  font-weight: 700;
}

.hg-delete-confirm-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--hg-space-3);
  align-items: center;
}

.hg-delete-confirm-row input {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(201, 52, 52, 0.35);
  border-radius: var(--hg-radius-sm);
  background: var(--hg-color-surface-primary);
  color: var(--hg-color-text);
  padding: 0 var(--hg-space-3);
}

.hg-delete-confirm-form .hg-delete-host-option {
  display: flex;
  align-items: center;
  gap: var(--hg-space-2);
  color: var(--hg-color-text-muted);
  font-weight: 600;
}

.hg-delete-confirm-form .hg-delete-host-option input {
  margin: 0;
}

.hg-delete-confirm-form small {
  color: var(--hg-color-text-muted);
}

.hg-muted {
  margin: 0;
  color: var(--hg-color-text-muted);
}

.hg-domain-change-form {
  display: grid;
  gap: var(--hg-space-3);
  margin-top: var(--hg-space-4);
}

.hg-domain-change-form label {
  margin: 0;
  color: var(--hg-color-text);
  font-weight: 700;
}

.hg-domain-change-form .hg-confirm-inline {
  display: flex;
  align-items: flex-start;
  gap: var(--hg-space-2);
  color: var(--hg-color-text-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.hg-domain-change-form .hg-confirm-inline input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
}

.hg-domain-connect-action .hg-confirm-inline {
  display: flex;
  align-items: flex-start;
  gap: var(--hg-space-2);
  margin: 0;
  color: var(--hg-color-text-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.hg-domain-connect-action .hg-confirm-inline input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
}

.hg-inline-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--hg-space-3);
  align-items: center;
}

.hg-inline-form input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--hg-color-border);
  border-radius: var(--hg-radius-sm);
  background: var(--hg-color-surface-primary);
  color: var(--hg-color-text);
  padding: 0 var(--hg-space-3);
}

.hg-inline-form select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--hg-color-border);
  border-radius: var(--hg-radius-sm);
  background-color: var(--hg-color-surface-primary);
  color: var(--hg-color-text);
}

.hg-form-field {
  display: grid;
  gap: var(--hg-space-2);
  margin: 0;
}

.hg-form-field span {
  color: var(--hg-color-text-muted);
  font-size: 13px;
  font-weight: 700;
}

.hg-dashboard-panel-copy {
  color: var(--hg-color-text-muted);
  line-height: 1.65;
}

.hg-domain-change-form small {
  color: var(--hg-color-text-muted);
}

.hg-domain-capabilities {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--hg-space-2);
  margin: var(--hg-space-4) 0;
}

.hg-domain-capabilities a {
  display: grid;
  gap: 3px;
  min-height: 76px;
  border: 1px solid var(--hg-color-border);
  border-radius: var(--hg-radius-sm);
  background: var(--hg-color-surface-primary);
  color: var(--hg-color-text);
  padding: var(--hg-space-3);
  text-decoration: none;
}

.hg-domain-capabilities a:hover {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: var(--hg-shadow-sm);
}

.hg-domain-capabilities a.is-muted {
  background: var(--hg-color-surface-hover);
  color: var(--hg-color-text-muted);
}

.hg-domain-capabilities i {
  color: var(--hg-color-primary);
}

.hg-domain-capabilities span {
  font-weight: 800;
}

.hg-domain-capabilities small {
  color: var(--hg-color-text-muted);
}

.hg-new-site-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: var(--hg-space-5);
  align-items: start;
}

.hg-new-site-wizard {
  max-width: 960px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr);
}

.hg-new-site-form {
  display: grid;
  gap: var(--hg-space-5);
}

.hg-install-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--hg-space-3);
}

.hg-install-steps span {
  border: 1px solid var(--hg-color-border);
  border-radius: var(--hg-radius-sm);
  background: var(--hg-color-surface-muted);
  color: var(--hg-color-text-muted);
  padding: var(--hg-space-3);
  font-weight: 800;
  text-align: center;
}

.hg-install-steps span.is-active {
  border-color: var(--hg-color-primary);
  background: rgba(33, 102, 243, 0.08);
  color: var(--hg-color-primary);
}

.hg-detail-panel[hidden] {
  display: none;
}

.hg-staging-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.hg-staging-actions form {
  margin: 0;
}

.hg-new-site-cycle {
  margin: 0;
}

.hg-new-site-plan-grid,
.hg-domain-option-grid {
  display: grid;
  gap: var(--hg-space-3);
}

.hg-new-site-plan,
.hg-domain-option {
  display: grid;
  cursor: pointer;
  gap: var(--hg-space-3);
  border: 1px solid var(--hg-color-border);
  border-radius: var(--hg-radius-md);
  background: var(--hg-color-surface);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.hg-new-site-plan {
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  padding: var(--hg-space-4);
}

.hg-domain-option {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  padding: var(--hg-space-4);
}

.hg-new-site-plan:hover,
.hg-new-site-plan.is-selected,
.hg-domain-option:hover,
.hg-domain-option.is-selected {
  border-color: var(--hg-color-primary);
  box-shadow: 0 0 0 3px rgba(33, 102, 243, 0.1);
}

.hg-domain-option.is-disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.hg-domain-option.is-disabled:hover {
  border-color: var(--hg-color-border);
  box-shadow: var(--hg-shadow-sm);
}

.hg-new-site-plan input,
.hg-domain-option input {
  margin-top: 4px;
}

.hg-new-site-plan strong,
.hg-new-site-plan small,
.hg-new-site-plan em,
.hg-domain-option strong,
.hg-domain-option small {
  display: block;
}

.hg-new-site-plan small,
.hg-domain-option small {
  color: var(--hg-color-text-muted);
  line-height: 1.45;
}

.hg-new-site-plan em {
  color: var(--hg-color-text);
  font-style: normal;
  font-weight: 800;
  text-align: right;
  white-space: nowrap;
}

.hg-domain-option > span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--hg-radius-sm);
  background: rgba(33, 102, 243, 0.1);
  color: var(--hg-color-primary);
}

.hg-new-site-domain-field {
  display: grid;
  gap: var(--hg-space-2);
  margin: var(--hg-space-4) 0 0;
  color: var(--hg-color-text);
  font-weight: 700;
}

.hg-new-site-domain-grid {
  display: grid;
  gap: var(--hg-space-4);
}

.hg-new-site-domain-field input {
  min-height: 46px;
  border: 1px solid var(--hg-color-border);
  border-radius: var(--hg-radius-sm);
  padding: 0 var(--hg-space-3);
  font-weight: 500;
}

.hg-new-site-domain-field small {
  color: var(--hg-color-text-muted);
  font-weight: 500;
}

.hg-new-site-register-notice {
  display: grid;
  gap: var(--hg-space-1);
  margin-top: var(--hg-space-4);
  border: 1px solid rgba(180, 83, 9, 0.22);
  border-radius: var(--hg-radius-sm);
  background: rgba(245, 158, 11, 0.1);
  color: var(--hg-color-amber-700);
  padding: var(--hg-space-3);
}

.hg-new-site-register-notice span {
  color: var(--hg-color-amber-700);
}

.hg-new-site-register-notice[hidden],
.hg-new-site-domain-field[hidden] {
  display: none;
}

.hg-new-site-settings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--hg-space-4);
}

.hg-new-site-settings-grid label {
  display: grid;
  gap: var(--hg-space-2);
  margin: 0;
  color: var(--hg-color-text);
  font-weight: 700;
}

.hg-new-site-settings-grid input,
.hg-new-site-settings-grid select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--hg-color-border);
  border-radius: var(--hg-radius-sm);
  background: var(--hg-color-surface-primary);
  color: var(--hg-color-text);
  padding: 0 var(--hg-space-3);
  font-weight: 500;
}

.hg-new-site-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--hg-space-3);
}

.hg-new-site-summary {
  position: sticky;
  top: var(--hg-space-5);
}

.hg-check-list,
.hg-toggle-list {
  display: grid;
  gap: var(--hg-space-4);
}

.hg-check-list > div,
.hg-toggle-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--hg-space-4);
  padding: var(--hg-space-3) 0;
  border-bottom: 1px solid var(--hg-color-border);
}

.hg-check-list > div {
  justify-content: flex-start;
}

.hg-check-list > div:last-child,
.hg-toggle-list > div:last-child {
  border-bottom: 0;
}

.hg-check-list strong,
.hg-check-list small {
  display: block;
}

.hg-check-list small {
  color: var(--hg-color-text-muted);
}

.hg-monitor-bars {
  display: grid;
  grid-template-columns: repeat(30, minmax(4px, 1fr));
  gap: 4px;
  align-items: end;
  min-height: 72px;
  padding: var(--hg-space-3);
  border-radius: var(--hg-radius-md);
  background: var(--hg-color-surface-muted);
}

.hg-monitor-bars span {
  height: 64px;
  border-radius: 999px;
  background: rgba(19, 138, 91, 0.45);
}

.hg-monitor-bars span:nth-child(6n) {
  height: 58px;
}

.hg-toggle-list span {
  position: relative;
  width: 48px;
  height: 24px;
  flex: 0 0 48px;
  border-radius: 999px;
  background: var(--hg-color-border);
}

.hg-toggle-list span::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--hg-color-surface-primary);
  content: "";
}

.hg-toggle-list span.is-on {
  background: var(--hg-color-primary);
}

.hg-toggle-list span.is-on::after {
  left: 28px;
}

.hg-dashboard-empty {
  display: grid;
  justify-items: center;
  gap: var(--hg-space-3);
  padding: 48px var(--hg-space-5);
  text-align: center;
}

.hg-dashboard-empty h3 {
  margin: 0;
  font-size: 22px;
}

.hg-dashboard-empty p {
  max-width: 520px;
  margin: 0;
  color: var(--hg-color-text-muted);
}

.hg-saas-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--hg-color-border);
  border-radius: var(--hg-radius-md);
  background: var(--hg-color-surface-primary);
}

.hg-saas-table {
  width: 100%;
  min-width: 760px;
  margin: 0;
  border-collapse: collapse;
}

.hg-saas-table th,
.hg-saas-table td {
  padding: 16px;
  border-bottom: 1px solid var(--hg-color-border);
  color: var(--hg-color-text);
  vertical-align: middle;
}

.hg-saas-table th {
  background: var(--hg-color-surface-muted);
  color: var(--hg-color-text-muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hg-saas-table tr:last-child td {
  border-bottom: 0;
}

.hg-saas-table td strong {
  display: inline-flex;
  max-width: 360px;
  align-items: center;
  gap: var(--hg-space-2);
  color: var(--hg-color-text);
}

.hg-table-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.hg-backup-manual-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--hg-space-4);
  margin: var(--hg-space-4) 0;
  padding: var(--hg-space-4);
  border: 1px solid var(--hg-color-border);
  border-radius: var(--hg-radius-md);
  background: var(--hg-color-surface-muted);
}

.hg-backup-manual-box > div {
  display: grid;
  gap: 4px;
}

.hg-backup-manual-box small {
  color: var(--hg-color-text-muted);
}

.hg-inline-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--hg-space-3);
  padding: 10px 12px;
  border: 1px solid var(--hg-color-border);
  border-radius: var(--hg-radius-sm);
  background: var(--hg-color-surface-hover);
  color: var(--hg-color-text-muted);
  font-size: 14px;
}

.hg-inline-status i {
  color: var(--hg-color-primary);
}

.hg-inline-status-success {
  background: var(--hg-color-green-50);
  color: var(--hg-color-green-700);
}

.hg-inline-status-success i {
  color: var(--hg-color-green-600);
}

.hg-inline-status-danger {
  background: var(--hg-color-red-50);
  color: var(--hg-color-red-700);
}

.hg-inline-status-danger i {
  color: var(--hg-color-red-600);
}

.hg-processing-overlay {
  position: fixed;
  z-index: 99999;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(17, 24, 39, 0.46);
}

.hg-processing-dialog {
  display: grid;
  width: min(420px, 100%);
  justify-items: center;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--hg-color-border);
  border-radius: var(--hg-radius-md);
  background: var(--hg-color-surface-primary);
  box-shadow: var(--hg-shadow-md);
  text-align: center;
}

.hg-processing-dialog strong {
  font-size: 20px;
}

.hg-processing-dialog p,
.hg-processing-dialog small {
  margin: 0;
  color: var(--hg-color-text-muted);
}

.hg-processing-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--hg-color-blue-100);
  border-top-color: var(--hg-color-primary);
  border-radius: 50%;
  animation: hg-spin 0.8s linear infinite;
}

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

.hg-modal-open {
  overflow: hidden;
}

.hg-modal-backdrop {
  position: fixed;
  z-index: 99990;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.52);
}

.hg-modal-backdrop[hidden] {
  display: none;
}

.hg-modal-dialog {
  width: min(960px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  border: 1px solid var(--hg-color-border);
  border-radius: var(--hg-radius-md);
  background: var(--hg-color-surface-primary);
  box-shadow: var(--hg-shadow-md);
}

.hg-modal-header {
  display: flex;
  justify-content: space-between;
  gap: var(--hg-space-4);
  align-items: flex-start;
  padding: var(--hg-space-6);
  border-bottom: 1px solid var(--hg-color-border);
}

.hg-modal-header h2 {
  margin: 0 0 var(--hg-space-2);
  color: var(--hg-color-text);
  font-size: 24px;
}

.hg-modal-header p {
  margin: 0;
  color: var(--hg-color-text-muted);
}

.hg-domain-connect-dialog {
  padding-bottom: var(--hg-space-6);
}

.hg-domain-connect-list {
  display: grid;
  gap: var(--hg-space-4);
  padding: var(--hg-space-6);
}

.hg-domain-connect-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
  gap: var(--hg-space-4);
  align-items: center;
  padding: var(--hg-space-5);
  border: 1px solid var(--hg-color-border);
  border-radius: var(--hg-radius-sm);
  background: var(--hg-color-surface-primary);
}

.hg-domain-connect-card h3 {
  margin: 0 0 var(--hg-space-1);
  color: var(--hg-color-text);
  font-size: 20px;
}

.hg-domain-connect-card p,
.hg-domain-connect-card small {
  margin: 0;
  color: var(--hg-color-text-muted);
}

.hg-domain-connect-card .hg-site-badges {
  margin: var(--hg-space-3) 0;
}

.hg-domain-connect-action {
  display: grid;
  gap: var(--hg-space-3);
  justify-items: stretch;
}

.hg-domain-connect-action .btn {
  width: 100%;
}

.hg-dns-record-form {
  display: grid;
  grid-template-columns: minmax(110px, 0.9fr) minmax(110px, 0.7fr) minmax(220px, 2fr) minmax(90px, 0.6fr) minmax(90px, 0.6fr) auto;
  gap: var(--hg-space-2);
  align-items: center;
}

.hg-dns-record-form .form-control {
  min-height: 40px;
}

.hg-dns-delete-form {
  display: flex;
  justify-content: flex-end;
  margin-top: var(--hg-space-2);
}

.hg-dns-record-form-new {
  margin-top: var(--hg-space-3);
}

.hg-account-form {
  display: grid;
  gap: var(--hg-space-5);
}

.hg-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--hg-space-4);
}

.hg-form-grid .form-group {
  margin: 0;
}

.hg-form-grid label,
.hg-account-form label {
  color: var(--hg-color-text);
  font-size: 13px;
  font-weight: 700;
}

.hg-form-grid .form-control,
.hg-form-grid .custom-select,
.hg-form-grid select,
.hg-form-grid input,
.hg-form-grid textarea {
  min-height: 44px;
  border-color: var(--hg-color-border);
  border-radius: var(--hg-radius-md);
  box-shadow: none;
}

.hg-toggle-list label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--hg-space-4);
  padding: var(--hg-space-3) 0;
  border-bottom: 1px solid var(--hg-color-border);
}

.hg-toggle-list label:last-child {
  border-bottom: 0;
}

.hg-toggle-list label span {
  position: static;
  display: grid;
  width: auto;
  height: auto;
  flex: 1 1 auto;
  gap: 2px;
  border-radius: 0;
  background: transparent;
}

.hg-toggle-list label span::after {
  display: none;
}

.hg-toggle-list label strong,
.hg-toggle-list label small {
  display: block;
}

.hg-toggle-list label small {
  color: var(--hg-color-text-muted);
  font-weight: 400;
}

.hg-toggle-list input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.hg-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: var(--hg-space-3);
  padding-bottom: var(--hg-space-6);
}

.hg-native-whmcs-panel > .card {
  margin: 0;
  border: 0;
  box-shadow: none;
}

.hg-native-whmcs-panel > .card > .card-body {
  padding: 0;
}

.hg-native-whmcs-panel .card-title {
  margin: 0 0 var(--hg-space-5);
  color: var(--hg-color-text);
  font-size: 24px;
}

.hg-native-whmcs-panel .form-control,
.hg-native-whmcs-panel .custom-select {
  min-height: 44px;
  border-color: var(--hg-color-border);
  border-radius: var(--hg-radius-md);
  box-shadow: none;
}

.hg-native-whmcs-panel .control-label,
.hg-native-whmcs-panel label {
  color: var(--hg-color-text);
  font-weight: 700;
}

.hg-dashboard-split {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: var(--hg-space-5);
}

.hg-dashboard-panel {
  padding: var(--hg-space-5);
}

.hg-activity-list {
  display: grid;
  gap: var(--hg-space-3);
  margin: 0;
  padding: 0;
  list-style: none;
}

.hg-activity-list li {
  justify-content: flex-start;
  padding: var(--hg-space-3) 0;
  border-bottom: 1px solid var(--hg-color-border);
}

.hg-activity-list li:last-child {
  border-bottom: 0;
}

.hg-activity-list div {
  flex: 1;
}

.hg-activity-list strong,
.hg-activity-list small {
  display: block;
}

.hg-activity-list small,
.hg-activity-list em {
  color: var(--hg-color-text-muted);
  font-size: 13px;
  font-style: normal;
}

.hg-account-summary {
  display: grid;
  gap: var(--hg-space-3);
}

.hg-account-summary a {
  justify-content: flex-start;
  padding: var(--hg-space-4);
  border: 1px solid var(--hg-color-border);
  border-radius: var(--hg-radius-md);
  color: var(--hg-color-text);
  text-decoration: none;
}

.hg-account-summary strong,
.hg-account-summary small {
  display: block;
}

.hg-account-summary strong {
  font-size: 24px;
  line-height: 1;
}

.hg-account-summary small {
  margin-top: var(--hg-space-1);
  color: var(--hg-color-text-muted);
}

.hg-support-list,
.hg-support-thread {
  display: grid;
  gap: var(--hg-space-4);
}

.hg-support-item-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--hg-space-4);
  margin-bottom: var(--hg-space-4);
}

.hg-support-item-heading h2,
.hg-support-item-heading h3 {
  margin: 0;
  color: var(--hg-color-text);
}

.hg-support-item-heading h2 a {
  color: inherit;
  text-decoration: none;
}

.hg-support-item-heading p,
.hg-support-meta {
  margin: var(--hg-space-1) 0 0;
  color: var(--hg-color-text-muted);
}

.hg-support-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--hg-space-4);
  margin-bottom: var(--hg-space-4);
  font-size: 14px;
}

.hg-support-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: var(--hg-space-3);
  align-items: center;
  padding: var(--hg-space-4);
  border: 1px solid var(--hg-color-border);
  border-radius: var(--hg-radius-md);
  color: var(--hg-color-text);
  text-decoration: none;
}

.hg-support-row span,
.hg-quick-action > span {
  flex: 0 0 auto;
}

.hg-support-row > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: var(--hg-radius-md);
  background: var(--hg-color-blue-50);
  color: var(--hg-color-primary);
}

.hg-support-row strong,
.hg-support-row small {
  display: block;
}

.hg-support-row small {
  margin-top: var(--hg-space-1);
  color: var(--hg-color-text-muted);
}

.hg-rich-content {
  color: var(--hg-color-text);
  line-height: 1.7;
}

.hg-rich-content img,
.hg-rich-content iframe {
  max-width: 100%;
}

.hg-rich-content p:last-child,
.hg-rich-content ul:last-child,
.hg-rich-content ol:last-child {
  margin-bottom: 0;
}

.hg-ticket-reply {
  border-left: 4px solid var(--hg-color-border);
}

.hg-ticket-reply.is-staff {
  border-left-color: var(--hg-color-primary);
}

.hg-ticket-attachments {
  margin-top: var(--hg-space-4);
  padding-top: var(--hg-space-4);
  border-top: 1px solid var(--hg-color-border);
}

.hg-ticket-attachments ul {
  display: flex;
  flex-wrap: wrap;
  gap: var(--hg-space-2);
  margin: var(--hg-space-3) 0 0;
  padding: 0;
  list-style: none;
}

.hg-ticket-attachments a,
.hg-ticket-attachments span {
  display: inline-flex;
  align-items: center;
  gap: var(--hg-space-2);
  padding: var(--hg-space-2) var(--hg-space-3);
  border: 1px solid var(--hg-color-border);
  border-radius: var(--hg-radius-md);
  color: var(--hg-color-text);
  text-decoration: none;
}

.hg-kb-search {
  margin-bottom: var(--hg-space-6);
}

.hg-kb-vote {
  margin-top: var(--hg-space-6);
  padding-top: var(--hg-space-5);
  border-top: 1px solid var(--hg-color-border);
}

.hg-dashboard-badge-danger {
  background: var(--hg-color-red-100);
  color: var(--hg-color-red-700);
}

@media (max-width: 1199px) {
  .hg-dashboard-metrics,
  .hg-resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .hg-front-hero-grid,
  .hg-front-domain-grid {
    grid-template-columns: 1fr;
  }

  .hg-front-header {
    gap: 24px;
  }

  .hg-front-menu-panel {
    gap: 24px;
  }

  .hg-front-nav {
    gap: 24px;
  }

  .hg-front-steps,
  .hg-front-feature-grid,
  .hg-static-steps,
  .hg-static-help-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .hg-front-header {
    position: sticky;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: auto;
    padding: 16px 24px;
    gap: 16px;
  }

  .hg-front-menu-toggle {
    display: inline-flex;
  }

  .hg-front-menu-panel {
    display: none;
    position: fixed;
    z-index: 19;
    top: 73px;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    max-width: none;
    min-height: calc(100dvh - 73px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 28px;
    padding: 28px 24px 40px;
    overflow-y: auto;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(17, 17, 17, 0.18);
    -webkit-overflow-scrolling: touch;
  }

  .hg-front-header.is-mobile-menu-open .hg-front-menu-panel {
    display: flex;
  }

  .hg-front-nav {
    order: 2;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
  }

  .hg-front-nav a {
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #eeeeee;
    color: #343434;
    font-size: 18px;
    line-height: 24px;
  }

  .hg-front-nav a:last-child {
    border-bottom: 1px solid #eeeeee;
  }

  .hg-front-actions {
    order: 1;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-left: 0;
  }

  .hg-front-actions .hg-front-link {
    min-height: 46px;
    font-size: 16px;
  }

  .hg-front-actions .hg-front-button {
    width: 100%;
    min-height: 46px;
  }

  .hg-front-hero {
    padding-top: 56px;
  }

  .hg-front-plan-grid,
  .hg-front-footer-grid {
    grid-template-columns: 1fr;
  }

  .hg-pricing-grid,
  .hg-pricing-included-grid,
  .hg-solution-paths,
  .hg-domain-select-grid {
    grid-template-columns: 1fr;
  }

  .hg-pricing-card {
    min-height: auto;
  }

  .hg-pricing-plans-heading {
    margin-bottom: 32px;
  }

  .hg-static-feature-split,
  .hg-auth-shell {
    grid-template-columns: 1fr;
    gap: var(--hg-space-6);
  }

  .hg-public-support-hero {
    align-items: flex-start;
    flex-direction: column;
    padding: 64px 0 40px;
  }

  .hg-public-support-hero h1 {
    font-size: 44px;
    line-height: 1.14;
  }

  .hg-public-support-hero .hg-sites-hero-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .hg-public-support-hero .hg-sites-hero-actions .btn {
    flex: 1 1 220px;
    justify-content: center;
  }

  .hg-front-product-layout {
    grid-template-columns: 1fr;
  }

  .hg-front-product-layout aside {
    display: none;
  }

  .hg-saas-dashboard {
    padding-top: var(--hg-space-5);
  }

  .hg-dashboard-hero,
  .hg-dashboard-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .hg-domain-action-panel {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .hg-domain-action-buttons {
    width: 100%;
    justify-content: flex-start;
  }

  .hg-sites-grid,
  .hg-dashboard-split,
  .hg-my-sites-grid,
  .hg-domain-grid,
  .hg-domain-connect-card,
  .hg-dns-record-form,
  .hg-form-grid,
  .hg-site-detail-grid {
    grid-template-columns: 1fr;
  }

  .hg-form-span-2 {
    grid-column: auto;
  }

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

@media (max-width: 900px) {
  .hg-app-shell {
    grid-template-columns: 1fr;
  }

  .hg-app-sidebar {
    position: relative;
    height: auto;
    gap: var(--hg-space-4);
    padding: var(--hg-space-4);
    border-right: 0;
    border-bottom: 1px solid var(--hg-color-border-subtle);
  }

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

  .hg-app-nav-group,
  .hg-upgrade-card {
    display: none;
  }

  .hg-app-main {
    padding: var(--hg-space-4);
  }

  .hg-app-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hg-app-topbar-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .hg-app-topbar-actions .btn {
    flex: 1;
    justify-content: center;
  }

  .hg-sites-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .hg-site-detail-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .hg-new-site-layout {
    grid-template-columns: 1fr;
  }

  .hg-new-site-summary {
    position: static;
  }

  .hg-sites-tools,
  .hg-sites-tabs {
    width: 100%;
  }

  .hg-sites-search,
  .hg-sites-tools select {
    flex: 1;
    min-width: 220px;
  }
}

@media (max-width: 575px) {
  .hg-front-container {
    width: min(100% - 32px, 1216px);
  }

  .hg-auth-shell,
  .hg-register-shell,
  .hg-error-shell {
    width: min(100% - 32px, 1216px);
  }

  .hg-front-header {
    gap: var(--hg-space-4);
  }

  .hg-front-actions,
  .hg-front-hero-actions,
  .hg-front-domain-search div {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .hg-front-actions .hg-front-button,
  .hg-front-hero-actions .hg-front-button {
    width: 100%;
  }

  .hg-front-hero h1 {
    font-size: 40px;
  }

  .hg-front-lead {
    font-size: 18px;
  }

  .hg-public-support-hero,
  .hg-public-support-container {
    width: min(100% - 32px, 928px);
  }

  .hg-public-support-hero h1 {
    font-size: 36px;
  }

  .hg-public-support-hero p {
    font-size: 16px;
    line-height: 1.5;
  }

  .hg-public-support-card {
    padding: 24px;
    border-radius: 16px;
  }

  .hg-front-section,
  .hg-front-cta,
  .hg-pricing-section,
  .hg-pricing-plans {
    padding: 64px 0;
  }

  .hg-pricing-hero {
    padding: 56px 0 48px;
  }

  .hg-pricing-hero h1 {
    font-size: 44px;
    line-height: 1.12;
  }

  .hg-pricing-cycle-toggle {
    min-height: auto;
    flex-wrap: wrap;
    margin-top: 40px;
  }

  .hg-pricing-plans-heading h2 {
    font-size: 38px;
    line-height: 44px;
  }

  .hg-pricing-plans-heading p {
    font-size: 16px;
    line-height: 24px;
  }

  .hg-pricing-table-wrap {
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
  }

  .hg-pricing-table thead {
    top: 73px;
  }

  .hg-pricing-toggle {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hg-front-steps,
  .hg-front-feature-grid,
  .hg-front-metrics-mini,
  .hg-static-help-grid,
  .hg-static-steps {
    grid-template-columns: 1fr;
  }

  .hg-static-hero,
  .hg-auth-shell,
  .hg-register-shell {
    padding: 48px 0 64px;
  }

  .hg-static-hero h1,
  .hg-auth-copy h1,
  .hg-error-shell h1 {
    font-size: 38px;
  }

  .hg-auth-card {
    padding: var(--hg-space-5);
  }

  .hg-auth-actions,
  .hg-auth-card-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .hg-auth-card-footer {
    margin-right: calc(var(--hg-space-5) * -1);
    margin-bottom: calc(var(--hg-space-5) * -1);
    margin-left: calc(var(--hg-space-5) * -1);
    padding: var(--hg-space-4) var(--hg-space-5);
  }

  .hg-dashboard-metrics,
  .hg-quick-actions,
  .hg-resource-grid {
    grid-template-columns: 1fr;
  }

  .hg-site-stats,
  .hg-site-actions {
    grid-template-columns: 1fr;
  }

  .hg-site-actions {
    display: grid;
  }

  .hg-my-site-actions,
  .hg-site-meta-grid,
  .hg-new-site-plan,
  .hg-domain-option,
  .hg-new-site-settings-grid,
  .hg-inline-form,
  .hg-domain-capabilities,
  .hg-delete-context,
  .hg-delete-confirm-row {
    grid-template-columns: 1fr;
  }

  .hg-new-site-plan em {
    text-align: left;
  }

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

  .hg-attention-item > small {
    white-space: normal;
  }

  .hg-site-detail-hero h1 {
    font-size: 26px;
  }

  .hg-site-tabs a {
    padding: 0 var(--hg-space-3);
  }

  .hg-detail-panel-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Front marketing v2 final cascade guards */
.hg-front-v2 .hg-hero-lab,
.hg-front-v2 .hg-pricing-hero-rich {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--hg-color-border-subtle);
  background:
    linear-gradient(180deg, rgba(248, 248, 248, 0.84), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 18% 18%, rgba(59, 130, 246, 0.10), transparent 32%),
    var(--hg-color-surface-primary);
}

.hg-front-v2 .hg-hero-lab {
  padding: 96px 0 88px;
}

.hg-front-v2 .hg-pricing-hero-rich {
  min-height: 306px;
  padding: 80px 0 16px;
  border-bottom-color: #e5e5e5;
  background: #ffffff;
}

.hg-front-v2.hg-how-page .hg-how-hero {
  min-height: 426px;
  padding: 80px 0;
  border-bottom: 1px solid #e5e5e5;
  background: #ffffff;
  text-align: left;
}

.hg-front-v2.hg-how-page .hg-how-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(0, 123, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 123, 255, 0.09) 1px, transparent 1px),
    radial-gradient(circle at 31% 0%, rgba(0, 123, 255, 0.14), transparent 40%),
    radial-gradient(circle at 62% 2%, rgba(236, 72, 153, 0.12), transparent 38%);
  background-size: 32px 32px, 32px 32px, 100% 100%, 100% 100%;
  pointer-events: none;
}

.hg-front-v2.hg-how-page .hg-how-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff 86%);
  pointer-events: none;
}

.hg-front-v2.hg-how-page .hg-how-hero .hg-front-container {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 48px));
}

.hg-front-v2.hg-how-page .hg-how-hero h1 {
  max-width: 1159px;
  margin: 0;
  color: #171717;
  font-family: var(--hg-font-family-sans);
  font-size: 72px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
}

.hg-front-v2.hg-how-page .hg-how-hero p {
  width: min(839px, 100%);
  max-width: none;
  margin: 24px 0 0;
  color: #737373;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.hg-how-infra-section {
  padding: 80px 0 64px;
  background: #fafafa;
}

.hg-how-infra-container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.hg-how-infra-heading {
  max-width: 685px;
  margin-bottom: 40px;
}

.hg-how-infra-heading h2 {
  margin: 0;
  color: #171717;
  font-family: var(--hg-font-family-sans);
  font-size: 48px;
  font-weight: 500;
  line-height: 56px;
  letter-spacing: 0;
}

.hg-how-infra-heading p {
  margin: 12px 0 0;
  color: #737373;
  font-size: 18px;
  line-height: 1.5;
}

.hg-how-infra-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 540px;
  gap: 56px;
  align-items: start;
}

.hg-how-infra-copy {
  display: grid;
  gap: 96px;
}

.hg-how-infra-group {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 40px;
}

.hg-how-infra-group > span {
  color: #5a5a5a;
  font-size: 20px;
  line-height: 32px;
}

.hg-how-infra-group h3 {
  max-width: 410px;
  margin: 0 0 56px;
  color: #171717;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}

.hg-how-infra-group a {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #d8d8d8;
  color: #171717;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
}

.hg-how-infra-group a:hover,
.hg-how-infra-group a:focus {
  color: #007bff;
}

.hg-how-infra-group a i {
  flex: 0 0 auto;
  color: currentColor;
  font-size: 13px;
}

.hg-how-infra-media {
  min-height: 100%;
}

.hg-how-infra-sticky {
  position: sticky;
  top: 96px;
  overflow: hidden;
  border-radius: 8px;
}

.hg-how-infra-sticky img {
  display: block;
  width: 100%;
  aspect-ratio: 508 / 571;
  object-fit: cover;
}

.hg-how-solutions-section {
  padding: 80px 0 64px;
  background: #fafafa;
}

.hg-how-solutions-container {
  display: flex;
  flex-direction: column;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  gap: 40px;
}

.hg-how-solutions-heading {
  max-width: 685px;
}

.hg-how-solutions-heading h2 {
  margin: 0;
  color: #171717;
  font-family: var(--hg-font-family-sans);
  font-size: 48px;
  font-weight: 500;
  line-height: 56px;
  letter-spacing: 0;
}

.hg-how-solutions-heading p {
  margin: 12px 0 0;
  color: #737373;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.hg-how-solution-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  width: 100%;
  padding: 40px 0;
}

.hg-how-solution-row.is-reversed {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.hg-how-solution-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 32px;
}

.hg-how-solution-intro {
  width: 100%;
  padding-bottom: 56px;
}

.hg-how-solution-intro > span {
  display: block;
  margin: 0 0 16px;
  color: #5a5a5a;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}

.hg-how-solution-intro h3 {
  width: 100%;
  max-width: none;
  margin: 0;
  color: #171717;
  font-family: var(--hg-font-family-sans);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0;
}

.hg-how-solution-list {
  width: 100%;
}

.hg-how-solution-list details {
  position: relative;
  border-bottom: 1px solid #d8d8d8;
}

.hg-how-solution-list summary {
  display: flex;
  min-height: 50px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 4px 12px 0;
  color: #171717;
  cursor: pointer;
  list-style: none;
}

.hg-how-solution-list summary::-webkit-details-marker {
  display: none;
}

.hg-how-solution-list summary span {
  min-width: 0;
  color: #171717;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.hg-how-solution-list summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 16px;
  color: #737373;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  text-align: center;
}

.hg-how-solution-list details[open] summary::after {
  content: "-";
}

.hg-how-solution-list p {
  max-width: 430px;
  margin: -2px 32px 12px 0;
  color: #737373;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.hg-how-solution-list summary:hover span,
.hg-how-solution-list summary:focus-visible span {
  color: #007bff;
}

.hg-how-solution-media {
  margin: 0 16px;
  overflow: hidden;
  border-radius: 8px;
  background: #e5e5e5;
  box-shadow: none;
}

.hg-how-solution-media img {
  display: block;
  width: 100%;
  aspect-ratio: 508 / 571;
  object-fit: cover;
}

.hg-how-faq-section {
  border-top: 1px solid #eeeeee;
  background: #ffffff;
}

.hg-how-final-cta-section .hg-final-cta-container {
  width: min(1159px, 100%);
}

.hg-front-v2.hg-migration-page .hg-migration-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  border-bottom: 1px solid #e5e5e5;
  background: #ffffff;
  text-align: left;
}

.hg-front-v2.hg-migration-page .hg-migration-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 400px;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(0, 123, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 123, 255, 0.09) 1px, transparent 1px),
    linear-gradient(180deg, rgba(250, 250, 250, 0), #fafafa 100%);
  background-size: 32px 32px, 32px 32px, 100% 100%;
  pointer-events: none;
  transform: translateX(-50%);
}

.hg-front-v2.hg-migration-page .hg-migration-hero::after {
  content: "";
  position: absolute;
  top: -130px;
  left: 50%;
  width: 1024px;
  height: 400px;
  border-radius: 9999px;
  background: linear-gradient(90deg, rgba(0, 123, 255, 0.14), rgba(236, 72, 153, 0.12));
  filter: blur(175px);
  pointer-events: none;
  transform: translateX(-50%);
}

.hg-front-v2.hg-migration-page .hg-migration-hero .hg-front-container {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(1200px, calc(100% - 48px));
  max-width: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.hg-front-v2.hg-migration-page .hg-migration-hero h1 {
  width: min(1159px, 100%);
  max-width: none;
  margin: 0;
  color: #171717;
  font-family: var(--hg-font-family-sans);
  font-size: 72px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -1.8px;
}

.hg-front-v2.hg-migration-page .hg-migration-hero p {
  width: min(839px, 100%);
  max-width: none;
  margin: 0;
  color: #737373;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.hg-migration-continuity-section {
  padding: 80px 0 64px;
  background: #fafafa;
}

.hg-migration-continuity-section .hg-front-container {
  width: min(1200px, calc(100% - 48px));
}

.hg-migration-continuity-section .hg-pricing-services-heading {
  max-width: 685px;
  margin: 0 0 40px;
}

.hg-migration-continuity-section .hg-pricing-services-heading h2 {
  font-size: 48px;
  font-weight: 500;
  line-height: 56px;
}

.hg-migration-continuity-section .hg-pricing-services-heading p {
  max-width: 685px;
  margin-top: 16px;
}

.hg-migration-continuity-section .hg-pricing-services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.hg-migration-continuity-section .hg-pricing-services-grid article {
  display: flex;
  min-height: 428px;
  flex-direction: column;
  padding: 34px 32px 32px;
  border-radius: 12px;
}

.hg-migration-continuity-section .hg-pricing-services-grid h3 {
  margin: 0 0 12px;
}

.hg-migration-continuity-section .hg-pricing-services-grid p {
  max-width: 300px;
  margin: 0 0 36px;
}

.hg-migration-continuity-section .hg-pricing-services-grid .hg-capability-mock {
  width: 100%;
  height: 180px;
  margin-top: auto;
}

.hg-migration-flow-section {
  background: #fafafa;
}

.hg-migration-flow-section .hg-steps-slider-heading {
  max-width: 900px;
  min-height: 182px;
}

.hg-migration-flow-section .hg-steps-slider-heading h2,
.hg-migration-flow-section .hg-steps-slider-heading p {
  max-width: 685px;
}

.hg-migration-flow-section .hg-steps-slider-mock img {
  object-position: center center;
}

.hg-migration-why-section {
  padding: 80px 0 64px;
  background: #fafafa;
}

.hg-migration-why-container {
  display: flex;
  width: min(1200px, calc(100% - 48px));
  flex-direction: column;
  gap: 40px;
  margin: 0 auto;
}

.hg-migration-why-heading {
  max-width: 685px;
}

.hg-migration-why-heading h2 {
  margin: 0;
  color: #171717;
  font-family: var(--hg-font-family-sans);
  font-size: 48px;
  font-weight: 500;
  line-height: 56px;
  letter-spacing: 0;
}

.hg-migration-why-heading p {
  margin: 12px 0 0;
  color: #737373;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.hg-migration-why-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 40px 0;
}

.hg-migration-why-media {
  margin: 0 16px;
  overflow: hidden;
  border-radius: 8px;
  background: #e5e5e5;
}

.hg-migration-why-media img {
  display: block;
  width: 100%;
  aspect-ratio: 508 / 571;
  object-fit: cover;
  object-position: center center;
}

.hg-migration-why-copy {
  min-width: 0;
  padding: 0 32px;
}

.hg-migration-assistance-section {
  padding: 80px 0 64px;
  background: #ffffff;
}

.hg-migration-assistance-section .hg-front-container {
  width: min(1200px, calc(100% - 48px));
}

.hg-migration-assistance-section .hg-pricing-services-heading {
  max-width: 685px;
  margin: 0 0 40px;
}

.hg-migration-assistance-section .hg-pricing-services-heading h2 {
  font-size: 48px;
  font-weight: 500;
  line-height: 56px;
}

.hg-migration-assistance-section .hg-pricing-services-heading p {
  max-width: 685px;
  margin-top: 16px;
}

.hg-migration-assistance-section .hg-pricing-services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.hg-migration-assistance-section .hg-pricing-services-grid article {
  display: flex;
  min-height: 405px;
  flex-direction: column;
  padding: 34px 32px 32px;
  border-radius: 12px;
}

.hg-migration-assistance-section .hg-pricing-services-grid h3 {
  margin: 0 0 12px;
}

.hg-migration-assistance-section .hg-pricing-services-grid p {
  max-width: 300px;
  margin: 0 0 36px;
}

.hg-migration-assistance-section .hg-pricing-services-grid .hg-capability-mock {
  width: 100%;
  height: 180px;
  margin-top: auto;
}

.hg-migration-faq-section {
  border-top: 1px solid #eeeeee;
  background: #ffffff;
}

.hg-migration-final-cta-section {
  min-height: 388px;
}

.hg-migration-final-cta-section .hg-final-cta-container {
  width: min(1159px, 100%);
}

.hg-front-v2.hg-help-page .hg-help-hero {
  position: relative;
  overflow: hidden;
  min-height: 306px;
  padding: 80px 0 200px;
  border-bottom: 1px solid #e5e5e5;
  background: #ffffff;
  text-align: left;
}

.hg-front-v2.hg-help-page .hg-help-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(0, 123, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 123, 255, 0.09) 1px, transparent 1px),
    radial-gradient(circle at 47% 15%, rgba(0, 123, 255, 0.14), transparent 40%),
    radial-gradient(circle at 62% 18%, rgba(236, 72, 153, 0.12), transparent 38%);
  background-size: 32px 32px, 32px 32px, 100% 100%, 100% 100%;
  pointer-events: none;
}

.hg-front-v2.hg-help-page .hg-help-hero .hg-front-container {
  position: relative;
  z-index: 1;
}

.hg-front-v2.hg-help-page .hg-help-hero h1 {
  max-width: 1159px;
  margin: 0;
  color: #171717;
  font-family: var(--hg-font-family-sans);
  font-size: 72px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
}

.hg-front-v2.hg-help-page .hg-help-hero p {
  width: min(839px, 100%);
  max-width: none;
  margin: 24px 0 0;
  color: #737373;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.hg-help-channels-section {
  position: relative;
  padding-top: 1px;
  padding-bottom: 80px;
  background: var(--hg-color-surface-secondary, #fafafa);
}

.hg-help-channels-grid {
  display: flex;
  width: min(1200px, calc(100% - 48px));
  margin: -140px auto 0;
  align-items: stretch;
  gap: 32px;
  position: relative;
  z-index: 2;
}

.hg-help-channel-card {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 0 0.5px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.hg-help-channel-icon {
  display: flex;
  width: 80px;
  height: 80px;
  align-items: center;
  justify-content: center;
}

.hg-help-channel-icon img {
  width: 80px;
  height: 80px;
}

.hg-help-channel-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hg-help-channel-body h3 {
  margin: 0;
  color: #171717;
  font-family: var(--hg-font-family-sans);
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

.hg-help-channel-body p {
  margin: 0;
  color: #737373;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.hg-help-channel-cta,
.hg-help-channel-cta:hover,
.hg-help-channel-cta:focus {
  display: inline-flex;
  min-width: 200px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 40px;
  border-radius: 6px;
  color: #404040;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  white-space: nowrap;
}

.hg-help-channel-cta i {
  font-size: 12px;
}

.hg-help-faq-section {
  border-top: 1px solid #eeeeee;
  background: #ffffff;
}

.hg-help-final-cta-section .hg-final-cta-container {
  width: min(1159px, 100%);
}

.hg-front-v2.hg-contact-page .hg-contact-hero {
  position: relative;
  overflow: hidden;
  min-height: 306px;
  padding: 80px 0;
  border-bottom: 1px solid #e5e5e5;
  background: #ffffff;
  text-align: left;
}

.hg-front-v2.hg-contact-page .hg-contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(0, 123, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 123, 255, 0.09) 1px, transparent 1px),
    radial-gradient(circle at 47% 15%, rgba(0, 123, 255, 0.14), transparent 40%),
    radial-gradient(circle at 62% 18%, rgba(236, 72, 153, 0.12), transparent 38%);
  background-size: 32px 32px, 32px 32px, 100% 100%, 100% 100%;
  pointer-events: none;
}

.hg-front-v2.hg-contact-page .hg-contact-hero .hg-front-container {
  position: relative;
  z-index: 1;
}

.hg-front-v2.hg-contact-page .hg-contact-hero h1 {
  max-width: 1159px;
  margin: 0;
  color: #171717;
  font-family: var(--hg-font-family-sans);
  font-size: 72px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
}

.hg-front-v2.hg-contact-page .hg-contact-hero p {
  width: min(839px, 100%);
  max-width: none;
  margin: 24px 0 0;
  color: #737373;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.hg-public-support-card {
  padding: 24px 24px 40px;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: none;
}

.hg-public-support-card .hg-dashboard-section-heading {
  margin-bottom: 32px;
}

.hg-public-support-card .hg-dashboard-section-heading h2 {
  color: #171717;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

.hg-public-support-card .hg-dashboard-section-heading p {
  margin-top: 8px;
  color: #737373;
  font-size: 18px;
  line-height: 1.5;
}

.hg-public-support-card .hg-account-form {
  gap: 32px;
}

.hg-public-support-card .hg-form-grid {
  gap: 18px;
}

.hg-public-support-card label {
  margin-bottom: 12px;
  color: #171717;
  font-size: 14px;
  font-weight: 500;
}

.hg-public-support-card .form-control {
  min-height: 48px;
  border-color: #e5e5e5;
  border-radius: 12px;
  box-shadow: none;
}

.hg-public-support-card textarea.form-control {
  min-height: 332px;
}

.hg-public-support-card .hg-native-whmcs-panel {
  display: flex;
  justify-content: center;
  padding: 24px 0;
}

.hg-public-support-card .hg-native-whmcs-panel #default-captcha-domainchecker {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 350px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  border: 1px solid rgba(71, 100, 125, 0.16);
  border-radius: 4px;
  overflow: hidden;
}

.hg-public-support-card .hg-native-whmcs-panel #default-captcha-domainchecker > p {
  width: 100%;
  margin: 0;
  padding: 8px 12px;
  color: #737373;
  font-size: 13px;
}

.hg-public-support-card .hg-native-whmcs-panel .captchaimage {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0;
  background: #f4f5f6;
  border-right: 1px solid rgba(71, 100, 125, 0.16);
}

.hg-public-support-card .hg-native-whmcs-panel .captchaimage img {
  max-width: 100px;
  height: auto;
}

.hg-public-support-card .hg-native-whmcs-panel #default-captcha-domainchecker .col-6:last-child {
  display: flex;
  align-items: center;
  padding: 0 12px;
}

.hg-public-support-card .hg-native-whmcs-panel #inputCaptcha {
  min-height: 44px;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hg-public-support-card .hg-form-actions {
  padding-bottom: 0;
}

.hg-public-support-card .hg-form-actions .btn-primary,
.hg-public-support-card .hg-form-actions .btn-primary:hover,
.hg-public-support-card .hg-form-actions .btn-primary:focus {
  min-height: 0;
  padding: 17px 49px;
  border-radius: 16px;
  background-color: #171717;
  border-color: #171717;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

.hg-public-support-card .hg-form-actions .btn-primary:hover,
.hg-public-support-card .hg-form-actions .btn-primary:focus {
  background-color: #000000;
  border-color: #000000;
}

.hg-front-v2 .hg-front-button-primary,
.hg-front-v2 .hg-front-button-primary:hover,
.hg-front-v2 .hg-front-button-primary:focus,
.hg-front-v2 .hg-front-cta .hg-front-button-primary,
.hg-front-v2 .hg-front-cta .hg-front-button-primary:hover,
.hg-front-v2 .hg-front-cta .hg-front-button-primary:focus {
  background: var(--hg-color-action-primary-bg);
  color: var(--hg-color-action-primary-text);
}

.hg-front-v2 .hg-front-button-primary:hover,
.hg-front-v2 .hg-front-button-primary:focus,
.hg-front-v2 .hg-front-cta .hg-front-button-primary:hover,
.hg-front-v2 .hg-front-cta .hg-front-button-primary:focus {
  background: var(--hg-color-action-primary-bg-hover);
}

.hg-front-v2 .hg-pricing-card > .hg-front-button-primary,
.hg-front-v2 .hg-pricing-card > .hg-front-button-primary:hover,
.hg-front-v2 .hg-pricing-card > .hg-front-button-primary:focus {
  background: #171717;
  color: #ffffff;
}

.hg-front-v2 .hg-pricing-card,
.hg-front-v2 .hg-front-plan,
.hg-front-v2 .hg-pricing-included-grid article,
.hg-front-v2 .hg-pricing-faq-grid details,
.hg-front-v2 .hg-front-faq details {
  border-radius: var(--hg-front-card-radius);
  box-shadow: var(--hg-shadow-xs);
}

.hg-front-v2 .hg-pricing-card {
  border-radius: 12px;
  box-shadow: none;
}

.hg-front-v2 .hg-pricing-card,
.hg-front-v2 .hg-front-plan,
.hg-front-v2 .hg-capability-grid article,
.hg-front-v2 .hg-solution-paths-rich article {
  transition: transform var(--hg-duration-base) var(--hg-ease-standard),
    border-color var(--hg-duration-base) var(--hg-ease-standard),
    box-shadow var(--hg-duration-base) var(--hg-ease-standard);
}

.hg-front-v2 .hg-pricing-card:hover,
.hg-front-v2 .hg-front-plan:hover,
.hg-front-v2 .hg-capability-grid article:hover,
.hg-front-v2 .hg-solution-paths-rich article:hover {
  transform: translateY(-2px);
  border-color: var(--hg-color-border-strong);
  box-shadow: var(--hg-shadow-dropdown);
}

.hg-front-v2 .hg-pricing-card:hover {
  border-color: #d4d4d4;
  box-shadow: none;
}

.hg-front-v2 .hg-pricing-ops-section .hg-capability-grid article:hover {
  border-color: #e5e5e5;
  box-shadow: none;
}

.hg-front-v2 .hg-pricing-services-section .hg-capability-grid article:hover,
.hg-front-v2 .hg-pricing-services-section .hg-capability-grid article:focus-within {
  transform: none;
  border-color: #e5e5e5;
  box-shadow: none;
}

.hg-front-v2 .hg-pricing-table-rich .hg-pricing-table th {
  background: var(--hg-color-gray-950);
  color: var(--hg-color-gray-0);
}

.hg-front-v2 #comparativa .hg-pricing-table thead th {
  background: #ffffff;
  color: #171717;
}

.hg-front-v2 #comparativa .hg-pricing-table thead th:nth-child(3),
.hg-front-v2 #comparativa .hg-pricing-table tbody td:nth-child(3) {
  background: rgba(0, 123, 255, 0.05);
}

.hg-front-v2 #comparativa .hg-pricing-table thead th:nth-child(3) .hg-pricing-table-plan strong {
  color: #007bff;
}

.hg-solutions-page .hg-pricing-hero-rich {
  min-height: 384px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  padding: 80px 0 0;
  background: #ffffff;
}

.hg-solutions-page .hg-pricing-hero-rich::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: calc(100vw + 36px);
  height: 322px;
  background:
    linear-gradient(180deg, rgba(250, 250, 250, 0) 0%, rgba(250, 250, 250, 0) 12%, #fafafa 100%),
    linear-gradient(90deg, rgba(0, 123, 255, 0.09) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 123, 255, 0.09) 1px, transparent 1px);
  background-size: 100% 100%, 32px 32px, 32px 32px, 32px 32px;
  opacity: 0.5;
  transform: translateX(-50%);
  pointer-events: none;
}

.hg-solutions-page .hg-pricing-hero-rich::after {
  content: "";
  position: absolute;
  top: -130px;
  left: 50%;
  display: block;
  width: min(1024px, calc(100vw - 32px));
  height: 400px;
  border-radius: 9999px;
  background: linear-gradient(90deg, rgba(0, 123, 255, 0.14) 0%, rgba(236, 72, 153, 0.12) 100%);
  filter: blur(175px);
  opacity: 1;
  transform: translateX(-50%);
  pointer-events: none;
}

.hg-solutions-page .hg-pricing-hero-rich .hg-front-container {
  display: flex;
  width: 100%;
  max-width: 1200px;
  flex-direction: column;
  align-items: flex-start;
}

.hg-solutions-page .hg-pricing-hero-rich h1 {
  width: 100%;
  max-width: 1159px;
  font-size: 72px;
  font-weight: 700;
  line-height: 1.3;
}

.hg-solutions-page .hg-pricing-hero-rich p {
  width: 839px;
  max-width: 100%;
  margin: 24px 0 0;
  color: #737373;
  font-size: 18px;
  line-height: 1.5;
}

.hg-solutions-cycle-toggle {
  width: 100%;
  min-height: 68px;
  margin: 56px 0 0;
  padding: 32px 0;
}

.hg-solutions-cycle-toggle em {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
  color: #737373;
  font-size: 14px;
  font-style: normal;
  line-height: 20px;
}

.hg-solutions-page .hg-pricing-hero-metrics {
  margin-top: 32px;
}

.hg-solutions-page .hg-pricing-card {
  min-height: 714px;
  border-color: #d4d4d4;
  border-radius: 12px;
  padding: 24px;
}

.hg-solutions-page .hg-pricing-card-head p {
  min-height: 72px;
  margin-top: 8px;
  color: #525252;
  font-size: 16px;
  line-height: 24px;
}

.hg-solutions-page .hg-pricing-card-head h2 {
  font-size: 24px;
  line-height: 32px;
}

.hg-solutions-page .hg-pricing-card-badge {
  min-width: auto;
  min-height: 40px;
  padding: 0 24px;
  background: #11385a;
}

.hg-solutions-page .hg-solution-card.is-manual .hg-pricing-card-badge {
  background: #11385a;
}

.hg-solution-design-price {
  display: grid;
  gap: 0;
  margin-top: 22px;
}

.hg-solution-design-price small,
.hg-solution-design-price span {
  color: #525252;
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
}

.hg-solution-design-price strong {
  color: #171717;
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
}

.hg-solution-hosting-note {
  min-height: 36px;
  margin-top: 12px;
  color: #737373;
  font-size: 12px;
  line-height: 18px;
}

.hg-solution-hosting-note strong {
  color: #525252;
  font-weight: 700;
}

.hg-solutions-page .hg-pricing-card > .hg-front-button {
  min-height: 54px;
  margin-top: 28px;
  border-radius: 14px;
}

.hg-solutions-page .hg-pricing-feature-list {
  gap: 10px;
  margin-top: 22px;
  padding-top: 24px;
}

.hg-solution-feature-info {
  width: 14px;
  height: 14px;
  margin-left: 4px;
  border: 0;
  background: #d4d4d4;
  color: #8a8a8a;
  font-size: 8px;
  font-weight: 700;
  transform: translateY(-1px);
}

.hg-solution-feature-info::after {
  right: 0;
  left: auto;
  bottom: calc(100% + 10px);
  max-width: min(260px, calc(100vw - 48px));
  text-align: left;
}

.hg-solution-feature-info::before {
  right: 3px;
  left: auto;
  bottom: calc(100% + 5px);
}

.hg-solution-feature-info:hover,
.hg-solution-feature-info:focus-visible {
  border-color: transparent;
  background: #d4d4d4;
  color: #8a8a8a;
}

.hg-solutions-page .hg-pricing-feature-list {
  gap: 12px;
}

.hg-solutions-model-section {
  background: #fafafa;
}

.hg-solutions-model-section.hg-website-build-section .hg-website-build-heading {
  min-height: 122px;
  justify-content: flex-start;
}

.hg-solutions-model-section.hg-pricing-why-section .hg-website-build-scroll {
  margin-top: 0;
}

.hg-solutions-model-section.hg-pricing-why-section .hg-website-build-step p {
  max-width: 430px;
}

.hg-solutions-model-section .hg-comparison-split {
  align-items: stretch;
}

.hg-solutions-model-section .hg-compare-panel {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: none;
}

.hg-solutions-model-section .hg-compare-panel > div {
  padding: 28px 32px;
}

.hg-solutions-process-section {
  background: #fafafa;
}

.hg-solutions-process-section .hg-capability-grid article {
  min-height: 406px;
  border-color: #e5e5e5;
  border-radius: 12px;
}

.hg-solutions-process-section .hg-capability-grid p {
  max-width: 292px;
  margin-bottom: 36px;
}

.hg-solution-process-mock,
.hg-solution-process-mock > div,
.hg-solution-process-mock span,
.hg-solution-process-mock i,
.hg-solution-process-mock strong {
  position: relative;
  z-index: 1;
}

.hg-mock-sitemap {
  display: grid;
  width: 210px;
  grid-template-columns: repeat(3, 54px);
  grid-template-rows: repeat(2, 44px);
  gap: 14px;
  justify-content: center;
  align-content: center;
}

.hg-mock-sitemap span {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 28px rgba(23, 23, 23, 0.06);
}

.hg-mock-sitemap span:first-child {
  grid-column: 2;
  background: #171717;
}

.hg-mock-navline {
  position: absolute;
  inset: 80px auto auto 50%;
  display: flex;
  width: 138px;
  justify-content: space-between;
  transform: translateX(-50%);
}

.hg-mock-navline::before {
  position: absolute;
  top: 6px;
  right: 8px;
  left: 8px;
  height: 2px;
  background: #171717;
  content: "";
}

.hg-mock-navline i {
  width: 14px;
  height: 14px;
  border: 2px solid #171717;
  border-radius: 999px;
  background: #ffffff;
}

.hg-mock-responsive {
  display: grid;
  width: 194px;
  height: 104px;
  grid-template-columns: 1fr 46px;
  gap: 12px;
  align-items: end;
}

.hg-mock-responsive span {
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 32px rgba(23, 23, 23, 0.07);
}

.hg-mock-responsive span:first-child {
  height: 104px;
}

.hg-mock-responsive span:nth-child(2) {
  height: 78px;
}

.hg-mock-responsive span:nth-child(3) {
  position: absolute;
  right: 112px;
  bottom: 42px;
  width: 84px;
  height: 36px;
  border-radius: 999px;
  background: #171717;
}

.hg-mock-palette {
  position: absolute;
  bottom: 36px;
  left: 50px;
  display: flex;
  gap: 8px;
}

.hg-mock-palette i,
.hg-mock-handoff span {
  width: 18px;
  height: 18px;
  border-radius: 6px;
}

.hg-mock-palette i:first-child,
.hg-mock-handoff span:first-child {
  background: #171717;
}

.hg-mock-palette i:nth-child(2),
.hg-mock-handoff span:nth-child(2) {
  background: #007bff;
}

.hg-mock-palette i:nth-child(3),
.hg-mock-handoff span:nth-child(3) {
  background: #ec4899;
}

.hg-mock-wp-stack {
  display: grid;
  width: 174px;
  min-height: 104px;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  align-items: center;
  padding: 18px;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 40px rgba(23, 23, 23, 0.08);
}

.hg-mock-wp-stack strong {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  grid-row: span 3;
  border-radius: 12px;
  background: #171717;
  color: #ffffff;
  font-size: 13px;
}

.hg-mock-wp-stack span,
.hg-mock-search-card span,
.hg-mock-perf-bars i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: #d4d4d4;
}

.hg-mock-wp-stack span:nth-child(2) { width: 78px; background: #b9e8c7; }
.hg-mock-wp-stack span:nth-child(3) { width: 62px; }
.hg-mock-wp-stack span:nth-child(4) { width: 88px; }

.hg-mock-status {
  position: absolute;
  right: 48px;
  bottom: 42px;
  display: grid;
  gap: 7px;
}

.hg-mock-status i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #16a34a;
}

.hg-mock-search-card {
  display: grid;
  width: 188px;
  gap: 9px;
  padding: 18px;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 40px rgba(23, 23, 23, 0.08);
}

.hg-mock-search-card i {
  width: 76px;
  height: 12px;
  border-radius: 999px;
  background: #171717;
}

.hg-mock-search-card span:nth-child(2) { width: 140px; }
.hg-mock-search-card span:nth-child(3) { width: 108px; }
.hg-mock-search-card span:nth-child(4) { width: 156px; background: #b7d8ff; }

.hg-mock-seo-chart {
  position: absolute;
  right: 48px;
  bottom: 34px;
  display: flex;
  height: 62px;
  align-items: end;
  gap: 8px;
}

.hg-mock-seo-chart span {
  width: 12px;
  border-radius: 999px;
  background: #171717;
}

.hg-mock-seo-chart span:nth-child(1) { height: 24px; opacity: 0.24; }
.hg-mock-seo-chart span:nth-child(2) { height: 36px; opacity: 0.38; }
.hg-mock-seo-chart span:nth-child(3) { height: 50px; opacity: 0.54; }
.hg-mock-seo-chart span:nth-child(4) { height: 62px; background: #007bff; }

.hg-mock-speed {
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  border-radius: 999px;
  background: conic-gradient(#16a34a 0 74%, #ececec 74% 100%);
}

.hg-mock-speed span {
  grid-area: 1 / 1;
  border-radius: 999px;
}

.hg-mock-speed span:first-child {
  width: 74px;
  height: 74px;
  background: #ffffff;
}

.hg-mock-speed span:nth-child(2) {
  width: 42px;
  height: 42px;
  background: #f5f5f5;
}

.hg-mock-speed span:nth-child(3) {
  width: 10px;
  height: 34px;
  border-radius: 999px;
  background: #171717;
  transform: rotate(42deg) translateY(-10px);
  transform-origin: center bottom;
}

.hg-mock-perf-bars {
  position: absolute;
  right: 44px;
  bottom: 46px;
  display: grid;
  width: 92px;
  gap: 8px;
}

.hg-mock-perf-bars i:first-child { width: 92px; background: #d4d4d4; }
.hg-mock-perf-bars i:nth-child(2) { width: 74px; background: #b7d8ff; }
.hg-mock-perf-bars i:nth-child(3) { width: 58px; background: #b9e8c7; }

.hg-mock-handoff {
  display: grid;
  width: 170px;
  min-height: 96px;
  grid-template-columns: 58px 1fr;
  gap: 10px;
  padding: 14px;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
}

.hg-mock-handoff span:nth-child(4) {
  width: 84px;
  height: 14px;
  border-radius: 999px;
  background: #d4d4d4;
}

.hg-mock-care {
  position: absolute;
  right: 54px;
  bottom: 44px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 999px;
  background: #fdf2f8;
  color: #171717;
  box-shadow: 0 14px 32px rgba(236, 72, 153, 0.14);
}

.hg-solutions-path-section {
  background: #ffffff;
  padding: 80px 0 64px;
}

.hg-solutions-path-section .hg-pricing-services-heading {
  margin-bottom: 44px;
}

.hg-solutions-path-section .hg-pricing-services-heading h2 {
  max-width: 690px;
  font-size: 48px;
  font-weight: 500;
  line-height: 56px;
}

.hg-solutions-path-section .hg-pricing-services-heading p {
  margin-top: 12px;
  color: #737373;
  font-size: 18px;
  line-height: 28px;
}

.hg-solutions-path-section .hg-solution-paths-rich {
  gap: 24px;
}

.hg-solutions-path-section .hg-solution-paths-rich article {
  display: flex;
  min-height: 448px;
  flex-direction: column;
  padding: 31px;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  background: #ffffff;
}

.hg-solutions-path-section .hg-solution-paths-rich strong {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
}

.hg-solutions-path-section .hg-solution-paths-rich p {
  margin: 12px 0 0;
  color: #858585;
  font-size: 18px;
  line-height: 22px;
}

.hg-solutions-path-section .hg-solution-paths-rich span {
  display: block;
  margin-top: 0;
  color: #858585;
  font-size: 18px;
  line-height: 22px;
}

.hg-solutions-path-section .hg-solution-path-mock {
  width: 100%;
  min-height: 190px;
  margin-top: auto;
  border-color: #e5e5e5;
  border-radius: 8px;
}

.hg-solutions-path-section .hg-capability-preview {
  margin: 0 auto;
}

.hg-solutions-path-section .hg-capability-shield {
  margin-left: 100px;
}

.hg-solutions-path-section .hg-capability-rings {
  margin-left: 108px;
}

.hg-solutions-path-section .hg-solution-paths-rich article:hover,
.hg-solutions-path-section .hg-solution-paths-rich article:focus-within {
  transform: none;
  border-color: #dcdcdc;
  box-shadow: none;
}

.hg-solutions-compare-section .hg-pricing-table thead th:first-child {
  min-width: 220px;
  opacity: 0;
}

.hg-solutions-compare-section#comparativa.hg-pricing-section {
  padding: 80px 0 64px;
  background:
    #fafafa;
}

.hg-solutions-compare-section#comparativa.hg-pricing-section::before {
  display: block;
  height: 400px;
  border-radius: 9999px;
  background: linear-gradient(90deg, rgba(0, 123, 255, 0.06) 0%, rgba(236, 72, 153, 0.06) 100%);
  filter: blur(175px);
}

.hg-solutions-compare-section .hg-pricing-compare-heading {
  max-width: 685px;
  margin-bottom: 40px;
}

.hg-solutions-compare-section .hg-pricing-compare-heading h2 {
  font-weight: 500;
}

.hg-solutions-compare-section .hg-pricing-compare-heading p {
  color: #525252;
}

.hg-solutions-compare-section .hg-pricing-table-wrap {
  overflow-x: auto;
  overflow-y: visible;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}

.hg-solutions-compare-section .hg-pricing-table {
  min-width: 1000px;
}

.hg-solutions-compare-section .hg-pricing-table thead {
  position: static;
  top: auto;
}

.hg-solutions-compare-section .hg-pricing-table thead th:not(:first-child),
.hg-solutions-compare-section .hg-pricing-table tbody td:not(:first-child) {
  width: 250px;
}

.hg-solutions-compare-section .hg-pricing-table thead th:nth-child(3),
.hg-solutions-compare-section .hg-pricing-table tbody td:nth-child(3) {
  background: transparent;
}

.hg-solutions-compare-section .hg-pricing-table thead th:nth-child(4),
.hg-solutions-compare-section .hg-pricing-table tbody td:nth-child(4) {
  background: rgba(0, 123, 255, 0.05);
}

.hg-solutions-compare-section .hg-pricing-table thead th {
  min-height: 92px;
  border-bottom: 0;
  background: transparent;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.hg-solutions-compare-section .hg-pricing-table th,
.hg-solutions-compare-section .hg-pricing-table td {
  padding: 24px;
  border-top-color: #e5e5e5;
}

.hg-solutions-compare-section .hg-pricing-table tbody td:first-child {
  color: #737373;
}

.hg-solutions-compare-section .hg-pricing-table tbody td:nth-child(4) {
  color: #171717;
  font-weight: 500;
}

.hg-front-v2 .hg-solutions-compare-section .hg-pricing-table thead th:nth-child(3),
.hg-front-v2 .hg-solutions-compare-section .hg-pricing-table tbody td:nth-child(3) {
  background: transparent;
}

.hg-front-v2 .hg-solutions-compare-section .hg-pricing-table thead th:nth-child(4),
.hg-front-v2 .hg-solutions-compare-section .hg-pricing-table tbody td:nth-child(4) {
  background: rgba(0, 123, 255, 0.05);
}

.hg-front-v2 #comparativa.hg-solutions-compare-section .hg-pricing-table thead th:nth-child(3),
.hg-front-v2 #comparativa.hg-solutions-compare-section .hg-pricing-table tbody td:nth-child(3) {
  background: transparent;
}

.hg-front-v2 #comparativa.hg-solutions-compare-section .hg-pricing-table thead th:nth-child(4),
.hg-front-v2 #comparativa.hg-solutions-compare-section .hg-pricing-table tbody td:nth-child(4) {
  background: rgba(0, 123, 255, 0.05);
}

.hg-front-v2 #comparativa.hg-solutions-compare-section .hg-pricing-table thead th,
.hg-front-v2 #comparativa.hg-solutions-compare-section .hg-pricing-table tbody td:nth-child(2),
.hg-front-v2 #comparativa.hg-solutions-compare-section .hg-pricing-table tbody td:nth-child(3) {
  background: transparent;
}

.hg-front-v2 #comparativa.hg-solutions-compare-section .hg-pricing-table thead th:nth-child(4),
.hg-front-v2 #comparativa.hg-solutions-compare-section .hg-pricing-table tbody td:nth-child(4) {
  background: rgba(0, 123, 255, 0.05);
}

@media (max-width: 1199px) {
  .hg-pricing-services-section .hg-capability-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hg-pricing-services-grid article {
    padding: 30px 24px 28px;
  }

  .hg-pricing-services-grid p {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (max-width: 991px) {
  .hg-pricing-services-section {
    padding: 64px 0 56px;
  }

  .hg-pricing-services-heading h2 {
    font-size: 38px;
    line-height: 44px;
  }

  .hg-pricing-services-heading p {
    font-size: 16px;
    line-height: 24px;
  }

  .hg-pricing-services-section .hg-capability-grid {
    grid-template-columns: 1fr;
  }

  .hg-solutions-path-section .hg-pricing-services-heading h2 {
    font-size: 38px;
    line-height: 44px;
  }

  .hg-solutions-path-section .hg-solution-paths-rich article {
    min-height: auto;
  }

  .hg-solutions-path-section .hg-solution-path-mock {
    margin-top: 32px;
  }

  .hg-solutions-path-section .hg-capability-shield,
  .hg-solutions-path-section .hg-capability-rings {
    margin-left: auto;
    margin-right: auto;
  }

  .hg-pricing-services-grid article {
    min-height: 0;
  }

  .hg-pricing-services-grid p {
    max-width: none;
  }

  .hg-pricing-faq-section {
    padding: 72px 0;
  }

  .hg-pricing-faq-section .hg-front-container {
    width: min(100% - 32px, 928px);
  }

  .hg-pricing-faq-heading {
    margin-bottom: 40px;
  }

  .hg-pricing-faq-heading h2 {
    font-size: 38px;
    line-height: 44px;
  }

  .hg-pricing-faq-heading span,
  .hg-pricing-faq-section .hg-pricing-faq-grid p {
    font-size: 16px;
    line-height: 24px;
  }

  .hg-pricing-faq-section .hg-pricing-faq-grid summary {
    min-height: 64px;
    padding: 18px 52px 18px 20px;
    font-size: 17px;
    line-height: 24px;
  }

  .hg-pricing-faq-section .hg-pricing-faq-grid summary::before,
  .hg-pricing-faq-section .hg-pricing-faq-grid summary::after {
    right: 22px;
    width: 16px;
  }

  .hg-pricing-faq-section .hg-pricing-faq-grid p {
    padding: 0 20px 22px;
  }

  .hg-solutions-page .hg-pricing-hero-rich {
    min-height: 0;
    padding: 64px 0 40px;
  }

  .hg-solutions-page .hg-pricing-hero-rich h1 {
    font-size: 44px;
    line-height: 1.12;
  }

  .hg-solutions-page .hg-pricing-hero-rich p {
    font-size: 16px;
    line-height: 24px;
  }

  .hg-solutions-cycle-toggle {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hg-solutions-page .hg-pricing-card {
    min-height: auto;
  }

  .hg-solutions-page .hg-pricing-card-head p {
    min-height: auto;
  }

  .hg-front-v2.hg-how-page .hg-how-hero {
    min-height: auto;
    padding: 64px 0;
  }

  .hg-front-v2.hg-how-page .hg-how-hero h1 {
    font-size: 52px;
    line-height: 1.16;
  }

  .hg-front-v2.hg-how-page .hg-how-hero p {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.5;
  }

  .hg-front-v2.hg-help-page .hg-help-hero {
    padding: 64px 0 220px;
  }

  .hg-front-v2.hg-help-page .hg-help-hero h1 {
    font-size: 52px;
    line-height: 1.16;
  }

  .hg-front-v2.hg-help-page .hg-help-hero p {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.5;
  }

  .hg-front-v2.hg-contact-page .hg-contact-hero {
    padding: 64px 0;
  }

  .hg-front-v2.hg-contact-page .hg-contact-hero h1 {
    font-size: 52px;
    line-height: 1.16;
  }

  .hg-front-v2.hg-contact-page .hg-contact-hero p {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.5;
  }

  .hg-help-channels-grid {
    flex-direction: column;
    margin-top: -160px;
  }

  .hg-front-v2.hg-migration-page .hg-migration-hero {
    padding: 64px 0;
  }

  .hg-front-v2.hg-migration-page .hg-migration-hero h1 {
    font-size: 52px;
    line-height: 1.16;
    letter-spacing: 0;
  }

  .hg-front-v2.hg-migration-page .hg-migration-hero p {
    font-size: 16px;
    line-height: 1.5;
  }

  .hg-migration-continuity-section {
    padding: 64px 0 56px;
  }

  .hg-migration-continuity-section .hg-pricing-services-heading h2 {
    font-size: 38px;
    line-height: 44px;
  }

  .hg-migration-continuity-section .hg-pricing-services-heading p {
    font-size: 16px;
    line-height: 24px;
  }

  .hg-migration-continuity-section .hg-pricing-services-grid {
    grid-template-columns: 1fr;
  }

  .hg-migration-continuity-section .hg-pricing-services-grid article {
    min-height: auto;
  }

  .hg-migration-why-section {
    padding: 64px 0 56px;
  }

  .hg-migration-why-heading h2 {
    font-size: 38px;
    line-height: 44px;
  }

  .hg-migration-why-heading p {
    font-size: 16px;
    line-height: 24px;
  }

  .hg-migration-why-body {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 16px 0 40px;
  }

  .hg-migration-why-copy {
    padding: 0;
  }

  .hg-migration-why-media {
    max-width: 540px;
  }

  .hg-migration-assistance-section {
    padding: 64px 0 56px;
  }

  .hg-migration-assistance-section .hg-pricing-services-heading h2 {
    font-size: 38px;
    line-height: 44px;
  }

  .hg-migration-assistance-section .hg-pricing-services-heading p {
    font-size: 16px;
    line-height: 24px;
  }

  .hg-migration-assistance-section .hg-pricing-services-grid {
    grid-template-columns: 1fr;
  }

  .hg-migration-assistance-section .hg-pricing-services-grid article {
    min-height: auto;
  }

  .hg-how-infra-section {
    padding: 64px 0 56px;
  }

  .hg-how-infra-heading h2 {
    font-size: 38px;
    line-height: 44px;
  }

  .hg-how-infra-heading p {
    font-size: 16px;
    line-height: 24px;
  }

  .hg-how-infra-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hg-how-infra-media {
    order: -1;
  }

  .hg-how-infra-sticky {
    position: relative;
    top: auto;
    max-width: 540px;
  }

  .hg-how-infra-copy {
    gap: 56px;
  }

  .hg-how-infra-group {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hg-how-infra-group h3 {
    margin-bottom: 24px;
  }

  .hg-how-solutions-section {
    padding: 64px 0 56px;
  }

  .hg-how-solutions-heading h2 {
    font-size: 38px;
    line-height: 44px;
  }

  .hg-how-solutions-heading p {
    font-size: 16px;
    line-height: 24px;
  }

  .hg-how-solution-row,
  .hg-how-solution-row.is-reversed {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 16px 0 40px;
  }

  .hg-how-solution-copy {
    padding: 0;
  }

  .hg-how-solution-intro {
    padding-bottom: 24px;
  }

  .hg-how-solution-intro h3 {
    max-width: 620px;
  }

  .hg-how-solution-media {
    max-width: 540px;
  }

  .hg-solutions-process-section .hg-capability-grid article {
    min-height: auto;
  }

  .hg-solutions-compare-section .hg-pricing-table {
    min-width: 920px;
  }

  .hg-solutions-compare-section .hg-pricing-table thead th:not(:first-child),
  .hg-solutions-compare-section .hg-pricing-table tbody td:not(:first-child) {
    width: 220px;
  }
}

@media (max-width: 720px) {
  .hg-front-v2 .hg-hero-lab {
    padding: 56px 0 64px;
  }

  .hg-front-v2 .hg-pricing-hero-rich {
    padding: 56px 0 24px;
  }

  .hg-front-v2.hg-how-page .hg-how-hero {
    padding: 56px 0;
  }

  .hg-front-v2.hg-how-page .hg-how-hero h1 {
    font-size: 40px;
    line-height: 1.16;
  }

  .hg-front-v2.hg-help-page .hg-help-hero {
    padding: 56px 0 200px;
  }

  .hg-front-v2.hg-help-page .hg-help-hero .hg-front-container {
    width: min(100% - 32px, 1200px);
  }

  .hg-front-v2.hg-help-page .hg-help-hero h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .hg-front-v2.hg-help-page .hg-help-hero p {
    font-size: 16px;
    line-height: 1.5;
  }

  .hg-front-v2.hg-contact-page .hg-contact-hero {
    padding: 56px 0;
  }

  .hg-front-v2.hg-contact-page .hg-contact-hero .hg-front-container {
    width: min(100% - 32px, 1200px);
  }

  .hg-front-v2.hg-contact-page .hg-contact-hero h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .hg-front-v2.hg-contact-page .hg-contact-hero p {
    font-size: 16px;
    line-height: 1.5;
  }

  .hg-help-channels-grid {
    width: min(100% - 32px, 1200px);
    margin-top: -170px;
  }

  .hg-help-channel-cta {
    min-width: 0;
    width: 100%;
  }

  .hg-front-v2.hg-migration-page .hg-migration-hero {
    padding: 56px 0;
  }

  .hg-front-v2.hg-migration-page .hg-migration-hero .hg-front-container {
    width: min(100% - 32px, 1200px);
  }

  .hg-front-v2.hg-migration-page .hg-migration-hero h1 {
    font-size: 40px;
    line-height: 1.16;
  }

  .hg-migration-continuity-section .hg-front-container {
    width: min(100% - 32px, 1200px);
  }

  .hg-migration-continuity-section .hg-pricing-services-heading h2 {
    font-size: 34px;
    line-height: 40px;
  }

  .hg-migration-continuity-section .hg-pricing-services-grid h3 {
    font-size: 22px;
    line-height: 30px;
  }

  .hg-migration-why-container {
    width: min(100% - 32px, 1200px);
  }

  .hg-migration-why-heading h2 {
    font-size: 34px;
    line-height: 40px;
  }

  .hg-migration-assistance-section .hg-front-container {
    width: min(100% - 32px, 1200px);
  }

  .hg-migration-assistance-section .hg-pricing-services-heading h2 {
    font-size: 34px;
    line-height: 40px;
  }

  .hg-migration-assistance-section .hg-pricing-services-grid h3 {
    font-size: 22px;
    line-height: 30px;
  }

  .hg-how-infra-container {
    width: min(100% - 32px, 1200px);
  }

  .hg-how-infra-group a {
    min-height: 52px;
    font-size: 15px;
    line-height: 22px;
  }

  .hg-how-solutions-container {
    width: min(100% - 32px, 1200px);
  }

  .hg-how-solutions-heading h2 {
    font-size: 34px;
    line-height: 40px;
  }

  .hg-how-solution-row,
  .hg-how-solution-row.is-reversed {
    gap: 24px;
  }

  .hg-how-solution-intro > span {
    font-size: 18px;
    line-height: 28px;
  }

  .hg-how-solution-intro h3 {
    font-size: 18px;
    line-height: 26px;
  }

  .hg-how-solution-list summary span {
    font-size: 15px;
    line-height: 22px;
  }

  .hg-how-solution-list p {
    margin-right: 28px;
    font-size: 13px;
    line-height: 19px;
  }
}

/* Home hero matched to Figma node 247:40 */
.hg-front-v2 .hg-figma-hero {
  min-height: 1493px;
  padding: 80px 0 120px;
  border-bottom: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), #ffffff 58%, #ffffff 100%),
    radial-gradient(ellipse at 50% 0%, rgba(236, 72, 153, 0.075), transparent 35%),
    radial-gradient(ellipse at 38% 4%, rgba(0, 123, 255, 0.10), transparent 32%),
    #ffffff;
}

.hg-front-v2 .hg-figma-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(10, 10, 10, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 10, 10, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.85) 44%, transparent 82%);
  opacity: 0.5;
}

.hg-front-v2 .hg-figma-hero-container {
  position: relative;
  width: min(1280px, calc(100% - 48px));
}

.hg-front-v2 .hg-figma-hero-copy {
  display: flex;
  max-width: 1159px;
  min-height: 500px;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  text-align: center;
}

.hg-front-v2 .hg-figma-hero .hg-front-kicker {
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin: 0 0 32px;
  padding: 8px 28px;
  border: 1px solid var(--hg-color-border-default);
  border-radius: var(--hg-radius-pill);
  background: #ffffff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  color: var(--hg-color-gray-800);
  font-family: var(--hg-font-family-sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-transform: none;
}

.hg-front-v2 .hg-figma-hero h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1159px;
  margin: 0;
  color: var(--hg-color-text-primary);
  font-size: 72px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -1.8px;
  text-align: center;
}

.hg-front-v2 .hg-figma-hero h1 span,
.hg-front-v2 .hg-figma-hero h1 em {
  display: block;
  font-style: normal;
}

.hg-front-v2 .hg-figma-hero h1 em {
  background: linear-gradient(90deg, #007bff 0%, #ec4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hg-front-v2 .hg-figma-hero .hg-front-lead {
  max-width: 672px;
  margin: 25px auto 0;
  color: var(--hg-color-text-tertiary);
  font-size: 20px;
  line-height: 32.5px;
  text-align: center;
}

.hg-front-v2 .hg-figma-hero .hg-front-hero-actions {
  justify-content: center;
  gap: 16px;
  margin-top: 47px;
}

.hg-front-v2 .hg-figma-hero .hg-front-button {
  width: 249px;
  min-height: 54px;
  padding: 16px 24px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 500;
}

.hg-front-v2 .hg-figma-hero .hg-front-button-primary {
  background: #171717;
}

.hg-front-v2 .hg-figma-dashboard {
  position: relative;
  width: min(1216px, 100%);
  height: 747px;
  margin: 64px auto 0;
  overflow: hidden;
  border: 1px solid var(--hg-color-border-default);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 70px rgba(10, 10, 10, 0.12);
  backdrop-filter: blur(18px);
}

.hg-front-v2 .hg-figma-dashboard::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 190px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff 88%);
}

.hg-figma-browser {
  display: grid;
  height: 55px;
  grid-template-columns: 120px minmax(0, 1fr) 120px;
  align-items: center;
  border-bottom: 1px solid var(--hg-color-border-default);
  background: rgba(248, 248, 248, 0.86);
}

.hg-figma-dots {
  display: flex;
  gap: 8px;
  padding-left: 16px;
}

.hg-figma-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--hg-color-gray-400);
}

.hg-figma-url {
  display: inline-flex;
  width: 368px;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 8px;
  border: 1px solid var(--hg-color-border-default);
  border-radius: var(--hg-radius-1);
  background: #ffffff;
  color: var(--hg-color-gray-500);
  font-size: 13px;
}

.hg-figma-app {
  display: grid;
  grid-template-columns: 182px minmax(0, 1fr);
  height: calc(100% - 55px);
}

.hg-figma-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 17px;
  border-right: 1px solid var(--hg-color-border-subtle);
  background: rgba(250, 250, 250, 0.88);
  font-size: 12px;
}

.hg-figma-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  color: var(--hg-color-text-primary);
}

.hg-figma-brand span {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: var(--hg-radius-1);
  background: var(--hg-color-gray-150);
}

.hg-figma-sidebar nav {
  display: grid;
  gap: 6px;
}

.hg-figma-sidebar nav span {
  display: flex;
  min-height: 26px;
  align-items: center;
  gap: 9px;
  padding: 0 9px;
  border-radius: var(--hg-radius-2);
  color: var(--hg-color-gray-800);
}

.hg-figma-sidebar nav span.is-active {
  background: var(--hg-color-gray-150);
}

.hg-figma-sidebar nav em {
  margin-left: auto;
  padding: 1px 6px;
  border-radius: var(--hg-radius-pill);
  background: var(--hg-color-gray-950);
  color: #ffffff;
  font-size: 9px;
  font-style: normal;
}

.hg-figma-sidebar > small {
  margin: 4px 0 -8px 11px;
  color: var(--hg-color-gray-600);
  font-size: 10px;
  text-transform: uppercase;
}

.hg-figma-credit-card {
  display: grid;
  gap: 7px;
  margin-top: auto;
  padding: 13px;
  border-radius: 12px;
  background: linear-gradient(135deg, #6b7280, #d1d5db);
  color: #ffffff;
}

.hg-figma-credit-card span {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
}

.hg-figma-credit-card i {
  height: 6px;
  border-radius: var(--hg-radius-pill);
  background: linear-gradient(90deg, #ffffff 0 32%, rgba(255, 255, 255, 0.42) 32% 100%);
}

.hg-figma-credit-card button {
  min-height: 28px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--hg-color-gray-700);
  font-size: 11px;
}

.hg-figma-main {
  padding: 28px 17px 40px;
  background: rgba(255, 255, 255, 0.76);
}

.hg-figma-topbar,
.hg-figma-sites-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.hg-figma-topbar strong,
.hg-figma-sites-head strong {
  display: block;
  color: var(--hg-color-text-primary);
  font-size: 16px;
}

.hg-figma-topbar span,
.hg-figma-sites-head span {
  display: block;
  margin-top: 4px;
  color: var(--hg-color-gray-600);
  font-size: 11px;
}

.hg-figma-topbar > div:last-child {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hg-figma-topbar button,
.hg-figma-ecosystem button {
  min-height: 32px;
  padding: 0 14px;
  border: 1px solid var(--hg-color-border-default);
  border-radius: 8px;
  background: #ffffff;
  color: var(--hg-color-text-primary);
  font-size: 12px;
  font-weight: 600;
}

.hg-figma-topbar button.is-dark,
.hg-figma-ecosystem button.is-dark {
  border-color: var(--hg-color-gray-950);
  background: var(--hg-color-gray-950);
  color: #ffffff;
}

.hg-figma-ecosystem {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 32px;
  align-items: center;
  min-height: 216px;
  margin-top: 29px;
  padding: 28px 24px;
  border: 1px solid var(--hg-color-border-default);
  border-radius: 16px;
  background: linear-gradient(110deg, #ffffff 0%, #ffffff 76%, #eff6ff 76%, #ffffff 100%);
}

.hg-figma-ecosystem h2 {
  max-width: 560px;
  margin: 0;
  color: var(--hg-color-text-primary);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
}

.hg-figma-ecosystem h2 span {
  display: block;
  color: #2563eb;
}

.hg-figma-ecosystem p {
  max-width: 560px;
  margin: 16px 0 22px;
  color: var(--hg-color-gray-600);
  font-size: 14px;
  line-height: 1.5;
}

.hg-figma-ecosystem > div:first-child > div {
  display: flex;
  gap: 10px;
}

.hg-figma-mini-window {
  justify-self: end;
  width: 322px;
  height: 130px;
  padding: 16px;
  border: 1px solid var(--hg-color-border-default);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 35px rgba(10, 10, 10, 0.08);
  transform: rotate(2deg);
}

.hg-figma-mini-window span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  border-radius: 50%;
}

.hg-figma-mini-window span:nth-child(1) { background: #ef4444; }
.hg-figma-mini-window span:nth-child(2) { background: #f59e0b; }
.hg-figma-mini-window span:nth-child(3) { background: #16a34a; }

.hg-figma-mini-window i,
.hg-figma-mini-window b {
  display: block;
  height: 12px;
  margin-top: 12px;
  border-radius: 3px;
  background: var(--hg-color-gray-150);
}

.hg-figma-mini-window i:nth-of-type(1) { width: 90%; }
.hg-figma-mini-window i:nth-of-type(2) { width: 66%; }
.hg-figma-mini-window i:nth-of-type(3) { width: 76%; }
.hg-figma-mini-window b {
  display: inline-block;
  width: 47%;
  height: 45px;
  margin-right: 2%;
  background: var(--hg-color-blue-50);
}
.hg-figma-mini-window b:last-child { background: var(--hg-color-purple-50); }

.hg-figma-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 17px;
  margin-top: 22px;
}

.hg-figma-metrics article,
.hg-figma-sites article {
  border: 1px solid var(--hg-color-border-default);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
}

.hg-figma-metrics article {
  min-height: 106px;
  padding: 17px;
}

.hg-figma-metrics small {
  display: block;
  color: var(--hg-color-gray-600);
  font-size: 11px;
}

.hg-figma-metrics strong {
  display: block;
  margin-top: 6px;
  color: var(--hg-color-text-primary);
  font-size: 25px;
  line-height: 1;
}

.hg-figma-metrics strong span {
  color: var(--hg-color-gray-600);
  font-size: 13px;
}

.hg-figma-metrics em {
  display: block;
  margin-top: 14px;
  font-size: 11px;
  font-style: normal;
}

.hg-figma-metrics .is-success { color: var(--hg-color-green-600); }
.hg-figma-metrics .is-warning { color: var(--hg-color-amber-600); }
.hg-figma-metrics .is-info { color: var(--hg-color-blue-600); }
.hg-figma-metrics .is-protected { color: var(--hg-color-purple-600); }

.hg-figma-sites-head {
  margin-top: 40px;
}

.hg-figma-sites-head strong {
  font-size: 22px;
}

.hg-figma-sites-head a {
  color: var(--hg-color-blue-600);
  font-size: 12px;
  text-decoration: none;
}

.hg-figma-sites {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.hg-figma-sites article {
  min-height: 140px;
  padding: 22px;
}

.hg-figma-sites strong {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--hg-color-gray-700);
  font-size: 15px;
  font-weight: 500;
}

.hg-figma-sites strong i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #86d9aa;
}

.hg-figma-sites article:nth-child(2) strong i {
  background: #f3bf7b;
}

.hg-figma-sites > article > span {
  display: block;
  margin-top: 8px;
  color: var(--hg-color-gray-500);
  font-size: 12px;
}

.hg-figma-sites p {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
}

.hg-figma-sites em {
  padding: 4px 7px;
  border-radius: 4px;
  background: var(--hg-color-gray-100);
  color: var(--hg-color-green-600);
  font-size: 10px;
  font-style: normal;
}

@media (max-width: 1199px) {
  .hg-front-v2 .hg-figma-hero {
    min-height: auto;
    padding-bottom: 88px;
  }

  .hg-front-v2 .hg-figma-hero-copy {
    min-height: auto;
  }

  .hg-front-v2 .hg-figma-hero h1 {
    font-size: 60px;
  }

  .hg-front-v2 .hg-figma-dashboard {
    height: auto;
    min-height: 660px;
    margin-top: 56px;
  }

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

  .hg-figma-mini-window {
    display: none;
  }

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

@media (max-width: 860px) {
  .hg-front-v2 .hg-figma-hero {
    padding-top: 56px;
  }

  .hg-front-v2 .hg-figma-hero h1 {
    font-size: 46px;
    letter-spacing: -0.8px;
  }

  .hg-front-v2 .hg-figma-hero .hg-front-lead {
    font-size: 18px;
    line-height: 29px;
  }

  .hg-front-v2 .hg-figma-dashboard {
    height: 620px;
    min-height: 0;
    margin-top: 48px;
  }

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

  .hg-figma-sidebar {
    display: none;
  }

  .hg-figma-browser {
    grid-template-columns: 74px minmax(0, 1fr) 20px;
  }

  .hg-figma-url {
    width: min(300px, 100%);
  }

  .hg-figma-main {
    padding: 22px;
  }
}

@media (max-width: 575px) {
  .hg-front-v2 .hg-figma-hero-container {
    width: min(100% - 32px, 1280px);
  }

  .hg-front-v2 .hg-figma-hero .hg-front-kicker {
    min-height: 34px;
    padding: 7px 18px;
    font-size: 13px;
  }

  .hg-front-v2 .hg-figma-hero h1 {
    font-size: 38px;
    line-height: 1.14;
  }

  .hg-front-v2 .hg-figma-hero h1 span,
  .hg-front-v2 .hg-figma-hero h1 em {
    display: inline;
  }

  .hg-front-v2 .hg-figma-hero .hg-front-hero-actions {
    width: 100%;
    flex-direction: column;
    margin-top: 32px;
  }

  .hg-front-v2 .hg-figma-hero .hg-front-button {
    width: 100%;
  }

  .hg-front-v2 .hg-figma-dashboard {
    height: 560px;
    margin-top: 40px;
    border-radius: 16px;
  }

  .hg-figma-topbar,
  .hg-figma-sites-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .hg-figma-topbar > div:last-child {
    display: none;
  }

  .hg-figma-ecosystem {
    min-height: auto;
    padding: 22px;
  }

  .hg-figma-ecosystem h2 {
    font-size: 27px;
  }

  .hg-figma-ecosystem > div:first-child > div,
  .hg-figma-sites,
  .hg-figma-metrics {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
}

.hg-login-page {
  min-height: 100vh;
  background: #fafafa;
}

.hg-login-shell {
  position: relative;
  display: flex;
  min-height: calc(100vh - 81px);
  width: 100%;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 24px;
  background: #fafafa;
}

.hg-login-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .5;
  background-image:
    linear-gradient(180deg, rgba(250, 250, 250, 0) 12%, #fafafa 100%),
    linear-gradient(rgba(0, 123, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 123, 255, 0.06) 1px, transparent 1px);
  background-size: 100% 100%, 32px 32px, 32px 32px;
  pointer-events: none;
}

.hg-login-shell::after {
  content: "";
  position: absolute;
  top: -130px;
  left: 50%;
  width: 1024px;
  height: 400px;
  border-radius: 9999px;
  background: linear-gradient(90deg, rgba(0, 123, 255, 0.14), rgba(236, 72, 153, 0.12));
  filter: blur(175px);
  transform: translateX(-50%);
  pointer-events: none;
}

.hg-login-panel {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.hg-login-card {
  display: flex;
  width: 100%;
  max-width: 500px;
  flex-direction: column;
  gap: 32px;
  padding: 49px 41px 41px;
  border: 1px solid #e5e5e5;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.04);
}

.hg-login-card-head {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hg-login-card-head h2 {
  margin: 0;
  color: #171717;
  font-family: var(--hg-font-family-sans);
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
}

.hg-login-card-head p {
  margin: 0;
  color: #737373;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}

.hg-login-card .btn-primary,
.hg-login-card .btn-primary:hover,
.hg-login-card .btn-primary:focus {
  min-height: 0;
  padding: 13px 49px;
  border-radius: 16px;
  background-color: #171717;
  border-color: #171717;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

.hg-login-card .btn-primary:hover,
.hg-login-card .btn-primary:focus {
  background-color: #000000;
  border-color: #000000;
}

.hg-login-form {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 24px;
}

.hg-login-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}

.hg-login-form label {
  margin: 0;
  color: #737373;
  font-size: 14px;
  font-weight: 400;
}

.hg-login-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.hg-login-label-row a {
  color: #2563eb;
  font-size: 14px;
  text-decoration: none;
}

.hg-login-form .form-control {
  min-height: 56px;
  padding: 15px 17px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  box-shadow: none;
  color: #171717;
  font-size: 16px;
}

.hg-login-form .form-control::placeholder {
  color: #d1d1d1;
}

.hg-login-password-field {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
}

.hg-login-password-field .form-control {
  border: 0;
  border-radius: 0;
}

.hg-login-password-field .input-group-append .btn {
  min-height: 0;
  padding: 0 17px;
  border: 0;
  background: transparent;
  color: #737373;
}

.hg-login-remember {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #737373;
  font-size: 13px;
  font-weight: 400;
}

.hg-login-submit,
.hg-login-submit:hover,
.hg-login-submit:focus {
  width: 100%;
  min-height: 0;
  padding: 13px 49px;
  border-radius: 16px;
  background-color: #171717;
  border-color: #171717;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

.hg-login-submit:hover,
.hg-login-submit:focus {
  background-color: #000000;
  border-color: #000000;
}

.hg-login-divider {
  width: 100%;
  height: 1px;
  background: #e5e5e5;
}

.hg-login-footer {
  width: 100%;
  text-align: center;
}

.hg-login-footer p {
  margin: 0;
  color: #525252;
  font-size: 14px;
  line-height: 20px;
}

.hg-login-footer p:first-child {
  margin-bottom: 4px;
  color: #171717;
  font-weight: 500;
}

.hg-login-footer a {
  color: #2563eb;
  text-decoration: none;
}

@media (max-width: 540px) {
  .hg-login-card {
    padding: 28px 20px;
    border-radius: 16px;
  }
}

