/* HostStack — Next-gen dark design system */
:root {
  --hs-primary: #38bdf8;
  --hs-secondary: #2563eb;
  --hs-accent: #22d3ee;
  --hs-bg: #020913;
  --hs-surface: #060f1e;
  --hs-surface2: #0a1628;
  --hs-text: #e8f4ff;
  --hs-muted: #94a3b8;
  --hs-hint: #64748b;
  --hs-border: rgba(56, 189, 248, 0.14);
  --hs-border-hover: rgba(56, 189, 248, 0.22);
  --hs-glow: rgba(56, 189, 248, 0.1);
  --hs-font: "Inter", "Manrope", "Space Grotesk", system-ui, sans-serif;
  --hs-mono: "JetBrains Mono", ui-monospace, monospace;
  --hs-radius: 14px;
  --hs-radius-sm: 10px;
  --hs-nav-h: 72px;
  --hs-announce-h: 40px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--hs-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--hs-text);
  background: var(--hs-bg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

body.hs-loaded .hs-reveal {
  opacity: 1;
}

.hs-main {
  position: relative;
  min-height: calc(100vh - var(--hs-nav-h) - var(--hs-announce-h) - 6rem);
  padding-bottom: 5rem;
}

.hs-main.hs-404 {
  min-height: min(70vh, 560px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem 6rem;
}

/* Hero subtitle rhythm (matches homepage) */
.hs-hero .hs-container > p.hs-muted,
.game-page-hero .hs-container > p.hs-muted {
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 52ch;
}

.game-hub-hero__inner > p.hs-muted {
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 52ch;
}

/* Grid backdrop */
.hs-page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-color: var(--hs-bg);
  background-image: linear-gradient(
      rgba(56, 189, 248, 0.045) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(56, 189, 248, 0.045) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% -10%, black 40%, transparent 75%);
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--hs-font);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h3 {
  font-size: 1.15rem;
  font-weight: 600;
}

p {
  margin: 0 0 1rem;
  color: var(--hs-muted);
}

a {
  color: var(--hs-primary);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--hs-accent);
}

.hs-muted {
  color: var(--hs-muted);
}

.hs-hint {
  color: var(--hs-hint);
  font-size: 0.875rem;
}

.hs-mono {
  font-family: var(--hs-mono);
}

/* Layout */
.hs-container {
  width: min(1180px, 92vw);
  max-width: 100%;
  margin-inline: auto;
  padding-inline: max(12px, env(safe-area-inset-left, 0px))
    max(12px, env(safe-area-inset-right, 0px));
  box-sizing: border-box;
  min-width: 0;
}

.hs-section {
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.hs-section--tight {
  padding: clamp(2rem, 5vw, 3rem) 0;
}

/* Section eyebrows — aligns with SaaS/hosting benchmarks (Hostinger-class landing rhythm) */
.hs-section-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(125, 211, 252, 0.9);
}

.hs-home-premium .hs-section-eyebrow + h2.hs-center {
  margin-top: 0;
}

/* Comparison / spec tables — elevated “product card” frame */
.hs-table-wrap--pro {
  border-radius: 1rem;
  border-color: rgba(56, 189, 248, 0.2);
  background: radial-gradient(circle at 12% -20%, rgba(56, 189, 248, 0.12), transparent 42%), var(--hs-surface);
  box-shadow: 0 1px 0 rgba(56, 189, 248, 0.06) inset, 0 18px 50px rgba(0, 0, 0, 0.25);
}

.hs-table-hoststack-accent .hs-compare-mini thead th:nth-child(2),
.hs-table-hoststack-accent .hs-compare-mini tbody td:nth-child(2) {
  background: rgba(56, 189, 248, 0.07);
}

.hs-table-hoststack-accent .hs-compare-mini thead th:nth-child(2) {
  color: rgba(224, 242, 254, 0.98);
  border-inline: 1px solid rgba(56, 189, 248, 0.12);
}

.hs-table-hoststack-accent .hs-compare-mini tbody td:nth-child(2) {
  border-inline: 1px solid rgba(56, 189, 248, 0.08);
  font-weight: 600;
  color: rgba(226, 232, 240, 0.95);
}

.hs-table.hs-table-vs thead th:nth-child(2),
.hs-table.hs-table-vs tbody td:nth-child(2) {
  background: rgba(56, 189, 248, 0.07);
}

.hs-table.hs-table-vs thead th:nth-child(2) {
  color: rgba(240, 249, 255, 0.98);
  border-inline: 1px solid rgba(56, 189, 248, 0.12);
}

