/* ============================================================
   NEON HOST — Design System
   Linear.app-inspired · dark + light · Geist · purple/cyan
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* brand */
  --purple: #7C3AED;
  --purple-2: #8B5CF6;
  --cyan: #22D3EE;
  --cyan-2: #06B6D4;

  /* radii */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;

  /* type */
  --font: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* spacing rhythm */
  --section-y: clamp(72px, 9vw, 150px);
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 56px);

  /* motion */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* LIGHT (default — "branco profissional") */
:root, [data-theme="light"] {
  --bg: #FFFFFF;
  --bg-2: #F6F7FB;
  --bg-3: #EEF0F7;
  --surface: #FFFFFF;
  --surface-2: #FBFBFD;
  --glass: rgba(255,255,255,.72);
  --glass-brd: rgba(15,23,42,.09);
  --border: rgba(15,23,42,.09);
  --border-2: rgba(15,23,42,.14);
  --text: #0B1020;
  --text-2: #44506A;
  --text-3: #8A93A8;
  --ink-invert: #FFFFFF;
  --shadow-sm: 0 1px 2px rgba(16,24,40,.05), 0 1px 3px rgba(16,24,40,.05);
  --shadow-md: 0 8px 28px -10px rgba(16,24,40,.16);
  --shadow-lg: 0 30px 70px -28px rgba(20,18,60,.30);
  --aurora-1: rgba(124,58,237,.16);
  --aurora-2: rgba(34,211,238,.14);
  --grid-line: rgba(15,23,42,.045);
  --brand-text: #6D28D9;
  --cyan-text: #0E7490;
  --hero-bg: #FFFFFF;
  --code-bg: #0B1020;
  --code-text: #E6E9F2;
  color-scheme: light;
}

[data-theme="dark"] {
  --bg: #050816;
  --bg-2: #0B1020;
  --bg-3: #111827;
  --surface: #0C1226;
  --surface-2: #0E152E;
  --glass: rgba(15,21,45,.55);
  --glass-brd: rgba(255,255,255,.08);
  --border: rgba(255,255,255,.085);
  --border-2: rgba(255,255,255,.16);
  --text: #FFFFFF;
  --text-2: #C6CDDD;
  --text-3: #7E879C;
  --ink-invert: #0B1020;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
  --shadow-md: 0 14px 40px -16px rgba(0,0,0,.6);
  --shadow-lg: 0 40px 90px -30px rgba(0,0,0,.75);
  --aurora-1: rgba(124,58,237,.30);
  --aurora-2: rgba(34,211,238,.22);
  --grid-line: rgba(255,255,255,.045);
  --brand-text: #A78BFA;
  --cyan-text: #67E8F9;
  --hero-bg: #050816;
  --code-bg: #070B1A;
  --code-text: #E6E9F2;
  color-scheme: dark;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: 16px;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background .4s var(--ease), color .4s var(--ease);
}
/* fixed themed backdrop — survives platform body{background:transparent} overrides */
.nh-bg { position: fixed; inset: 0; z-index: -1; background: var(--bg); transition: background .4s var(--ease); pointer-events: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: color-mix(in oklab, var(--purple) 28%, transparent); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-wide { max-width: 1400px; }
.section { padding-block: var(--section-y); position: relative; }
.section-tight { padding-block: clamp(48px, 6vw, 90px); }

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-weight: 600; line-height: 1.04; letter-spacing: -0.03em; color: var(--text); }
.display {
  font-size: clamp(40px, 6.4vw, 78px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.038em;
}
.h2 { font-size: clamp(30px, 4.2vw, 52px); letter-spacing: -0.032em; }
.h3 { font-size: clamp(22px, 2.6vw, 31px); letter-spacing: -0.025em; }
.lead { font-size: clamp(17px, 1.55vw, 21px); color: var(--text-2); line-height: 1.55; font-weight: 400; letter-spacing: -0.012em; }
.muted { color: var(--text-2); }
.subtle { color: var(--text-3); }
.balance { text-wrap: balance; }
.pretty { text-wrap: pretty; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brand-text);
}
.eyebrow::before {
  content: ""; width: 16px; height: 1px;
  background: linear-gradient(90deg, var(--purple), transparent);
}
.eyebrow.center::before { display: none; }

