/* ================================================================
   SiteDeploy customer app — cart, checkout, configure, account.
   Design: clean white, 1px borders, no shadows, fully responsive.
   ================================================================ */

:root {
  --app-bg:        #ffffff;
  --app-surface:   #ffffff;
  --app-text:      #1c2b4a;
  --app-text-2:    #4b5876;
  --app-mute:      #6b7591;
  --app-border:    #e3e8f0;
  --app-border-2:  #d1d8e4;
  --app-accent:    #ed3a45;
  --app-accent-d:  #c8232e;
  --app-navy:      #1a2c5e;
  --app-bg-soft:   #f7f9fc;
  --app-green:     #1aab68;
  --app-red:       #b91c1c;
  --app-amber:     #b45309;
  --app-blue:      #1e40af;
}

.app-body { background: var(--app-bg); color: var(--app-text); }
.app-main { padding: 32px 0 80px; }
.app-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.app-container--narrow      { max-width: 460px; }
.app-container--narrow-wide { max-width: 760px; }

.app-h1 {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: var(--app-navy);
}
.app-h2 {
  font-size: clamp(17px, 2.6vw, 22px);
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--app-navy);
}
.app-sub {
  color: var(--app-text-2);
  font-size: 15px;
  margin: 0 0 24px;
}

.meta   { color: var(--app-mute); font-size: 13.5px; margin: 0; }
.hint   { color: var(--app-mute); font-size: 12.5px; line-height: 1.55; }
.optional { color: var(--app-mute); font-weight: 400; font-size: 12.5px; }
.muted  { color: var(--app-text-2); }
.muted.small { font-size: 13px; }
.small  { font-size: 13px; }

.back-link {
  font-size: 13.5px;
  color: var(--app-mute);
  margin: 0 0 18px;
}
.back-link a { color: var(--app-text-2); }
.back-link a:hover { color: var(--app-navy); }

/* ================================================================
   CARDS — white, 1px border, NO shadows
   ================================================================ */
.card {
  background: var(--app-surface);
  border: 1px solid var(--app-border);
  border-radius: 8px;
  padding: 22px;
  margin-bottom: 16px;
}
.card h3 {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--app-navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card--warn {
  border-color: #f0c14b;
  background: #fffbeb;
}
.panel-card h3 .status { font-size: 11px; }

/* ================================================================
   BUTTONS — color change on hover only, no shadows, no transforms
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 6px;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
  transition: background .12s ease, border-color .12s ease, color .12s ease;
  white-space: nowrap;
}
.btn--lg  { padding: 13px 22px; font-size: 15px; }
.btn--sm  { padding: 6px 12px;  font-size: 13px; }
.btn--block { width: 100%; }
.btn--primary {
  background: var(--app-accent);
  color: #fff;
}
.btn--primary:hover { background: var(--app-accent-d); color: #fff; }
.btn--outline {
  background: #fff;
  color: var(--app-navy);
  border-color: var(--app-border-2);
}
.btn--outline:hover { background: var(--app-bg-soft); border-color: var(--app-navy); }

/* ================================================================
   FORMS
   ================================================================ */
.field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 12px;
  font-size: 13.5px;
}
.field > span:not(.hint) {
  color: var(--app-text);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 14px;
  padding: 9px 12px;
  border: 1px solid var(--app-border-2);
  border-radius: 6px;
  background: #fff;
  color: var(--app-text);
  transition: border-color .12s ease;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--app-navy);
}

/* ================================================================
   STATUS PILLS — flat, 1px border
   ================================================================ */