.hs-table.hs-table-vs tbody td:nth-child(2) {
  border-inline: 1px solid rgba(56, 189, 248, 0.08);
  font-weight: 600;
}

.hs-home-premium .hs-compare-foot {
  margin-top: 1.125rem;
  max-width: 52rem;
  margin-inline: auto;
  line-height: 1.55;
  opacity: 0.92;
}

.hs-compare-foot__more {
  display: block;
  margin-top: 0.65rem;
  font-weight: 600;
}

.hs-compare-foot__more a {
  color: var(--hs-accent);
  text-underline-offset: 2px;
}

.hs-compare-foot__more a:hover {
  color: #9fe8ff;
}
.hs-announce {
  position: sticky;
  top: 0;
  z-index: 1001;
  min-height: var(--hs-announce-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 0.35rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  background:
    linear-gradient(
      90deg,
      rgba(0, 102, 255, 0.35),
      rgba(56, 189, 248, 0.2),
      rgba(0, 102, 255, 0.35)
    ),
    rgba(2, 9, 19, 0.94);
  border-bottom: 1px solid var(--hs-border);
}

.hs-announce a {
  color: var(--hs-accent);
  font-weight: 600;
  white-space: nowrap;
}

.hs-announce__countdown {
  font-family: var(--hs-mono);
  font-size: 0.78rem;
  color: var(--hs-text);
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--hs-border);
}

/* Navbar */
.hs-header {
  position: sticky;
  top: var(--hs-announce-h);
  z-index: 1000;
  background: rgba(2, 9, 19, 0.96);
  border-bottom: 1px solid var(--hs-border);
}

.hs-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--hs-nav-h);
  width: min(1180px, 94vw);
  margin: 0 auto;
}

.hs-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--hs-text);
}

.hs-logo:hover {
  color: var(--hs-text);
}

.hs-logo__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--hs-primary);
  box-shadow: 0 0 12px var(--hs-accent), 0 0 28px var(--hs-glow);
  animation: hs-pulse 2s ease-in-out infinite;
}

@keyframes hs-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.08);
  }
}

.hs-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

@media (max-width: 1024px) {
  .hs-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(6, 15, 30, 0.98);
    border-bottom: 1px solid var(--hs-border);
    max-height: calc(100vh - var(--hs-nav-h) - var(--hs-announce-h));
    overflow-y: auto;
  }

  .hs-nav.is-open {
    display: flex;
  }
}

.hs-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  color: var(--hs-muted);
  font-weight: 500;
  font-size: 0.9375rem;
  border-radius: var(--hs-radius-sm);
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.hs-nav__link:hover,
.hs-nav__link[aria-expanded="true"] {
  color: var(--hs-text);
  background: rgba(56, 189, 248, 0.06);
}

.hs-nav__item {
  position: relative;
}

@media (min-width: 1025px) {
  .hs-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 280px;
    padding: 0.5rem;
    background: var(--hs-surface2);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 1002;
  }

  .hs-nav__item:hover .hs-dropdown,
  .hs-nav__item:focus-within .hs-dropdown,
  .hs-dropdown.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}

@media (max-width: 1024px) {
  .hs-dropdown {
    display: none;
    flex-direction: column;
    margin-left: 0.5rem;
    padding: 0.35rem 0;
    border-left: 1px solid var(--hs-border);
  }

  .hs-dropdown.is-open {
    display: flex;
  }
}

.hs-dropdown a {
  display: block;
  padding: 0.5rem 0.75rem;
  color: var(--hs-muted);
  font-size: 0.9rem;
  border-radius: var(--hs-radius-sm);
}

.hs-dropdown a:hover {
  color: var(--hs-primary);
  background: rgba(56, 189, 248, 0.08);
}

.hs-dropdown a.hs-soon {
  color: var(--hs-hint);
}

.hs-dropdown a.hs-soon::after {
  content: "Soon";
  margin-left: 0.4rem;
  font-size: 0.65rem;
  vertical-align: super;
  color: var(--hs-primary);
}

.hs-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hs-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--hs-border);
  border-radius: var(--hs-radius-sm);
  padding: 0.45rem 0.55rem;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .hs-burger {
    display: flex;
  }
}

.hs-burger span {
  width: 20px;
  height: 2px;
  background: var(--hs-text);
  border-radius: 1px;
}

/* Buttons */
.hs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.25rem;
  font-family: var(--hs-font);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s,
    background 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.hs-btn:active {
  transform: translateY(1px);
}

