:root {
  --qr-navy: #0B1D3A;
  --qr-gold: #C49A5A;
  --qr-white: #FFFFFF;
  --qr-paper: #F7F4EE;
  --qr-mist: #F3EFE6;
  --qr-muted: #5C6B80;
  --qr-line: rgba(11, 29, 58, 0.1);
  --qr-gold-soft: rgba(196, 154, 90, 0.14);
  --qr-navy-soft: rgba(11, 29, 58, 0.06);
  --qr-shadow: 0 18px 50px rgba(11, 29, 58, 0.08);
  --qr-radius: 22px;
  --header-h: 76px;
  --max: 1180px;
  --font: "Inter", ui-sans-serif, system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--qr-white);
  color: var(--qr-navy);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.wrap {
  width: min(var(--max), calc(100% - 32px));
  max-width: 100%;
  min-width: 0;
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--qr-gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 1.5px;
  background: var(--qr-gold);
}

h1, h2, h3, h4 { margin: 0; letter-spacing: -0.035em; }
p { margin: 0; }

.section-head {
  max-width: 640px;
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: clamp(32px, 4.4vw, 48px);
  line-height: 1.12;
  margin-top: 10px;
}

.section-head p {
  margin-top: 14px;
  color: var(--qr-muted);
  font-size: 17px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: 0.2s ease;
  white-space: nowrap;
}

.btn-gold {
  background: var(--qr-gold);
  color: var(--qr-white);
  box-shadow: 0 8px 20px rgba(196, 154, 90, 0.28);
}

.btn-gold:hover { filter: brightness(1.05); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--qr-navy);
  border-color: rgba(11, 29, 58, 0.18);
}

.btn-ghost:hover { background: var(--qr-navy-soft); }

.btn-navy {
  background: var(--qr-navy);
  color: var(--qr-white);
}

.btn-navy:hover { background: #132a52; }

.btn-full { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--qr-line);
}

.site-header .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 1280px;
}

.logo {
  display: flex;
  align-items: center;
  min-width: 0;
  flex: 0 1 auto;
}

.logo img {
  display: block;
  height: 42px;
  width: auto;
  max-width: min(200px, 42vw);
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--qr-navy);
  color: var(--qr-gold);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
}

.nav-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 13.5px;
  font-weight: 500;
  color: #24364f;
  flex: 1;
  min-width: 0;
}

.nav-main a:hover { color: var(--qr-gold); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lang {
  font-size: 12px;
  font-weight: 700;
  color: var(--qr-muted);
  padding: 0 8px;
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--qr-line);
  background: #fff;
  border-radius: 10px;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--qr-line);
  background: #fff;
  padding: 16px 20px 22px;
}

.mobile-nav.open { display: grid; gap: 12px; }
.mobile-nav a { font-weight: 600; padding: 8px 0; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 54px 0 28px;
  background:
    radial-gradient(900px 420px at 80% 10%, rgba(196, 154, 90, 0.16), transparent 60%),
    radial-gradient(700px 380px at 10% 90%, rgba(11, 29, 58, 0.06), transparent 55%),
    linear-gradient(180deg, #FBF8F2 0%, #FFFFFF 70%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 29, 58, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 29, 58, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 70% 20%, #000 20%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.02;
  font-weight: 650;
  margin: 14px 0 18px;
}

.hero-lead {
  max-width: 520px;
  color: var(--qr-muted);
  font-size: 18px;
  margin-bottom: 28px;
}

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-media {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: var(--qr-navy);
  border: 1px solid rgba(196, 154, 90, 0.28);
  box-shadow: 0 24px 60px rgba(11, 29, 58, 0.16);
  aspect-ratio: 16 / 9;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-media-chips {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-media-chips span {
  background: rgba(255, 255, 255, 0.92);
  color: var(--qr-navy);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(11, 29, 58, 0.12);
}

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

.stat-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(11, 29, 58, 0.08);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--qr-shadow);
  min-height: 168px;
}

.stat-card .label {
  font-size: 13px;
  font-weight: 600;
  color: var(--qr-muted);
}

.stat-card .value {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin: 8px 0;
}

.stat-card .meta {
  font-size: 12px;
  color: #2f9d63;
  font-weight: 600;
}

.spark {
  margin-top: 18px;
  height: 46px;
  color: var(--qr-gold);
}

.mini-clock {
  margin-top: 18px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 8px solid var(--qr-navy);
  position: relative;
  box-shadow: 0 0 0 6px rgba(196, 154, 90, 0.18);
}

.mini-clock::before,
.mini-clock::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: bottom center;
  background: var(--qr-gold);
  border-radius: 2px;
}

