/* ============================================================
   Blue Sky Hosts — Booking-inspired commerce UI
   Navy header, yellow conversion, blue search action.
   ============================================================ */
:root {
  --bsh-blue: #0071c2;
  --bsh-sky: #006ce4;
  --bsh-blue-dark: #003b95;
  --bsh-blue-deep: #003580;
  --bsh-orange: #febb02;
  --bsh-orange-dark: #e0a702;
  --bsh-ink: #1a1a1a;
  --bsh-muted: #595959;
  --bsh-line: #e7e7e7;
  --bsh-paper: #f5f5f5;
  --bsh-mist: #ebf3ff;
  --bsh-white: #ffffff;
  --bsh-ok: #008009;
  --bsh-bad: #cc0000;
  --bsh-warn: #946d00;
  --bsh-radius: 8px;
  --bsh-radius-sm: 4px;
  --bsh-shadow: 0 2px 8px rgba(26, 26, 26, 0.08);
  --bsh-shadow-elev: 0 4px 16px rgba(26, 26, 26, 0.16);
  --bsh-font: "Open Sans", "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
  --bsh-space: 1.25rem;
  --bsh-max: 1200px;
  --bsh-header-h: 64px;
  --bsh-focus: 0 0 0 3px rgba(0, 108, 228, 0.35);
  --bsh-on-yellow: #1a1a1a;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

html {
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body.primary-bg-color,
body {
  font-family: var(--bsh-font);
  color: var(--bsh-ink);
  background: var(--bsh-paper);
  line-height: 1.5;
  font-size: 16px;
  font-weight: 400;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--bsh-ink);
}

h2 {
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.55rem;
}

h3 {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

body.bsh-marketing #main-body {
  min-height: 40vh;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--bsh-blue);
}

a:hover {
  color: var(--bsh-blue-dark);
}

:focus-visible {
  outline: 3px solid var(--bsh-blue);
  outline-offset: 2px;
}

/* ---------- Header / nav ---------- */
.bsh-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bsh-blue-dark);
  border-bottom: 0;
  padding: 0;
  padding-top: env(safe-area-inset-top);
}

.bsh-header-inner {
  max-width: var(--bsh-max);
  margin: 0 auto;
  padding: 0 max(1rem, env(safe-area-inset-right, 0px)) 0 max(1rem, env(safe-area-inset-left, 0px));
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem;
  min-height: var(--bsh-header-h);
}

.bsh-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
  text-decoration: none;
  color: #fff;
  background: none;
  background-image: none;
  background-repeat: no-repeat;
  border-radius: 0;
  padding: 0;
  overflow: hidden;
}

.bsh-logo img {
  height: 40px;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: left center;
  background: none;
  background-repeat: no-repeat;
}

.bsh-logo .bsh-logo-full {
  display: block;
}

.bsh-logo .bsh-logo-mark {
  display: none;
}

.bsh-logo-text {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--bsh-blue-dark);
}

.bsh-header-actions {
  margin-left: auto;
  display: flex;
  flex-wrap: nowrap;
  flex-shrink: 0;
  align-items: center;
  gap: 0.2rem;
}

.bsh-nav-toggle,
.bsh-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 36px;
  padding: 0.35rem 0.65rem;
  border: 1px solid transparent;
  border-radius: 4px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
}

.bsh-nav-toggle {
  border: 0;
  background: transparent;
  color: #fff;
  font-weight: 700;
}

.bsh-nav-toggle[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.12);
}

.bsh-icon-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
}

.bsh-cart-btn {
  position: relative;
  width: 40px;
  padding: 0;
  color: #fff;
}

.bsh-cart-icon {
  display: block;
}

.bsh-login-btn {
  color: #fff;
  border-color: #fff;
  background: transparent;
  padding: 0.35rem 0.85rem;
  font-weight: 500;
}

.bsh-currency {
  position: relative;
}

.bsh-currency-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
  min-height: 36px;
  padding: 0 0.45rem 0 0.55rem;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #fff;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.bsh-currency-btn::-webkit-details-marker {
  display: none;
}

.bsh-currency-btn::marker {
  content: "";
}

.bsh-currency-btn::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  margin-left: 0.05rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
  opacity: 0.7;
}

.bsh-currency[open] .bsh-currency-btn::after {
  transform: translateY(2px) rotate(-135deg);
}

.bsh-currency-btn:hover,
.bsh-currency[open] .bsh-currency-btn {
  background: rgba(255, 255, 255, 0.12);
}