.hs-btn--primary {
  background: linear-gradient(135deg, var(--hs-primary), var(--hs-secondary));
  color: #020913;
  box-shadow: 0 0 24px var(--hs-glow);
}

.hs-btn--primary:hover {
  color: #020913;
  box-shadow: 0 0 36px rgba(56, 189, 248, 0.35);
}

.hs-btn--ghost {
  background: transparent;
  border-color: var(--hs-border-hover);
  color: var(--hs-text);
}

.hs-btn--ghost:hover {
  border-color: var(--hs-primary);
  color: var(--hs-primary);
}

.hs-btn--whatsapp {
  background: #25d366;
  color: #042713;
  border-color: rgba(37, 211, 102, 0.5);
  text-transform: none;
}

.hs-btn--whatsapp:hover {
  color: #042713;
  filter: brightness(1.08);
}

.hs-btn--store {
  width: 100%;
  margin-top: 1rem;
}

/* Badges */
.hs-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid var(--hs-border-hover);
  color: var(--hs-accent);
}

.hs-badge--ok {
  background: rgba(0, 255, 170, 0.1);
  border-color: rgba(0, 255, 170, 0.25);
  color: #7dffc8;
}

/* Hero */
.hs-hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(3rem, 6vw, 4rem);
  overflow: hidden;
}

.hs-hero::before,
.game-page-hero::before,
.game-hub-hero::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 90vw);
  height: min(500px, 60vw);
  background: radial-gradient(
    circle,
    rgba(56, 189, 248, 0.18) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.hs-hero::before {
  z-index: 0;
}

.game-page-hero::before,
.game-hub-hero::before {
  z-index: 2;
}

.hs-hero .hs-container {
  position: relative;
  z-index: 1;
}

.hs-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hs-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
  padding: 1.25rem;
  background: var(--hs-surface);
  border: 1px solid var(--hs-border);
  border-radius: var(--hs-radius);
}

@media (max-width: 768px) {
  .hs-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.hs-stat {
  text-align: center;
}

.hs-stat strong {
  display: block;
  font-family: var(--hs-mono);
  font-size: 1.35rem;
  color: var(--hs-text);
}

.hs-stat span {
  font-size: 0.8rem;
  color: var(--hs-hint);
}

/* Terminal */
.hs-terminal {
  margin-top: 2.5rem;
  border-radius: var(--hs-radius);
  border: 1px solid var(--hs-border-hover);
  background: linear-gradient(
    180deg,
    var(--hs-surface2) 0%,
    var(--hs-surface) 100%
  );
  box-shadow: 0 0 40px rgba(56, 189, 248, 0.06);
  overflow: hidden;
}

.hs-terminal__bar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 1rem;
  background: rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid var(--hs-border);
  font-size: 0.75rem;
  color: var(--hs-hint);
}

.hs-terminal__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5f56;
}

.hs-terminal__dot:nth-child(2) {
  background: #ffbd2e;
}

.hs-terminal__dot:nth-child(3) {
  background: #27c93f;
}

.hs-terminal__body {
  padding: 1.25rem 1.25rem 1.5rem;
  font-family: var(--hs-mono);
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--hs-muted);
  min-height: 220px;
}

.hs-terminal__line {
  opacity: 0;
  animation: hs-term-in 0.35s forwards;
}

.hs-terminal__line.is-visible {
  opacity: 1;
}

@keyframes hs-term-in {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hs-terminal__cmd {
  color: var(--hs-primary);
}

.hs-terminal__ok {
  color: #7dffc8;
}

.hs-cursor {
  display: inline-block;
  width: 8px;
  height: 1.1em;
  margin-left: 2px;
  vertical-align: text-bottom;
  background: var(--hs-primary);
  animation: hs-blink 1s step-end infinite;
}

@keyframes hs-blink {
  50% {
    opacity: 0;
  }
}

/* Cards grid — stretch rows so cards align; testimonials use column flex inside blockquote */
.hs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.hs-grid > .hs-card,
.hs-grid > .hs-quote {
  height: 100%;
}

.hs-grid > article.hs-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.hs-grid > .hs-card > p {
  flex: 1 1 auto;
}

@media (max-width: 900px) {
  .hs-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.hs-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 768px) {
  .hs-grid--2 {
    grid-template-columns: minmax(0, 1fr);
  }
}

.hs-card {
  position: relative;
  padding: 1.5rem;
  background: var(--hs-surface);
  border: 1px solid var(--hs-border);
  border-radius: var(--hs-radius);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s;
  overflow: hidden;
}

.hs-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--hs-primary),
    transparent
  );
  opacity: 0;
  transition: opacity 0.25s ease;
}