.mini-clock::before {
  width: 3px;
  height: 24px;
  transform: translate(-50%, -100%) rotate(18deg);
}

.mini-clock::after {
  width: 2px;
  height: 30px;
  transform: translate(-50%, -100%) rotate(110deg);
}

.ai-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  margin-top: 28px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--qr-navy), #1a3a68);
  color: var(--qr-gold);
  font-size: 20px;
}

.hero-strip {
  position: relative;
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid var(--qr-line);
  border-radius: 18px;
  background: rgba(255,255,255,0.7);
}

.hero-strip strong { display: block; font-size: 14px; }
.hero-strip span { color: var(--qr-muted); font-size: 12px; }

/* Sections */
.section { padding: 92px 0; }
.section-alt { background: var(--qr-paper); }
.section-white { background: var(--qr-white); }

/* Clocks */
.clock-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.clock-card {
  background: #fff;
  border: 1px solid var(--qr-line);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(11, 29, 58, 0.04);
}

.clock-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}

.city { font-weight: 700; font-size: 18px; }
.code { color: var(--qr-muted); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; }

.badge {
  font-size: 12px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
}

.badge-open { background: #e8f7ee; color: #1f8a4c; }
.badge-closed { background: #f1f3f6; color: #6b7789; }

.clock-time {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}

.clock-sub { margin-top: 8px; color: var(--qr-muted); font-size: 13px; }

.timeline {
  margin-top: 28px;
  background: #fff;
  border: 1px solid var(--qr-line);
  border-radius: 18px;
  padding: 18px 20px 14px;
}

.timeline-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--qr-muted);
  margin-bottom: 14px;
}

.bars { display: grid; gap: 10px; }
.bar-row { display: grid; grid-template-columns: 42px 1fr; gap: 10px; align-items: center; }
.bar-row span { font-size: 11px; font-weight: 800; color: var(--qr-muted); }
.track {
  position: relative;
  height: 10px;
  background: #ece7dc;
  border-radius: 99px;
  overflow: hidden;
}
.track i {
  position: absolute;
  top: 0;
  height: 100%;
  background: var(--qr-gold);
  border-radius: 99px;
}
.track-now {
  position: absolute;
  top: -4px;
  bottom: -4px;
  width: 2px;
  background: var(--qr-navy);
  z-index: 2;
}
.hours {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 11px;
  color: var(--qr-muted);
  font-weight: 600;
}

/* Profiles */
.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.profile-card {
  background: #fff;
  border: 1px solid var(--qr-line);
  border-radius: 24px;
  padding: 28px;
}