.bsh-currency-menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  z-index: 1200;
  width: min(17.5rem, calc(100vw - 1.25rem));
  background: var(--bsh-white);
  border: 1px solid var(--bsh-line);
  border-radius: 8px;
  box-shadow: var(--bsh-shadow-elev);
  padding: 0.4rem 0 0.35rem;
}

.bsh-currency-heading {
  margin: 0;
  padding: 0.45rem 0.95rem 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--bsh-ink);
}

.bsh-currency-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0.95rem 0.55rem 2.05rem;
  color: var(--bsh-ink);
  text-decoration: none;
  min-height: 44px;
  position: relative;
}

.bsh-currency-option:hover {
  background: var(--bsh-mist);
  color: var(--bsh-ink);
  text-decoration: none;
}

.bsh-currency-option.is-active {
  font-weight: 700;
}

.bsh-currency-option.is-active::before {
  content: "";
  position: absolute;
  left: 0.85rem;
  top: 50%;
  width: 0.32rem;
  height: 0.58rem;
  border-right: 2px solid var(--bsh-blue);
  border-bottom: 2px solid var(--bsh-blue);
  transform: translateY(-60%) rotate(45deg);
}

.bsh-currency-option-name {
  font-size: 0.92rem;
}

.bsh-currency-option-meta {
  color: var(--bsh-muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.bsh-login-btn:hover,
.bsh-icon-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
}

.bsh-cart-btn {
  position: relative;
}

.bsh-cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  background: var(--bsh-orange);
  color: var(--bsh-on-yellow);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.25rem;
}

.bsh-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--bsh-white);
  border-bottom: 1px solid var(--bsh-line);
  padding: 0.5rem 1rem 1rem;
  box-shadow: var(--bsh-shadow);
}

.bsh-header.is-open .bsh-nav {
  display: block;
}

.bsh-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bsh-nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0.35rem 0.25rem;
  color: var(--bsh-ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-bottom: 1px solid var(--bsh-line);
}

.bsh-nav a:hover,
.bsh-nav a[aria-current="page"] {
  color: var(--bsh-blue-dark);
}

.bsh-nav .bsh-nav-cta {
  border-bottom: 0;
  margin-top: 0.75rem;
  justify-content: center;
  background: var(--bsh-orange);
  color: var(--bsh-on-yellow);
  border-radius: 4px;
}

.bsh-nav .bsh-nav-cta:hover {
  background: var(--bsh-orange-dark);
  color: var(--bsh-on-yellow);
}

.bsh-admin-bar {
  background: var(--bsh-blue-deep);
  color: #fff;
  font-size: 0.85rem;
  padding: 0.35rem 1rem;
  text-align: center;
}

.bsh-admin-bar a {
  color: #fff;
  text-decoration: underline;
}

.bsh-logged-bar {
  background: var(--bsh-blue-dark);
  color: #fff;
  font-size: 0.9rem;
}

.bsh-logged-bar .bsh-header-inner {
  min-height: 40px;
  justify-content: space-between;
}

.bsh-logged-bar a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.bsh-header .bsh-cta-desktop {
  display: none;
}