.hs-card:hover {
  border-color: var(--hs-border-hover);
  box-shadow: 0 0 32px var(--hs-glow);
  transform: translateY(-2px);
}

.hs-card:hover::before {
  opacity: 1;
}

.hs-card__icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

/* Homepage / marketing cards: <article class="hs-card"> must not inherit ui.css prose colors */
article.hs-card h3,
.hs-card h3 {
  color: var(--hs-text);
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

article.hs-card p,
.hs-card p {
  color: var(--hs-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
  margin: 0;
}

article.hs-price-card h3,
.hs-price-card h3 {
  color: var(--hs-text);
}

article.hs-price-card p,
.hs-price-card p {
  color: var(--hs-muted);
}

article.hs-price-card li,
.hs-price-card li {
  color: var(--hs-muted);
}

/* Pricing cards */
.hs-pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.hs-pricing > * {
  min-width: 0;
}

@media (max-width: 900px) {
  .hs-pricing {
    grid-template-columns: minmax(0, 1fr);
  }
}

.hs-home-premium .hs-pricing {
  max-width: 980px;
  margin-inline: auto;
}

.hs-price-card {
  position: relative;
  padding: 1.75rem;
  background: var(--hs-surface);
  border: 1px solid var(--hs-border);
  border-radius: var(--hs-radius);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}

.hs-price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--hs-accent),
    transparent
  );
  opacity: 0;
  transition: opacity 0.25s;
}

.hs-price-card:hover::before {
  opacity: 1;
}

.hs-price-card:hover {
  border-color: var(--hs-border-hover);
  box-shadow: 0 0 36px var(--hs-glow);
  transform: translateY(-3px);
}

.hs-price-card--popular {
  border-color: var(--hs-border-hover);
  box-shadow: 0 0 28px rgba(56, 189, 248, 0.12);
}

.hs-popular-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    var(--hs-primary),
    var(--hs-secondary)
  );
  color: #020913;
}

.hs-price {
  font-family: var(--hs-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--hs-text);
}

.hs-price small {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--hs-muted);
}

.hs-price-card ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.hs-price-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: var(--hs-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.hs-price-card li:last-child {
  border-bottom: none;
}

/* Tables */
.hs-table-wrap {
  overflow-x: auto;
  border-radius: var(--hs-radius);
  border: 1px solid var(--hs-border);
  background: var(--hs-surface);
}

.hs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.hs-table th,
.hs-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--hs-border);
}

.hs-table th {
  font-weight: 600;
  color: var(--hs-text);
  background: var(--hs-surface2);
}

.hs-table td {
  color: var(--hs-muted);
}

.hs-table tr:last-child td {
  border-bottom: none;
}

.hs-table tr:hover td {
  background: rgba(56, 189, 248, 0.04);
}

/* Tabs */
.hs-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.hs-tab {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--hs-border);
  background: transparent;
  color: var(--hs-muted);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.hs-tab:hover {
  border-color: var(--hs-border-hover);
  color: var(--hs-text);
}

.hs-tab.is-active {
  background: rgba(56, 189, 248, 0.12);
  border-color: var(--hs-primary);
  color: var(--hs-text);
}

.hs-tab-panel {
  display: none;
}

.hs-tab-panel.is-active {
  display: block;
}

/* VPS plan tables */
.hs-plan-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.hs-plan-table th,
.hs-plan-table td {
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid var(--hs-border);
  text-align: left;
}

.hs-plan-table th {
  background: var(--hs-surface2);
  color: var(--hs-text);
  font-weight: 600;
}

.hs-plan-table .hs-order {
  white-space: nowrap;
}

/* Trust strip */
.hs-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  padding: 1rem;
  font-size: 0.8rem;
  color: var(--hs-hint);
  border: 1px dashed var(--hs-border);
  border-radius: var(--hs-radius);
  background: rgba(56, 189, 248, 0.03);
}

.hs-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Testimonials */
.hs-quote {
  padding: 1.5rem;
  background: var(--hs-surface);
  border: 1px solid var(--hs-border);
  border-radius: var(--hs-radius);
  transition: box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.hs-quote:hover {
  box-shadow: 0 0 24px var(--hs-glow);
}

.hs-quote p {
  font-style: italic;
  flex: 1 1 auto;
  margin-bottom: 0;
}

.hs-quote cite {
  font-style: normal;
  font-weight: 600;
  color: var(--hs-text);
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

/* CTA band */
.hs-cta-band {
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem);
  border-radius: var(--hs-radius);
  border: 1px solid var(--hs-border-hover);
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.15),
    rgba(56, 189, 248, 0.08)
  );
  position: relative;
  overflow: hidden;
}

