/* ============================================================
   HYDRA CAPITAL — global styles
   ============================================================ */

:root {
  --bg: #05080a;
  --bg-soft: #080d0f;
  --panel: #0a1311;
  --panel-2: #0d1815;
  --line: #16261f;
  --line-bright: #1f3a2e;
  --green: #00c46a;
  --green-bright: #00ffb3;
  --text: #e9f3ee;
  --muted: #7e938a;
  --dim: #55665f;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: rgba(0,255,179,.25); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--line-bright); border-radius: 5px; }

h1, h2, h3 { font-family: 'Unbounded', sans-serif; font-weight: 700; line-height: 1.25; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-bright);
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--green), var(--green-bright));
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: border-color .3s;
  border-bottom: 1px solid transparent;
}
/* background/blur live on a pseudo-element (not on .nav itself) so that
   backdrop-filter never turns .nav into a containing block for its
   position:fixed descendants (the mobile nav-links panel) */
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: transparent;
  transition: background .3s, backdrop-filter .3s;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav.scrolled::before {
  background: rgba(5,8,10,.85);
  backdrop-filter: blur(16px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  font-family: 'Unbounded';
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .5px;
}
.brand span { color: var(--green-bright); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color .2s;
}
.nav-links a:hover { color: var(--green-bright); }

.nav-right { display: flex; align-items: center; gap: 18px; }

.lang-dd { position: relative; }
.lang-dd summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  border: 1px solid var(--line-bright);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text);
  transition: border-color .2s, color .2s;
}
.lang-dd summary::-webkit-details-marker { display: none; }
.lang-dd summary:hover { border-color: var(--green); color: var(--green-bright); }
.lang-dd summary .chev { font-size: 9px; color: var(--muted); transition: transform .2s; }
.lang-dd[open] summary .chev { transform: rotate(180deg); }
.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 168px;
  background: var(--panel);
  border: 1px solid var(--line-bright);
  border-radius: 14px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 20px 50px -12px rgba(0,0,0,.7);
  z-index: 60;
}
.lang-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 12px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s, background .2s;
}
.lang-menu a:hover { color: var(--text); background: rgba(0,196,106,.07); }
.lang-menu a.active { color: var(--green-bright); background: rgba(0,255,179,.1); }
.lang-menu a i {
  font-style: normal;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--dim);
}
.lang-menu a.active i { color: var(--green); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 12px;
  font-family: 'Manrope';
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
}
.btn-primary {
  background: linear-gradient(120deg, var(--green), var(--green-bright));
  color: #04140c;
  box-shadow: 0 8px 30px -8px rgba(0,255,179,.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -8px rgba(0,255,179,.55); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-bright);
}
.btn-ghost:hover { border-color: var(--green); color: var(--green-bright); }
.nav .btn { padding: 10px 22px; font-size: 14px; }

/* ============ MOBILE NAV TOGGLE ============ */
.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  flex: none;
  border: 1px solid var(--line-bright);
  border-radius: 10px;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: border-color .2s;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform .3s ease, opacity .2s ease;
}
body.nav-open .nav-toggle { border-color: var(--green); }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-cta-mobile { display: none; }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 180px 0 90px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -300px; right: -200px;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(0,196,106,.13), transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(22,38,31,.35) 1px, transparent 1px), linear-gradient(90deg, rgba(22,38,31,.35) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 20%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 900;
  letter-spacing: -1px;
  margin: 24px 0;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--green), var(--green-bright));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p.lead {
  color: var(--muted);
  font-size: 17px;
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-mark { display: flex; justify-content: center; }
.hero-mark svg { filter: drop-shadow(0 0 60px rgba(0,255,179,.25)); }

@keyframes drawgrow {
  0% { stroke-dashoffset: 340; opacity: 0; }
  15% { opacity: 1; }
  60%, 100% { stroke-dashoffset: 0; opacity: 1; }
}
.hydra-line { stroke-dasharray: 340; animation: drawgrow 4.5s ease-out infinite; }
.hydra-line.d2 { animation-delay: .25s; }
.hydra-line.d3 { animation-delay: .5s; }

/* stats row */
.stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 80px;
}
.stat {
  background: var(--panel);
  padding: 34px 28px;
}
.stat b {
  display: block;
  font-family: 'Unbounded';
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 900;
  color: var(--green-bright);
  letter-spacing: -0.5px;
}
.stat span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--dim);
  text-transform: uppercase;
}

