/* HostStack — global responsive helpers (load after app.css) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border-width: 0;
  white-space: nowrap;
}

/* Contact / migration form status: visibility does not depend on Tailwind’s `hidden` in the build */
form[data-hs-contact-form] [data-form-ok],
form[data-hs-contact-form] [data-form-err],
form[data-hs-migration-form] [data-form-ok],
form[data-hs-migration-form] [data-form-err] {
  display: none;
}
form[data-hs-contact-form] [data-form-ok].hs-form-msg-visible,
form[data-hs-contact-form] [data-form-err].hs-form-msg-visible,
form[data-hs-migration-form] [data-form-ok].hs-form-msg-visible,
form[data-hs-migration-form] [data-form-err].hs-form-msg-visible {
  display: block;
}
html {
  overflow-x: clip;
  /* Do not set color-scheme: dark globally — when app.css fails to load, it makes inherited
     text light on white surfaces (plan cards, <select>, etc.). Dark sections use explicit colors. */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  overflow-x: clip;
  margin: 0;
}

/* Embedded / marketing media: avoid horizontal overflow on narrow viewports */
img,
video,
iframe,
embed,
object {
  max-width: 100%;
}

/* Optional wrapper for wide tables / comparisons */
.hs-scroll-x {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

/* Sticky header: respect notched devices; drawer aligns to bar below safe area */
#hs-site-header {
  padding-top: env(safe-area-inset-top, 0px);
}
#hs-site-header .hs-header-logo {
  max-width: min(220px, 52vw);
}
@media (min-width: 40rem) {
  #hs-site-header .hs-header-logo {
    max-width: none;
  }
}
.hs-nav-drawer-overlay,
.hs-nav-drawer-panel {
  /* Two-row header + category strip + accent bar */
  top: calc(7.5rem + env(safe-area-inset-top, 0px));
}
.hs-nav-drawer-panel {
  max-height: calc(100dvh - 7.5rem - env(safe-area-inset-top, 0px));
}

/* Light marketing header (injected at static build): h-16 + accent strip */
#hs-site-header.hs-header-light .hs-nav-drawer-overlay,
#hs-site-header.hs-header-light .hs-nav-drawer-panel {
  top: calc(4.5rem + env(safe-area-inset-top, 0px));
}
#hs-site-header.hs-header-light .hs-nav-drawer-panel {
  max-height: calc(100dvh - 4.5rem - env(safe-area-inset-top, 0px));
}
#hs-site-header.hs-header-light .hs-nav-top-icon {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}
#hs-site-header.hs-header-light .hs-nav-chevron {
  width: 0.875rem;
  height: 0.875rem;
}
#hs-site-header.hs-header-light .hs-nav-dd-icon {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  color: #f97316;
}
.hs-mob-sublink {
  display: flex;
  min-height: 2.5rem;
  align-items: center;
  border-radius: 0.5rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #334155;
}
.hs-mob-sublink:hover {
  background: #fff7ed;
  color: #c2410c;
}

/* Category header (light strip under main bar) */
.hs-cat-nav-scroll {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
}
.hs-cat-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 0.65rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #475569;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
@media (min-width: 640px) {
  .hs-cat-nav-link {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    gap: 0.5rem;
  }
}
.hs-cat-nav-link:hover {
  color: #ea580c;
  background: rgba(254, 243, 199, 0.35);
}
.hs-cat-nav-link--active {
  color: #ea580c;
  border-bottom-color: #ea580c;
}
.hs-nav-cat-icon {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}
.hs-nav-cat-icon--accent {
  color: #ea580c;
}
.hs-cat-dd-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #334155;
  transition: background 0.12s ease, color 0.12s ease;
}
.hs-cat-dd-item:hover {
  background: #fff7ed;
  color: #c2410c;
}
.hs-cat-dd-panel {
  padding-top: 0.35rem;
}
.hs-mobile-dd-link {
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  border-radius: 0.5rem;
  padding: 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgb(226 232 240);
}
.hs-mobile-dd-link:hover {
  background: rgba(255, 255, 255, 0.06);
}
.hs-mobile-dd-sublink {
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  padding: 0 0.5rem 0 1.25rem;
  font-size: 0.8125rem;
  color: rgb(148 163 184);
}
.hs-mobile-dd-sublink:hover {
  color: rgb(253 186 116);
}

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

