@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;800;900&display=swap");

/* Fallback utility palette if Tailwind config fails to load */
.bg-bg-1 { background-color: #0a0b0f; }
.bg-bg-2 { background-color: #111318; }
.bg-bg-3 { background-color: #16181d; }
.border-brd { border-color: #1e2028; }
.text-txt-2 { color: #9ca3af; }
.text-txt-3 { color: #6b7280; }
.bg-acc-1 { background-color: #6366f1; }
.bg-acc-2 { background-color: #818cf8; }
.bg-ok-1 { background-color: #10b981; }

.mobile-menu {
  display: none;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu-premium {
  border-radius: 1.25rem;
  border: 1px solid rgba(129, 140, 248, 0.28);
  background:
    linear-gradient(165deg, rgba(22, 26, 36, 0.98) 0%, rgba(12, 14, 20, 0.98) 55%, rgba(17, 19, 24, 0.98) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 22px 48px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(16, 185, 129, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  max-height: min(78dvh, 640px);
  overflow: hidden;
}

.mobile-menu-premium.open {
  display: flex;
  flex-direction: column;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  min-height: 0;
  max-height: inherit;
}

.mobile-menu-auth {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  padding: 0.85rem 0.85rem 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.12) 0%, transparent 100%);
  flex-shrink: 0;
}

.mobile-menu-auth--single {
  grid-template-columns: 1fr;
}

.mobile-auth-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.mobile-auth-btn--ghost {
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

.mobile-auth-btn--ghost:hover {
  border-color: rgba(129, 140, 248, 0.55);
  background: rgba(99, 102, 241, 0.18);
}

.mobile-auth-btn--primary {
  color: #052e16;
  border: 1px solid rgba(52, 211, 153, 0.45);
  background: linear-gradient(135deg, #6ee7b7 0%, #34d399 45%, #10b981 100%);
  box-shadow: 0 8px 22px rgba(16, 185, 129, 0.28);
}

.mobile-auth-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(16, 185, 129, 0.38);
}

.mobile-menu-nav {
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0.35rem 0.55rem 0.85rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(52, 211, 153, 0.35) rgba(255, 255, 255, 0.05);
}

.mobile-menu-nav::-webkit-scrollbar {
  width: 5px;
}

.mobile-menu-nav::-webkit-scrollbar-thumb {
  background: rgba(52, 211, 153, 0.35);
  border-radius: 8px;
}

.mobile-nav-accordion {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav-accordion:last-child {
  border-bottom: 0;
}

.mobile-nav-accordion-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.72rem 0.45rem;
  list-style: none;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav-accordion-summary::-webkit-details-marker {
  display: none;
}

.mobile-nav-accordion-label {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #e2e8f0;
}

.mobile-nav-accordion.is-active .mobile-nav-accordion-label {
  color: #6ee7b7;
}

.mobile-nav-chevron {
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid #94a3b8;
  border-bottom: 2px solid #94a3b8;
  transform: rotate(45deg);
  transition: transform 0.22s ease, border-color 0.22s ease;
  flex-shrink: 0;
  margin-top: -0.15rem;
}

.mobile-nav-accordion[open] .mobile-nav-chevron {
  transform: rotate(-135deg);
  margin-top: 0.2rem;
  border-color: #6ee7b7;
}

.mobile-nav-accordion-body {
  padding: 0 0.25rem 0.65rem;
}

.mobile-nav-accordion-head {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.65rem 0.55rem;
  margin-bottom: 0.35rem;
  border-radius: 12px;
  text-decoration: none;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.14) 0%, rgba(16, 185, 129, 0.08) 100%);
  border: 1px solid rgba(129, 140, 248, 0.22);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.mobile-nav-accordion-head:hover {
  border-color: rgba(52, 211, 153, 0.4);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.22) 0%, rgba(16, 185, 129, 0.14) 100%);
}

.mobile-nav-accordion-head-icon {
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
}

.mobile-nav-accordion-head-text {
  flex: 1;
  min-width: 0;
}

.mobile-nav-accordion-head-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #f8fafc;
  line-height: 1.3;
}

.mobile-nav-accordion-head-text small {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: #94a3b8;
  line-height: 1.35;
}

.mobile-nav-accordion-head-arrow {
  color: #6ee7b7;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.mobile-nav-group-title {
  margin: 0.5rem 0 0.25rem;
  padding: 0 0.35rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #64748b;
}

.mobile-nav-sublink {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.52rem 0.45rem;
  border-radius: 10px;
  font-size: 0.84rem;
}

.mobile-nav-sublink-icon {
  width: 1.35rem;
  text-align: center;
  flex-shrink: 0;
}

.mobile-locations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.2rem 0.4rem;
  padding: 0 0.1rem 0.55rem;
}

.mobile-location-link {
  align-items: center;
  min-width: 0;
  padding: 0.48rem 0.35rem;
}

.mobile-location-link .flag-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  margin-right: 0;
}

.mobile-location-link .flag-icon {
  width: 18px;
  height: 13px;
  display: block;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.mobile-location-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.78rem;
  line-height: 1.25;
}

.mobile-nav-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.72rem 0.45rem;
  margin-top: 0.15rem;
  border-radius: 10px;
  color: #cbd5e1;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.2s ease, background 0.2s ease;
}

.mobile-nav-row:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.mobile-nav-row.is-active {
  color: #6ee7b7;
  background: rgba(16, 185, 129, 0.1);
}

.mobile-nav-row-icon {
  width: 1.25rem;
  text-align: center;
  flex-shrink: 0;
}

.menu-link {
  display: block;
  padding: 0.6rem 0.4rem;
  color: #9ca3af;
  border-radius: 999px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.flag-wrap {
  display: inline-flex;
  width: 18px;
  margin-right: 8px;
  vertical-align: middle;
}

.flag-icon {
  width: 16px;
  height: 12px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.menu-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  color: #a8b4c4;
  padding: 0.48rem 0.72rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

#siteHeader .tools-nav-group > .nav-link::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: rotate(45deg) translateY(-1px);
  opacity: 0.55;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

#siteHeader .tools-nav-group:hover > .nav-link::after,
#siteHeader .tools-nav-group:focus-within > .nav-link::after {
  transform: rotate(225deg) translateY(1px);
  opacity: 0.9;
}

#siteHeader .site-header-nav > a.nav-link::after {
  display: none;
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
}

.nav-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0.5rem 1.05rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.nav-btn-login {
  color: #e2e8f0;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.35);
}

.nav-btn-login:hover {
  color: #ffffff;
  border-color: rgba(148, 163, 184, 0.55);
  background: rgba(30, 41, 59, 0.55);
}

.nav-btn-signup {
  color: #022c1b;
  border: 1px solid rgba(16, 185, 129, 0.65);
  background: #34d399;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
}

.nav-btn-signup:hover {
  background: #4ade80;
  border-color: rgba(74, 222, 128, 0.85);
}

.menu-trigger {
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
  transition: all 0.2s ease;
}

.menu-trigger:hover {
  border-color: rgba(129, 140, 248, 0.65);
  background: rgba(99, 102, 241, 0.18);
}

.menu-trigger[aria-expanded="true"] {
  border-color: rgba(52, 211, 153, 0.55);
  background: rgba(16, 185, 129, 0.16);
  color: #6ee7b7;
}

/* Marketing header — crisp premium bar */
#siteHeader {
  position: relative;
  z-index: 50;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

#siteHeader .site-header-shell {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0.75rem 0 0.25rem;
  margin-bottom: 1.25rem;
  pointer-events: none;
}

#siteHeader .site-header-container {
  pointer-events: auto;
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto;
}

#siteHeader .site-header-bar {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem 1.25rem;
  min-height: 3.75rem;
  padding: 0.4rem 0.5rem 0.4rem 1rem;
  border-radius: 14px;
  overflow: visible;
  isolation: isolate;
  border: 1px solid rgba(51, 65, 85, 0.85);
  background: rgba(11, 13, 18, 0.94);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.07) inset,
    0 12px 32px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
}

#siteHeader .site-header-brand {
  flex-shrink: 0;
  min-width: 0;
  grid-column: 1;
}