.hs-cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(0, 245, 255, 0.12),
    transparent 55%
  );
  pointer-events: none;
}

.hs-cta-band .hs-container {
  position: relative;
  z-index: 1;
}

/* Footer */
.hs-footer {
  padding: 4rem 0 0;
  background: var(--hs-surface);
  border-top: 1px solid var(--hs-border);
  margin-top: 2rem;
}

.hs-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.hs-footer__grid > * {
  min-width: 0;
}

@media (max-width: 1024px) {
  .hs-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .hs-footer__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.hs-footer h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hs-hint);
  margin-bottom: 1rem;
}

.hs-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hs-footer li {
  margin-bottom: 0.45rem;
}

.hs-footer a {
  color: var(--hs-muted);
  font-size: 0.9rem;
}

.hs-footer a:hover {
  color: var(--hs-primary);
}

.hs-social {
  display: flex;
  gap: 0.65rem;
  margin-top: 1rem;
}

.hs-social a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--hs-border);
  color: var(--hs-muted);
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.hs-social a:hover {
  border-color: var(--hs-primary);
  color: var(--hs-primary);
  box-shadow: 0 0 14px var(--hs-glow);
}

.hs-footer__bar {
  margin-top: 3rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--hs-border);
  font-size: 0.8rem;
  color: var(--hs-hint);
  text-align: center;
}

/* WhatsApp float */
.hs-wa {
  position: fixed;
  bottom: 1.35rem;
  right: 1.35rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
}

.hs-wa__tooltip {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  background: var(--hs-surface2);
  border: 1px solid var(--hs-border-hover);
  color: var(--hs-text);
  pointer-events: none;
}

.hs-wa:hover .hs-wa__tooltip {
  opacity: 1;
  transform: translateY(0);
}

.hs-wa__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 1.75rem;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
  border: 2px solid rgba(255, 255, 255, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}

.hs-wa__btn:hover {
  transform: scale(1.06);
  color: #fff;
  box-shadow: 0 8px 36px rgba(37, 211, 102, 0.55);
}

/* Cookie */
.hs-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  padding: 1rem;
  background: rgba(6, 15, 30, 0.99);
  border-top: 1px solid var(--hs-border-hover);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.hs-cookie.is-visible {
  transform: translateY(0);
}

.hs-cookie__inner {
  width: min(960px, 94vw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hs-cookie p {
  margin: 0;
  font-size: 0.875rem;
  max-width: 560px;
}

.hs-cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Forms */
.hs-form {
  display: grid;
  gap: 1rem;
  max-width: 560px;
}

.hs-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--hs-muted);
  margin-bottom: 0.35rem;
}

.hs-input,
.hs-select,
.hs-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--hs-radius-sm);
  border: 1px solid var(--hs-border);
  background: var(--hs-surface2);
  color: var(--hs-text);
  font-family: inherit;
  font-size: 0.9375rem;
}

.hs-input:focus,
.hs-select:focus,
.hs-textarea:focus {
  outline: none;
  border-color: var(--hs-primary);
  box-shadow: 0 0 0 3px var(--hs-glow);
}

.hs-textarea {
  min-height: 140px;
  resize: vertical;
}

/* Domain search */
.hs-domain-search {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.hs-domain-search .hs-input {
  flex: 1;
  min-width: 200px;
}

/* Game grid */
.hs-game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(160px, 100%), 1fr));
  gap: 0.75rem;
}

.hs-game-tile {
  padding: 0.85rem;
  text-align: center;
  font-size: 0.85rem;
  border-radius: var(--hs-radius-sm);
  border: 1px solid var(--hs-border);
  background: var(--hs-surface);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.hs-game-tile:hover {
  border-color: var(--hs-border-hover);
  box-shadow: 0 0 18px var(--hs-glow);
}

.hs-game-tile--soon {
  opacity: 0.75;
}

/* Blog cards */
.hs-blog-card {
  padding: 1.25rem;
  border: 1px solid var(--hs-border);
  border-radius: var(--hs-radius);
  background: var(--hs-surface);
  transition: transform 0.2s, box-shadow 0.2s;
}

.hs-blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px var(--hs-glow);
}

/* Center / utility */
.hs-center {
  text-align: center;
}

.hs-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

.hs-split > * {
  min-width: 0;
}

@media (max-width: 768px) {
  .hs-split {
    grid-template-columns: minmax(0, 1fr);
  }
}