/* ============ SECTIONS ============ */
section { padding: 110px 0; }
.sec-head { max-width: 640px; margin-bottom: 56px; }
.sec-head h2 { font-size: clamp(26px, 3.2vw, 40px); margin-top: 20px; letter-spacing: -0.5px; }
.sec-head p { color: var(--muted); margin-top: 16px; }

/* geography marquee */
.geo { padding: 70px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.geo .sec-head { margin-bottom: 40px; }
.marquee { overflow: hidden; position: relative; }
.marquee::before, .marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-soft), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--bg-soft), transparent); }
.marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: scrollx 44s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes scrollx { to { transform: translateX(-50%); } }
.geo-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  padding: 14px 26px;
  border: 1px solid var(--line-bright);
  border-radius: 100px;
  background: var(--panel);
  font-weight: 700;
  font-size: 15px;
}
.geo-chip .flag {
  font-size: 22px;
  line-height: 1;
  font-style: normal;
  margin-right: 2px;
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: start;
}
.about-text h2 { font-size: clamp(26px, 3.2vw, 40px); margin: 20px 0 28px; }
.about-text p { color: var(--muted); margin-bottom: 20px; }
.about-text p strong { color: var(--text); }
.about-text p b.gr { color: var(--green-bright); font-weight: 800; }

.dash {
  border: 1px solid var(--line-bright);
  border-radius: 24px;
  background: linear-gradient(160deg, var(--panel-2), var(--panel));
  padding: 32px;
  position: sticky;
  top: 100px;
}
.dash-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.dash-head .t { font-family: 'Unbounded'; font-weight: 700; font-size: 15px; }
.dash-head .s { font-size: 12px; color: var(--dim); letter-spacing: 1px; }
.dash-rows { padding: 10px 0; }
.dash-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(22,38,31,.6);
  font-size: 14.5px;
}
.dash-row span { color: var(--muted); }
.dash-row b { font-weight: 800; }
.dash-row b.ok { color: var(--green-bright); }
.status-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-bright);
  margin-right: 8px;
  box-shadow: 0 0 12px var(--green-bright);
  animation: pulse 1.8s infinite;
}
@keyframes pulse { 50% { opacity: .35; } }
.live-label {
  margin-top: 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--dim);
}
.live-feed { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; min-height: 132px; }
.live-item {
  display: flex;
  justify-content: space-between;
  padding: 11px 16px;
  background: rgba(0,196,106,.06);
  border: 1px solid rgba(0,196,106,.14);
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  animation: slidein .45s ease both;
}
.live-item .geo-tag { color: var(--green); font-weight: 800; }
@keyframes slidein { from { opacity: 0; transform: translateY(-8px); } }

/* ============ HOW ============ */
.how { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.how-intro { color: var(--muted); max-width: 760px; margin-bottom: 56px; font-size: 17px; }
.how-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.how-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
  padding: 36px;
  transition: border-color .3s, transform .3s;
}
.how-card:hover { border-color: var(--line-bright); transform: translateY(-4px); }
.how-card .ic {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(0,196,106,.1);
  border: 1px solid rgba(0,196,106,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.how-card h3 { font-size: 17px; margin-bottom: 14px; }
.how-card p { color: var(--muted); font-size: 15px; }

/* ============ CONDITIONS ============ */
.cond-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.cond-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px 32px 34px;
  background: linear-gradient(170deg, var(--panel-2), transparent);
  overflow: hidden;
  transition: border-color .3s;
}
.cond-card:hover { border-color: var(--green); }
.cond-card .n {
  font-family: 'Unbounded';
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 2px;
}
.cond-card h3 { font-size: 26px; margin: 18px 0 10px; color: var(--green-bright); }
.cond-card p { color: var(--muted); font-size: 15px; }
.cond-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border: 1px solid var(--line-bright);
  background: var(--panel);
  border-radius: 18px;
  padding: 28px 32px;
}
.cond-note p { color: var(--muted); font-size: 15px; max-width: 520px; }