#siteHeader .site-header-bar .chilly-wordmark-lockup {
  gap: 0.35rem;
}

#siteHeader .site-header-bar .chilly-wordmark-icon {
  height: 38px;
  max-width: 42px;
  min-width: 38px;
}

#siteHeader .site-header-bar .chilly-wordmark-text {
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #f8fafc;
  background: none;
  -webkit-text-fill-color: #f8fafc;
}

#siteHeader .nav-link {
  color: #94a3b8;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.42rem 0.7rem;
  border-radius: 8px;
  transition: color 0.15s ease, background-color 0.15s ease;
}

#siteHeader .nav-link:hover {
  color: #f1f5f9;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

#siteHeader .nav-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

#siteHeader .tools-nav-group:hover > .nav-link,
#siteHeader .tools-nav-group:focus-within > .nav-link {
  color: #f1f5f9;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

#siteHeader .tools-nav-group > .nav-link::after {
  width: 0.35rem;
  height: 0.35rem;
  margin-left: 0.12rem;
  border-width: 1.25px;
  opacity: 0.45;
}

#siteHeader .nav-btn {
  min-height: 2.25rem;
  padding: 0.45rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 9px;
}

#siteHeader .nav-btn-login {
  color: #e2e8f0;
  border-color: rgba(71, 85, 105, 0.9);
  background: rgba(15, 23, 42, 0.55);
}

#siteHeader .nav-btn-login:hover {
  border-color: rgba(100, 116, 139, 0.95);
  background: rgba(30, 41, 59, 0.75);
}

#siteHeader .nav-btn-signup {
  color: #052e16;
  background: #2dd4a8;
  border-color: #2dd4a8;
  box-shadow: none;
}

#siteHeader .nav-btn-signup:hover {
  transform: none;
  background: #34d399;
  border-color: #34d399;
  box-shadow: none;
}

#siteHeader .site-header-menu-toggle.menu-trigger {
  border-radius: 9px;
  border-color: rgba(71, 85, 105, 0.85);
  background: rgba(15, 23, 42, 0.5);
  padding: 0.45rem 0.85rem;
}