/* Primary tap targets: comfortable on phones without changing desktop density */
@media (max-width: 639.98px) {
  a.hs-footer-link {
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
  }
  #hs-site-footer li > a.inline-block {
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
  }
  #hs-site-footer a[href^="tel:"],
  #hs-site-footer a[href^="mailto:"] {
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
  }
}
/* Taller than 100vh where supported (mobile browser chrome) */
@supports (min-height: 100dvh) {
  body.flex.min-h-screen {
    min-height: 100dvh;
  }
}
@supports (padding: max(0px)) {
  .hs-pb-mobile-ui {
    padding-bottom: max(5.5rem, calc(4.5rem + env(safe-area-inset-bottom, 0px)));
  }
}
@media (min-width: 640px) {
  .hs-pb-mobile-ui {
    padding-bottom: 0;
  }
}

#hs-cookie {
  bottom: max(4.5rem, env(safe-area-inset-bottom, 0px));
}
@media (min-width: 640px) {
  #hs-cookie {
    bottom: 1rem;
  }
}
[data-mobile-cta] {
  padding-bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
}

/* Mobile slide-down nav: smooth scroll and keep links above the home indicator */
#hs-nav-panel {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
#hs-nav-panel:not([hidden]) {
  padding-bottom: max(1.5rem, env(safe-area-inset-bottom, 0px));
}

/* Homepage “Trust & security at a glance” — fixed icon box (avoids stretch/glitches if Tailwind h/w/ring missing from build). */
.hs-trust-icon {
  box-sizing: border-box;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  min-height: 2.5rem;
  max-width: 2.5rem;
  max-height: 2.5rem;
  line-height: 1;
  border-radius: 0.5rem;
  overflow: hidden;
}
section[aria-label="Security and uptime guarantees"] .hs-trust-card {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  align-items: start;
  gap: 0.75rem 0.75rem;
  /* Solid left accent (does not depend on Tailwind `border-l-*` being in the bundle). */
  border-left-width: 4px;
  border-left-style: solid;
}
.hs-trust-card.hs-accent-emerald {
  border-left-color: rgba(16, 185, 129, 0.75);
}
.hs-trust-card.hs-accent-cyan {
  border-left-color: rgba(6, 182, 212, 0.75);
}
.hs-trust-card.hs-accent-violet {
  border-left-color: rgba(139, 92, 246, 0.75);
}
.hs-trust-card.hs-accent-amber {
  border-left-color: rgba(245, 158, 11, 0.85);
}
@media (min-width: 480px) {
  section[aria-label="Security and uptime guarantees"] .hs-trust-card {
    gap: 0.5rem 1rem;
  }
}
/* “Why us” + DDoS: single grid, equal height per row */
.hs-trust-why-grid {
  margin-left: 0;
}
.hs-trust-why-grid .hs-trust-card-block {
  min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  box-sizing: border-box;
}
/* Equal-height feature cards: body grows, link/CTA stays bottom */
.hs-trust-card-block {
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
  box-sizing: border-box;
}
.hs-trust-card-body {
  flex: 1 1 auto;
  min-height: 0;
}
section[aria-label="Security and uptime guarantees"] .hs-trust-card {
  min-height: 0;
  height: 100%;
  align-self: stretch;
  box-sizing: border-box;
}

/* Blog & long-form markdown — reading width, hierarchy, and dark theme */
@media (max-width: 24rem) {
  .prose-hoststack {
    font-size: 1rem;
    line-height: 1.65;
  }
}

