/* ============ Hosthink Design System ============ */
:root {
  --amber: oklch(0.78 0.17 75);
  --amber-bright: oklch(0.84 0.19 78);
  --amber-dim: oklch(0.55 0.12 72);
  --amber-tint: oklch(0.78 0.17 75 / 0.12);
  --amber-ring: oklch(0.78 0.17 75 / 0.35);
  --bg: oklch(0.19 0.006 250);
  --bg-1: oklch(0.22 0.007 250);
  --bg-2: oklch(0.26 0.008 250);
  --bg-3: oklch(0.30 0.009 250);
  --fg: oklch(0.97 0.003 250);
  --fg-dim: oklch(0.74 0.006 250);
  --fg-mute: oklch(0.54 0.008 250);
  --border: oklch(0.32 0.008 250);
  --border-strong: oklch(0.42 0.01 250);
  --radius: 6px;
  --radius-lg: 10px;
  --shadow-card: 0 1px 0 0 oklch(1 0 0 / 0.04) inset, 0 8px 24px oklch(0 0 0 / 0.25);
  --font-sans: 'Geist', ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  --container: 1240px;
  --density: 1;
}
[data-theme="light"] {
  --bg: oklch(0.985 0.003 75);
  --bg-1: oklch(0.975 0.004 75);
  --bg-2: oklch(0.95 0.005 75);
  --bg-3: oklch(0.92 0.006 75);
  --fg: oklch(0.18 0.006 75);
  --fg-dim: oklch(0.38 0.008 75);
  --fg-mute: oklch(0.55 0.008 75);
  --border: oklch(0.88 0.006 75);
  --border-strong: oklch(0.78 0.008 75);
  --shadow-card: 0 1px 0 0 oklch(1 0 0 / 0.8) inset, 0 1px 2px oklch(0 0 0 / 0.06), 0 8px 24px oklch(0 0 0 / 0.04);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.005em;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; }
.mono { font-family: var(--font-mono); letter-spacing: 0; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.hairline { height: 1px; background: var(--border); border: none; margin: 0; }

/* ============ Header ============ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header {
  position: relative;
  z-index: 100;
  background: color-mix(in oklab, var(--bg) 92%, transparent);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.utility-bar {
  border-bottom: 1px solid var(--border);
  background: color-mix(in oklab, var(--bg) 94%, transparent);
}
.utility-inner {
  max-width: var(--container);
  height: 34px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.utility-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 9px;
  border-radius: var(--radius);
  color: var(--fg-dim);
  font-size: 12px;
  font-weight: 500;
}
.utility-link:hover { color: var(--fg); background: var(--bg-2); }
.utility-link.primary { background: var(--amber); color: oklch(0.15 0.01 75); font-weight: 600; }
.utility-link.primary:hover { background: var(--amber-bright); }
.language-switcher { position: relative; }
.language-switcher::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 10px;
}
.language-button {
  gap: 6px;
  border: 1px solid transparent;
}
.language-button::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.65;
}
.language-switcher:hover .language-button,
.language-switcher:focus-within .language-button {
  color: var(--fg);
  background: var(--bg-2);
  border-color: var(--border);
}
.language-menu {
  position: absolute;
  top: calc(100% + 7px);
  right: 0;
  min-width: 210px;
  padding: 6px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 44px oklch(0 0 0 / 0.42);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .16s, transform .16s;
  z-index: 120;
}
.language-switcher:hover .language-menu,
.language-switcher:focus-within .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.language-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  border-radius: var(--radius);
  color: var(--fg-dim);
  font-size: 12px;
  font-weight: 500;
}
.language-name { display: inline-flex; align-items: center; gap: 8px; min-width: 0; }
.language-flag { display: inline-flex; align-items: center; justify-content: center; width: 20px; line-height: 1; flex: 0 0 20px; }
.language-flag img { display: block; width: 20px; height: 14px; border-radius: 2px; box-shadow: 0 0 0 1px color-mix(in oklab, var(--border) 76%, transparent); }
.language-menu a:hover { background: var(--bg-2); color: var(--fg); }
.language-menu a.active { color: var(--amber); background: var(--amber-tint); }
.language-code { font-family: var(--font-mono); font-size: 10px; color: var(--fg-mute); text-transform: uppercase; letter-spacing: 0.04em; }
.site-header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex; align-items: center; gap: 28px;
}
.logo { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 16px; letter-spacing: -0.02em; }
.logo img { height: 39px; width: auto; display: block; }
.nav { flex: 1; display: flex; gap: 8px; align-items: center; justify-content: space-between; font-size: 14px; }
.nav a { padding: 9px 11px; color: var(--fg-dim); font-weight: 500; border-radius: var(--radius); transition: color .15s, background .15s; }
.nav a:hover { color: var(--fg); background: var(--bg-2); }
.nav a.active { color: var(--fg); }
.header-right { margin-left: auto; display: flex; gap: 8px; align-items: center; font-size: 14px; }
.theme-toggle {
  width: 32px; height: 32px; padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-1);
  color: var(--fg-dim);
  display: inline-flex; align-items: center; justify-content: center;
}
.theme-toggle:hover { background: var(--bg-2); border-color: var(--border-strong); color: var(--fg); }
.theme-toggle svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 1.8; fill: none; }
.theme-toggle .sun-icon { display: none; }
[data-theme="light"] .theme-toggle .moon-icon { display: none; }
[data-theme="light"] .theme-toggle .sun-icon { display: block; }
.mobile-menu-btn { display: none; margin-left: auto; width: 38px; height: 38px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-1); align-items: center; justify-content: center; }
.mobile-menu-btn span, .mobile-menu-btn::before, .mobile-menu-btn::after { content: ''; display: block; width: 17px; height: 2px; border-radius: 99px; background: var(--fg); transition: transform .18s, opacity .18s; }
.mobile-menu-btn { flex-direction: column; gap: 4px; }
.site-header.mobile-open .mobile-menu-btn span { opacity: 0; }
.site-header.mobile-open .mobile-menu-btn::before { transform: translateY(6px) rotate(45deg); }
.site-header.mobile-open .mobile-menu-btn::after { transform: translateY(-6px) rotate(-45deg); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  height: 32px; padding: 0 12px;
  border-radius: var(--radius);
  font-size: 13px; font-weight: 500;
  border: 1px solid var(--border);
  background: var(--bg-1);
  color: var(--fg);
  transition: background .15s, border-color .15s, transform .05s;
  white-space: nowrap;
}
.btn:hover { background: var(--bg-2); border-color: var(--border-strong); }
.btn:active { transform: translateY(0.5px); }
.btn-primary { background: var(--amber); color: oklch(0.15 0.01 75); border-color: var(--amber); font-weight: 600; }
.btn-primary:hover { background: var(--amber-bright); border-color: var(--amber-bright); }
.btn-ghost { background: transparent; border-color: transparent; color: var(--fg-dim); }
.btn-ghost:hover { background: var(--bg-2); color: var(--fg); }
.btn-lg { height: 40px; padding: 0 16px; font-size: 14px; }
.btn-sm { height: 26px; padding: 0 8px; font-size: 12px; }

/* ============ Pills ============ */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 8px; font-size: 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-1);
  color: var(--fg-dim);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 3px var(--amber-tint); }