#siteHeader .site-header-menu-toggle.menu-trigger:hover {
  border-color: rgba(100, 116, 139, 0.95);
  background: rgba(30, 41, 59, 0.65);
}

#siteHeader .site-header-menu-toggle.menu-trigger[aria-expanded="true"] {
  border-color: rgba(45, 212, 168, 0.55);
  background: rgba(16, 185, 129, 0.12);
  color: #6ee7b7;
}

#siteHeader .site-header-nav {
  grid-column: 2;
  justify-self: center;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  min-width: 0;
  max-width: 100%;
}

#siteHeader .site-header-actions {
  grid-column: 3;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

#siteHeader .site-header-menu-toggle {
  grid-column: 3;
  justify-self: end;
  margin-left: auto;
}

#siteHeader .site-header-menu-toggle-label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

#siteHeader .site-header-mobile-panel {
  margin-top: 0.55rem;
}

#siteHeader .site-header-dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 60;
  margin-top: 0.5rem;
  border-radius: 12px;
  border: 1px solid rgba(51, 65, 85, 0.95);
  background: #111318;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 20px 40px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1023px) {
  #siteHeader .site-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
  }

  #siteHeader .site-header-brand,
  #siteHeader .site-header-menu-toggle {
    grid-column: auto;
  }
}

@media (min-width: 1024px) {
  #siteHeader .site-header-shell {
    padding-top: 0.9rem;
    margin-bottom: 1.5rem;
  }

  #siteHeader .site-header-bar {
    display: grid;
    min-height: 4rem;
    padding: 0.45rem 0.75rem 0.45rem 1.1rem;
    border-radius: 15px;
  }

  #siteHeader .site-header-nav {
    gap: 0.05rem;
  }

  #siteHeader .site-header-actions {
    padding-left: 0.5rem;
    margin-left: 0.25rem;
    border-left: 1px solid rgba(51, 65, 85, 0.75);
  }
}

/* Site header nav + dropdowns (scoped — does not affect page body) */
#siteHeader .tools-nav-group {
  position: relative;
}

/* Home / Blog / FAQ — same nav cell as mega items, no dropdown */
#siteHeader .tools-nav-group--plain::after {
  display: none;
}

#siteHeader .tools-nav-group--plain > a.nav-link {
  display: inline-flex;
  align-items: center;
}

#siteHeader .tools-nav-group--plain > a.nav-link::after {
  display: none !important;
}

#siteHeader .tools-nav-group::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}

#siteHeader .tools-nav-group > .tools-dropdown {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  margin-top: 2px;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

/* Locations — compact list */
#siteHeader .tools-nav-group:not(.mega-nav-group) > .tools-dropdown {
  left: 0;
  right: auto;
  min-width: 240px;
  max-width: 280px;
  padding: 0.5rem;
  transform: translateY(8px) scale(0.98);
  transform-origin: top left;
}

#siteHeader .tools-dropdown .location-menu-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.45rem;
  border-radius: 10px;
  white-space: nowrap;
}

#siteHeader .tools-dropdown .location-menu-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

#siteHeader .tools-dropdown .location-menu-link .flag-wrap {
  margin-right: 0;
  flex-shrink: 0;
}

#siteHeader .tools-nav-group:not(.mega-nav-group):hover > .tools-dropdown,
#siteHeader .tools-nav-group:not(.mega-nav-group):focus-within > .tools-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

/* Plans / Pricing / Tools — medium mega, left-aligned under label */
#siteHeader .mega-nav-group-medium > .tools-dropdown.nav-mega {
  left: 0;
  right: auto;
  width: auto;
  min-width: min(520px, 92vw);
  max-width: min(620px, 94vw);
  padding: 1rem;
  transform: translateY(8px) scale(0.98);
  transform-origin: top left;
}

#siteHeader .mega-nav-group-medium.nav-mega-panel-tools > .tools-dropdown.nav-mega {
  min-width: min(480px, 92vw);
  max-width: min(540px, 94vw);
}

#siteHeader .mega-nav-group-medium:hover > .tools-dropdown.nav-mega,
#siteHeader .mega-nav-group-medium:focus-within > .tools-dropdown.nav-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

/* Use Cases — wide centered panel */
#siteHeader .mega-nav-group-wide.usecase-mega-group > .tools-dropdown.usecase-mega {
  left: 50%;
  right: auto;
  width: min(980px, 92vw);
  max-width: 980px;
  padding: 1rem;
  transform: translateX(-50%) translateY(8px) scale(0.98);
  transform-origin: top center;
}

#siteHeader .mega-nav-group-wide.usecase-mega-group:hover > .tools-dropdown.usecase-mega,
#siteHeader .mega-nav-group-wide.usecase-mega-group:focus-within > .tools-dropdown.usecase-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

#siteHeader .tools-nav-group:hover > .nav-link.active,
#siteHeader .tools-nav-group:focus-within > .nav-link.active {
  background: rgba(255, 255, 255, 0.1);
}