.grad-text {
  background: linear-gradient(100deg, var(--purple-2) 0%, var(--cyan) 95%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* section header block */
.sec-head { max-width: 680px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head .eyebrow { margin-bottom: 18px; }
.sec-head .lead { margin-top: 20px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-size: 15px; font-weight: 540; letter-spacing: -0.012em;
  padding: 0 20px; height: 46px; border-radius: var(--r-pill);
  transition: transform .25s var(--ease), box-shadow .3s var(--ease), background .25s, border-color .25s, color .2s;
  white-space: nowrap; position: relative; isolation: isolate;
}
.btn svg { width: 17px; height: 17px; }
.btn:active { transform: translateY(1px) scale(.99); }

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, var(--purple-2), var(--purple));
  box-shadow: 0 1px 0 rgba(255,255,255,.22) inset, 0 10px 26px -10px rgba(124,58,237,.7);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255,255,255,.25) inset, 0 16px 36px -10px rgba(124,58,237,.85); }

.btn-glow {
  color: #fff;
  background: linear-gradient(100deg, var(--purple), var(--cyan-2));
  box-shadow: 0 10px 30px -10px rgba(124,58,237,.6);
}
.btn-glow:hover { transform: translateY(-2px); box-shadow: 0 16px 44px -10px rgba(34,211,238,.6); }

.btn-ghost {
  color: var(--text); background: var(--surface);
  border: 1px solid var(--border-2);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: color-mix(in oklab, var(--purple) 45%, var(--border-2)); }

.btn-soft {
  color: var(--text); background: var(--bg-2);
  border: 1px solid var(--border);
}
.btn-soft:hover { background: var(--bg-3); }

.btn-lg { height: 54px; padding: 0 28px; font-size: 16px; }
.btn-sm { height: 38px; padding: 0 15px; font-size: 13.5px; }
.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 520; font-size: 15px; color: var(--brand-text);
}
.link-arrow svg { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Chips / badges ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.02em;
  padding: 6px 12px; border-radius: var(--r-pill);
  background: var(--bg-2); border: 1px solid var(--border);
  color: var(--text-2);
}
.chip-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan-2); box-shadow: 0 0 0 3px color-mix(in oklab, var(--cyan) 22%, transparent); }
.chip-live .chip-dot { background: #22C55E; box-shadow: 0 0 0 3px rgba(34,197,94,.22); animation: pulse 2s infinite; }

.tag {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 6px;
  background: color-mix(in oklab, var(--purple) 12%, transparent);
  color: var(--brand-text);
  border: 1px solid color-mix(in oklab, var(--purple) 22%, transparent);
}
.tag.cyan { background: color-mix(in oklab, var(--cyan) 12%, transparent); color: var(--cyan-text); border-color: color-mix(in oklab, var(--cyan) 26%, transparent); }

/* ---------- Cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.glass {
  background: var(--glass);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--glass-brd);
}
.card-hover { transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s; }
.card-hover:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--border-2); }

/* hairline divider */
.hr { height: 1px; background: var(--border); border: 0; }

/* ---------- Aurora / backgrounds ---------- */
.aurora { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.aurora::before, .aurora::after {
  content: ""; position: absolute; border-radius: 50%;
  filter: blur(70px); opacity: .9;
}
.aurora::before {
  width: 60vw; height: 60vw; max-width: 760px; max-height: 760px;
  top: -22%; left: -8%;
  background: radial-gradient(circle, var(--aurora-1), transparent 66%);
  animation: drift1 22s var(--ease) infinite alternate;
}
.aurora::after {
  width: 52vw; height: 52vw; max-width: 680px; max-height: 680px;
  top: -10%; right: -10%;
  background: radial-gradient(circle, var(--aurora-2), transparent 66%);
  animation: drift2 26s var(--ease) infinite alternate;
}
.grid-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 78%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 78%);
}
.section > .wrap, .section > .wrap-wide { position: relative; z-index: 1; }