.pill-solid { background: var(--amber-tint); color: var(--amber); border-color: var(--amber-ring); }

/* ============ Cards ============ */
.card { background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.card-hover:hover { border-color: var(--border-strong); background: var(--bg-2); }

/* ============ Inputs ============ */
.input, .select {
  height: 34px; padding: 0 10px;
  background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius);
  color: var(--fg); font-size: 13px; outline: none; width: 100%;
}
.input:focus, .select:focus { border-color: var(--amber-ring); box-shadow: 0 0 0 3px var(--amber-tint); }

/* ============ Footer ============ */
.site-footer { border-top: 1px solid var(--border); padding: 48px 0 32px; margin-top: 80px; font-size: 13px; color: var(--fg-dim); }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(4, 1fr); gap: 48px; }
.footer-col h4 { font-size: 12px; color: var(--fg); margin: 0 0 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col h4.footer-subhead { margin-top: 18px; }
.footer-col a { display: block; padding: 4px 0; color: var(--fg-dim); }
.footer-col a:hover { color: var(--fg); }
.footer-social { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.footer-col .footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; padding: 0; border: 1px solid var(--border); border-radius: var(--radius); color: var(--fg-mute); line-height: 1; }
.footer-col .footer-social a:hover { color: var(--fg); border-color: var(--border-strong); background: var(--bg-2); }
.footer-social svg { display: block; width: 16px; height: 16px; fill: currentColor; }
.footer-social svg rect, .footer-social svg circle { fill: none; stroke: currentColor; stroke-width: 1.8; }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--font-mono); font-size: 11px; color: var(--fg-mute); }
.footer-bottom-actions { display: inline-flex; align-items: center; gap: 10px; }
.footer-cities { border-top: 1px solid var(--border); margin-top: 40px; padding-top: 24px; }
.footer-cities-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 16px; }
.footer-cities h4 { font-size: 11px; color: var(--fg); text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 4px; font-family: var(--font-mono); font-weight: 500; }
.footer-cities p { max-width: 560px; font-size: 12px; color: var(--fg-mute); }
.footer-cities-count { font-family: var(--font-mono); font-size: 11px; color: var(--fg-mute); white-space: nowrap; }
.footer-cities-tools { display: flex; align-items: center; gap: 10px; margin-top: 12px; }
.footer-city-search { width: min(320px, 100%); height: 34px; margin-top: 12px; padding: 0 10px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg); color: var(--fg); font-size: 13px; outline: none; }
.footer-cities-tools .footer-city-search { margin-top: 0; flex: 1 1 auto; min-width: 0; }
.footer-city-search:focus { border-color: var(--amber-ring); box-shadow: 0 0 0 3px var(--amber-tint); }
.footer-city-toggle { height: 34px; padding: 0 12px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-1); color: var(--fg-dim); font-size: 12px; font-weight: 500; white-space: nowrap; }
.footer-city-toggle:hover { color: var(--fg); border-color: var(--border-strong); background: var(--bg-2); }
.footer-city-toggle[aria-expanded="true"] { color: var(--amber); border-color: var(--amber-ring); background: var(--amber-tint); }
.footer-cities-continents { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--bg); }
.footer-city-group { min-width: 0; padding: 14px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); background: color-mix(in oklab, var(--bg-1) 72%, transparent); }
.footer-city-group:nth-child(3n) { border-right: 0; }
.footer-city-group:nth-last-child(-n+3) { border-bottom: 0; }
.footer-city-group summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: flex-start; gap: 10px; color: var(--fg); font-size: 13px; font-weight: 600; }
.footer-city-group summary > span:first-child { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.footer-city-group summary::-webkit-details-marker { display: none; }
.footer-city-group summary::after { content: '+'; width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: 999px; color: var(--fg-mute); font-family: var(--font-mono); font-size: 12px; flex: 0 0 auto; }
.footer-city-group[open] summary::after { content: '-'; color: var(--amber); border-color: var(--amber-ring); }
.footer-city-group .group-meta { flex: 0 0 auto; margin-left: auto; font-family: var(--font-mono); font-size: 10px; color: var(--fg-mute); margin-top: 0; text-align: right; text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap; }
.footer-cities-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px 14px; margin-top: 12px; }
.footer-cities-grid a { font-size: 12px; padding: 4px 0; color: var(--fg-dim); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.footer-cities-grid a:hover { color: var(--amber); }

/* ============ Page sections ============ */
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.eyebrow { font-family: var(--font-mono); font-size: 11px; color: var(--amber); text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 16px; }
h1, h2, h3, h4 { letter-spacing: -0.025em; font-weight: 600; margin: 0; }
h1 { font-size: 56px; line-height: 1.05; letter-spacing: -0.035em; }
h2 { font-size: 36px; line-height: 1.1; }
h3 { font-size: 20px; line-height: 1.25; }
p { margin: 0; color: var(--fg-dim); text-wrap: pretty; }

/* ============ World Map ============ */
.world-map-wrap { position: relative; aspect-ratio: 2 / 1; }
.world-map { color: oklch(0.55 0.012 250); }
.world-map svg { width: 100%; height: 100%; display: block; }
.world-map .wm-land path { fill: oklch(0.27 0.012 250); stroke: oklch(0.40 0.018 250); stroke-width: 0.45; stroke-linejoin: round; transition: fill .2s ease; }
[data-theme="light"] .world-map .wm-land path { fill: oklch(0.90 0.006 75); stroke: oklch(0.78 0.008 75); }
.world-map .loc-node { cursor: pointer; }
.world-map .loc-dot { fill: var(--amber); filter: drop-shadow(0 0 3px oklch(0.78 0.17 75 / 0.55)); }
.world-map .loc-dot-halo { fill: var(--amber); opacity: 0.18; }
.world-map .loc-node.is-flagship .loc-dot { fill: var(--amber-bright); filter: drop-shadow(0 0 6px oklch(0.78 0.17 75 / 0.7)); }
.world-map .loc-node:hover .loc-dot { fill: var(--amber-bright); }
.world-map .loc-node:hover .loc-dot-halo { opacity: 0.4; }
.world-map .pulse-ring { fill: var(--amber); opacity: 0.55; transform-origin: center; transform-box: fill-box; animation: wm-pulse 2.4s ease-out infinite; }
@keyframes wm-pulse { 0% { transform: scale(0.6); opacity: 0.6; } 80% { transform: scale(3.2); opacity: 0; } 100% { transform: scale(3.2); opacity: 0; } }
.loc-node { cursor: pointer; }
.loc-node:hover .pulse-dot { fill: var(--amber-bright); }
.loc-node.selected .pulse-dot { fill: var(--amber-bright); filter: drop-shadow(0 0 6px var(--amber-bright)); }

/* ============ Tweaks panel ============ */
.tweaks { position: fixed; bottom: 16px; right: 16px; z-index: 100; width: 260px; background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); font-size: 12px; overflow: hidden; }
.tweaks-header { padding: 10px 12px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--fg-dim); }
.tweaks-body { padding: 12px; display: flex; flex-direction: column; gap: 14px; }
.tweak-row { display: flex; flex-direction: column; gap: 6px; }
.tweak-row label { color: var(--fg-dim); font-size: 11px; }
.tweak-seg { display: flex; gap: 2px; background: var(--bg-2); border-radius: var(--radius); padding: 2px; border: 1px solid var(--border); }
.tweak-seg button { flex: 1; height: 24px; font-size: 11px; border-radius: 4px; color: var(--fg-dim); }
.tweak-seg button.on { background: var(--bg); color: var(--fg); }