#siteHeader .nav-mega-head,
#siteHeader .usecase-mega-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(51, 65, 85, 0.9);
  background: rgba(22, 26, 34, 0.95);
  color: #e5e7eb;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}

#siteHeader .nav-mega-head:hover,
#siteHeader .usecase-mega-head:hover {
  border-color: rgba(71, 85, 105, 1);
  background: rgba(30, 35, 45, 0.98);
  box-shadow: none;
}

#siteHeader .mega-nav-group-medium .nav-mega-head strong {
  display: block;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  color: #ffffff;
}

#siteHeader .mega-nav-group-medium .nav-mega-head small {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.35;
  color: #cbd5e1;
}

#siteHeader .usecase-mega-head strong {
  display: block;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 700;
  color: #ffffff;
}

#siteHeader .usecase-mega-head small {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  line-height: 1.4;
  color: #cbd5e1;
}

#siteHeader .nav-mega-head-icon,
#siteHeader .usecase-mega-head-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #10b981;
  color: #ecfdf5;
  box-shadow: none;
}

#siteHeader .mega-nav-group-medium .nav-mega-head-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  font-size: 16px;
}

#siteHeader .usecase-mega-head-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  font-size: 18px;
}

#siteHeader .nav-mega-arrow,
#siteHeader .usecase-mega-arrow {
  margin-left: auto;
  color: #c7d2fe;
  font-size: 20px;
}

#siteHeader .nav-mega-grid,
#siteHeader .usecase-mega-grid {
  margin-top: 12px;
  display: grid;
  gap: 14px;
}

@media (min-width: 768px) {
  #siteHeader .nav-mega-grid-plans,
  #siteHeader .nav-mega-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #siteHeader .usecase-mega-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

#siteHeader .nav-mega-col h4,
#siteHeader .usecase-mega-col h4 {
  margin: 0 0 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
  border-bottom: 1px solid rgba(51, 65, 85, 0.85);
  padding-bottom: 6px;
}

#siteHeader .nav-mega-link,
#siteHeader .usecase-mega-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 4px;
  border-radius: 8px;
  color: #e5e7eb;
  font-size: 13px;
  line-height: 1.35;
  transition: background 0.2s ease, color 0.2s ease;
}

#siteHeader .nav-mega-link:hover,
#siteHeader .usecase-mega-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

#siteHeader .nav-mega-icon,
#siteHeader .usecase-mega-icon,
#siteHeader .nav-mega-link-icon {
  width: 18px;
  text-align: center;
  flex-shrink: 0;
  font-size: 14px;
}

.flag-wrap {
  display: inline-flex;
  margin-right: 8px;
  vertical-align: middle;
}

.flag-icon {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  object-fit: cover;
}

/* --- Shared layout / surfaces (from landing.css) --- */

.dot-grid {
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.95));
}

.card-hover {
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.card-hover:hover {
  transform: translateY(-6px);
  border-color: #2a2d39;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.neon-hover {
  transition: box-shadow .25s ease, border-color .25s ease, transform .25s ease;
}

.neon-hover:hover {
  border-color: rgba(16, 185, 129, 0.65);
  box-shadow:
    0 0 0 1px rgba(16, 185, 129, 0.25),
    0 0 24px rgba(16, 185, 129, 0.22),
    0 12px 30px rgba(0, 0, 0, 0.45);
  transform: translateY(-4px);
}

.bg-mesh {
  background:
    radial-gradient(1200px 420px at 50% -10%, rgba(99, 102, 241, 0.12), transparent 60%),
    radial-gradient(900px 380px at 88% 35%, rgba(16, 185, 129, 0.08), transparent 60%),
    radial-gradient(800px 420px at 12% 70%, rgba(129, 140, 248, 0.08), transparent 60%);
}

.bg-streaks {
  background:
    linear-gradient(115deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 22%),
    linear-gradient(295deg, rgba(99,102,241,0.10) 0%, rgba(99,102,241,0) 25%),
    linear-gradient(140deg, rgba(16,185,129,0.08) 0%, rgba(16,185,129,0) 28%);
  mix-blend-mode: screen;
  opacity: .55;
}

.bg-vignette {
  background: radial-gradient(circle at center, transparent 32%, rgba(0,0,0,0.55) 100%);
}

.bg-noise {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cg fill='%23ffffff' fill-opacity='0.035'%3E%3Ccircle cx='7' cy='11' r='1'/%3E%3Ccircle cx='39' cy='28' r='1'/%3E%3Ccircle cx='72' cy='9' r='1'/%3E%3Ccircle cx='121' cy='33' r='1'/%3E%3Ccircle cx='158' cy='15' r='1'/%3E%3Ccircle cx='17' cy='65' r='1'/%3E%3Ccircle cx='55' cy='81' r='1'/%3E%3Ccircle cx='97' cy='59' r='1'/%3E%3Ccircle cx='136' cy='77' r='1'/%3E%3Ccircle cx='168' cy='58' r='1'/%3E%3Ccircle cx='31' cy='124' r='1'/%3E%3Ccircle cx='66' cy='143' r='1'/%3E%3Ccircle cx='104' cy='117' r='1'/%3E%3Ccircle cx='147' cy='138' r='1'/%3E%3Ccircle cx='12' cy='165' r='1'/%3E%3Ccircle cx='84' cy='171' r='1'/%3E%3Ccircle cx='169' cy='166' r='1'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.18;
}

.anim-gradient {
  background: linear-gradient(90deg, #ffffff, #818cf8, #ffffff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 9s linear infinite;
}

.section-shell {
  border: 1px solid #1e2028;
  background: linear-gradient(160deg, rgba(22,24,29,0.92), rgba(17,19,24,0.85));
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}

.country-card {
  border: 1px solid #1e2028;
  background: rgba(17,19,24,0.78);
  border-radius: 16px;
  padding: 16px;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.country-card:hover {
  transform: translateY(-4px);
  border-color: rgba(129,140,248,0.45);
  box-shadow: 0 10px 28px rgba(0,0,0,0.32);
}

.mini-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(129,140,248,0.3);
  background: rgba(99,102,241,0.14);
  color: #c7d2fe;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
}

.include-item {
  border: 1px solid #1e2028;
  background: rgba(17,19,24,0.75);
  border-radius: 14px;
  padding: 13px 14px;
  font-size: 14px;
  color: #9ca3af;
  transition: border-color .2s ease, background-color .2s ease;
}

.include-item:hover {
  border-color: rgba(16,185,129,0.45);
  background: rgba(17,19,24,0.92);
}

.country-layout {
  border: 1px solid #1e2028;
  background: linear-gradient(160deg, rgba(22,24,29,0.96), rgba(17,19,24,0.92));
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}

.country-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid #1e2028;
  background: rgba(17,19,24,0.9);
  border-radius: 12px;
  padding: 11px 14px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.country-row:hover {
  border-color: #2a2d39;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transform: translateY(-2px);
}

.country-row-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.country-flag {
  width: 28px;
  height: 21px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.12);
  background: #111318;
}

.country-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
}