@keyframes drift1 { to { transform: translate(8%, 12%) scale(1.15); } }
@keyframes drift2 { to { transform: translate(-10%, 8%) scale(1.1); } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

/* ---------- Stat / counter ---------- */
.stat-val {
  font-size: clamp(34px, 4.4vw, 56px); font-weight: 600;
  letter-spacing: -0.04em; line-height: 1; color: var(--text);
  font-variant-numeric: tabular-nums;
}
.stat-val .unit { font-size: .55em; color: var(--text-3); margin-left: 2px; letter-spacing: -0.02em; }
.stat-label { color: var(--text-2); font-size: 14px; margin-top: 10px; }

/* ---------- Reveal animation (fail-safe: visible by default) ---------- */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .reveal.in { animation: nhReveal .8s var(--ease-out) forwards; }
  .reveal.in[data-d="1"] { animation-delay: .07s; }
  .reveal.in[data-d="2"] { animation-delay: .14s; }
  .reveal.in[data-d="3"] { animation-delay: .21s; }
  .reveal.in[data-d="4"] { animation-delay: .28s; }
  .reveal.in[data-d="5"] { animation-delay: .35s; }
}
@keyframes nhReveal { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
/* safety: once revealed, drop the animation so content can never stay hidden */
.reveal.shown { animation: none !important; opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; }
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.nh-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, border-color .3s, box-shadow .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nh-header.scrolled {
  background: var(--glass);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  border-bottom-color: var(--border);
}
.nh-nav { height: 66px; display: flex; align-items: center; gap: 24px; }
.nh-logo { display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: 18px; letter-spacing: -0.03em; flex-shrink: 0; }
.nh-logo-img { height: 26px; width: auto; display: block; }
.nh-logo-mark {
  width: 30px; height: 30px; border-radius: 9px;
  background: linear-gradient(135deg, var(--purple), var(--cyan-2));
  display: grid; place-items: center; color: #fff; font-weight: 700;
  box-shadow: 0 6px 16px -6px rgba(124,58,237,.7), inset 0 1px 0 rgba(255,255,255,.4);
  position: relative;
}
.nh-links { display: flex; align-items: center; gap: 2px; margin-left: 8px; }
.nh-link {
  position: relative; font-size: 14.5px; font-weight: 480; color: var(--text-2);
  padding: 8px 13px; border-radius: 9px; transition: color .2s, background .2s;
  display: inline-flex; align-items: center; gap: 5px;
}
.nh-link:hover { color: var(--text); background: var(--bg-2); }
.nh-link.active { color: var(--text); }
.nh-link svg { width: 13px; height: 13px; opacity: .6; }
.nh-spacer { flex: 1; }
.nh-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* dropdown */
.nh-drop { position: relative; }
.nh-drop-menu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  width: 460px; padding: 10px;
  background: var(--surface);
  border: 1px solid var(--border-2); border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
}
.nh-drop:hover .nh-drop-menu, .nh-drop:focus-within .nh-drop-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nh-drop-item { display: flex; gap: 11px; padding: 10px 11px; border-radius: 11px; transition: background .2s; }
.nh-drop-item:hover { background: var(--bg-2); }
.nh-drop-ico { width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0; display: grid; place-items: center; overflow: hidden; background: var(--bg-2); border: 1px solid var(--border); font-size: 16px; }
.nh-drop-ico img { width: 100%; height: 100%; object-fit: cover; }
.nh-drop-t { font-size: 14px; font-weight: 540; color: var(--text); }
.nh-drop-d { font-size: 12px; color: var(--text-3); margin-top: 1px; }

/* theme toggle */
.nh-theme {
  width: 40px; height: 40px; border-radius: var(--r-pill);
  display: grid; place-items: center; color: var(--text-2);
  border: 1px solid var(--border); background: var(--surface); transition: all .2s;
}
.nh-theme:hover { color: var(--text); border-color: var(--border-2); }
.nh-theme svg { width: 18px; height: 18px; }
.nh-theme .ico-sun { display: none; }
[data-theme="dark"] .nh-theme .ico-sun { display: block; }
[data-theme="dark"] .nh-theme .ico-moon { display: none; }

.nh-burger { display: none; width: 40px; height: 40px; border-radius: 11px; place-items: center; border: 1px solid var(--border); background: var(--surface); }
.nh-burger svg { width: 20px; height: 20px; }

/* mobile drawer */
.nh-mobile { position: fixed; inset: 0; z-index: 200; visibility: hidden; }
.nh-mobile.open { visibility: visible; }
.nh-mobile-scrim { position: absolute; inset: 0; background: rgba(2,4,12,.5); opacity: 0; transition: opacity .3s; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.nh-mobile.open .nh-mobile-scrim { opacity: 1; }
.nh-mobile-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(86vw, 360px);
  background: var(--bg); border-left: 1px solid var(--border);
  transform: translateX(100%); transition: transform .4s var(--ease);
  padding: 20px; display: flex; flex-direction: column; gap: 6px; overflow-y: auto;
}
.nh-mobile.open .nh-mobile-panel { transform: none; }
.nh-mobile-link { padding: 13px 14px; border-radius: 12px; font-size: 16px; font-weight: 500; color: var(--text); }
.nh-mobile-link:hover { background: var(--bg-2); }
.nh-mobile-game { display: flex; align-items: center; gap: 10px; }
.nh-mobile-sub { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); padding: 16px 14px 6px; }

