*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0b12;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-hover: rgba(255, 255, 255, 0.07);
  --border: rgba(218, 216, 225, 0.12);
  --text: #f4f3f7;
  --muted: #9b96ad;
  --accent: #dad8e1;
  --accent-2: #79728f;
  --gold: #c9a962;
  --glow: rgba(121, 114, 143, 0.35);
  --radius: 14px;
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Ambient background */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: drift 18s ease-in-out infinite alternate;
}

.ambient__orb--1 {
  width: 55vw;
  height: 55vw;
  top: -15%;
  left: -10%;
  background: radial-gradient(circle, #2a2540 0%, transparent 70%);
}

.ambient__orb--2 {
  width: 45vw;
  height: 45vw;
  bottom: -10%;
  right: -8%;
  background: radial-gradient(circle, #1a2035 0%, transparent 70%);
  animation-delay: -6s;
}

.ambient__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(218, 216, 225, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(218, 216, 225, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 80%);
}

@keyframes drift {
  to { transform: translate(4%, 6%) scale(1.08); }
}

/* Header */
.header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px clamp(20px, 4vw, 48px);
}

.header__logo-mini {
  border-radius: 8px;
  object-fit: contain;
}

.header__tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--surface);
}

/* Hero layout */
.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 48px) clamp(20px, 4vw, 48px) 120px;
  min-height: calc(100vh - 80px);
  min-height: calc(100dvh - 80px);
}

/* Logo / Globe */
.logo-globe {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-globe__stage {
  position: relative;
  width: min(420px, 85vw);
  height: min(420px, 85vw);
}

.logo-globe__logo-wrap,
.logo-globe__canvas-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-globe__logo-wrap {
  flex-direction: column;
  gap: 16px;
  opacity: 1;
  transform: scale(1);
}

.logo-globe__logo {
  width: min(220px, 50vw);
  height: auto;
  filter: drop-shadow(0 0 40px var(--glow));
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
              filter 0.5s ease;
  cursor: grab;
}

.logo-globe__logo:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 0 60px rgba(201, 169, 98, 0.35));
}

.logo-globe__hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: pulse-hint 2.5s ease-in-out infinite;
}

@keyframes pulse-hint {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.logo-globe__canvas-wrap {
  opacity: 0;
  transform: scale(0.85);
  pointer-events: none;
}

.logo-globe.is-active .logo-globe__logo-wrap {
  opacity: 0;
  transform: scale(1.15);
  pointer-events: none;
}

.logo-globe.is-active .logo-globe__canvas-wrap {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

#globeCanvas {
  width: 100% !important;
  height: 100% !important;
  cursor: grab;
  border-radius: 50%;
}

#globeCanvas:active { cursor: grabbing; }

.logo-globe__country {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: min(320px, calc(100vw - 32px));
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 2;
}

.logo-globe__country.visible { opacity: 1; }

.country-card {
  padding: 14px 16px;
  background: rgba(10, 11, 18, 0.92);
  border: 1px solid var(--border);
  border-radius: 16px;
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.country-card__name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
}

.country-card__hint {
  margin: 0 0 10px;
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.country-card__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 14px;
  margin: 0;
}

.country-card__fact {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.country-card__fact dt {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.country-card__fact dd {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text);
  line-height: 1.35;
}

.country-card__meta {
  color: var(--muted);
  font-size: 0.7rem;
}

.country-card__loading {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
}

/* Content */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.eyebrow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink 1.8s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--gold); }
  50% { opacity: 0.4; box-shadow: none; }
}

.headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.headline__accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subhead {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 36px;
  font-weight: 300;
}

/* Form */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 480px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  backdrop-filter: blur(20px);
}

.lead-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  position: relative;
}

.field input,
.field select {
  width: 100%;
  padding: 18px 14px 8px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.field select {
  padding-top: 22px;
  cursor: pointer;
}

.field select option {
  background: var(--bg);
  color: var(--text);
}

.field label {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  color: var(--muted);
  pointer-events: none;
  transition: all 0.2s ease;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(121, 114, 143, 0.2);
}

.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field select:valid + label,
.field select:focus + label {
  top: 10px;
  transform: none;
  font-size: 0.7rem;
  color: var(--accent-2);
}

.optional { font-weight: 400; opacity: 0.7; }

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.checkbox input { display: none; }

.checkbox__box {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.2);
  transition: all 0.2s;
  position: relative;
}