.trust-strip {
  border: 1px solid #1e2028;
  background: linear-gradient(160deg, rgba(22,24,29,0.96), rgba(17,19,24,0.92));
  border-radius: 20px;
  padding: 22px;
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}

.trust-strip h3 {
  color: #ffffff;
}

.trust-pill {
  border: 1px solid #1e2028;
  background: rgba(17,19,24,0.88);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 13px;
  color: #9ca3af;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: border-color .2s ease, background-color .2s ease;
}

.trust-pill:hover {
  border-color: #2a2d39;
  background: rgba(22,24,29,0.95);
}

.trust-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(16,185,129,0.2);
  border: 1px solid rgba(16,185,129,0.45);
  color: #10b981;
  font-size: 11px;
  line-height: 16px;
  text-align: center;
  font-weight: 800;
  margin-top: 1px;
}

.trust-strip-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #1e2028;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 768px) {
  .trust-strip-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.trust-strip-footer p {
  color: #9ca3af;
  font-size: 0.875rem;
}

.trust-strip-footer .sub {
  color: #6b7280;
  font-size: 0.75rem;
}

.footer-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #e5e7eb;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.footer-pill:hover {
  color: #ffffff;
  border-color: rgba(129, 140, 248, 0.55);
  background: rgba(99, 102, 241, 0.18);
  box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.12);
}

.landing-footer-wrap {
  padding-top: 2.5rem;
  padding-bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  background: transparent;
  border-top: 1px solid rgba(51, 65, 85, 0.45);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.landing-footer-inner {
  padding-bottom: 4px;
}

.landing-footer-panel {
  margin-top: 0.25rem;
  padding: 1.35rem 1.25rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(51, 65, 85, 0.85);
  background: rgba(11, 13, 18, 0.94);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 14px 36px rgba(0, 0, 0, 0.32);
}

@media (min-width: 768px) {
  .landing-footer-panel {
    padding: 1.75rem 1.75rem 1.15rem;
    border-radius: 15px;
  }
}

.landing-footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chilly-wordmark {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1;
  text-decoration: none;
}

/* Favicon + name — tight lockup, no pill border */
.chilly-wordmark-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  line-height: 1;
}

.chilly-wordmark-icon {
  display: block;
  flex-shrink: 0;
  width: auto;
  height: 46px;
  max-width: 50px;
  min-width: 36px;
  border: none;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  object-position: center;
  overflow: visible;
  vertical-align: middle;
}