/* ============ Utility ============ */
.grid { display: grid; gap: 16px; }
.row { display: flex; gap: 12px; align-items: center; }
.between { justify-content: space-between; }
.wrap { flex-wrap: wrap; }
.muted { color: var(--fg-mute); }
.dim { color: var(--fg-dim); }
.small { font-size: 13px; }
.tiny { font-size: 12px; }
.tag { display: inline-flex; align-items: center; padding: 2px 7px; font-family: var(--font-mono); font-size: 10px; background: var(--bg-2); border: 1px solid var(--border); border-radius: 4px; color: var(--fg-dim); text-transform: uppercase; letter-spacing: 0.04em; }
.divider-v { width: 1px; background: var(--border); align-self: stretch; }
.fade-in { animation: fadeIn .3s ease; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; color: var(--fg-mute); font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; }
.breadcrumb a { color: var(--fg-dim); }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb span:last-child { color: var(--fg-mute); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: var(--bg-3); border-radius: 10px; border: 2px solid var(--bg); }
::-webkit-scrollbar-track { background: transparent; }

/* ============ Mega-menu ============ */
.nav-item { position: relative; }
.nav-item::before { content: ''; position: absolute; left: 0; right: 0; top: 100%; height: 14px; }
.nav-item > a { display: inline-flex; align-items: center; gap: 4px; }
.nav-item > a::after { content: ''; width: 0; height: 0; margin-left: 2px; border-left: 3px solid transparent; border-right: 3px solid transparent; border-top: 4px solid currentColor; opacity: 0.55; transition: transform .15s; }
.nav-item:hover > a::after { transform: rotate(180deg); }
.mega { position: fixed; top: 98px; left: 50%; transform: translate(-50%, -6px); opacity: 0; pointer-events: none; background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: 0 24px 60px oklch(0 0 0 / 0.5); width: min(980px, calc(100vw - 32px)); max-height: calc(100vh - 122px); display: grid; grid-template-columns: 190px 1fr; transition: opacity .18s, transform .18s; z-index: 60; overflow: hidden; }
.nav-item:hover .mega, .nav-item:focus-within .mega { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.mega-continents { border-right: 1px solid var(--border); background: var(--bg); padding: 8px; display: flex; flex-direction: column; }
.mega-continent-btn { padding: 10px 10px; display: flex; justify-content: space-between; align-items: center; gap: 8px; border-radius: var(--radius); color: var(--fg-dim); font-size: 12px; cursor: pointer; transition: background .12s, color .12s; text-align: left; width: 100%; }
.mega-continent-btn:hover, .mega-continent-btn.on { background: var(--bg-2); color: var(--fg); }
.mega-continent-btn.on { background: var(--amber-tint); color: var(--amber); }
.mega-continent-btn .count { font-family: var(--font-mono); font-size: 11px; opacity: 0.6; }
.mega-cities { padding: 12px; max-height: min(520px, calc(100vh - 154px)); overflow-y: auto; overscroll-behavior: contain; }
.mega-cities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px 24px; }
.mega-city { padding: 7px 0; font-size: 13px; color: var(--fg-dim); display: flex; align-items: center; gap: 8px; border-radius: 4px; transition: color .12s; }
.mega-city:hover { color: var(--amber); }
.mega-city .flag { font-size: 14px; line-height: 1; }
.mega-city span:not(.flag):not(.code) { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mega-city .code { font-family: var(--font-mono); font-size: 10px; color: var(--fg-mute); margin-left: auto; }
.mega-footer { grid-column: 1 / -1; border-top: 1px solid var(--border); padding: 10px 20px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--fg-dim); background: var(--bg); }
.mega-footer a { color: var(--amber); }
.dropdown { position: absolute; top: calc(100% + 8px); left: 0; transform: translateY(-6px); opacity: 0; pointer-events: none; background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: 0 24px 60px oklch(0 0 0 / 0.5); min-width: 240px; padding: 6px; transition: opacity .18s, transform .18s; z-index: 60; }
.nav-item:last-child .dropdown { left: auto; right: 0; }
.nav-item:hover .dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }
.dropdown a { display: flex; flex-direction: column; gap: 2px; padding: 8px 10px; border-radius: var(--radius); color: var(--fg); font-size: 13px; }
.dropdown a:hover { background: var(--bg-2); }
.dropdown a .dd-sub { color: var(--fg-mute); font-size: 11px; }
.dropdown .dd-heading { display: block; padding: 8px 10px 4px; color: var(--fg-mute); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; }
.dropdown a.ai-dd { display: grid; grid-template-columns: 28px 1fr; gap: 10px; align-items: center; padding: 8px 10px; }
.dropdown.ai-app-dropdown { width: min(620px, calc(100vw - 32px)); min-width: 0; padding: 10px; }
.nav-item.nav-item-ai .dropdown.ai-app-dropdown { left: auto; right: 0; }
.ai-app-dropdown-grid { display: grid; grid-template-columns: repeat(2, minmax(250px, 1fr)); gap: 10px; }
.ai-app-dropdown-column { display: flex; flex-direction: column; gap: 3px; min-width: 0; padding: 6px; border: 1px solid color-mix(in oklab, var(--border) 72%, transparent); border-radius: var(--radius); background: color-mix(in oklab, var(--bg) 44%, transparent); }
.dropdown .ai-app-dropdown-heading { padding: 4px 4px 8px; margin: 0 0 2px; color: var(--fg); border-bottom: 1px solid var(--border); }
.ai-app-dropdown-column > a { min-height: 48px; }
.ai-dd-icon { width: 24px; height: 24px; border: 1px solid var(--border); border-radius: 6px; background: var(--bg); padding: 4px; object-fit: contain; }
.ai-dd-copy { display: flex; flex-direction: column; gap: 2px; min-width: 0; }