.checkbox input:checked + .checkbox__box {
  background: var(--accent-2);
  border-color: var(--accent-2);
}

.checkbox input:checked + .checkbox__box::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox a { color: var(--accent); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent-2) 0%, #5a5470 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(121, 114, 143, 0.35);
}

.btn--primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(121, 114, 143, 0.45);
}

.btn--primary:disabled { opacity: 0.6; cursor: not-allowed; }

.btn__loader {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.form-status {
  font-size: 0.85rem;
  min-height: 1.2em;
  text-align: center;
}

.form-status.success { color: #6dd4a0; }
.form-status.error { color: #f08080; }

/* Stats */
.stats {
  display: flex;
  gap: clamp(24px, 4vw, 48px);
  margin-top: 36px;
  flex-wrap: wrap;
}

.stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
}

.stat__label {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Market wire ticker */
.news-ticker {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: stretch;
  height: 52px;
  background: linear-gradient(180deg, #08090f 0%, #0c0e16 100%);
  border-top: 1px solid rgba(46, 204, 113, 0.2);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px);
}

.news-ticker__label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2ecc71;
  white-space: nowrap;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
  background: rgba(46, 204, 113, 0.06);
}

.news-ticker__live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 8px rgba(46, 204, 113, 0.8);
  animation: blink 1.2s ease-in-out infinite;
}

.news-ticker__track-wrap {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
}

.news-ticker__track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: scroll-news 120s linear infinite;
  padding-left: 100%;
}

.news-ticker__track:hover { animation-play-state: paused; }

@keyframes scroll-news {
  to { transform: translateX(-100%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: #d8dce8;
}

.ticker-item__tag {
  font-family: 'DM Sans', ui-monospace, monospace;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.ticker-item__tag--markets {
  color: #2ecc71;
  background: rgba(46, 204, 113, 0.12);
  border: 1px solid rgba(46, 204, 113, 0.25);
}

.ticker-item__tag--news {
  color: #5dade2;
  background: rgba(93, 173, 226, 0.12);
  border: 1px solid rgba(93, 173, 226, 0.25);
}

.ticker-item__tag--history {
  color: #f1c40f;
  background: rgba(241, 196, 15, 0.12);
  border: 1px solid rgba(241, 196, 15, 0.25);
}

.ticker-item__tag--quote {
  color: #bb8fce;
  background: rgba(187, 143, 206, 0.12);
  border: 1px solid rgba(187, 143, 206, 0.25);
}

.ticker-item__change {
  font-family: ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}

.ticker-item__change--up { color: #2ecc71; }
.ticker-item__change--down { color: #e74c3c; }
.ticker-item__change--flat { color: #95a5a6; }

.ticker-item__link,
.ticker-item__text {
  color: inherit;
  text-decoration: none;
  max-width: 420px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ticker-item__link:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ticker-item--up .ticker-item__text,
.ticker-item--up .ticker-item__link { color: #eafaf1; }

.ticker-item--down .ticker-item__text,
.ticker-item--down .ticker-item__link { color: #fdecea; }

.ticker-item__meta {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
}

.ticker-sep {
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.5rem;
  flex-shrink: 0;
}

.news-ticker__loading {
  font-size: 0.82rem;
  color: var(--muted);
  padding: 0 20px;
}

/* Chat */
.chat-fab {
  position: fixed;
  bottom: 72px;
  right: 24px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--accent-2), #5a5470);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.chat-fab:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 36px rgba(121, 114, 143, 0.5);
}

.chat-fab__icon--close { display: none; }
.chat-fab.is-open .chat-fab__icon--open { display: none; }
.chat-fab.is-open .chat-fab__icon--close { display: block; }

.chat-fab__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--accent-2);
  animation: chat-pulse 2s ease-out infinite;
  pointer-events: none;
}

.chat-fab.is-open .chat-fab__pulse { display: none; }

@keyframes chat-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.35); opacity: 0; }
}

.chat-panel {
  position: fixed;
  bottom: 140px;
  right: 24px;
  z-index: 199;
  width: min(380px, calc(100vw - 32px));
  height: 480px;
  background: rgba(14, 15, 24, 0.97);
  border: 1px solid var(--border);
  border-radius: 20px;
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: translateY(16px) scale(0.96);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 0.3s;
  pointer-events: none;
}

.chat-panel.is-open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.chat-panel__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.chat-panel__header img { border-radius: 8px; }

.chat-panel__header strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.chat-panel__header span {
  font-size: 0.75rem;
  color: #6dd4a0;
}

.chat-panel__messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.88rem;
  line-height: 1.5;
  animation: msg-in 0.3s ease;
}

@keyframes msg-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.chat-msg--bot {
  align-self: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
}

.chat-msg--user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--accent-2), #5a5470);
  color: #fff;
}