@media (max-width: 899px) {
  .bsh-logo {
    flex: 0 1 auto;
  }
  .bsh-logo .bsh-logo-full {
    height: 36px;
    width: auto;
    max-width: min(153px, 42vw);
  }
  .bsh-login-btn {
    display: none;
  }
  .bsh-header .bsh-cta-desktop {
    display: none;
  }
  .bsh-cart-btn,
  .bsh-nav-toggle {
    min-width: 44px;
    min-height: 44px;
  }
  .bsh-cart-btn {
    width: 44px;
  }
  .bsh-currency-btn {
    min-height: 44px;
  }
  /* Stay inside the viewport: html overflow-x: clip would cut an absolute menu. */
  .bsh-currency-menu {
    position: fixed;
    top: calc(var(--bsh-header-h) + env(safe-area-inset-top, 0px) + 0.35rem);
    left: max(0.75rem, env(safe-area-inset-left, 0px));
    right: max(0.75rem, env(safe-area-inset-right, 0px));
    width: auto;
    max-width: 17.5rem;
    margin-left: auto;
    max-height: calc(100vh - var(--bsh-header-h) - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 1.25rem);
    max-height: calc(100dvh - var(--bsh-header-h) - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 1.25rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (min-width: 900px) {
  .bsh-nav-toggle {
    display: none;
  }
  .bsh-nav {
    display: block;
    position: static;
    border: 0;
    box-shadow: none;
    padding: 0;
    margin-left: 0.75rem;
    flex: 1 1 auto;
    background: transparent;
  }
  .bsh-nav ul {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
  .bsh-nav a {
    min-height: 36px;
    padding: 0.4rem 0.7rem;
    border: 0;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 4px;
    color: #fff;
  }
  .bsh-nav a:hover,
  .bsh-nav a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
  }
  .bsh-nav .bsh-nav-cta,
  .bsh-nav li.d-xl-none {
    display: none;
  }
  .bsh-header .bsh-cta-desktop {
    display: inline-flex;
  }
  .bsh-logo .bsh-logo-full {
    height: 44px;
    max-width: none;
  }
  .bsh-hero {
    padding: 2rem 0 2.75rem;
  }
  .bsh-section {
    padding: 2.5rem 0;
  }
}

@media (min-width: 900px) and (max-width: 999px) {
  .bsh-logo .bsh-logo-full {
    height: 40px;
    max-width: 200px;
  }
}

.bsh-header .bsh-btn {
  min-height: 36px;
  padding: 0.4rem 0.95rem;
  font-size: 0.875rem;
}

.bsh-page-hero a {
  color: #ffb700;
}

.bsh-page-hero .bsh-follow {
  color: rgba(255, 255, 255, 0.88);
}

.bsh-section-tight {
  padding-top: 1.25rem;
  margin-top: -0.75rem;
}

/* ---------- Buttons ---------- */
.bsh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.7rem 1.15rem;
  border-radius: 4px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  line-height: 1.2;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.bsh-btn:hover {
  text-decoration: none;
}

.bsh-btn:active {
  transform: none;
}

.bsh-btn-primary {
  background: var(--bsh-orange);
  color: var(--bsh-on-yellow);
  border-color: var(--bsh-orange);
}

.bsh-btn-primary:hover,
.bsh-btn-primary:focus {
  background: var(--bsh-orange-dark);
  color: var(--bsh-on-yellow);
}

.bsh-btn-search {
  background: var(--bsh-sky);
  color: #fff;
  border-color: var(--bsh-sky);
  min-width: 7.5rem;
}

.bsh-btn-search:hover,
.bsh-btn-search:focus {
  background: #0057b8;
  color: #fff;
}

.bsh-btn-secondary {
  background: var(--bsh-sky);
  color: #fff;
  border-color: var(--bsh-sky);
}

.bsh-btn-secondary:hover {
  background: #0057b8;
  color: #fff;
}

.bsh-btn-ghost {
  background: var(--bsh-white);
  color: var(--bsh-sky);
  border-color: var(--bsh-sky);
}

.bsh-btn-ghost:hover {
  background: var(--bsh-mist);
  color: var(--bsh-blue-dark);
}

.bsh-btn-block {
  width: 100%;
}

@media (min-width: 640px) {
  .bsh-btn-block-sm {
    width: auto;
  }
}

/* ---------- Layout ---------- */
.bsh-wrap {
  max-width: var(--bsh-max);
  margin: 0 auto;
  padding: 0 1rem;
}

.bsh-section {
  padding: 2rem 0;
}

.bsh-section-tight {
  padding-top: 0.25rem;
}

.bsh-section-alt {
  background: var(--bsh-mist);
}

.bsh-hero {
  padding: 1.35rem 0 2rem;
  background: var(--bsh-blue-dark);
  color: #fff;
}

.bsh-page-hero {
  padding: 1.5rem 0 1.75rem;
  background: var(--bsh-blue-dark);
  color: #fff;
}

.bsh-kicker {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #ffb700;
  margin: 0 0 0.45rem;
}

.bsh-hero h1,
.bsh-hero-title {
  font-size: clamp(1.75rem, 5.5vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 0.55rem;
  color: #fff;
  font-weight: 700;
  max-width: 22ch;
}

.bsh-page-hero h1 {
  font-size: clamp(1.6rem, 4.8vw, 2.15rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
  color: #fff;
  font-weight: 700;
  max-width: 22ch;
}

.bsh-hero-title span {
  white-space: nowrap;
}

.bsh-lede {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--bsh-muted);
  margin: 0 0 1.15rem;
  max-width: 38rem;
}

.bsh-hero .bsh-lede,
.bsh-page-hero .bsh-lede {
  color: rgba(255, 255, 255, 0.88);
}

.bsh-page-hero .bsh-lede {
  margin-bottom: 1rem;
}

.bsh-follow {
  margin: 1.15rem 0 0;
  color: var(--bsh-muted);
}

.bsh-search-block {
  max-width: none;
}

.bsh-search-caption {
  font-weight: 700;
  color: var(--bsh-ink);
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
}

.bsh-hero .bsh-search-caption,
.bsh-page-hero .bsh-search-caption {
  color: #fff;
}

.bsh-search-hint {
  margin: 0.7rem 0 0;
  font-size: 0.875rem;
  color: var(--bsh-muted);
}

.bsh-hero .bsh-search-hint,
.bsh-page-hero .bsh-search-hint {
  color: rgba(255, 255, 255, 0.8);
}

/* ---------- Domain search ---------- */
.bsh-search {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--bsh-orange);
  border: 0;
  border-radius: 8px;
  padding: 4px;
  box-shadow: 0 2px 16px rgba(0, 26, 80, 0.22);
}

.bsh-search label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.bsh-search input[type="text"],
.bsh-search input[type="search"] {
  width: 100%;
  min-height: 56px;
  border: 0;
  background: #fff;
  border-radius: 4px;
  font-size: 16px;
  padding: 0.7rem 0.95rem;
  color: var(--bsh-ink);
}

.bsh-search input:focus {
  outline: 2px solid var(--bsh-blue-deep);
  outline-offset: 0;
}

.bsh-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .bsh-search {
    flex-direction: row;
    align-items: stretch;
    padding: 4px;
  }
  .bsh-search input[type="text"],
  .bsh-search input[type="search"] {
    flex: 1;
    min-height: 56px;
  }
  .bsh-search .bsh-btn {
    flex: 0 0 auto;
    min-width: 8.5rem;
    min-height: 56px;
    border-radius: 4px;
  }
  .bsh-hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* ---------- Pathway cards ---------- */
.bsh-grid {
  display: grid;
  gap: 0.9rem;
}

.bsh-grid-2 { grid-template-columns: 1fr; }
.bsh-grid-3 { grid-template-columns: 1fr; }
.bsh-grid-4 { grid-template-columns: 1fr; }

@media (min-width: 640px) {
  .bsh-grid-2 { grid-template-columns: 1fr 1fr; }
  .bsh-grid-4 { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .bsh-grid-3 { grid-template-columns: 1fr 1fr 1fr; }
  .bsh-grid-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
}

.bsh-card {
  background: var(--bsh-white);
  border: 1px solid var(--bsh-line);
  border-radius: var(--bsh-radius);
  padding: 1.15rem;
  box-shadow: var(--bsh-shadow);
}

.bsh-card h2,
.bsh-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.bsh-card p {
  margin: 0 0 0.9rem;
  color: var(--bsh-muted);
}

.bsh-card a.bsh-card-link {
  font-weight: 700;
  text-decoration: none;
}

.bsh-path {
  display: block;
  color: inherit;
  text-decoration: none;
  min-height: 100%;
}

.bsh-path:hover {
  border-color: var(--bsh-blue);
  color: inherit;
}

.bsh-path h2 {
  color: var(--bsh-blue-dark);
}

/* ---------- Pricing cards ---------- */
.bsh-plan {
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.2rem 1.2rem;
  position: relative;
}

.bsh-plan.is-featured {
  border-color: var(--bsh-orange);
  box-shadow: var(--bsh-shadow-elev);
  background: var(--bsh-white);
}

.bsh-plan-audience {
  min-height: 3.2em;
}

.bsh-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  background: var(--bsh-orange);
  color: var(--bsh-on-yellow);
  border-radius: 4px;
  padding: 0.2rem 0.5rem;
  margin-bottom: 0.6rem;
}

.bsh-price {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--bsh-ink);
  line-height: 1.1;
  margin: 0.35rem 0 0.15rem;
}

.bsh-price span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--bsh-muted);
}