/* ============ Location Hero ============ */
.loc-hero { position: relative; padding: 80px 0 64px; border-bottom: 1px solid var(--border); overflow: hidden; background: radial-gradient(ellipse at 80% 20%, var(--amber-tint) 0%, transparent 55%), radial-gradient(ellipse at 20% 80%, oklch(0.30 0.04 250 / 0.5) 0%, transparent 50%), var(--bg); }
.loc-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(to right, var(--border) 1px, transparent 1px), linear-gradient(to bottom, var(--border) 1px, transparent 1px); background-size: 64px 64px; opacity: 0.15; mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%); }
.loc-hero-inner { position: relative; display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: center; }
.loc-hero h1 { font-size: 52px; line-height: 1.04; }
.loc-hero h1 .accent { color: var(--amber); }
.loc-hero .flag-chip { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; background: var(--bg-1); border: 1px solid var(--border); border-radius: 999px; font-size: 12px; font-family: var(--font-mono); margin-bottom: 20px; color: var(--fg); }
.loc-hero .flag-chip.product-chip { background: var(--amber-tint); border-color: var(--amber-ring); color: var(--amber); }
.loc-hero .flag-chip .flag-emoji { font-size: 16px; }
.flag img,
.flag-emoji img,
.flag-block img,
.sku-flag img,
.nm-modal-flag img,
.vps-location-flag img {
  width: 20px;
  height: 15px;
  display: inline-block;
  border-radius: 0;
  object-fit: cover;
  vertical-align: middle;
  background: transparent;
  border: 0;
  opacity: 1;
}
.nearby-card .flag-emoji img { width: 26px; height: 18px; }
.loc-hero .flag-chip .flag-emoji img { width: 22px; height: 15px; }
.loc-hero .meta-row { display: flex; gap: 24px; margin-top: 28px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid var(--border); }
.loc-hero .meta-row .stat { display: flex; flex-direction: column; gap: 2px; }
.loc-hero .meta-row .stat .lbl { font-family: var(--font-mono); font-size: 10px; color: var(--fg-mute); text-transform: uppercase; letter-spacing: 0.06em; }
.loc-hero .meta-row .stat .val { font-size: 18px; font-weight: 600; color: var(--fg); }
.loc-hero .meta-row .stat .val.accent { color: var(--amber); }
.loc-land path { fill: oklch(0.30 0.012 250); stroke: oklch(0.42 0.02 250); stroke-width: 0.4; stroke-linejoin: round; }
@keyframes loc-pulse-1 { 0%,100% { opacity: 0.45; r: 22; } 50% { opacity: 0.15; r: 30; } }
@keyframes loc-pulse-2 { 0%,100% { opacity: 0.7; r: 14; } 50% { opacity: 0.3; r: 20; } }
.loc-pulse-1 { animation: loc-pulse-1 2.8s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
.loc-pulse-2 { animation: loc-pulse-2 2s ease-in-out infinite; animation-delay: -0.4s; transform-origin: center; transform-box: fill-box; }
@media (prefers-reduced-motion: reduce) { .loc-pulse-1, .loc-pulse-2 { animation: none; } }
.loc-art { position: relative; aspect-ratio: 1; border: 1px solid var(--border); border-radius: 16px; background: var(--bg-1); overflow: hidden; }
.loc-art svg { width: 100%; height: 100%; display: block; }

/* ============ SEO block ============ */
.seo-block { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; padding: 72px 0; }
.seo-block h2 { font-size: 34px; margin-bottom: 20px; max-width: 14ch; }
.seo-block .col-right { display: flex; flex-direction: column; gap: 20px; }
.seo-block p { font-size: 15px; line-height: 1.65; color: var(--fg-dim); }
.seo-block .sub-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 16px; }
.seo-feature { padding: 20px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--bg-1); }
.seo-feature h3 { font-size: 14px; margin: 0 0 8px; color: var(--fg); display: flex; align-items: center; gap: 8px; }
.seo-feature h3::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 3px var(--amber-tint); }
.seo-feature p { font-size: 13px; color: var(--fg-dim); margin: 0; }