/* ============================================================
   FOOTER
   ============================================================ */
.nh-footer { background: var(--bg-2); border-top: 1px solid var(--border); padding-block: clamp(56px, 7vw, 88px) 36px; position: relative; overflow: hidden; }
.nh-foot-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 40px 32px; }
.nh-foot-brand { max-width: 300px; }
.nh-foot-col h4 { font-size: 13px; font-weight: 600; letter-spacing: .02em; color: var(--text); margin-bottom: 16px; }
.nh-foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.nh-foot-col a { font-size: 14px; color: var(--text-2); transition: color .2s; }
.nh-foot-col a:hover { color: var(--brand-text); }
.nh-foot-social { display: flex; gap: 9px; margin-top: 20px; }
.nh-foot-soc { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; border: 1px solid var(--border); background: var(--surface); color: var(--text-2); transition: all .2s; }
.nh-foot-soc:hover { color: var(--text); border-color: var(--border-2); transform: translateY(-2px); }
.nh-foot-soc svg { width: 17px; height: 17px; }
.nh-foot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 48px; padding-top: 26px; border-top: 1px solid var(--border); }
.nh-foot-legal { font-size: 13px; color: var(--text-3); }
.nh-foot-verse { font-family: var(--mono); font-size: 12px; color: var(--text-3); font-style: italic; max-width: 460px; }

/* ============================================================
   Shared component bits used across pages
   ============================================================ */
/* feature list w/ check */
.flist { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.flist li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--text-2); }
.flist svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; color: var(--cyan-2); }

/* pricing */
.price { display: flex; align-items: baseline; gap: 3px; }
.price .cur { font-size: 16px; font-weight: 540; color: var(--text-2); }
.price .amt { font-size: 38px; font-weight: 600; letter-spacing: -0.035em; color: var(--text); font-variant-numeric: tabular-nums; }
.price .per { font-size: 14px; color: var(--text-3); }
.price-from { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 4px; }

/* generic grid helpers */
.grid { display: grid; gap: 22px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* spec row */
.spec { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.spec:last-child { border-bottom: 0; }
.spec dt { color: var(--text-3); display: flex; align-items: center; gap: 8px; }
.spec dd { color: var(--text); font-weight: 520; font-variant-numeric: tabular-nums; }

/* marquee logos */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: scrollx 38s linear infinite; align-items: center; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-logo { filter: grayscale(1) saturate(0) contrast(1.08); opacity: .9; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* glow ring used on icons */
.gico {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; flex-shrink: 0;
  background: linear-gradient(160deg, color-mix(in oklab, var(--purple) 16%, var(--surface)), var(--surface));
  border: 1px solid var(--border-2); color: var(--brand-text);
  box-shadow: var(--shadow-sm);
}
.gico svg { width: 24px; height: 24px; }
.gico.cyan { background: linear-gradient(160deg, color-mix(in oklab, var(--cyan) 16%, var(--surface)), var(--surface)); color: var(--cyan-text); }

/* CTA band */
.cta-band {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl);
  background: linear-gradient(120deg, #120A2E 0%, #0B1020 55%, #06181F 100%);
  border: 1px solid var(--border-2);
  padding: clamp(40px, 6vw, 80px);
  text-align: center;
}
.cta-band .display, .cta-band .h2, .cta-band .lead, .cta-band h2 { color: #fff; }
.cta-band .lead { color: #C6CDDD; }

/* responsive */
@media (max-width: 1080px) {
  .nh-links { display: none; }
  .nh-burger { display: grid; }
  .nh-foot-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .nh-foot-brand { grid-column: 1 / -1; max-width: none; }
}
@media (max-width: 760px) {
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .nh-actions .btn:not(.nh-cta-keep) { display: none; }
  .nh-foot-grid { grid-template-columns: 1fr 1fr; }
  .nh-foot-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 460px) {
  .nh-foot-grid { grid-template-columns: 1fr; }
}