.prose-hoststack {
  --hs-prose-ink: rgb(203 213 225); /* slate-300 */
  --hs-prose-muted: rgb(148 163 184); /* slate-400 */
  --hs-prose-faint: rgb(100 116 139); /* slate-500 */
  --hs-prose-heading: rgb(248 250 252); /* slate-50 */
  --hs-prose-link: rgb(34 211 238); /* cyan-400 */
  --hs-prose-link-hover: rgb(103 232 249); /* cyan-300 */
  --hs-prose-code-bg: rgba(15, 23, 42, 0.7); /* slate-900-ish */
  --hs-prose-border: rgba(255, 255, 255, 0.1);
  color: var(--hs-prose-ink);
  font-size: 1.0625rem; /* 17px at root 16px */
  line-height: 1.7;
  letter-spacing: 0.01em;
  max-width: 65ch;
}
.prose-hoststack > *:first-child {
  margin-top: 0;
}
.prose-hoststack > *:last-child {
  margin-bottom: 0;
}
.prose-hoststack p {
  margin: 0 0 1.25em;
  max-width: 65ch;
}
.prose-hoststack a {
  color: var(--hs-prose-link);
  text-decoration: underline;
  text-decoration-color: rgba(34, 211, 238, 0.45);
  text-underline-offset: 0.15em;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}