[data-aos] {
  pointer-events: auto;
}

/* Numeric 404 page only */
.hs-main.hs-404-page h1 {
  font-family: var(--hs-mono);
  font-size: clamp(3rem, 10vw, 6rem);
  color: var(--hs-primary);
  text-shadow: 0 0 40px var(--hs-glow);
}

/* GST note */
.hs-gst {
  font-size: 0.8rem;
  color: var(--hs-hint);
  margin-top: 0.5rem;
}

/* ——— Game servers hub (vibegames-style) ——— */
.game-hub-hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(3rem, 6vw, 4rem);
  overflow: hidden;
  margin-top: 0;
}
.game-hub-hero__bg {
  position: absolute;
  inset: 0;
  background: var(--hs-bg) center/cover no-repeat;
  opacity: 0.42;
  z-index: 0;
}
.game-hub-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(2, 9, 19, 0.94) 0%,
    rgba(2, 9, 19, 0.82) 45%,
    rgba(2, 9, 19, 0.88) 100%
  );
  z-index: 1;
}
.game-hub-hero__inner {
  position: relative;
  z-index: 3;
  width: min(1180px, 92vw);
  margin: 0 auto;
}
.game-hub-hero h1 {
  margin-bottom: 0.5rem;
}
.game-feature-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  padding: 1.25rem 1rem 2rem;
  width: min(1180px, 94vw);
  margin: 0 auto;
}
.game-feature-badges span {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--hs-border-hover);
  background: rgba(56, 189, 248, 0.07);
  color: var(--hs-accent);
}
.game-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.25rem;
}
.game-grid--top {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.game-grid > * {
  min-width: 0;
}
@media (max-width: 1024px) {
  .game-grid--top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .game-grid--top {
    grid-template-columns: minmax(0, 1fr);
  }
}
.game-grid--more {
  grid-template-columns: repeat(auto-fill, minmax(min(180px, 100%), 1fr));
  gap: 1rem;
}
.game-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  border: 1px solid var(--hs-border);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: block;
  text-decoration: none;
  color: inherit;
}
.game-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.15);
}
.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.game-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(2, 9, 19, 0.95));
  padding: 20px 16px 16px;
}
.game-card-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--hs-text);
}
.game-card-price {
  font-size: 0.8rem;
  color: var(--hs-primary);
  font-family: var(--hs-mono);
  margin-top: 0.25rem;
}

/* Individual game page hero */
.game-page-hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(3rem, 6vw, 4rem);
  overflow: hidden;
}
.game-page-hero__bg {
  position: absolute;
  inset: 0;
  background-image: var(--game-hero-image);
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: 0;
}
.game-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(2, 9, 19, 0.94) 0%,
    rgba(2, 9, 19, 0.84) 40%,
    rgba(2, 9, 19, 0.9) 100%
  );
  z-index: 1;
}
.game-page-hero .hs-container {
  position: relative;
  z-index: 3;
}
.game-page-hero__top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
.game-page-hero__icon {
  font-size: 2.5rem;
  line-height: 1;
  filter: drop-shadow(0 0 12px rgba(56, 189, 248, 0.35));
}

/* Game landing — site chrome + breadcrumb back to hub */
.hs-game-landing-crumb {
  margin: 0 0 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
}

.hs-game-landing-crumb a {
  color: #7dd3fc;
  text-decoration: none;
}

.hs-game-landing-crumb a:hover {
  color: #bae6fd;
}

.hs-game-feature-list {
  margin-top: 1rem;
  list-style: none;
  padding: 1.25rem;
}

.hs-game-howto {
  font-size: 1.05rem;
}

.hs-game-related {
  margin-top: 1rem;
}

.hs-game-faq {
  margin-top: 1rem;
}

.hs-game-faq a {
  color: #38bdf8;
  font-weight: 600;
}

/* VPS location selector */
.location-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-start;
  margin: 1.5rem 0 2rem;
}
.location-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--hs-border);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  min-width: 100px;
  background: rgba(6, 15, 30, 0.5);
  font: inherit;
  color: inherit;
  text-align: center;
}
.location-card.active {
  border-color: var(--hs-primary);
  background: rgba(56, 189, 248, 0.08);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.12);
}
.location-card.coming-soon {
  opacity: 0.45;
  cursor: pointer;
}
.location-card.coming-soon.active {
  opacity: 1;
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.1);
}
.location-card img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--hs-border);
}
.location-card .city {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--hs-text);
}
.location-card .country {
  font-size: 0.72rem;
  color: var(--hs-hint);
}
.badge-live {
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 100px;
  background: rgba(40, 200, 64, 0.15);
  color: #5ee88a;
  font-family: var(--hs-mono);
}
.badge-soon {
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 100px;
  background: rgba(139, 172, 200, 0.12);
  color: var(--hs-muted);
  font-family: var(--hs-mono);
}