/* ============ FAQ ============ */
.location-section-gap { margin-top: 28px; }
.location-block-gap { margin-bottom: 28px; }
.loc-faq-section { padding-top: 72px; padding-bottom: 72px; }
.loc-section-head { margin-bottom: 28px; }
.loc-section-head.centered { text-align: center; margin-bottom: 40px; }
.loc-faq-head { margin-bottom: 32px; }
.loc-section-head h2 { font-size: 30px; }
.loc-section-head.split { display: flex; align-items: end; justify-content: space-between; gap: 18px; }
.loc-section-head.split.loc-nearby-head { align-items: flex-start; flex-direction: column; gap: 26px; margin-bottom: 30px; }
.loc-section-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.faq-list { display: flex; flex-direction: column; gap: 4px; max-width: 860px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--bg-1); overflow: hidden; transition: border-color .15s; }
.faq-item[open] { border-color: var(--border-strong); }
.faq-item summary { padding: 18px 20px; font-size: 15px; font-weight: 500; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 18px; color: var(--fg-mute); transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 20px 20px; font-size: 14px; color: var(--fg-dim); line-height: 1.6; }

/* ============ Nearby grid ============ */
.loc-nearby-section { padding-top: 48px; padding-bottom: 56px; }
.nearby-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.nearby-card { padding: 16px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--bg-1); display: flex; flex-direction: column; gap: 4px; transition: border-color .15s, background .15s; }
.nearby-card:hover { border-color: var(--border-strong); background: var(--bg-2); }
.nearby-card .flag-emoji { font-size: 18px; }
.nearby-card .city-name { font-size: 14px; font-weight: 500; color: var(--fg); margin-top: 4px; }
.nearby-card .country-name { font-size: 11px; color: var(--fg-mute); font-family: var(--font-mono); }
.nearby-card .dist { font-size: 11px; color: var(--fg-dim); font-family: var(--font-mono); margin-top: 8px; }