.bsh-price-note {
  font-size: 0.9rem;
  color: var(--bsh-muted);
  margin: 0 0 1rem;
}

.bsh-features {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  flex: 1;
}

.bsh-features li {
  padding: 0.4rem 0 0.4rem 1.4rem;
  position: relative;
  border-bottom: 1px solid var(--bsh-line);
}

.bsh-features li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.55rem;
  height: 0.3rem;
  border-left: 2px solid var(--bsh-ok);
  border-bottom: 2px solid var(--bsh-ok);
  transform: rotate(-45deg);
}

.bsh-cycle-toggle {
  display: inline-flex;
  background: var(--bsh-white);
  border: 1px solid var(--bsh-line);
  border-radius: 4px;
  padding: 2px;
  margin: 0 0 1.25rem;
}

.bsh-cycle-toggle button {
  min-height: 40px;
  border: 0;
  background: transparent;
  border-radius: 3px;
  padding: 0.35rem 0.9rem;
  font-weight: 700;
  color: var(--bsh-muted);
}

.bsh-cycle-toggle button[aria-pressed="true"] {
  background: var(--bsh-blue-dark);
  color: #fff;
  box-shadow: none;
}

.bsh-plan[data-cycle-view="annually"] .js-price-monthly,
.bsh-plan[data-cycle-view="monthly"] .js-price-annually {
  display: none;
}