/* ============ ADVANTAGES ============ */
.adv { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.adv-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
  padding: 34px 30px;
  transition: border-color .3s, transform .3s;
}
.adv-card:hover { border-color: var(--line-bright); transform: translateY(-4px); }
.adv-card .n {
  font-family: 'Unbounded';
  font-size: 12px;
  color: var(--dim);
  letter-spacing: 2px;
}
.adv-card h3 { font-size: 16.5px; margin: 16px 0 12px; }
.adv-card p { color: var(--muted); font-size: 14.5px; }
.adv-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  text-align: center;
}
.adv-stat b {
  display: block;
  font-family: 'Unbounded';
  font-size: 34px;
  font-weight: 900;
  color: var(--green-bright);
}
.adv-stat span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--dim);
  text-transform: uppercase;
}

/* ============ FAQ ============ */
.faq-list { max-width: 820px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color .3s;
}
.faq-item[open] { border-color: var(--line-bright); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  font-weight: 800;
  font-size: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  flex: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-bright);
  font-size: 16px;
  font-weight: 400;
  transition: transform .3s, background .3s;
}
.faq-item[open] summary .plus { transform: rotate(45deg); background: rgba(0,255,179,.1); }
.faq-item .a { padding: 0 28px 26px; color: var(--muted); font-size: 15px; max-width: 700px; }

/* ============ CONTACT ============ */
.contact-card {
  position: relative;
  border: 1px solid var(--line-bright);
  border-radius: 28px;
  background: linear-gradient(150deg, var(--panel-2), var(--panel));
  padding: 70px 60px;
  text-align: center;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  bottom: -260px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(0,255,179,.12), transparent 65%);
  pointer-events: none;
}
.contact-card .eyebrow { justify-content: center; }
.contact-card h2 { font-size: clamp(24px, 3vw, 36px); position: relative; margin-top: 18px; }
.contact-card > p { color: var(--muted); margin: 18px auto 36px; max-width: 520px; position: relative; }
.tg-handle {
  font-family: 'Unbounded';
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 700;
  color: var(--green-bright);
  text-decoration: none;
  position: relative;
}
.tg-handle:hover { text-decoration: underline; }
.contact-warn {
  margin-top: 34px;
  font-size: 13px;
  color: var(--dim);
  position: relative;
}

/* ============ FOOTER ============ */
footer { border-top: 1px solid var(--line); padding: 60px 0 40px; background: var(--bg-soft); }
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.foot-grid.cols-4 { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
.foot-grid p { color: var(--muted); font-size: 14px; margin-top: 16px; max-width: 320px; }
.foot-grid h4 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--dim);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.foot-grid ul { list-style: none; }
.foot-grid li { margin-bottom: 10px; }
.foot-grid a { color: var(--muted); text-decoration: none; font-size: 14.5px; transition: color .2s; }
.foot-grid a:hover { color: var(--green-bright); }
.foot-bottom {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--dim);
}

/* ============ MARKETS (country links) ============ */
.markets { background: var(--bg-soft); border-top: 1px solid var(--line); }
.market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.market-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  padding: 26px 28px;
  text-decoration: none;
  color: var(--text);
  transition: border-color .3s, transform .3s;
}
.market-card:hover { border-color: var(--green); transform: translateY(-3px); }
.market-card b {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Unbounded';
  font-size: 15px;
  font-weight: 700;
}
.market-card b i {
  font-style: normal;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--green);
}
.market-card span {
  display: block;
  margin-top: 10px;
  font-size: 13.5px;
  color: var(--muted);
}

/* ============ BREADCRUMBS ============ */
.crumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--dim);
  margin-bottom: 22px;
}
.crumbs a { color: var(--muted); text-decoration: none; transition: color .2s; }
.crumbs a:hover { color: var(--green-bright); }
.crumbs .sep { color: var(--dim); }

/* reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  .nav-right > .btn-primary { display: none; }

  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    margin: 0;
    padding: 8px 24px 32px;
    background: rgba(5,8,10,.98);
    backdrop-filter: blur(20px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
  }
  body.nav-open .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-links li { border-bottom: 1px solid var(--line); }
  .nav-links a {
    display: block;
    padding: 19px 2px;
    font-size: 17px;
    font-weight: 700;
  }
  .nav-cta-mobile { display: block; border-bottom: none; margin-top: 18px; }
  .nav-cta-mobile .btn { width: 100%; padding: 16px 22px; font-size: 16px; }
  body.nav-open { overflow: hidden; }

  .market-grid { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-mark { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .dash { position: static; }
  .how-grid { grid-template-columns: 1fr; }
  .cond-grid, .adv-grid { grid-template-columns: 1fr; }
  .adv-stats { grid-template-columns: 1fr; gap: 32px; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-card { padding: 50px 28px; }
  section { padding: 80px 0; }
  .hero { padding: 140px 0 70px; }
}

/* ---- Phones: dedicated mobile design, not just a squeezed desktop ---- */
@media (max-width: 640px) {
  .wrap { padding: 0 18px; }
  body { font-size: 15px; line-height: 1.65; }

  .nav-inner { height: 64px; }
  .nav-links { top: 64px; }
  .brand { font-size: 13.5px; gap: 8px; }
  .brand svg { width: 28px; height: 28px; }
  .nav-right { gap: 10px; }
  .lang-dd summary { padding: 7px 10px; font-size: 11.5px; }

  section { padding: 60px 0; }
  .hero { padding: 100px 0 44px; }
  .sec-head { margin-bottom: 36px; }
  .eyebrow { font-size: 11px; letter-spacing: 2px; }

  .hero h1 { margin: 16px 0; letter-spacing: -.5px; }
  .hero p.lead { font-size: 15.5px; max-width: none; margin-bottom: 28px; }
  .hero-cta { flex-direction: column; gap: 12px; }
  .hero-cta .btn { width: 100%; }

  .stats { grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 44px; border-radius: 16px; }
  .stat { padding: 22px 16px; }
  .stat b { font-size: clamp(22px, 7vw, 28px); }
  .stat span { font-size: 10.5px; letter-spacing: 1px; }

  .geo { padding: 44px 0; }
  .geo-chip { padding: 10px 18px; font-size: 13.5px; gap: 8px; }
  .geo-chip .flag { font-size: 17px; }
  .marquee::before, .marquee::after { width: 40px; }

  .about-text h2, .sec-head h2 { margin: 14px 0 18px; }
  .about-text p { font-size: 14.5px; margin-bottom: 16px; }
  .dash { padding: 22px; border-radius: 18px; }
  .dash-row { font-size: 13.5px; padding: 11px 0; }
  .live-feed { min-height: 110px; }

  .how-intro { font-size: 15px; margin-bottom: 36px; }
  .how-card { padding: 24px 22px; border-radius: 16px; }
  .how-card h3 { font-size: 16px; }
  .how-card p { font-size: 14px; }

  .cond-card { padding: 28px 22px 24px; border-radius: 16px; }
  .cond-card h3 { font-size: 22px; }
  .cond-note { padding: 22px 22px; flex-direction: column; align-items: stretch; text-align: left; }
  .cond-note .btn { width: 100%; }

  .adv-card { padding: 26px 22px; border-radius: 16px; }
  .adv-stat b { font-size: 28px; }

  .faq-item summary { padding: 18px 20px; font-size: 15px; gap: 14px; }
  .faq-item .a { padding: 0 20px 22px; font-size: 14px; }
  .faq-item summary .plus { width: 24px; height: 24px; font-size: 15px; }

  .contact-card { padding: 40px 22px; border-radius: 20px; }
  .contact-card > p { margin: 14px auto 28px; }
  .contact-warn { margin-top: 26px; }

  footer { padding: 44px 0 28px; }
  .foot-grid { gap: 30px; margin-bottom: 34px; }
  .foot-bottom { flex-direction: column; text-align: center; padding-top: 22px; }

  .market-card { padding: 22px 20px; }
  .crumbs { font-size: 12px; margin-bottom: 18px; }
}

@media (max-width: 420px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { padding: 20px 14px; }
  .nav-right { gap: 8px; }
  .lang-dd summary span.chev { display: none; }
  .hero h1 { letter-spacing: -.3px; }
  .adv-stats { gap: 22px; }
}