.chilly-wordmark-text {
  display: inline-block;
  white-space: nowrap;
  margin-left: -1px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #f1f5f9;
  background: linear-gradient(90deg, #f8fafc 0%, #e2e8f0 38%, #34d399 62%, #4ade80 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.chilly-wordmark--footer .chilly-wordmark-icon {
  height: 38px;
  max-width: 42px;
}

.chilly-wordmark--footer .chilly-wordmark-text {
  font-size: 1.0625rem;
}

.landing-footer-wrap .chilly-wordmark--footer .chilly-wordmark-text {
  color: #f8fafc;
  background: none;
  -webkit-text-fill-color: #f8fafc;
}

.landing-footer-wrap .chilly-wordmark--footer .chilly-wordmark-lockup {
  gap: 0.35rem;
}

.landing-footer-wrap .chilly-wordmark--footer .chilly-wordmark-icon {
  height: 36px;
  max-width: 40px;
  min-width: 36px;
}

.chilly-wordmark:focus-visible {
  outline: 2px solid rgba(74, 222, 128, 0.55);
  outline-offset: 4px;
  border-radius: 0;
}

.landing-footer-logo-row {
  align-items: center;
}

.landing-footer-logo-mark {
  display: inline-flex;
  flex-shrink: 0;
  color: #38bdf8;
}

.landing-footer-logo-mark svg {
  width: 28px;
  height: 28px;
}

.chilly-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 600;
  color: #0a0b0f;
  border: 1px solid rgba(16, 185, 129, 0.55);
  background: linear-gradient(135deg, #a7f3d0 0%, #34d399 45%, #10b981 100%);
  box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.22), 0 8px 18px rgba(16, 185, 129, 0.2);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.chilly-btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.35), 0 10px 22px rgba(16, 185, 129, 0.28);
}

.chilly-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 600;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.chilly-btn-secondary:hover {
  border-color: rgba(16, 185, 129, 0.5);
  background: rgba(16, 185, 129, 0.12);
  transform: translateY(-1px);
}

/* Mobile — main points first */
.landing-footer-mobile-essentials {
  display: block;
  margin-bottom: 0.85rem;
  padding: 0.85rem 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(51, 65, 85, 0.85);
  background: rgba(11, 13, 18, 0.94);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset;
}

.landing-footer-mobile-tag {
  margin: 0 0 0.65rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  line-height: 1.35;
}

.landing-footer-mobile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.landing-footer-mobile-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  border: 1px solid rgba(51, 65, 85, 0.9);
  background: rgba(15, 18, 24, 0.9);
  color: #e2e8f0;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.landing-footer-mobile-grid a:hover {
  color: #fff;
  border-color: rgba(71, 85, 105, 1);
  background: rgba(30, 35, 45, 0.95);
}

.landing-footer-mobile-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 0.65rem;
}

.landing-footer-mobile-cta:has(.landing-footer-mobile-cta-primary:only-child) {
  grid-template-columns: 1fr;
}

.landing-footer-mobile-cta-primary,
.landing-footer-mobile-cta-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.landing-footer-mobile-cta-primary {
  color: #052e16;
  border: 1px solid rgba(16, 185, 129, 0.65);
  background: #2dd4a8;
  border-radius: 9px;
  box-shadow: none;
}

.landing-footer-mobile-cta-ghost {
  color: #e2e8f0;
  border: 1px solid rgba(71, 85, 105, 0.9);
  background: rgba(15, 23, 42, 0.55);
  border-radius: 9px;
}

.landing-footer-top {
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 0 4px 8px;
  display: grid;
  gap: 1rem;
}

.landing-footer-cols {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 10px;
  border: 1px solid rgba(51, 65, 85, 0.75);
  background: rgba(15, 18, 24, 0.65);
  overflow: hidden;
}

.landing-footer-accordion {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.landing-footer-accordion:last-child {
  border-bottom: 0;
}

.landing-footer-col-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.72rem 0.85rem;
  list-style: none;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.landing-footer-col-summary::-webkit-details-marker {
  display: none;
}

.landing-footer-col-summary h4 {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #94a3b8;
}

.landing-footer-col-chevron {
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid #94a3b8;
  border-bottom: 2px solid #94a3b8;
  transform: rotate(45deg);
  transition: transform 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
  margin-top: -0.12rem;
}

.landing-footer-accordion[open] .landing-footer-col-chevron {
  transform: rotate(-135deg);
  margin-top: 0.15rem;
  border-color: #94a3b8;
}

.landing-footer-col-links {
  padding: 0 0.75rem 0.65rem;
}

.landing-footer-link-extra {
  display: none;
}

@media (min-width: 768px) {
  .landing-footer-mobile-essentials {
    display: none;
  }

  .landing-footer-top {
    gap: 22px;
    grid-template-columns: minmax(200px, 1.15fr) repeat(2, minmax(0, 1fr));
  }

  .landing-footer-cols {
    display: contents;
    border: none;
    background: transparent;
    border-radius: 0;
    overflow: visible;
  }

  .landing-footer-accordion {
    border-bottom: 0;
  }

  .landing-footer-col-summary {
    padding: 0;
    pointer-events: none;
    cursor: default;
  }

  .landing-footer-col-chevron {
    display: none;
  }

  .landing-footer-col-summary h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-transform: none;
    color: #f1f5f9;
    margin-bottom: 0.65rem;
  }

  .landing-footer-col-links {
    padding: 0;
  }

  .landing-footer-link-extra {
    display: block;
  }
}

@media (min-width: 992px) {
  .landing-footer-top {
    grid-template-columns: minmax(220px, 1.2fr) repeat(4, minmax(130px, 1fr));
    gap: 24px 28px;
  }
}

.landing-footer-brand {
  font-size: 18px;
  letter-spacing: .06em;
  font-weight: 800;
  color: #ffffff;
}