/* ============ Cookie Banner ============ */
#cookie-banner { position: fixed; right: 16px; left: auto; bottom: max(16px, env(safe-area-inset-bottom)); z-index: 200; pointer-events: none; width: min(420px, calc(100vw - 32px)); }
#cookie-banner .cookie-card { display: grid; grid-template-columns: 1fr; gap: 10px; align-items: center; padding: 12px 14px; background: var(--bg-1); border: 1px solid var(--border-strong); border-radius: var(--radius-lg); box-shadow: 0 16px 48px -12px oklch(0 0 0 / 0.4), 0 4px 12px -2px oklch(0 0 0 / 0.3); max-width: 420px; margin: 0; pointer-events: auto; opacity: 0; transform: translateY(12px); transition: opacity .25s, transform .25s; }
#cookie-banner.show .cookie-card { opacity: 1; transform: translateY(0); }
#cookie-banner .cookie-body { color: var(--fg-dim); font-size: 13px; line-height: 1.45; }
#cookie-banner .cookie-body a { color: var(--amber); }
#cookie-banner .cookie-actions { display: flex; gap: 6px; flex-wrap: wrap; justify-content: flex-start; }
#cookie-banner .cookie-actions .btn { height: 30px; font-size: 13px; padding: 0 10px; }
@media (max-width: 700px) { #cookie-banner { left: 0; right: 0; width: 100%; bottom: 0; padding: 0 0 max(8px, env(safe-area-inset-bottom)); } #cookie-banner .cookie-card { max-width: none; width: 100%; border-radius: 10px 10px 0 0; border-left: 0; border-right: 0; border-bottom: 0; padding: 12px 14px; } }

/* ============ Network Map ============ */
.netmap {
  position: relative; width: 100%; aspect-ratio: 2 / 1;
  background: radial-gradient(ellipse at 40% 40%, oklch(0.22 0.02 220) 0%, oklch(0.18 0.015 225) 40%, oklch(0.13 0.01 235) 75%, oklch(0.11 0.008 240) 100%);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: visible; isolation: isolate;
}
.netmap-viewport { position: absolute; inset: 0; cursor: default; touch-action: auto; user-select: none; }
.netmap-viewport.grabbing,
.netmap-viewport.zoomed { cursor: default; }
.netmap svg { width: 100%; height: 100%; display: block; }
.nm-ocean-grid { fill: none; stroke: oklch(0.48 0.03 225); stroke-width: 0.3; opacity: 0.14; }
.nm-land { fill: oklch(0.30 0.012 250); }
.nm-land .nm-continent { fill: oklch(0.28 0.015 250); stroke: oklch(0.42 0.02 250); stroke-width: 0.4; stroke-linejoin: round; filter: drop-shadow(1px 2px 3px oklch(0 0 0 / 0.4)); }
[data-theme="light"] .nm-land .nm-continent { fill: oklch(0.86 0.005 75); stroke: oklch(0.72 0.008 75); stroke-width: 0.3; }
.nm-graticule path { fill: none; stroke: oklch(0.42 0.025 225); stroke-width: 0.25; opacity: 0.22; }
.nm-equator { fill: none; stroke: oklch(0.50 0.03 225); stroke-width: 0.5; opacity: 0.35; stroke-dasharray: 6 4; }
.nm-arc-base { fill: none; stroke: var(--amber); stroke-width: 0.5; stroke-linecap: round; opacity: 0.08; }
.nm-arc-flow { fill: none; stroke: var(--amber); stroke-width: 1.4; stroke-linecap: round; opacity: 0.3; }
.nm-arc-flow-alt { fill: none; stroke: oklch(0.80 0.14 75); stroke-width: 0.7; stroke-linecap: round; opacity: 0.18; }
@keyframes nmFlow { from { stroke-dashoffset: 163; } to { stroke-dashoffset: 0; } }
@keyframes nmFlowAlt { from { stroke-dashoffset: 222; } to { stroke-dashoffset: 0; } }
.nm-dot { cursor: pointer; outline: none; }
.nm-dot .nm-halo { fill: var(--amber); opacity: 0; transition: opacity .2s; }
.nm-dot .nm-core { fill: var(--amber-bright); stroke: oklch(0.12 0 0); stroke-width: 0.8; transition: fill .15s, filter .15s; }
.nm-dot.nm-flagship .nm-core,
.nm-dot.nm-standard .nm-core,
.nm-dot.nm-edge .nm-core { fill: var(--amber-bright); }
.nm-dot:hover .nm-halo, .nm-dot:focus-visible .nm-halo, .nm-dot.selected .nm-halo { opacity: 0.3; }
.nm-dot:hover .nm-core, .nm-dot:focus-visible .nm-core, .nm-dot.selected .nm-core { fill: var(--amber-bright); }
.nm-city-label { font-family: var(--font-mono); font-size: 9px; fill: oklch(0.92 0.003 250); letter-spacing: 0.04em; pointer-events: none; opacity: 0; transition: opacity .15s; }
.nm-dot:hover .nm-city-label, .nm-dot:focus-visible .nm-city-label, .nm-dot.selected .nm-city-label { opacity: 1; }
.netmap-controls { display: none; }
.netmap-btn { width: 32px; height: 32px; background: color-mix(in oklab, var(--bg-1) 90%, transparent); border: 1px solid var(--border); border-radius: var(--radius); color: var(--fg-dim); font-size: 18px; display: flex; align-items: center; justify-content: center; cursor: pointer; backdrop-filter: blur(6px); transition: background .15s, border-color .15s, color .15s; }
.netmap-btn:hover { background: var(--bg-2); border-color: var(--amber-ring); color: var(--amber); }
.netmap-legend { position: absolute; bottom: 12px; left: 14px; display: flex; gap: 12px; align-items: center; font-family: var(--font-mono); font-size: 10px; color: var(--fg-mute); background: color-mix(in oklab, var(--bg-1) 85%, transparent); backdrop-filter: blur(6px); border: 1px solid var(--border); border-radius: 6px; padding: 5px 10px; z-index: 2; }
.netmap-legend .lg { display: flex; align-items: center; gap: 6px; }
.netmap-legend .dot-fg, .netmap-legend .dot-st, .netmap-legend .dot-ed { width: 8px; height: 8px; border-radius: 50%; }
.netmap-legend .dot-fg { background: var(--amber-bright); box-shadow: 0 0 6px var(--amber); }
.netmap-legend .dot-st { background: var(--amber); }
.netmap-legend .dot-ed { background: oklch(0.7 0.1 75); }
.netmap-modal { position: absolute; left: var(--mx, 50%); top: var(--my, 50%); transform: translate(-50%, calc(-100% - 18px)); z-index: 5; pointer-events: none; width: 300px; max-width: min(300px, 90%); opacity: 0; transition: opacity .18s ease; }
.netmap-modal.open { opacity: 1; pointer-events: auto; }
.netmap-modal.flip-below { transform: translate(-50%, 18px); }
.netmap-modal-inner { position: relative; background: var(--bg-1); border: 1px solid var(--border-strong); border-radius: var(--radius-lg); padding: 16px; box-shadow: 0 20px 48px -12px oklch(0 0 0 / 0.6), 0 0 0 1px var(--amber-ring); }
.netmap-modal-inner::after { content: ''; position: absolute; left: 50%; bottom: -7px; width: 14px; height: 14px; background: var(--bg-1); border-right: 1px solid var(--border-strong); border-bottom: 1px solid var(--border-strong); transform: translateX(-50%) rotate(45deg); }
.netmap-modal.flip-below .netmap-modal-inner::after { bottom: auto; top: -7px; transform: translateX(-50%) rotate(-135deg); }
.nm-modal-close { position: absolute; top: 8px; right: 8px; width: 24px; height: 24px; background: transparent; border: 0; color: var(--fg-dim); font-size: 18px; line-height: 1; cursor: pointer; border-radius: 4px; }
.nm-modal-close:hover { background: var(--bg-2); color: var(--fg); }
.nm-modal-head { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; padding-right: 24px; }
.nm-modal-flag { font-size: 26px; line-height: 1; }
.nm-modal-city { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
.nm-modal-sub { font-family: var(--font-mono); font-size: 10px; color: var(--fg-mute); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }
.nm-modal-dc { display: flex; gap: 10px; align-items: baseline; padding: 8px 10px; background: var(--bg-2); border-radius: 6px; margin-bottom: 10px; font-size: 12px; }
.nm-modal-dc-k { font-family: var(--font-mono); font-size: 10px; color: var(--fg-mute); text-transform: uppercase; letter-spacing: 0.08em; }
.nm-modal-dc-v { color: var(--fg); font-weight: 500; }
.nm-modal-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-bottom: 10px; }
.nm-stat { display: flex; flex-direction: column; align-items: center; padding: 8px 4px; background: var(--bg-2); border-radius: 6px; gap: 2px; }
.nm-stat-v { font-family: var(--font-mono); font-size: 13px; font-weight: 600; color: var(--amber); }
.nm-stat-k { font-family: var(--font-mono); font-size: 9px; color: var(--fg-mute); text-transform: uppercase; letter-spacing: 0.05em; }
.nm-modal-products { display: flex; flex-direction: column; gap: 4px; margin-bottom: 10px; }
.nm-prod { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 12px; background: var(--bg-2); border: 1px solid transparent; border-radius: 6px; transition: background .15s, border-color .15s; }
.nm-prod:hover { background: var(--bg-3); border-color: var(--amber-ring); }
.nm-prod-head { display: flex; align-items: center; gap: 8px; min-width: 0; }
.nm-prod-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--fg-mute); }
.nm-prod-dot.on { background: var(--amber); box-shadow: 0 0 5px var(--amber); }
.nm-prod-name { font-size: 13px; font-weight: 500; color: var(--fg); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nm-prod-meta { font-size: 13px; color: var(--fg-dim); white-space: nowrap; }
.nm-prod-badge { margin-left: auto; padding: 2px 7px; border: 1px solid var(--border); border-radius: 999px; background: var(--bg); color: var(--fg-dim); font-family: var(--font-mono); font-size: 10px; white-space: nowrap; }
.nm-prod-arrow { color: var(--amber); font-size: 16px; flex: 0 0 auto; }
.nm-modal-foot { border-top: 1px solid var(--border); padding-top: 10px; font-size: 11px; color: var(--fg-mute); font-family: var(--font-mono); display: flex; justify-content: flex-end; }
@media (max-width: 700px) { .netmap { aspect-ratio: 4 / 3; } .netmap-modal { width: 260px; } .netmap-legend { font-size: 9px; gap: 8px; padding: 6px 10px; } }

/* ============ Product cards ============ */
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.prod-card { padding: 24px; position: relative; overflow: hidden; min-height: 280px; display: flex; flex-direction: column; }
.prod-card h3 { margin-bottom: 8px; font-size: 22px; }
.prod-card .prod-desc { margin-bottom: auto; }
.prod-card .prod-price { font-family: var(--font-mono); font-size: 12px; color: var(--fg-dim); margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.prod-card .prod-price b { color: var(--fg); font-size: 16px; font-weight: 600; }
.prod-card .corner { position: absolute; top: 16px; right: 16px; font-family: var(--font-mono); font-size: 10px; color: var(--fg-mute); text-transform: uppercase; letter-spacing: 0.08em; }
.prod-card .illo { margin-bottom: 16px; height: 80px; display: flex; align-items: flex-start; }
.prod-card a.deploy-link { color: var(--amber); font-size: 13px; font-weight: 500; margin-top: 12px; display: inline-flex; align-items: center; gap: 6px; }
.prod-card a.deploy-link:hover { color: var(--amber-bright); }
.rack-svg { width: 100%; height: 100%; }
.split2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.config-showcase { padding: 24px; background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.config-showcase .cfg-label { font-family: var(--font-mono); font-size: 10px; color: var(--fg-mute); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.config-showcase .cfg-val { font-size: 13px; font-weight: 500; }
.config-showcase .cfg-row { display: flex; justify-content: space-between; padding: 10px 0; border-top: 1px solid var(--border); }
.config-showcase .cfg-row:first-child { border-top: 0; padding-top: 0; }
    .deploy-review-stack .cfg-row { display: grid; grid-template-columns: minmax(88px, auto) minmax(0, 1fr); align-items: center; min-height: 46px; gap: 18px; }
    .deploy-review-stack .cfg-row:first-child { padding-top: 13px; }
    .deploy-review-stack .cfg-label { margin-bottom: 0; line-height: 1.25; align-self: center; }
    .deploy-review-stack .cfg-val { display: flex; align-items: center; justify-content: flex-end; line-height: 1.3; text-align: right; min-width: 0; }
    .deploy-review-stack .cfg-row:first-child .cfg-val { white-space: nowrap; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.compare-table th, .compare-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); }
.compare-table th { font-weight: 500; font-family: var(--font-mono); font-size: 11px; color: var(--fg-mute); text-transform: uppercase; letter-spacing: 0.06em; }
.compare-table td.pos { color: var(--amber); }
.compare-table tbody tr:hover { background: var(--bg-1); }
.testimonial-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.testimonial { padding: 24px; border-right: 1px solid var(--border); }
.testimonial:last-child { border-right: 0; }
.testimonial p.quote { color: var(--fg); font-size: 15px; margin-bottom: 16px; text-wrap: pretty; }
.testimonial .who { font-size: 12px; color: var(--fg-dim); }
.testimonial .who b { color: var(--fg); font-weight: 500; }
.cta-band { padding: 56px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--bg-1); display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: center; position: relative; overflow: hidden; }
.cta-band .glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 40% 80% at 100% 50%, var(--amber-tint), transparent 70%); }
.cta-band h2 { font-size: 40px; }
.cta-single-line { white-space: nowrap; max-width: none; }
.cta-actions { justify-self: end; }