/* Breadcrumbs */
.hs-breadcrumb {
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: 1rem 0 0;
  font-size: 0.8rem;
  color: var(--hs-hint);
}
.hs-breadcrumb a {
  color: var(--hs-muted);
}
.hs-breadcrumb a:hover {
  color: var(--hs-primary);
}
.hs-breadcrumb__sep {
  margin: 0 0.35rem;
  opacity: 0.5;
}

/* FAQ blocks — legacy static blocks only (accordion uses hs-design-system.css) */
.hs-faq:not([data-hs-faq]) {
  max-width: 720px;
}
.hs-faq__item:not(.hs-in-faq-det):not(details) {
  border-bottom: 1px solid var(--hs-border);
  padding: 1rem 0;
}
.hs-faq__item:not(.hs-in-faq-det):not(details) h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: var(--hs-text);
}
.hs-faq__item:not(.hs-in-faq-det):not(details) p {
  margin: 0;
  font-size: 0.9rem;
}

.hs-game-faq-band .hs-faq__answer a {
  color: #38bdf8;
  font-weight: 600;
}

.related-games {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.related-games a {
  display: inline-flex;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--hs-border);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--hs-muted);
}
.related-games a:hover {
  border-color: var(--hs-primary);
  color: var(--hs-primary);
}

/* ── Homepage “premium trust” layering (hero, stats, infra, social proof) ── */

.hs-home-premium .hs-hero h1 {
  font-size: clamp(2rem, 1.2rem + 3vw, 3.5rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
  max-width: 40ch;
  font-weight: 800;
}

.hs-home-premium .hs-hero-status-badge .hs-hero-inline-link {
  color: inherit;
  text-decoration: none;
}

.hs-home-premium .hs-hero-status-badge .hs-hero-inline-link:hover {
  color: var(--hs-accent, #38bdf8);
}

/* Homepage: calmer “cloud platform” buttons — less neon glow vs site-wide gradient CTAs */
.hs-home-premium .hs-btn--primary {
  background: linear-gradient(
    145deg,
    #2563eb 0%,
    #0ea5e9 52%,
    #0369a1 100%
  );
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 6px 20px rgba(2, 6, 23, 0.45);
}

.hs-home-premium .hs-btn--primary:hover {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 10px 28px rgba(2, 132, 199, 0.28);
}

.hs-home-premium .hs-price-card .hs-btn--primary {
  background: linear-gradient(145deg, #1d4ed8 0%, #0891b2 100%);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.4);
}

.hs-home-premium .hs-hero-pill {
  border-color: rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.45);
  color: rgba(226, 232, 240, 0.95);
  font-weight: 600;
}

.hs-hero-lead-strong {
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.1875rem);
  font-weight: 600;
  color: rgba(232, 244, 255, 0.92);
  margin: 0.75rem 0 0;
  letter-spacing: 0.02em;
}

.hs-hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.35rem;
}

.hs-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  border: 1px solid rgba(125, 255, 200, 0.45);
  background: rgba(52, 211, 153, 0.1);
  color: #c6ffe8;
  line-height: 1.2;
}

.hs-hero-pill svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.hs-btn-lg {
  padding: 0.85rem 1.65rem;
  font-size: 1.02rem;
  font-weight: 700;
}

.hs-live-strip {
  margin-top: 2rem;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(min(140px, 100%), 1fr));
}

@media (min-width: 960px) {
  .hs-live-strip {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .hs-live-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.hs-live-tile {
  text-align: center;
  padding: 0.95rem 0.65rem;
  border-radius: var(--hs-radius);
  background: rgba(6, 15, 30, 0.65);
  border: 1px solid rgba(56, 189, 248, 0.14);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.18);
}

.hs-live-tile strong {
  font-family: var(--hs-mono);
  font-size: 1.15rem;
  display: block;
  color: #fff;
}

.hs-live-tile span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.74rem;
  color: var(--hs-muted);
  line-height: 1.35;
}

.hs-social-proof {
  border-radius: var(--hs-radius);
  border: 1px solid rgba(56, 189, 248, 0.12);
  background: rgba(255, 255, 255, 0.02);
  padding: 1rem 1.25rem;
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.5rem;
  justify-content: space-between;
}