.landing-footer-tagline {
  margin-top: 0.65rem;
  max-width: 300px;
  color: #cbd5e1;
  font-size: 0.8125rem;
  line-height: 1.5;
  font-weight: 500;
}

.landing-footer-intro {
  margin-top: 0.5rem;
  max-width: 280px;
  color: #94a3b8;
  font-size: 0.875rem;
  line-height: 1.55;
}

@media (max-width: 767px) {
  .landing-footer-brand-block {
    text-align: center;
  }

  .landing-footer-logo-row {
    justify-content: center;
  }

  .landing-footer-tagline,
  .landing-footer-intro {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .landing-footer-social {
    margin-left: auto;
    margin-right: auto;
  }
}

.landing-footer-social {
  margin-top: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  border: 1px solid rgba(51, 65, 85, 0.95);
  background: rgba(15, 23, 42, 0.55);
  color: #cbd5e1;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.landing-footer-social:hover {
  background: rgba(30, 41, 59, 0.75);
  border-color: rgba(71, 85, 105, 1);
  color: #f8fafc;
  transform: none;
}

.landing-footer-col-links a {
  display: block;
  color: #94a3b8;
  font-size: 0.8125rem;
  line-height: 1.45;
  padding: 0.35rem 0;
  text-decoration: none;
  transition: color 0.15s ease;
}

@media (min-width: 768px) {
  .landing-footer-col-links a {
    font-size: 0.875rem;
    padding: 0.3rem 0;
  }
}

.landing-footer-col-links a:hover {
  color: #f1f5f9;
}

.landing-footer-bottom {
  margin-top: 1.35rem;
  border-top: 1px solid rgba(51, 65, 85, 0.75);
  padding: 1rem 0.15rem 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

@media (min-width: 900px) {
  .landing-footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.landing-footer-bottom p {
  font-size: 0.8125rem;
  color: #64748b;
  margin: 0;
}

.landing-footer-copyright {
  max-width: 36rem;
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.45;
}

.landing-footer-copyright-line {
  display: block;
  color: #94a3b8;
}

[data-chilly-company-address][hidden] {
  display: none !important;
}

.landing-footer-legal {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 0.75rem;
}

.landing-footer-legal a {
  font-size: 0.75rem;
  color: #94a3b8;
  text-decoration: none;
  padding: 0.35rem 0;
  transition: color 0.15s ease;
}

.landing-footer-legal a:hover {
  color: #e2e8f0;
}

@media (min-width: 768px) {
  .landing-footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.25rem;
  }

  .landing-footer-legal a {
    font-size: 0.8125rem;
    padding: 0;
  }
}

/* -------------------------------------------------------------------------- */
/* No-plan modals (dashboard product links + my-* pages) — Chilly theme      */
/* Matches proxy-plans / dashboard: indigo + emerald, bg-bg depth, Inter    */
/* -------------------------------------------------------------------------- */

.chilly-no-plan-overlay {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
  font-family: Inter, system-ui, sans-serif;
  background:
    radial-gradient(ellipse 100% 70% at 50% -15%, rgba(99, 102, 241, 0.22), transparent 52%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(16, 185, 129, 0.14), transparent 48%),
    radial-gradient(ellipse 60% 45% at 0% 80%, rgba(129, 140, 248, 0.1), transparent 45%),
    rgba(10, 11, 15, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.chilly-no-plan-card {
  width: 100%;
  max-width: 26.5rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(99, 102, 241, 0.38);
  background: linear-gradient(
    168deg,
    rgba(22, 24, 29, 0.98) 0%,
    rgba(17, 19, 24, 0.97) 42%,
    rgba(12, 22, 18, 0.95) 100%
  );
  box-shadow:
    0 0 0 1px rgba(16, 185, 129, 0.14),
    0 28px 90px rgba(0, 0, 0, 0.58),
    0 0 80px rgba(99, 102, 241, 0.1);
  overflow: hidden;
  position: relative;
}

.chilly-no-plan-card-top {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #6366f1, #34d399, #818cf8, #10b981, #6366f1);
  background-size: 220% 100%;
  animation: chilly-no-plan-bar-shift 4s linear infinite;
}

@keyframes chilly-no-plan-bar-shift {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 220% 50%;
  }
}

.chilly-no-plan-card-inner {
  padding: 1.35rem 1.65rem 1.5rem;
}

.chilly-no-plan-icon-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  background: linear-gradient(145deg, rgba(99, 102, 241, 0.2), rgba(16, 185, 129, 0.12));
  border: 1px solid rgba(129, 140, 248, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.chilly-no-plan-icon-wrap svg {
  width: 1.45rem;
  height: 1.45rem;
}

.chilly-no-plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a7f3d0;
  background: rgba(16, 185, 129, 0.14);
  border: 1px solid rgba(52, 211, 153, 0.38);
  border-radius: 9999px;
  padding: 0.3rem 0.8rem;
}

.chilly-no-plan-title {
  margin: 0.85rem 0 0;
  font-size: clamp(1.15rem, 3.5vw, 1.45rem);
  font-weight: 900;
  line-height: 1.28;
  color: #fff;
  letter-spacing: -0.025em;
}

.chilly-no-plan-desc {
  margin: 0.65rem 0 0;
  font-size: 0.875rem;
  line-height: 1.58;
  color: #9ca3af;
}

.chilly-no-plan-count-row {
  margin: 1.2rem 0 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  font-size: 0.875rem;
  color: #cbd5e1;
}

.chilly-no-plan-count-label {
  color: #94a3b8;
}

.chilly-no-plan-timer {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fef9c3;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(250, 204, 21, 0.35);
  border-radius: 0.65rem;
  padding: 0.2rem 0.55rem;
  min-width: 2rem;
  text-align: center;
  line-height: 1.35;
}

.chilly-no-plan-count-suffix {
  color: #94a3b8;
  font-weight: 600;
}

.chilly-no-plan-actions {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chilly-no-plan-btn-primary {
  border: none;
  cursor: pointer;
  border-radius: 9999px;
  padding: 0.68rem 1.4rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #4f46e5 0%, #6366f1 38%, #10b981 100%);
  box-shadow: 0 4px 22px rgba(99, 102, 241, 0.35), 0 6px 24px rgba(16, 185, 129, 0.22);
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}

.chilly-no-plan-btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 6px 28px rgba(99, 102, 241, 0.42), 0 8px 32px rgba(16, 185, 129, 0.28);
}

.chilly-no-plan-btn-primary:active {
  transform: translateY(0);
}

.chilly-no-plan-btn-ghost {
  border: 1px solid #1e2028;
  cursor: pointer;
  border-radius: 9999px;
  padding: 0.62rem 1.1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #d1d5db;
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.chilly-no-plan-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(99, 102, 241, 0.45);
  color: #fff;
}

/* Multi-subscription picker (reseller / multiple active plans per product) */
.chilly-plan-picker-overlay {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(2, 6, 12, 0.82);
  backdrop-filter: blur(8px);
}

.chilly-plan-picker-card {
  width: min(520px, 100%);
  max-height: min(85vh, 640px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  border: 1px solid rgba(16, 185, 129, 0.35);
  background: linear-gradient(165deg, rgba(8, 20, 18, 0.96), rgba(6, 14, 13, 0.94));
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55);
}

.chilly-plan-picker-head {
  padding: 1.25rem 1.35rem 0.75rem;
  border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}

.chilly-plan-picker-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ecfdf5;
}

.chilly-plan-picker-desc {
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  color: #94a3b8;
  line-height: 1.45;
}

.chilly-plan-picker-list {
  padding: 0.75rem 1rem 1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.chilly-plan-picker-row {
  width: 100%;
  text-align: left;
  border-radius: 12px;
  border: 1px solid rgba(99, 102, 241, 0.35);
  background: rgba(99, 102, 241, 0.08);
  padding: 0.85rem 1rem;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.chilly-plan-picker-row:hover {
  border-color: rgba(16, 185, 129, 0.55);
  background: rgba(16, 185, 129, 0.12);
}

.chilly-plan-picker-row-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #e2e8f0;
}

.chilly-plan-picker-row-meta {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: #94a3b8;
  line-height: 1.4;
}

.chilly-plan-picker-foot {
  padding: 0 1rem 1rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

/* Required field asterisk: red until filled, then green */
.chilly-req-star {
  color: #ef4444 !important;
  font-weight: 700;
  margin-left: 0.15em;
  transition: color 0.18s ease;
}
.chilly-req-star.is-invalid {
  color: #ef4444 !important;
}
.chilly-req-star.is-filled {
  color: #10b981 !important;
}
input.chilly-field-filled:not(.chilly-field-invalid),
select.chilly-field-filled:not(.chilly-field-invalid),
textarea.chilly-field-filled:not(.chilly-field-invalid) {
  border-color: rgba(52, 211, 153, 0.55) !important;
}
input.chilly-field-filled:not(.chilly-field-invalid):focus,
select.chilly-field-filled:not(.chilly-field-invalid):focus,
textarea.chilly-field-filled:not(.chilly-field-invalid):focus {
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.25) !important;
}

.chilly-field-error:not(.hidden),
form [id^="err-"]:not(.hidden) {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 400;
  color: #fda4af;
}

.chilly-field-error.hidden,
form [id^="err-"].hidden {
  display: none !important;
}

input.chilly-field-invalid,
select.chilly-field-invalid,
textarea.chilly-field-invalid,
summary.chilly-field-invalid {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.38) !important;
}

input.chilly-field-invalid:focus,
select.chilly-field-invalid:focus,
textarea.chilly-field-invalid:focus,
summary.chilly-field-invalid:focus {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.45) !important;
}

/* Cloudflare Turnstile — left-align with form fields (avoid centered widget) */
.chilly-turnstile-mount {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin: 0.5rem 0 0.25rem;
  text-align: left;
}

.chilly-turnstile-mount > div {
  margin-left: 0 !important;
  margin-right: auto !important;
}

.chilly-turnstile-mount iframe {
  display: block;
  margin: 0 !important;
}