/* ============ Animation utilities ============ */
@keyframes ht-rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
[data-reveal] { opacity: 0; }
[data-reveal].in { animation: ht-rise .7s var(--ease-out, ease) forwards; }
[data-reveal][data-reveal-delay="1"].in { animation-delay: 0.05s; }
[data-reveal][data-reveal-delay="2"].in { animation-delay: 0.12s; }
[data-reveal][data-reveal-delay="3"].in { animation-delay: 0.2s; }
@keyframes ht-pulse-dot { 0%, 100% { box-shadow: 0 0 0 0 oklch(0.78 0.17 75 / 0.5); } 70% { box-shadow: 0 0 0 8px oklch(0.78 0.17 75 / 0); } }
.pulse-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--amber); animation: ht-pulse-dot 2.2s ease-out infinite; }
.linkish { background-image: linear-gradient(to right, var(--amber), var(--amber)); background-size: 0% 1px; background-position: 0 100%; background-repeat: no-repeat; transition: background-size .35s ease, color .2s; padding-bottom: 1px; }
.linkish:hover { background-size: 100% 1px; color: var(--amber); }
.warm-glow { background: radial-gradient(ellipse 80% 50% at 50% 0%, oklch(0.78 0.17 75 / 0.10) 0%, transparent 60%), radial-gradient(ellipse 60% 40% at 80% 100%, oklch(0.78 0.17 75 / 0.06) 0%, transparent 60%); }
h1, h2, h3 { font-feature-settings: "ss01", "kern", "calt"; text-wrap: balance; }
p { text-wrap: pretty; }
.ticker-track { animation-timing-function: linear; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } [data-reveal] { opacity: 1; } }

/* ============ Cards lift ============ */
.card-hover { transition: border-color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease; }
.card-hover:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -8px oklch(0 0 0 / 0.4), 0 1px 0 0 oklch(1 0 0 / 0.05) inset; }