/* ---------- TLD rows ---------- */
.bsh-tld {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem;
  background: var(--bsh-white);
  border: 1px solid var(--bsh-line);
  border-radius: var(--bsh-radius-sm);
  padding: 0.9rem 1rem;
}

.bsh-tld strong {
  font-size: 1.15rem;
  color: var(--bsh-ink);
}

.bsh-tld-prices {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.4rem;
  font-size: 0.85rem;
}

.bsh-tld-prices span {
  color: var(--bsh-muted);
  display: block;
}

.bsh-tld-prices b {
  display: block;
  color: var(--bsh-ink);
  font-size: 0.95rem;
  margin-top: 0.1rem;
}

@media (min-width: 768px) {
  .bsh-tld {
    grid-template-columns: 7rem 1fr auto;
    align-items: center;
  }
}

.bsh-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.bsh-compare {
  width: 100%;
  border-collapse: collapse;
  background: var(--bsh-white);
  min-width: 520px;
}

.bsh-compare th,
.bsh-compare td {
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid var(--bsh-line);
  text-align: left;
  vertical-align: top;
}

.bsh-compare th {
  background: var(--bsh-paper);
  font-size: 0.9rem;
}

@media (max-width: 639px) {
  .bsh-compare-cards .bsh-compare {
    display: none;
  }
}

/* ---------- Forms ---------- */
.bsh-form label {
  display: block;
  font-weight: 700;
  margin: 0 0 0.35rem;
}

.bsh-form .bsh-field {
  margin-bottom: 1rem;
}

.bsh-form input,
.bsh-form select,
.bsh-form textarea {
  width: 100%;
  min-height: 48px;
  font-size: 16px;
  border: 1px solid #bdbdbd;
  border-radius: var(--bsh-radius-sm);
  padding: 0.65rem 0.8rem;
  background: var(--bsh-white);
  color: var(--bsh-ink);
}

.bsh-form textarea {
  min-height: 8rem;
  resize: vertical;
}

.bsh-form .optional {
  font-weight: 500;
  color: var(--bsh-muted);
}

.bsh-honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.bsh-alert {
  border-radius: var(--bsh-radius-sm);
  padding: 0.9rem 1rem;
  margin-bottom: 1rem;
}

.bsh-alert-ok {
  background: #e8f6ee;
  color: #14532d;
}

.bsh-alert-bad {
  background: #fdecec;
  color: #7f1d1d;
}

.bsh-alert ul {
  margin: 0.4rem 0 0;
  padding-left: 1.1rem;
}

/* ---------- FAQ / details ---------- */
.bsh-faq details {
  background: var(--bsh-white);
  border: 1px solid var(--bsh-line);
  border-radius: var(--bsh-radius-sm);
  padding: 0.2rem 1rem;
  margin-bottom: 0.6rem;
}

.bsh-faq summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  font-weight: 700;
  cursor: pointer;
}

.bsh-faq details p {
  color: var(--bsh-muted);
  margin: 0 0 0.9rem;
}

/* ---------- Quotes ---------- */
.bsh-quote {
  background: var(--bsh-white);
  border-left: 4px solid var(--bsh-orange);
  padding: 1rem 1.1rem;
  border-radius: 0 var(--bsh-radius-sm) var(--bsh-radius-sm) 0;
  box-shadow: var(--bsh-shadow);
}

.bsh-quote p {
  margin: 0 0 0.6rem;
}