.status {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 1px solid var(--app-border);
  background: #fff;
  color: var(--app-text-2);
  white-space: nowrap;
}
.status--running, .status--active, .status--ready  { color: var(--app-green); border-color: #a7f3d0; background: #f0fdf4; }
.status--initializing, .status--starting,
.status--provisioning, .status--installing         { color: var(--app-amber); border-color: #fcd34d; background: #fffbeb; }
.status--off, .status--suspended,
.status--failed, .status--canceled                 { color: var(--app-red); border-color: #fecaca; background: #fef2f2; }
.status--paid, .status--pending                    { color: var(--app-blue); border-color: #bfdbfe; background: #eff6ff; }
.status--none                                       { color: var(--app-mute); background: #fff; }

/* ================================================================
   PLANS — used on homepage tabs and /configure side panel
   ================================================================ */
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  align-items: stretch;
}
.plan {
  position: relative;
  background: #fff;
  border: 1px solid var(--app-border);
  border-radius: 8px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
}
.plan--featured {
  border-color: var(--app-accent);
}
.plan__badge {
  position: absolute;
  top: -10px;
  left: 18px;
  background: var(--app-accent);
  color: #fff;
  font-size: 10.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.plan header h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--app-navy);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.plan header p {
  font-size: 13px;
  color: var(--app-text-2);
  margin: 0 0 14px;
}

.plan__price {
  font-size: 36px;
  font-weight: 700;
  color: var(--app-navy);
  letter-spacing: -0.025em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  margin-bottom: 12px;
}
.plan__price span  { font-size: 18px; vertical-align: top; margin-right: 2px; color: var(--app-text-2); font-weight: 600; }
.plan__price sup   { font-size: 16px; font-weight: 600; color: var(--app-text-2); margin-left: 1px; vertical-align: top; }
.plan__price small { font-size: 13px; color: var(--app-mute); font-weight: 500; margin-left: 6px; }

.plan__list {
  list-style: none;
  padding: 12px 0;
  margin: 0;
  border-top: 1px solid var(--app-border);
  border-bottom: 1px solid var(--app-border);
}
.plan__list li {
  position: relative;
  padding: 5px 0 5px 18px;
  font-size: 13.5px;
  color: var(--app-text);
}
.plan__list li::before {
  content: '';
  position: absolute; left: 0; top: 11px;
  width: 9px; height: 5px;
  border-left: 1.5px solid var(--app-green);
  border-bottom: 1.5px solid var(--app-green);
  transform: rotate(-45deg);
}

/* ================================================================
   CART
   ================================================================ */
.cart {
  border: 1px solid var(--app-border);
  border-radius: 8px;
  padding: 4px 18px 18px;
  background: #fff;
}
.cart__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--app-border);
  gap: 14px;
}
.cart__row:last-of-type { border-bottom: none; }
.cart__item strong  { display: block; font-size: 15px; color: var(--app-navy); }
.cart__meta         { display: block; font-size: 12.5px; color: var(--app-mute); margin-top: 2px; }
.cart__spec         { display: block; font-size: 12.5px; color: var(--app-text-2); margin-top: 2px; }
.cart__right        { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.cart__price        { font-weight: 600; color: var(--app-navy); font-size: 14px; }
.link-remove {
  background: none; border: 0; padding: 0; cursor: pointer;
  font: inherit; color: var(--app-mute); font-size: 12.5px; text-decoration: underline;
}
.link-remove:hover { color: var(--app-accent); }
.cart__total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0 6px;
  border-top: 1px solid var(--app-border);
  font-size: 15px; color: var(--app-text-2);
  margin-top: 4px;
}
.cart__total strong { font-size: 18px; color: var(--app-navy); }
.cart__actions {
  display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap;
}
.cart__actions .btn { flex: 1; min-width: 140px; }

/* ================================================================
   CHECKOUT
   ================================================================ */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
  align-items: start;
}
.checkout-side { position: sticky; top: 80px; }
.summary-list { list-style: none; padding: 0; margin: 0 0 12px; }
.summary-list li {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 9px 0; border-bottom: 1px solid var(--app-border);
  font-size: 13.5px;
}
.summary-list li:last-child { border-bottom: 0; }
.summary-total {
  display: flex; justify-content: space-between;
  padding: 10px 0; border-top: 1px solid var(--app-border-2);
  font-size: 15px; font-weight: 600; color: var(--app-navy);
}

.tabs {
  display: flex; gap: 0;
  margin: 14px 0 16px;
  border-bottom: 1px solid var(--app-border);
}
.tab {
  font: inherit; cursor: pointer;
  background: none; border: 0;
  padding: 9px 14px;
  font-weight: 500; color: var(--app-mute);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.tab:hover { color: var(--app-navy); }
.tab.is-active { color: var(--app-navy); border-bottom-color: var(--app-accent); }
.tab-pane { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }

/* ================================================================
   DASHBOARD
   ================================================================ */
.dash-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 12px; margin-bottom: 24px;
}
.dash-head .app-h1 { margin-bottom: 2px; }
.empty-state {
  border: 1px dashed var(--app-border-2);
  border-radius: 8px;
  padding: 50px 24px;
  text-align: center;
  background: var(--app-bg-soft);
}
.empty-state p { color: var(--app-text-2); margin: 0 0 16px; font-size: 15px; }

.server-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}
.server-card {
  border: 1px solid var(--app-border);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
  display: flex; flex-direction: column;
}
.server-card header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px; gap: 10px;
}
.server-card h3 {
  margin: 0; font-size: 15px; color: var(--app-navy);
  word-break: break-all; font-weight: 600;
}