.num {
  color: var(--qr-gold);
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.profile-card h3 { font-size: 28px; margin: 8px 0 10px; }
.profile-card p { color: var(--qr-muted); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 22px; }
.chip {
  background: var(--qr-mist);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
}

/* Conditions */
.cond-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.terminal {
  background: linear-gradient(180deg, #102544, var(--qr-navy));
  color: #fff;
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--qr-shadow);
  max-width: 100%;
  min-width: 0;
}

.term-top { display: flex; justify-content: space-between; align-items: center; }
.pair { font-weight: 800; letter-spacing: 0.04em; }
.price { font-size: 32px; font-weight: 700; }
.up { color: #7ddea8; font-size: 13px; font-weight: 700; }
.chart-line { margin: 18px 0; height: 90px; width: 100%; max-width: 100%; display: block; }
.term-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.term-stats div {
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 12px;
}
.term-stats small { color: rgba(255,255,255,0.6); }
.term-stats b { display: block; margin-top: 4px; }

.metric-list { display: grid; gap: 14px; max-width: 100%; min-width: 0; }
.metric {
  background: #fff;
  border: 1px solid var(--qr-line);
  border-radius: 18px;
  padding: 18px 20px;
}
.metric-top { display: flex; justify-content: space-between; align-items: baseline; }
.metric h3 { font-size: 22px; }
.metric .live { color: var(--qr-gold); font-size: 12px; font-weight: 800; }
.bar {
  height: 6px;
  background: #eee8dc;
  border-radius: 99px;
  margin: 12px 0 8px;
  overflow: hidden;
}
.bar span { display: block; height: 100%; background: var(--qr-gold); }
.metric p { color: var(--qr-muted); font-size: 14px; }

.ticker {
  margin-top: 28px;
  overflow: hidden;
  max-width: 100%;
  border: 1px solid var(--qr-line);
  border-radius: 14px;
  background: #fff;
}
.ticker-track {
  display: flex;
  gap: 28px;
  padding: 12px 0;
  width: max-content;
  max-width: none;
  animation: marquee 28s linear infinite;
  font-weight: 700;
  font-size: 13px;
}
.ticker b { color: var(--qr-gold); margin-left: 6px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Markets */
.market-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.market-card {
  background: #fff;
  border: 1px solid var(--qr-line);
  border-radius: 20px;
  padding: 22px 18px;
  min-height: 180px;
}

.market-card .count { color: var(--qr-gold); font-size: 12px; font-weight: 800; }
.market-card h3 { margin: 14px 0 8px; font-size: 22px; }
.market-card p { color: var(--qr-muted); font-size: 14px; }

/* Platform */
.tabs {
  display: flex;
  gap: 8px;
  margin: 8px 0 24px;
}

.tab {
  border: 1px solid var(--qr-line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  font-size: 13px;
  color: var(--qr-muted);
}

.tab.active {
  background: var(--qr-navy);
  color: #fff;
  border-color: var(--qr-navy);
}

.platform-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
}

.desk, .phone {
  background: #fff;
  border: 1px solid var(--qr-line);
  border-radius: 24px;
  padding: 18px;
  min-height: 360px;
}

.desk-head, .watch-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.watch { margin: 16px 0; display: grid; gap: 8px; }
.watch-row {
  background: var(--qr-paper);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
}

.chart-box {
  height: 150px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(196,154,90,0.12), transparent),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(11,29,58,0.05) 40px);
  position: relative;
  overflow: hidden;
}

.chart-box svg { width: 100%; height: 100%; }

.order-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.buy { background: #1f8a4c; color: #fff; border: 0; border-radius: 12px; height: 42px; font-weight: 800; }
.sell { background: #c44b4b; color: #fff; border: 0; border-radius: 12px; height: 42px; font-weight: 800; }

.phone {
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-frame {
  width: 230px;
  height: 420px;
  border-radius: 36px;
  background: var(--qr-navy);
  color: #fff;
  padding: 22px 16px;
  box-shadow: 0 20px 50px rgba(11,29,58,0.2);
}

.phone-frame small { color: var(--qr-gold); font-weight: 800; letter-spacing: 0.08em; }
.phone-frame h3 { margin: 8px 0 16px; }
.phone-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.phone-pills span {
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
}

/* Edge */
.edge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.edge-card {
  border: 1px solid var(--qr-line);
  border-radius: 20px;
  padding: 22px;
  background: #fff;
}

.edge-card .ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--qr-gold-soft);
  color: var(--qr-gold);
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 14px;
}

.edge-card p { color: var(--qr-muted); font-size: 14px; margin-top: 8px; }

.kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.kpi {
  background: var(--qr-navy);
  color: #fff;
  border-radius: 18px;
  padding: 22px;
  text-align: center;
}

.kpi b { display: block; font-size: 28px; color: var(--qr-gold); }
.kpi span { font-size: 13px; color: rgba(255,255,255,0.7); }

/* Accounts */
.account-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.account {
  border: 1px solid var(--qr-line);
  border-radius: 24px;
  padding: 22px;
  background: #fff;
  position: relative;
}

.account.popular {
  border-color: var(--qr-gold);
  box-shadow: 0 16px 40px rgba(196, 154, 90, 0.16);
}

.pop {
  position: absolute;
  top: -12px;
  right: 16px;
  background: var(--qr-gold);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 999px;
}

.account .kind { color: var(--qr-muted); font-size: 12px; font-weight: 800; letter-spacing: 0.08em; }
.account h3 { font-size: 28px; margin: 6px 0 14px; }
.spec { display: flex; justify-content: space-between; font-size: 14px; padding: 7px 0; border-bottom: 1px solid var(--qr-line); }
.spec b { color: var(--qr-navy); }
.account ul { padding-left: 18px; color: var(--qr-muted); font-size: 14px; }
.account .btns { display: grid; gap: 8px; margin-top: 16px; }

.leverage {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 28px 0 18px;
}

.lev {
  border: 1px solid var(--qr-line);
  border-radius: 14px;
  padding: 12px 16px;
  background: #fff;
  font-weight: 800;
}

.lev.active { background: var(--qr-navy); color: #fff; border-color: var(--qr-navy); }

.table-wrap {
  overflow-x: auto;
  max-width: 100%;
  border: 1px solid var(--qr-line);
  border-radius: 16px;
  background: #fff;
  -webkit-overflow-scrolling: touch;
}
table { width: 100%; border-collapse: collapse; min-width: 640px; }
th, td { text-align: left; padding: 12px 16px; font-size: 14px; border-bottom: 1px solid var(--qr-line); }
th { background: var(--qr-paper); font-size: 12px; letter-spacing: 0.04em; }

/* Funding */
.pay-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pay {
  background: #fff;
  border: 1px solid var(--qr-line);
  border-radius: 20px;
  padding: 22px;
}

.pay .speed { color: var(--qr-gold); font-size: 12px; font-weight: 800; }
.pay h3 { margin: 10px 0; }

.fund-kpis { display: flex; gap: 18px; margin-bottom: 22px; flex-wrap: wrap; }
.fund-kpis div { font-weight: 800; }
.fund-kpis span { display: block; color: var(--qr-gold); font-size: 28px; }

/* Onboarding */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step {
  background: #fff;
  border: 1px solid var(--qr-line);
  border-radius: 20px;
  padding: 20px;
  min-height: 220px;
}

.step .n { color: var(--qr-gold); font-weight: 800; font-size: 13px; }
.fake {
  margin-top: 14px;
  background: var(--qr-paper);
  border-radius: 12px;
  padding: 12px;
  font-size: 12px;
  color: var(--qr-muted);
}

/* FAQ */
.faq { display: grid; gap: 10px; max-width: 860px; }
.faq-item { background: #fff; border: 1px solid var(--qr-line); border-radius: 16px; overflow: hidden; }
.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 16px 18px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.faq-item .a { display: none; padding: 0 18px 16px; color: var(--qr-muted); }
.faq-item.open .a { display: block; }

/* CTA */
.final-cta {
  text-align: center;
  background:
    radial-gradient(600px 200px at 50% 0%, rgba(196,154,90,0.18), transparent 70%),
    var(--qr-paper);
}

.final-cta h2 { font-size: clamp(32px, 4vw, 48px); max-width: 720px; margin: 12px auto 16px; }
.final-cta p { color: var(--qr-muted); max-width: 560px; margin: 0 auto 24px; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-card, form {
  background: #fff;
  border: 1px solid var(--qr-line);
  border-radius: 20px;
  padding: 24px;
}

form { display: grid; gap: 12px; }
label { font-size: 13px; font-weight: 700; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--qr-line);
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
}

/* Footer */
.site-footer {
  background: var(--qr-navy);
  color: #d7deea;
  padding: 56px 0 24px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}

.site-footer h4 { color: var(--qr-gold); margin-bottom: 14px; font-size: 13px; letter-spacing: 0.08em; }
.site-footer a { display: block; margin: 8px 0; color: #d7deea; font-size: 14px; }
.site-footer a:hover { color: #fff; }
.foot-brand {
  margin-bottom: 12px;
}

.foot-brand img {
  height: 48px;
  width: auto;
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 6px 10px;
}
.risk {
  margin-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
  font-size: 12px;
  color: #9aa7bb;
  line-height: 1.6;
}

.legal-page { padding: 48px 0 80px; max-width: 800px; }
.legal-page h1 { font-size: 36px; margin-bottom: 16px; }
.legal-page p, .legal-page li { color: var(--qr-muted); margin: 10px 0; }

.hero,
.hero-grid,
.section,
.cond-grid,
.platform-grid,
.contact-grid {
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 1140px) {
  .nav-main { display: none; }
  .menu-btn { display: grid; place-items: center; }
  .hero-grid, .cond-grid, .platform-grid, .contact-grid, .profile-grid { grid-template-columns: 1fr; }
  .clock-grid, .market-grid, .edge-grid, .account-grid, .pay-grid, .steps, .kpis, .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .clock-grid, .market-grid, .edge-grid, .account-grid, .pay-grid, .steps, .kpis, .foot-grid, .stat-grid {
    grid-template-columns: 1fr;
  }
  .hero-strip { flex-direction: column; }
  .lang,
  .nav-actions > .btn-ghost { display: none; }
  .section { padding: 56px 0; }
  .logo img { height: 32px; max-width: min(150px, 40vw); }
  .site-header { height: 64px; }
  .site-header .wrap { gap: 8px; }
  .hero { padding: 28px 0 20px; }
  .hero h1 { font-size: clamp(28px, 8vw, 40px); }
  .hero-lead { font-size: 16px; }
  .btn { min-height: 40px; padding: 0 14px; font-size: 13px; }
  .phone-frame { width: min(230px, 100%); height: auto; min-height: 380px; }
  .metric-top { flex-wrap: wrap; gap: 6px; }
  .leverage { gap: 8px; }
  .wrap { width: calc(100% - 24px); }
}