.bsh-quote cite {
  font-style: normal;
  font-weight: 700;
  color: var(--bsh-ink);
  font-size: 0.95rem;
}

/* ---------- Footer ---------- */
.bsh-footer {
  background: var(--bsh-blue-deep);
  color: #d7dee8;
  padding: 2.4rem 0 calc(2rem + env(safe-area-inset-bottom));
  margin-top: 0;
}

.bsh-footer a {
  color: #fff;
  text-decoration: none;
}

.bsh-footer a:hover {
  text-decoration: underline;
}

.bsh-footer h2 {
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.7rem;
}

.bsh-footer ul {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
}

.bsh-footer li {
  margin: 0 0 0.45rem;
}

.bsh-footer li a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
}

.bsh-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.25rem;
}

.bsh-footer-legal {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.1rem;
  font-size: 0.9rem;
}

@media (min-width: 800px) {
  .bsh-footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
  .bsh-footer-legal {
    grid-column: auto;
    border: 0;
    padding-top: 0;
  }
}

/* ---------- Client area coherence ---------- */
#header.header,
.navbar.navbar-light,
.navbar.main-navbar-wrapper,
.master-breadcrumb {
  display: none;
}

body.bsh-whmcs-chrome #header.header,
body.bsh-whmcs-chrome .navbar.navbar-light {
  display: none;
}

.topbar {
  display: none;
}

#main-body {
  padding-top: 1.25rem;
  padding-bottom: 2rem;
}

body.bsh-marketing #main-body > div > .row {
  margin-left: 0;
  margin-right: 0;
}

body.bsh-marketing .primary-content {
  padding-left: 0;
  padding-right: 0;
  max-width: none;
}

.primary-content .card,
.tile,
.client-home-cards .card {
  border-radius: var(--bsh-radius);
  border-color: var(--bsh-line);
}

.btn-primary,
.btn.btn-primary {
  background: var(--bsh-orange);
  border-color: var(--bsh-orange);
  color: var(--bsh-on-yellow);
}

.btn-primary:hover,
.btn.btn-primary:hover {
  background: var(--bsh-orange-dark);
  border-color: var(--bsh-orange-dark);
  color: var(--bsh-on-yellow);
}

.tiles .tile {
  min-height: 96px;
}

input.form-control,
select.form-control,
textarea.form-control {
  font-size: 16px;
  min-height: 44px;
}

@media (max-width: 767px) {
  .btn,
  .bsh-btn {
    min-height: 48px;
  }
  table.table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .dataTables_wrapper {
    overflow-x: auto;
  }
}

/* Hide default twenty-one homepage domain search; we render our own */
.home-domain-search {
  display: none;
}

.bsh-muted {
  color: var(--bsh-muted);
}

.bsh-center {
  text-align: center;
}

.bsh-split {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .bsh-split {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

.bsh-notice-missing {
  background: #fff7e8;
  color: #7a4b00;
  padding: 0.85rem 1rem;
  border-radius: var(--bsh-radius-sm);
}

.bsh-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--bsh-blue-dark);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 2000;
}

.bsh-skip:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.template-login .login-form .card,
.template-password-reset-container .card {
  border-radius: var(--bsh-radius);
  border-color: var(--bsh-line);
}

body.template-login,
body.template-password-reset-container,
body.template-password-reset-email-prompt {
  background: var(--bsh-paper);
}

.bsh-legal h2 {
  font-size: 1.15rem;
  margin: 1.5rem 0 0.5rem;
}

.bsh-legal p {
  color: var(--bsh-muted);
}

#order-standard_cart .btn-primary,
#order-standard_cart .btn.btn-success {
  background: var(--bsh-orange);
  border-color: var(--bsh-orange);
  color: var(--bsh-on-yellow);
}

#order-standard_cart .header-lined h1 {
  color: var(--bsh-ink);
  letter-spacing: -0.02em;
}

@media (max-width: 767px) {
  #order-standard_cart .cart-sidebar {
    width: 100%;
    float: none;
    padding: 0 0 1rem;
  }
  #order-standard_cart .cart-body,
  #order-standard_cart .secondary-cart-body,
  #order-standard_cart .secondary-cart-sidebar {
    width: 100%;
    float: none;
  }
  #order-standard_cart .product {
    margin-bottom: 1rem;
  }
  #order-standard_cart .domain-checker-container .input-group {
    flex-wrap: wrap;
  }
  #order-standard_cart .domain-checker-container .form-control {
    font-size: 16px;
    min-height: 48px;
  }
  #order-standard_cart .btnCheckAvailability,
  #order-standard_cart #btnCheckAvailability {
    width: 100%;
    margin-top: 0.5rem;
  }
}