@media (max-width: 900px) {
  html, body { overflow-x: clip; }
  html.mobile-nav-lock,
  html.mobile-nav-lock body { overflow: hidden; touch-action: none; }
  .site-header { -webkit-backdrop-filter: none; backdrop-filter: none; background: var(--bg); }
  .utility-bar { overflow: hidden; }
  .utility-inner { justify-content: flex-end; height: 32px; padding: 0 18px; gap: 4px; overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .utility-inner::-webkit-scrollbar { display: none; }
  .utility-link { height: 22px; padding: 0 7px; font-size: 11px; flex: 0 0 auto; }
  .language-menu { right: 0; left: auto; max-width: calc(100vw - 36px); }
  .site-header-inner { height: auto; min-height: 64px; gap: 12px; flex-wrap: wrap; padding-top: 12px; padding-bottom: 12px; }
  .logo { min-height: 38px; }
  .mobile-menu-btn { display: inline-flex; position: relative; z-index: 140; }
  .site-header.mobile-open .mobile-menu-btn {
    position: fixed;
    top: max(14px, env(safe-area-inset-top));
    right: 14px;
    z-index: 150;
    background: color-mix(in oklab, var(--bg-2) 92%, transparent);
    border-color: var(--border-strong);
    box-shadow: 0 18px 42px oklch(0 0 0 / 0.38);
  }
  .site-header::after { content: ''; position: fixed; inset: 0; background: oklch(0 0 0 / 0.58); opacity: 0; pointer-events: none; transition: opacity .2s ease; z-index: 110; }
  .site-header.mobile-open::after { opacity: 1; pointer-events: auto; }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: auto;
    display: flex;
    width: min(88vw, 404px);
    height: 100dvh;
    min-height: 100dvh;
    max-height: 100dvh;
    margin-left: 0;
    background:
      linear-gradient(180deg, color-mix(in oklab, var(--amber-tint) 58%, transparent), transparent 170px),
      color-mix(in oklab, var(--bg-1) 97%, transparent);
    border: 1px solid color-mix(in oklab, var(--border-strong) 82%, transparent);
    border-right: 0;
    border-top: 0;
    border-bottom: 0;
    box-shadow: -24px 0 70px oklch(0 0 0 / 0.52);
    backdrop-filter: blur(14px);
    z-index: 130;
    padding: max(14px, env(safe-area-inset-top)) 14px max(18px, env(safe-area-inset-bottom));
    border-radius: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    max-height: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(104%);
    transition: transform .24s cubic-bezier(.2,.8,.2,1);
    overscroll-behavior: contain;
  }
  .nav::before {
    content: '';
    position: static;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 54px;
    margin: -2px 46px 8px 0;
    padding: 0 2px;
    background: url('/assets/hosthink-logo.png') left center / 117px 39px no-repeat;
    border-bottom: 1px solid color-mix(in oklab, var(--border) 82%, transparent);
  }
  .site-header.mobile-open .nav { transform: translateX(0); }
  .nav > a,
  .nav-item > a {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 13px;
    border: 1px solid color-mix(in oklab, var(--border) 72%, transparent);
    border-radius: 14px;
    color: var(--fg);
    background: color-mix(in oklab, var(--bg-2) 62%, transparent);
    box-shadow: inset 0 1px 0 oklch(1 0 0 / 0.04);
  }
  .nav > a:hover,
  .nav-item > a:hover { background: var(--bg-2); color: var(--fg); }
  .nav-item.is-open > a {
    color: var(--amber);
    border-color: var(--amber-ring);
    background: color-mix(in oklab, var(--amber-tint) 62%, var(--bg-2));
  }
  .dropdown a {
    padding: 10px 12px;
    border-radius: 12px;
    background: color-mix(in oklab, var(--bg-1) 68%, transparent);
  }
  .dropdown.ai-app-dropdown { width: 100%; min-width: 0; padding: 8px; }
  .ai-app-dropdown-grid { grid-template-columns: 1fr; gap: 10px; }
  .ai-app-dropdown-column { padding: 8px; }
  .nav-item > a::after { margin-left: auto; }
  .mega, .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    min-width: 0;
    width: 100%;
    box-shadow: none;
    margin: 2px 0 8px;
    border-radius: var(--radius);
    border-color: color-mix(in oklab, var(--border) 78%, transparent);
    padding: 8px;
    background: color-mix(in oklab, var(--bg) 88%, transparent);
    display: none;
  }
  .nav-item.is-open .mega,
  .nav-item.is-open .dropdown { display: block; transform: none; }
  .nav-item.is-open > a::after { transform: rotate(180deg); }
  .mega { grid-template-columns: 1fr; }
  .mega-continents {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding: 0 0 8px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .mega-continent-btn {
    min-height: 38px;
    justify-content: center;
    padding: 9px 8px;
    border: 1px solid color-mix(in oklab, var(--border) 78%, transparent);
    border-radius: 12px;
    background: color-mix(in oklab, var(--bg-2) 72%, transparent);
    font-size: 11px;
  }
  .mega-cities-grid { grid-template-columns: 1fr; max-height: min(330px, 42dvh); overflow-y: auto; padding: 8px 2px 0 0; gap: 5px; }
  .mega-city {
    min-height: 38px;
    border-radius: 12px;
    background: color-mix(in oklab, var(--bg-1) 72%, transparent);
  }
  .mega-footer { display: grid; gap: 8px; padding: 10px 0 0; }
  .hero-inner, .split2, .prod-grid, .hero-stats, .testimonial-row, .cta-band { grid-template-columns: 1fr; }
  .cta-single-line { white-space: normal; }
  .cta-actions { justify-self: stretch; justify-content: flex-start !important; flex-wrap: wrap; }
  .hero h1 { font-size: 44px; }
  .testimonial { border-right: 0; border-bottom: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nearby-grid { grid-template-columns: repeat(3, 1fr); }
  .seo-block { grid-template-columns: 1fr; }
  .loc-hero-inner { grid-template-columns: 1fr; }
  .footer-cities-head { display: block; }
  .footer-cities-count { display: block; margin-top: 10px; }
  .footer-cities-tools { display: grid; grid-template-columns: 1fr auto; align-items: stretch; gap: 8px; }
  .footer-city-toggle { width: 100%; }
  .footer-cities-continents { grid-template-columns: 1fr; }
  .footer-city-group, .footer-city-group:nth-child(3n), .footer-city-group:nth-last-child(-n+3) { border-right: 0; border-bottom: 1px solid var(--border); }
  .footer-city-group:last-child { border-bottom: 0; }
  .footer-cities-grid { grid-template-columns: 1fr; gap: 2px; }
}
@media (max-width: 520px) {
  .utility-inner { max-width: 100%; min-width: 0; overflow-x: auto; overflow-y: hidden; }
}
@media (max-width: 700px) {
  .container,
  .site-header-inner { padding-left: 18px !important; padding-right: 18px !important; }
  .section { padding: 48px 0; }
  .section-sm { padding: 36px 0; }
  .loc-faq-section,
  .loc-nearby-section,
  .loc-location-cta { padding-top: 36px; padding-bottom: 36px; }
  .loc-section-head.split { display: flex; align-items: flex-start; flex-direction: column; gap: 20px; }
  .loc-section-head.split.loc-nearby-head { gap: 20px; margin-bottom: 24px; }
  .location-section-gap { margin-top: 22px; }
  .location-block-gap { margin-bottom: 22px; }
  .nearby-grid { grid-template-columns: 1fr; }
  .loc-art:not(.product-art) { display: none !important; }
  .footer-bottom { align-items: center; }
  .footer-bottom-actions { margin-left: auto; }
}