/* ============================================================
   TOKENS — light mode (default) · identique à maps.nodeweave-project.com
   ============================================================ */
:root {
  --bg:        #eef1f6;
  --bg-alt:    #f3f5f9;
  --surface:   #ffffff;
  --border:    #d0d8e0;
  --text:      #111827;
  --text-muted:#4b5563;
  --text-dim:  #9ca3af;
  --accent:    #0ba360;
  --accent-d:  rgba(11,163,96,.13);
  --accent-2:  #1a6fd4;
  --accent-2d: rgba(26,111,212,.1);
  --amber:     #d97706;
  --red:       #dc2626;
  --purple:    #7c3aed;
  --shadow:    0 2px 12px rgba(0,0,0,.1);
  --nav-bg:    rgba(238,241,246,.92);
  --radius:    8px;
  --radius-lg: 12px;
  --font:      'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-mono: 'Courier New', monospace;
  --nav-h:     52px;
  --transition: .15s ease;
}

/* ============================================================
   TOKENS — dark mode · html[data-th=dark]
   ============================================================ */
html[data-th=dark] {
  --bg:        #04080e;
  --bg-alt:    #09111f;
  --surface:   #0d1928;
  --border:    #17243a;
  --text:      #c8daf0;
  --text-muted:#6b8aaa;
  --text-dim:  #243550;
  --accent:    #00d47e;
  --accent-d:  rgba(0,212,126,.1);
  --accent-2:  #38a1ff;
  --accent-2d: rgba(56,161,255,.1);
  --amber:     #fbbf24;
  --red:       #f87171;
  --purple:    #a78bfa;
  --shadow:    0 4px 24px rgba(0,0,0,.45);
  --nav-bg:    rgba(4,8,14,.88);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
details { cursor: pointer; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  width: min(100%, 1200px);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.container--narrow { width: min(100%, 740px); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .625rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn--lg    { padding: .875rem 2rem; font-size: 1.05rem; }
.btn--sm    { padding: .45rem .9rem; font-size: .85rem; }
.btn--block { width: 100%; }

.btn--primary { background: var(--accent); color: #fff; border: 1px solid var(--accent); }
.btn--primary:hover { filter: brightness(1.1); }

.btn--outline { border: 1px solid var(--accent); color: var(--accent); }
.btn--outline:hover { background: var(--accent-d); }

.btn--ghost { border: 1px solid var(--border); color: var(--text); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

/* dark: primary text stays black (bright green bg) */
html[data-th=dark] .btn--primary { color: #000; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--nav-bg);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition), background var(--transition), border-color var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav__inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
}
.nav__logo-icon { width: 26px; height: 26px; }

.nav__links {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
}
.nav__links a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--text); }

/* ── THEME TOGGLE ── */
.theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  flex-shrink: 0;
}
.theme-btn:hover { border-color: var(--accent); color: var(--accent); }
.theme-btn svg { width: 16px; height: 16px; pointer-events: none; }
/* show correct icon per mode */
.theme-btn .icon-moon { display: block; }
.theme-btn .icon-sun  { display: none; }
html[data-th=dark] .theme-btn .icon-moon { display: none; }
html[data-th=dark] .theme-btn .icon-sun  { display: block; }

/* ── BURGER ── */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__drawer {
  display: none;
  flex-direction: column;
  gap: .25rem;
  padding: 1rem 1.5rem 1.5rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.nav__drawer a {
  padding: .65rem .75rem;
  border-radius: var(--radius);
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}
.nav__drawer a:hover { color: var(--text); background: var(--surface); }
.nav__drawer.open { display: flex; }

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */
.lang-switcher { position: relative; flex-shrink: 0; }

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .7rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: .8rem;
  font-family: var(--font-mono);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color var(--transition), color var(--transition);
  line-height: 1;
}
.lang-btn:hover { border-color: var(--accent); color: var(--accent); }
.lang-arrow { font-size: .65rem; opacity: .7; }

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 160px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  z-index: 200;
  overflow: hidden;
  padding: .3rem;
}
.lang-dropdown.open { display: block; }

.lang-option {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem .85rem;
  border-radius: var(--radius);
  font-size: .85rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: background var(--transition), color var(--transition);
  user-select: none;
}
.lang-option:hover  { background: var(--bg-alt); color: var(--text); }
.lang-option.active { color: var(--accent); background: var(--accent-d); }
.lang-flag { font-size: 1rem; line-height: 1; }

/* mobile lang switcher */
.lang-switcher--mobile {
  margin-bottom: .5rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
}
.lang-switcher--mobile .lang-btn {
  width: 100%;
  justify-content: flex-start;
  padding: .65rem .75rem;
  font-size: .88rem;
}
.lang-switcher--mobile .lang-dropdown {
  position: static;
  display: none;
  border: none;
  box-shadow: none;
  background: transparent;
  padding: 0;
  margin-top: .25rem;
}
.lang-switcher--mobile .lang-dropdown.open { display: block; }
.lang-switcher--mobile .lang-option { padding: .5rem .5rem; font-size: .88rem; }

/* mobile theme toggle inside drawer */
.theme-btn--mobile {
  width: auto;
  padding: .65rem .75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  justify-content: flex-start;
  gap: .65rem;
  font-size: .88rem;
  color: var(--text-muted);
  font-family: var(--font);
}
.theme-btn--mobile .theme-label { font-weight: 500; }

@media (max-width: 768px) {
  #lang-menu-anchor,
  #theme-btn-desktop { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
#mesh-canvas { width: 100%; height: 100%; opacity: .25; }
html[data-th=dark] #mesh-canvas { opacity: .3; }

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-block: 5rem 3rem;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-d);
  border: 1px solid rgba(11,163,96,.3);
  padding: .3rem .85rem;
  border-radius: 999px;
  margin-bottom: 1.75rem;
}
html[data-th=dark] .hero__tag { border-color: rgba(0,212,126,.3); }