/* ---------- Polish: pathways, support, domains, form ---------- */
.bsh-paths {
  display: grid;
  gap: 0.75rem;
  border: 0;
}

.bsh-support-primary {
  display: grid;
  gap: 0.75rem;
}

.bsh-path-item,
.bsh-support-lead {
  display: block;
  padding: 1.15rem 1.1rem;
  border: 1px solid var(--bsh-line);
  border-radius: var(--bsh-radius);
  background: var(--bsh-white);
  box-shadow: var(--bsh-shadow);
  color: inherit;
  text-decoration: none;
}

.bsh-path-item:hover,
.bsh-support-lead:hover {
  box-shadow: var(--bsh-shadow-elev);
  color: inherit;
}

.bsh-path-item h2,
.bsh-support-lead h2 {
  margin: 0 0 0.3rem;
  font-size: 1.2rem;
}

.bsh-path-item p,
.bsh-support-lead p {
  margin: 0 0 0.55rem;
  color: var(--bsh-muted);
}

.bsh-path-item span,
.bsh-support-lead span {
  font-weight: 700;
  color: var(--bsh-sky);
}

.bsh-path-item:hover,
.bsh-support-lead:hover {
  color: inherit;
}

.bsh-path-item:hover span,
.bsh-support-lead:hover span {
  color: var(--bsh-blue-dark);
}

.bsh-support-lead {
  background: var(--bsh-white);
  border: 1px solid var(--bsh-line);
  border-radius: var(--bsh-radius);
  padding: 1.25rem 1.15rem;
  margin-bottom: 0;
}

.bsh-support-secondary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  color: var(--bsh-muted);
}

.bsh-support-secondary a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.bsh-offer-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.bsh-offer-list li {
  background: var(--bsh-white);
  border: 1px solid var(--bsh-line);
  border-radius: 4px;
  padding: 0.4rem 0.8rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--bsh-ink);
}

.bsh-success {
  background: var(--bsh-white);
  border: 1px solid #cde8d6;
  border-radius: var(--bsh-radius);
  padding: 1.5rem 1.2rem;
}

.bsh-success h2 {
  margin-top: 0;
}

.bsh-tld-list {
  display: grid;
  gap: 0.65rem;
}

.bsh-tld-filter {
  margin: 0 0 1rem;
}

.bsh-tld-filter label {
  display: block;
  font-weight: 700;
  margin: 0 0 0.35rem;
}

.bsh-tld-filter input {
  width: 100%;
  max-width: 22rem;
  min-height: 48px;
  font-size: 16px;
  border: 1px solid #bdbdbd;
  border-radius: var(--bsh-radius-sm);
  padding: 0.65rem 0.8rem;
  background: var(--bsh-white);
}

.bsh-quote-featured {
  background: var(--bsh-white);
  border-left-color: var(--bsh-sky);
  padding: 1.35rem 1.25rem;
}

.bsh-quote-featured p {
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--bsh-ink);
}

.bsh-compare-mobile-note {
  display: none;
  color: var(--bsh-muted);
}

.bsh-search.is-busy .bsh-btn {
  opacity: 0.75;
}

.bsh-honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 768px) {
  .bsh-paths {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.85rem;
    border: 0;
  }
  .bsh-path-item {
    border-bottom: 1px solid var(--bsh-line);
    padding: 1.2rem 1.1rem;
  }
  .bsh-support-primary {
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 0.85rem;
    border: 0;
    align-items: stretch;
  }
  .bsh-support-lead {
    margin: 0;
  }
  .bsh-path-item + .bsh-path-item {
    border-bottom: 1px solid var(--bsh-line);
  }
}

@media (max-width: 639px) {
  .bsh-compare-desktop {
    display: none;
  }
  .bsh-compare-mobile-note {
    display: block;
  }
  .bsh-plan-audience {
    min-height: 0;
  }
}

@media (max-width: 359px) {
  .bsh-logo .bsh-logo-full {
    display: none;
  }
  .bsh-logo .bsh-logo-mark {
    display: block;
    height: 36px;
    width: 36px;
    max-width: 36px;
  }
}

.bsh-404-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.25rem 0 0;
}
.bsh-404 .bsh-btn {
  text-decoration: none;
}