/* ================================================================
   KV (label → value) tables
   ================================================================ */
.kv {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 14px; row-gap: 6px;
  margin: 0 0 14px;
  font-size: 13.5px;
}
.kv dt { color: var(--app-mute); }
.kv dd { margin: 0; color: var(--app-text); word-break: break-all; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.kv code {
  background: var(--app-bg-soft);
  border: 1px solid var(--app-border);
  padding: 1px 6px; border-radius: 4px;
  font-size: 12.5px;
}
.kv a code { color: var(--app-text); }
.kv a:hover code { border-color: var(--app-navy); }
.reveal { cursor: pointer; user-select: all; }

.pending-list { list-style: none; padding: 0; margin: 0; }
.pending-list li {
  padding: 8px 0; border-bottom: 1px solid #f0e1a0;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-size: 13.5px;
}
.pending-list li:last-child { border-bottom: 0; }

/* ================================================================
   SERVER DETAIL — power grid, panel card
   ================================================================ */
.server-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 14px;
}
.panel-card .btn { margin-bottom: 14px; }
.installing-msg {
  background: var(--app-bg-soft);
  border: 1px solid var(--app-border);
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 13.5px;
  color: var(--app-text);
  margin: 0 0 10px;
}
.hint-list { padding-left: 18px; margin: 6px 0 0; }
.hint-list li { padding: 1px 0; }

.action-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.action-grid .btn { font-size: 13.5px; padding: 9px 10px; }

/* ================================================================
   ALERTS
   ================================================================ */