.hero__title {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.03em;
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  max-width: 600px;
  margin-inline: auto;
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}
.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.hero__stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.stat__num {
  display: block;
  font-family: var(--font-mono);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat__num::after { content: '+'; }
.stat__label {
  display: block;
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: .3rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-family: var(--font-mono);
}
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  animation: bounce 2s ease-in-out infinite;
  z-index: 1;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding-block: 6rem; }
.section--alt { background: var(--bg-alt); }
.section__head { text-align: center; margin-bottom: 3.5rem; }
.section__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}
.section__head h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: .75rem;
}
.section__head p { color: var(--text-muted); max-width: 560px; margin-inline: auto; font-size: 1.05rem; }

/* ============================================================
   STEPS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
}
.step:hover { border-color: var(--accent); transform: translateY(-3px); }
.step__icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px;
}
.step__icon svg { width: 100%; height: 100%; }
.step__icon--1 { background: var(--accent-d);          color: var(--accent); }
.step__icon--2 { background: var(--accent-2d);         color: var(--accent-2); }
.step__icon--3 { background: rgba(217,119,6,.1);       color: var(--amber); }
.step__icon--4 { background: rgba(124,58,237,.1);      color: var(--purple); }
html[data-th=dark] .step__icon--3 { background: rgba(251,191,36,.1); }
html[data-th=dark] .step__icon--4 { background: rgba(167,139,250,.1); }

.step__body h3 { font-size: .975rem; font-weight: 600; margin-bottom: .4rem; }
.step__body p  { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }

/* arch diagram */
.arch-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .25rem;
  margin-bottom: .75rem;
}
.arch-node {
  padding: .45rem .9rem;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 700;
  border: 1.5px solid;
}
.arch-node--you   { background: var(--accent-d);  border-color: var(--accent);   color: var(--accent); }
.arch-node--relay { background: var(--accent-2d); border-color: var(--accent-2); color: var(--accent-2); }
.arch-node--dest  { background: var(--accent-d);  border-color: var(--accent);   color: var(--accent); }
.arch-line {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  position: relative;
}
.arch-line::after {
  content: '';
  position: absolute;
  right: -1px; top: -4px;
  border: 5px solid transparent;
  border-left-color: var(--accent-2);
}
.arch-caption { text-align: center; font-size: .8rem; color: var(--text-muted); font-family: var(--font-mono); }

/* ============================================================
   CARDS
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.1rem;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
}
.card:hover { border-color: var(--accent); transform: translateY(-3px); }
.card__icon { font-size: 1.75rem; margin-bottom: .85rem; }
.card h3 { font-size: .975rem; font-weight: 600; margin-bottom: .45rem; }
.card p  { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   MAP LEAFLET
   ============================================================ */
.map-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
#leaflet-map { height: 460px; width: 100%; background: var(--bg); }

.map-footer {
  padding: .85rem 1.25rem;
  font-size: .8rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  font-family: var(--font-mono);
  background: var(--surface);
}
.map-footer a { color: var(--accent); }
.map-footer a:hover { text-decoration: underline; }

.map-live-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
  background: var(--accent-d);
  border: 1px solid rgba(11,163,96,.25);
  padding: .2rem .65rem;
  border-radius: 999px;
}
html[data-th=dark] .map-live-badge { border-color: rgba(0,212,126,.25); }
.map-live-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }

/* Leaflet — light mode (default) */
.leaflet-container { font-family: var(--font); }
.leaflet-tile-pane { filter: none; }
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  color: var(--text) !important;
  box-shadow: var(--shadow) !important;
  border-radius: var(--radius) !important;
}
.leaflet-popup-content-wrapper { padding: 0 !important; }
.leaflet-popup-content { margin: 0 !important; }
.popup-inner { padding: 10px 13px; font-size: 12px; }
.popup-inner strong { color: var(--accent); font-family: var(--font-mono); display: block; margin-bottom: 4px; }
.popup-inner span   { color: var(--text-muted); font-size: 11px; font-family: var(--font-mono); }
.leaflet-control-zoom a {
  background: var(--surface) !important;
  border-color: var(--border) !important;
  color: var(--text) !important;
}
.leaflet-control-zoom a:hover { background: var(--bg-alt) !important; color: var(--accent) !important; }
.leaflet-control-attribution {
  background: rgba(238,241,246,.85) !important;
  color: var(--text-dim) !important;
  font-size: 10px !important;
}
.leaflet-control-attribution a { color: var(--text-muted) !important; }

/* Leaflet — dark mode */
html[data-th=dark] .leaflet-tile-pane         { filter: brightness(.7) saturate(.5); }
html[data-th=dark] .leaflet-control-attribution { background: rgba(4,8,14,.8) !important; }

/* ============================================================
   TIERS
   ============================================================ */
.tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  align-items: start;
}
.tier {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color var(--transition), background var(--transition);
}
.tier--featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, var(--accent-d), var(--surface));
}
.tier__badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .2rem .6rem;
  border-radius: 999px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.tier__badge--featured { background: var(--accent); border-color: var(--accent); color: #fff; }
html[data-th=dark] .tier__badge--featured { color: #000; }
.tier__title { font-size: 1.2rem; font-weight: 700; margin-bottom: .25rem; }
.tier__price { font-family: var(--font-mono); font-size: 1.75rem; font-weight: 700; color: var(--accent); margin-bottom: .75rem; line-height: 1; }
.tier__desc  { font-size: .88rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.tier__list  { margin-bottom: 1.75rem; display: flex; flex-direction: column; gap: .5rem; }
.tier__list li {
  font-size: .88rem;
  color: var(--text-muted);
  padding-left: 1.4rem;
  position: relative;
}
.tier__list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { display: flex; flex-direction: column; gap: .6rem; }
.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), background var(--transition);
}
.faq__item[open] { border-color: var(--accent); }
.faq__q {
  list-style: none;
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: .95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
  transition: color var(--transition);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__q:hover { color: var(--accent); }
.faq__a { padding: 0 1.25rem 1.1rem; font-size: .88rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--accent-d), var(--accent-2d));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 5rem;
}
.cta-band__inner { text-align: center; }
.cta-band__inner h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; letter-spacing: -.02em; margin-bottom: .75rem; }
.cta-band__inner p  { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-band__buttons  { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding-top: 4rem; }
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer__brand .nav__logo { margin-bottom: .75rem; }
.footer__brand p { font-size: .85rem; color: var(--text-muted); max-width: 260px; }
.footer__links { display: flex; gap: 3rem; flex-wrap: wrap; }
.footer__col { display: flex; flex-direction: column; gap: .55rem; }
.footer__col h4 { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); margin-bottom: .25rem; font-family: var(--font-mono); }
.footer__col a { font-size: .85rem; color: var(--text-muted); transition: color var(--transition); }
.footer__col a:hover { color: var(--text); }
.footer__bottom { border-top: 1px solid var(--border); padding-block: 1.1rem; font-size: .78rem; color: var(--text-muted); text-align: center; font-family: var(--font-mono); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .nav__links,
  .nav > .div > .btn { display: none; }
  .nav__burger { display: flex; }
  .nav__drawer { display: none; }
  .nav { height: auto; }
  .nav__inner { height: var(--nav-h); }
  #lang-menu-anchor,
  #theme-btn-desktop { display: none; }
  .footer__inner  { grid-template-columns: 1fr; }
  .footer__links  { gap: 2rem; }
  .steps          { grid-template-columns: 1fr; }
  .arch-diagram   { display: none; }
  .hero__stats    { gap: 2rem; }
  #leaflet-map    { height: 340px; }
  .map-footer     { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .section        { padding-block: 4rem; }
  .hero__content  { padding-block: 4rem 2rem; }
  .tiers          { grid-template-columns: 1fr; }
  .cards          { grid-template-columns: 1fr; }
  .hero__stats    { flex-direction: column; gap: 1.5rem; }
  #leaflet-map    { height: 280px; }
}