.prose-hoststack a:hover {
  color: var(--hs-prose-link-hover);
  text-decoration-color: rgba(103, 232, 249, 0.75);
}
.prose-hoststack strong,
.prose-hoststack b {
  color: var(--hs-prose-heading);
  font-weight: 600;
}
.prose-hoststack h1,
.prose-hoststack h2,
.prose-hoststack h3,
.prose-hoststack h4 {
  color: var(--hs-prose-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 1.75em 0 0.65em;
}
.prose-hoststack h1 {
  font-size: 1.75rem;
}
.prose-hoststack h2 {
  font-size: 1.5rem;
  margin-top: 2em;
  padding-bottom: 0.35em;
  border-bottom: 1px solid var(--hs-prose-border);
}
.prose-hoststack h3 {
  font-size: 1.25rem;
  margin-top: 1.65em;
}
.prose-hoststack h4 {
  font-size: 1.1rem;
  margin-top: 1.4em;
  color: rgb(226 232 240);
}
.prose-hoststack h1 + *,
.prose-hoststack h2 + *,
.prose-hoststack h3 + *,
.prose-hoststack h4 + * {
  margin-top: 0.35em;
}
.prose-hoststack ul,
.prose-hoststack ol {
  margin: 0 0 1.25em;
  padding-left: 1.35em;
  max-width: 65ch;
}
.prose-hoststack ul {
  list-style: disc;
}
.prose-hoststack ol {
  list-style: decimal;
}
.prose-hoststack li {
  margin: 0.4em 0;
  padding-left: 0.2em;
}
.prose-hoststack li::marker {
  color: var(--hs-prose-faint);
}
.prose-hoststack li > p {
  margin: 0.45em 0;
}
.prose-hoststack blockquote {
  margin: 1.5em 0;
  padding: 0.75em 0 0.75em 1.1em;
  border-left: 3px solid rgba(6, 182, 212, 0.45);
  background: linear-gradient(90deg, rgba(6, 182, 212, 0.06) 0%, transparent 100%);
  color: var(--hs-prose-muted);
  font-style: italic;
  border-radius: 0 0.5rem 0.5rem 0;
  max-width: 65ch;
}
.prose-hoststack blockquote p:last-child {
  margin-bottom: 0;
}
.prose-hoststack hr {
  margin: 2.5em 0;
  border: 0;
  height: 1px;
  background: var(--hs-prose-border);
}
.prose-hoststack pre {
  margin: 1.35em 0;
  padding: 1rem 1.1rem;
  max-width: min(100%, 65ch);
  overflow-x: auto;
  font-size: 0.88em;
  line-height: 1.6;
  border-radius: 0.75rem;
  border: 1px solid var(--hs-prose-border);
  background: var(--hs-prose-code-bg);
  color: rgb(226 232 240);
  -webkit-overflow-scrolling: touch;
}
.prose-hoststack :not(pre) > code {
  font-size: 0.9em;
  padding: 0.15em 0.4em;
  border-radius: 0.35rem;
  background: var(--hs-prose-code-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgb(165 243 252);
}
.prose-hoststack pre code {
  font-size: inherit;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
}
.prose-hoststack table {
  width: 100%;
  max-width: 100%;
  margin: 1.5em 0;
  border-collapse: collapse;
  font-size: 0.95em;
  line-height: 1.5;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.prose-hoststack thead {
  background: rgba(15, 23, 42, 0.85);
}
.prose-hoststack th,
.prose-hoststack td {
  padding: 0.6em 0.75em;
  text-align: left;
  border: 1px solid var(--hs-prose-border);
}
.prose-hoststack th {
  color: var(--hs-prose-heading);
  font-weight: 600;
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.prose-hoststack img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin: 1.5em 0;
  border: 1px solid var(--hs-prose-border);
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.5);
}
/* Article wrapper: optional subtle top spacing after header band */
.hs-blog-article .hs-blog-post {
  min-width: 0;
}

/* ── Resilience when Tailwind (app.css) fails to load (wrong path, 404, cache) ── */
.hidden {
  display: none !important;
}
@media (min-width: 768px) {
  .md\:hidden {
    display: none !important;
  }
  .md\:flex {
    display: flex !important;
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.grid {
  display: grid;
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-1 {
  flex: 1 1 0%;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.shrink-0 {
  flex-shrink: 0;
}
.min-w-0 {
  min-width: 0;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-8 {
  gap: 2rem;
}

.hs-promo-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0.625rem 1rem;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .hs-promo-inner {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.hs-promo-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.hs-header-mainbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-height: 4rem;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .hs-header-mainbar {
    gap: 0.75rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.hs-header-mainbar nav[aria-label="Primary"] {
  display: none;
}
@media (min-width: 768px) {
  .hs-header-mainbar nav[aria-label="Primary"] {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    min-width: 0;
    gap: 0.125rem;
  }
}
.hs-header-mainbar .hs-header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 1;
  min-width: 0;
  min-height: 2.75rem;
  text-decoration: none;
}

select[data-hs-vps-location-select],
select[data-hs-vps-location-select] option {
  background-color: #fff !important;
  color: #0f172a !important;
}
select[data-hs-vps-location-select] {
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
}

[data-hs-plan-card] {
  box-sizing: border-box;
  background: #fff;
  color: #0f172a;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
}
[data-hs-plan-card] h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
}
[data-hs-plan-card] .text-slate-500,
[data-hs-plan-card] p.text-sm {
  color: #64748b;
}
[data-hs-plan-card] a[data-hs-track] {
  display: inline-flex;
  width: 100%;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  padding: 0.75rem 1rem;
  border-radius: 9999px;
  background: #f97316;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
}

/* === Site-wide Tailwind fallbacks (all pages if app.css fails) === */
.overflow-hidden {
  overflow: hidden !important;
}
.sticky {
  position: sticky;
}
.top-0 {
  top: 0;
}
.z-40 {
  z-index: 40;
}
.z-50 {
  z-index: 50;
}
.z-\[60\] {
  z-index: 60;
}
.fixed {
  position: fixed;
}
.inset-x-0 {
  left: 0;
  right: 0;
}
.bottom-0 {
  bottom: 0;
}
.left-0 {
  left: 0;
}
.right-0 {
  right: 0;
}

body.flex.min-h-screen.flex-col.bg-slate-950.text-slate-50 {
  background-color: #020617;
  color: #f8fafc;
}

.bg-slate-950 {
  background-color: #020617;
}
.bg-slate-900 {
  background-color: #0f172a;
}
.bg-slate-900\/40 {
  background-color: rgba(15, 23, 42, 0.4);
}
.bg-slate-900\/80 {
  background-color: rgba(15, 23, 42, 0.8);
}
.bg-slate-800 {
  background-color: #1e293b;
}
.bg-slate-50 {
  background-color: #f8fafc;
}
.bg-slate-50\/80 {
  background-color: rgba(248, 250, 252, 0.8);
}
.bg-white {
  background-color: #fff;
}
.bg-orange-500 {
  background-color: #f97316;
}
.bg-orange-600 {
  background-color: #ea580c;
}
.bg-cyan-400 {
  background-color: #22d3ee;
}
/* “Why HostStack” band + similar: gradient without Tailwind v4 theme */
.bg-gradient-to-b.from-slate-900\/50.to-slate-950 {
  background-image: linear-gradient(to bottom, rgba(15, 23, 42, 0.5), #020617);
}
.bg-gradient-to-r.from-amber-100.via-orange-50.to-amber-100 {
  background-image: linear-gradient(to right, #fef3c7, #fff7ed, #fef3c7);
}

.text-slate-50 {
  color: #f8fafc;
}
.text-slate-300 {
  color: #cbd5e1;
}
.text-slate-400 {
  color: #94a3b8;
}
.text-slate-500 {
  color: #64748b;
}
.text-slate-600 {
  color: #475569;
}
.text-slate-700 {
  color: #334155;
}
.text-slate-800 {
  color: #1e293b;
}
.text-slate-900 {
  color: #0f172a;
}
.text-white {
  color: #fff;
}
.text-cyan-300 {
  color: #67e8f9;
}
.text-cyan-400 {
  color: #22d3ee;
}
.text-orange-400 {
  color: #fb923c;
}
.text-orange-600 {
  color: #ea580c;
}
.text-orange-700 {
  color: #c2410c;
}

.border {
  border-width: 1px;
  border-style: solid;
  border-color: #e2e8f0;
}
.border-t {
  border-top-width: 1px;
  border-top-style: solid;
}
.border-b {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
.border-slate-100 {
  border-color: #f1f5f9;
}
.border-slate-200 {
  border-color: #e2e8f0;
}
.border-slate-300 {
  border-color: #cbd5e1;
}
.border-white\/10 {
  border-color: rgba(255, 255, 255, 0.1);
}
.border-white\/20 {
  border-color: rgba(255, 255, 255, 0.2);
}
.border-orange-200 {
  border-color: #fed7aa;
}

.rounded {
  border-radius: 0.25rem;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-full {
  border-radius: 9999px;
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}
.shadow-md {
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}
.shadow-lg {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}
.shadow-xl {
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.w-full {
  width: 100%;
}
.w-auto {
  width: auto;
}
.w-6 {
  width: 1.5rem;
}
.w-10 {
  width: 2.5rem;
}
.h-6 {
  height: 1.5rem;
}
.h-9 {
  height: 2.25rem;
}
.h-10 {
  height: 2.5rem;
}
.h-16 {
  height: 4rem;
}
.h-1\.5 {
  height: 0.375rem;
}
.h-full {
  height: 100%;
}
.min-h-9 {
  min-height: 2.25rem;
}
.min-h-10 {
  min-height: 2.5rem;
}
.min-h-11 {
  min-height: 2.75rem;
}
.min-h-screen {
  min-height: 100vh;
}
.max-w-lg {
  max-width: 32rem;
}
.max-w-xl {
  max-width: 36rem;
}
.max-w-2xl {
  max-width: 42rem;
}
.max-w-3xl {
  max-width: 48rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-6xl {
  max-width: 72rem;
}
.max-w-7xl {
  max-width: 80rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.p-4 {
  padding: 1rem;
}
.p-5 {
  padding: 1.25rem;
}
.p-6 {
  padding: 1.5rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.pt-2 {
  padding-top: 0.5rem;
}
.pt-4 {
  padding-top: 1rem;
}
.pt-8 {
  padding-top: 2rem;
}
.pb-6 {
  padding-bottom: 1.5rem;
}
.pb-8 {
  padding-bottom: 2rem;
}

.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-10 {
  margin-top: 2.5rem;
}
.mt-14 {
  margin-top: 3.5rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}

.gap-1 {
  gap: 0.25rem;
}
.gap-1\.5 {
  gap: 0.375rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-10 {
  gap: 2.5rem;
}
.gap-x-4 {
  column-gap: 1rem;
}
.gap-y-1 {
  row-gap: 0.25rem;
}

.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 0.375rem;
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 0.5rem;
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 1rem;
}
.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 1.5rem;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}
.font-extrabold {
  font-weight: 800;
}
.tracking-tight {
  letter-spacing: -0.025em;
}
.tracking-wide {
  letter-spacing: 0.025em;
}
.uppercase {
  text-transform: uppercase;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.leading-snug {
  line-height: 1.375;
}
.leading-relaxed {
  line-height: 1.625;
}
.text-balance {
  text-wrap: balance;
}
.text-pretty {
  text-wrap: pretty;
}
.underline {
  text-decoration: underline;
}
.break-words {
  overflow-wrap: break-word;
}

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

.object-contain {
  object-fit: contain;
}
.object-left {
  object-position: left;
}

.opacity-0 {
  opacity: 0;
}
.opacity-100 {
  opacity: 1;
}
.invisible {
  visibility: hidden;
}
.pointer-events-none {
  pointer-events: none;
}

/* Plan / reseller category tabs — JS sets aria-selected; keep readable without Tailwind */
[data-hs-plan-group-tab][aria-selected="true"] {
  background-color: #f97316 !important;
  color: #fff !important;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}
[data-hs-plan-group-tab][aria-selected="false"] {
  background-color: #fff !important;
  color: #334155 !important;
  border: 1px solid #cbd5e1 !important;
}

/* FAQ-style details (store landings, support) */
details.group.rounded-xl.border {
  box-sizing: border-box;
}
details.group summary {
  list-style: none;
}
details.group summary::-webkit-details-marker {
  display: none;
}

@media (min-width: 640px) {
  .sm\:flex-row {
    flex-direction: row !important;
  }
  .sm\:flex-wrap {
    flex-wrap: wrap !important;
  }
  .sm\:items-center {
    align-items: center !important;
  }
  .sm\:justify-between {
    justify-content: space-between !important;
  }
  .sm\:justify-center {
    justify-content: center !important;
  }
  .sm\:gap-x-3 {
    column-gap: 0.75rem !important;
  }
  .sm\:gap-x-6 {
    column-gap: 1.5rem !important;
  }
  .sm\:gap-y-1 {
    row-gap: 0.25rem !important;
  }
  .sm\:px-6 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .sm\:py-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .sm\:text-left {
    text-align: left !important;
  }
  .sm\:text-sm {
    font-size: 0.875rem !important;
  }
  .sm\:text-3xl {
    font-size: 1.875rem !important;
  }
  .sm\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .sm\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 768px) {
  .md\:block {
    display: block !important;
  }
  .md\:inline-flex {
    display: inline-flex !important;
  }
  .md\:grid {
    display: grid !important;
  }
  .md\:gap-0 {
    gap: 0 !important;
  }
  .md\:gap-1 {
    gap: 0.25rem !important;
  }
  .md\:px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
  .lg\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  .lg\:gap-x-10 {
    column-gap: 2.5rem !important;
  }
}

@media (min-width: 400px) {
  .min-\[400px\]\:inline-flex {
    display: inline-flex !important;
  }
}

/* Desktop nav dropdowns: Tailwind uses group-hover:* on .hs-dd-panel */
@media (min-width: 768px) {
  .group:hover .hs-dd-panel,
  .group:focus-within .hs-dd-panel {
    pointer-events: auto !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}