.chat-msg--typing {
  align-self: flex-start;
  display: flex;
  gap: 4px;
  padding: 14px 18px;
}

.chat-msg--typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
  animation: typing 1.2s ease-in-out infinite;
}

.chat-msg--typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-msg--typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.chat-panel__input {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid var(--border);
}

.chat-panel__input input {
  flex: 1;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.88rem;
}

.chat-panel__input input:focus {
  outline: none;
  border-color: var(--accent-2);
}

.chat-panel__input button {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 12px;
  background: var(--accent-2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.chat-panel__input button:hover { background: #5a5470; }

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal[hidden] {
  display: none;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.modal__content {
  position: relative;
  max-width: 480px;
  padding: 32px;
  background: #12131c;
  border: 1px solid var(--border);
  border-radius: 20px;
  z-index: 1;
}

.modal__content h2 {
  font-family: var(--font-display);
  margin-bottom: 16px;
}

.modal__content p {
  color: var(--muted);
  margin-bottom: 12px;
  font-size: 0.92rem;
}

.modal__content a { color: var(--accent); }

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

.modal__content--country {
  max-width: 560px;
  width: 100%;
  max-height: min(85vh, 720px);
  overflow-y: auto;
  padding: 28px;
}

.country-modal__loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 24px 0;
  color: var(--muted);
  text-align: center;
}

.country-modal__spinner-logo {
  opacity: 0.7;
  animation: pulse-logo 1.4s ease-in-out infinite;
}

@keyframes pulse-logo {
  0%, 100% { opacity: 0.45; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1); }
}

.country-modal__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  padding-right: 28px;
}

.country-modal__flag {
  width: 80px;
  height: 54px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
}

.country-modal__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 4px;
  color: var(--text);
}

.country-modal__capital {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.country-modal__capital strong {
  color: var(--accent);
  font-weight: 600;
}

.country-modal__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin: 0 0 20px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.country-modal__fact {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.country-modal__fact dt {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.country-modal__fact dd {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text);
}

.country-modal__news-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin: 0 0 12px;
  color: var(--accent);
}

.country-modal__news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.country-modal__news-item {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.country-modal__news-item a {
  display: block;
  color: var(--text);
  text-decoration: none;
  font-size: 0.86rem;
  line-height: 1.45;
  margin-bottom: 4px;
}

.country-modal__news-item a:hover {
  color: var(--accent);
}

.country-modal__news-time {
  font-size: 0.72rem;
  color: var(--muted);
}

.country-modal__news-empty {
  color: var(--muted);
  font-size: 0.85rem;
  padding: 8px 0;
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 100px;
  }

  .hero__visual { order: -1; }

  .subhead { margin-left: auto; margin-right: auto; }

  .lead-form { margin: 0 auto; }

  .stats { justify-content: center; }

  .lead-form__row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .news-ticker__label { padding: 0 12px; font-size: 0.65rem; }
  .chat-fab { right: 16px; bottom: 64px; width: 52px; height: 52px; }
  .chat-panel { right: 16px; bottom: 124px; height: 420px; }
}