@media (max-width: 560px) {
  .hs-social-proof {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.85rem;
  }
}

.hs-social-proof p {
  margin: 0;
  font-weight: 600;
  font-size: 0.925rem;
  max-width: 34ch;
  color: #cde7ff;
}

.hs-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hs-social-links a {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.22);
  color: var(--hs-accent);
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}

.hs-social-links a:hover {
  background: rgba(56, 189, 248, 0.06);
}

.hs-infra-block {
  margin-top: clamp(2.75rem, 5vw, 4rem);
}

.hs-infra-block h2 {
  text-align: center;
}

.hs-infra-block .hs-muted.hs-center {
  max-width: 46ch;
  margin-inline: auto;
}

.hs-infra-strip {
  margin-top: 1.75rem;
  padding: 1.25rem 1rem;
  border-radius: var(--hs-radius);
  border: 1px solid rgba(56, 189, 248, 0.12);
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.9), rgba(6, 15, 30, 0.55));
}

.hs-infra-strip__track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.hs-infra-chip {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #dfefff;
  background: rgba(0, 0, 0, 0.2);
}

.hs-infra-strip__note {
  margin: 0.85rem 0 0;
  font-size: 0.74rem;
  color: var(--hs-hint);
  text-align: center;
}

.hs-visual-split {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.75rem;
}

@media (max-width: 900px) {
  .hs-visual-split {
    grid-template-columns: minmax(0, 1fr);
  }
}

.hs-visual-card {
  position: relative;
  border-radius: var(--hs-radius-sm);
  overflow: hidden;
  min-height: 200px;
  border: 1px solid rgba(56, 189, 248, 0.12);
  background: rgba(2, 9, 19, 0.6);
}

.hs-visual-card img {
  width: 100%;
  height: clamp(180px, 22vw, 240px);
  object-fit: cover;
  object-position: center;
  display: block;
}

.hs-visual-card picture {
  display: block;
  line-height: 0;
}

.hs-visual-cap {
  padding: 0.65rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--hs-muted);
  background: rgba(2, 9, 19, 0.88);
}

.hs-why-grid .hs-card {
  transition: transform 0.2s ease, border-color 0.2s, box-shadow 0.2s;
}

.hs-why-grid .hs-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.28);
  box-shadow: 0 12px 40px rgba(56, 189, 248, 0.08);
}

/* Tawk (bottom-right iframe) overlaps content unless we carve space — host cannot style the iframe */
@media (min-width: 768px) {
  section.hs-section.hs-container:has(.hs-why-grid) {
    padding-right: clamp(0.75rem, 4.5vw, 3.75rem);
  }
}

body.hs-home-premium main.hs-main {
  padding-bottom: clamp(3rem, 12vw, 6rem);
}

.hs-compare-mini {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.25rem;
  font-size: 0.9rem;
}

.hs-compare-mini th,
.hs-compare-mini td {
  border-bottom: 1px solid rgba(56, 189, 248, 0.1);
  padding: 0.75rem 0.85rem;
  text-align: left;
}

.hs-compare-mini thead th {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--hs-hint);
}

.hs-cta-mega {
  border-radius: calc(var(--hs-radius) + 4px);
  padding: clamp(2rem, 4vw, 2.75rem);
  text-align: center;
  border: 1px solid rgba(56, 189, 248, 0.2);
  background: radial-gradient(circle at 20% -10%, rgba(56, 189, 248, 0.18), transparent 45%),
    linear-gradient(180deg, rgba(6, 15, 30, 0.95), rgba(2, 9, 19, 0.95));
}

.hs-cta-mega .hs-muted {
  font-size: 1rem !important;
  max-width: 44ch !important;
}

.hs-home-premium-sticky {
  display: none;
}

@media (max-width: 899px) {
  .hs-home-premium.hs-sticky-safe {
    padding-bottom: calc(5.25rem + env(safe-area-inset-bottom, 0px)) !important;
  }
  .hs-home-premium-sticky {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 92;
    gap: 0.5rem;
    padding: 0.55rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom));
    justify-content: center;
    align-items: center;
    background: rgba(2, 9, 19, 0.99);
    border-top: 1px solid rgba(56, 189, 248, 0.15);
    box-shadow: 0 -14px 40px rgba(0, 0, 0, 0.55);
  }
  .hs-home-premium-sticky .hs-btn {
    flex: 1;
    min-height: 2.85rem;
  }
}

@media (min-width: 900px) {
  .hs-home-premium-sticky {
    display: none !important;
  }
}