.alert {
  padding: 10px 14px; border-radius: 6px;
  margin-bottom: 16px; font-size: 13.5px;
  border: 1px solid transparent;
}
.alert--error   { background: #fef2f2; border-color: #fecaca; color: #991b1b; }
.alert--success { background: #f0fdf4; border-color: #a7f3d0; color: #065f46; }
.alert--info    { background: #eff6ff; border-color: #bfdbfe; color: #1e40af; }

.badge {
  display: inline-block;
  background: var(--app-accent); color: #fff;
  padding: 1px 6px; border-radius: 999px;
  font-size: 10.5px; font-weight: 600; line-height: 1.4;
  margin-left: 4px; vertical-align: middle;
}

.footer--slim { padding: 20px 0; }

/* ================================================================
   TEST-MODE BANNER (Stripe)
   ================================================================ */
.testmode-banner {
  background: #fef3c7;
  color: #78350f;
  border-bottom: 1px solid #fcd34d;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  letter-spacing: 0.02em;
}
.testmode-banner code {
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 12.5px;
  margin: 0 2px;
}

/* ================================================================
   AUTH TABS / PANES (checkout signup vs login)
   ================================================================ */
.auth-pane { display: none; flex-direction: column; gap: 12px; }
.auth-pane.is-active { display: flex; }
.auth-pane .btn { margin-top: 14px; }

/* ================================================================
   STRIPE PAYMENT FORM
   ================================================================ */
.stripe-form { display: flex; flex-direction: column; gap: 18px; }
.stripe-form .hint { text-align: center; }
#payment-element { min-height: 240px; }
.payment-loading {
  padding: 40px 20px;
  text-align: center;
  color: var(--app-mute);
  font-size: 13.5px;
  background: var(--app-bg-soft);
  border: 1px dashed var(--app-border-2);
  border-radius: 6px;
}
#payment-error { margin: 0; }

/* ================================================================
   APP SQUARE ICONS — replaces emojis everywhere
   ================================================================ */
.icon { stroke: currentColor; flex-shrink: 0; }

.icon-sq {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid var(--app-border);
  background: #fff;
  flex-shrink: 0;
  vertical-align: middle;
}
.icon-sq--sm { width: 26px; height: 26px; border-radius: 5px; }
.icon-sq--md { width: 34px; height: 34px; border-radius: 6px; }
.icon-sq--lg { width: 44px; height: 44px; border-radius: 8px; }

.icon-sq--navy   { background: #f0f3f9; color: var(--app-navy); border-color: #d6dde8; }
.icon-sq--red    { background: #fff0f0; color: var(--app-accent); border-color: #ffd6d6; }
.icon-sq--green  { background: #f0fdf4; color: #15803d; border-color: #b7f5cc; }
.icon-sq--amber  { background: #fffbeb; color: #b45309; border-color: #fde68a; }
.icon-sq--blue   { background: #eff6ff; color: #1d4ed8; border-color: #bfdbfe; }
.icon-sq--violet { background: #f5f3ff; color: #6d28d9; border-color: #ddd6fe; }
.icon-sq--gray   { background: #f3f4f6; color: #4b5563; border-color: #d1d5db; }

/* inline icon next to text */
.inline-icon { display: inline-flex; align-items: center; gap: 6px; }

/* ================================================================
   CONFIGURE PAGE — polished
   ================================================================ */
.configure-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
  align-items: start;
  margin-top: 12px;
}
.configure-side { position: static; }

.configure-main.card { padding: 32px; }

/* Step rhythm — equal vertical gap between every step (no borders) */
.config-step {
  margin-top: 32px;
  padding: 0;
}
.config-step:first-of-type { margin-top: 0; }

.config-h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--app-navy);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 28px;
}
.config-h3 .config-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: var(--app-navy);
  color: #fff;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
  line-height: 1;
}
.config-h3 .optional { margin-left: 6px; font-style: normal; }

.config-submit { margin-top: 36px; }

/* Hint text under fields — tight gap */
.field .hint { margin-top: 4px; }
.field { margin-bottom: 0; }

/* Availability degraded banner */
.avail-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  margin: 0 0 8px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 6px;
  font-size: 13px;
  color: #92400e;
  line-height: 1.45;
}
.avail-banner .icon { flex-shrink: 0; color: #b45309; }

/* Tighter mobile spacing */
@media (max-width: 640px) {
  .configure-main.card { padding: 22px 18px 26px; }
  .config-step { margin-top: 26px; }
  .config-h3 { font-size: 15px; margin-bottom: 12px; }
  .config-h3 .config-num { width: 24px; height: 24px; font-size: 12px; }
  .config-submit { margin-top: 28px; }
}

.loc-radio-grid,
.panel-radio-grid {
  display: grid;
  gap: 10px;
}
.loc-radio-grid   { grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); }
.panel-radio-grid { grid-template-columns: 1fr; }

.loc-radio,
.panel-radio { position: relative; display: block; cursor: pointer; }
.loc-radio input,
.panel-radio input {
  position: absolute; opacity: 0; pointer-events: none;
}

.loc-radio__inner {
  display: flex; flex-direction: column; gap: 3px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--app-border);
  border-radius: 8px;
  transition: border-color .12s ease, background .12s ease;
}
.loc-radio:hover .loc-radio__inner { background: var(--app-bg-soft); border-color: var(--app-border-2); }
.loc-radio input:checked + .loc-radio__inner {
  border-color: var(--app-accent);
  background: #fff5f5;
}
.loc-radio__inner strong {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11.5px;
  color: var(--app-navy);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.loc-radio__inner > span { font-size: 13.5px; color: var(--app-text); font-weight: 500; }
.loc-radio.is-off { cursor: not-allowed; }
.loc-radio.is-off .loc-radio__inner { opacity: 0.5; }
.loc-radio__status {
  font-size: 10.5px; font-weight: 600; margin-top: 4px; font-style: normal;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.loc-radio__status.on  { color: var(--app-green); }
.loc-radio__status.off { color: var(--app-mute); }

.panel-radio__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  row-gap: 4px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--app-border);
  border-radius: 8px;
  transition: border-color .12s ease, background .12s ease;
}
.panel-radio:hover .panel-radio__inner { background: var(--app-bg-soft); border-color: var(--app-border-2); }
.panel-radio input:checked + .panel-radio__inner {
  border-color: var(--app-accent);
  background: #fff5f5;
}
.panel-radio__icon { grid-row: 1 / span 3; align-self: center; }
.panel-radio__inner strong {
  font-size: 15px; color: var(--app-navy); font-weight: 600;
  grid-column: 2;
}
.panel-radio__desc {
  grid-column: 2;
  font-size: 13.5px; color: var(--app-text-2); line-height: 1.55;
}
.panel-radio__meta {
  grid-column: 2;
  font-size: 12px; color: var(--app-mute);
}

.config-price {
  font-size: 38px;
  font-weight: 700;
  color: var(--app-navy);
  letter-spacing: -0.025em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  margin-bottom: 12px;
}
.config-price span  { font-size: 18px; vertical-align: top; margin-right: 2px; color: var(--app-text-2); font-weight: 600; }
.config-price sup   { font-size: 16px; font-weight: 600; color: var(--app-text-2); margin-left: 1px; vertical-align: top; }
.config-price small { font-size: 13px; color: var(--app-mute); font-weight: 500; margin-left: 6px; }

.config-specs {
  list-style: none;
  padding: 12px 0 0;
  margin: 0;
  border-top: 1px solid var(--app-border);
}
.config-specs li {
  position: relative;
  padding: 5px 0 5px 18px;
  font-size: 13.5px;
  color: var(--app-text);
}
.config-specs li::before {
  content: '';
  position: absolute; left: 0; top: 11px;
  width: 9px; height: 5px;
  border-left: 1.5px solid var(--app-green);
  border-bottom: 1.5px solid var(--app-green);
  transform: rotate(-45deg);
}

/* ================================================================
   RESPONSIVE — mobile first improvements
   ================================================================ */
@media (max-width: 900px) {
  .configure-grid { grid-template-columns: 1fr; }
  .configure-side { position: static; }
  .checkout-grid  { grid-template-columns: 1fr; }
  .checkout-side  { position: static; }
}

@media (max-width: 640px) {
  .app-container { padding: 0 14px; }
  .app-main      { padding: 20px 0 60px; }
  .card          { padding: 16px; border-radius: 6px; }

  .dash-head { flex-direction: column; align-items: stretch; }
  .dash-head .btn { width: 100%; }

  .server-grid { grid-template-columns: 1fr; gap: 10px; }
  .server-detail-grid { grid-template-columns: 1fr; }

  .action-grid { grid-template-columns: 1fr; }

  .kv {
    grid-template-columns: 1fr;
    row-gap: 0;
  }
  .kv dt {
    padding-top: 8px;
    font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.04em;
  }
  .kv dt:first-of-type { padding-top: 0; }
  .kv dd { padding-bottom: 8px; border-bottom: 1px solid var(--app-border); }
  .kv dd:last-of-type { border-bottom: 0; padding-bottom: 0; }

  .loc-radio-grid { grid-template-columns: 1fr 1fr; }

  .cart__row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .cart__right { width: 100%; justify-content: space-between; }
  .cart__actions .btn { width: 100%; flex: 0 0 100%; }

  .config-h3   { font-size: 11px; margin: 18px 0 8px; padding-bottom: 5px; }
  .config-price { font-size: 32px; }

  .tabs { overflow-x: auto; }
  .tab  { white-space: nowrap; }

  .app-h1 { font-size: 22px; }
  .app-h2 { font-size: 17px; }
}

@media (max-width: 400px) {
  .loc-radio-grid { grid-template-columns: 1fr; }
}
