/* FxLiftPro — shared stylesheet */
:root {
  --bg: #0a1224;
  --bg-2: #0f1a33;
  --bg-3: #142242;
  --surface: #1a2950;
  --surface-2: #213365;
  --border: #2a3d72;
  --text: #e8edf7;
  --text-dim: #9fb0d1;
  --text-mute: #6b7ea3;
  --primary: #2f7bff;
  --primary-2: #4a90ff;
  --primary-dim: #1c5bd8;
  --accent: #f5b820;
  --accent-2: #ffd564;
  --success: #1fc77a;
  --danger: #ff5c5c;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(0,0,0,0.35);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.45);
  --maxw: 1240px;
  --nav-h: 72px;
  --tick-h: 36px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--primary-2); text-decoration: none; transition: color .15s; }
a:hover { color: var(--accent); }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 .5em; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.4rem; }
p { margin: 0 0 1em; color: var(--text-dim); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* === TICKER BAR === */
.ticker {
  background: linear-gradient(90deg, #050b18, #0a1224);
  border-bottom: 1px solid var(--border);
  height: var(--tick-h);
  overflow: hidden;
  position: relative;
  font-size: 13px;
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
}
.ticker-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: ticker 60s linear infinite;
  height: 100%;
  align-items: center;
  padding-left: 24px; /* start immediately from the left, small gutter */
}
.ticker-item { color: var(--text-dim); }
.ticker-item strong { color: var(--text); margin-right: 8px; }
.ticker-item .up { color: var(--success); }
.ticker-item .down { color: var(--danger); }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* === NAV === */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(10,18,36,0.85);
  backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.3rem; color: var(--text); }
.brand-pro {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-mark {
  width: 32px; height: 32px;
  display: block;
  flex: none;
  border-radius: 8px;
  /* SVG logo has its own background — no styling needed on the wrapper */
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--text-dim); font-weight: 500; font-size: 15px;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.nav-toggle { display: none; background: none; border: none; color: var(--text); cursor: pointer; padding: 8px; }
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 900px) {
  .nav-links { display: none; position: absolute; top: var(--nav-h); left: 0; right: 0; flex-direction: column; background: var(--bg-2); padding: 24px; gap: 16px; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-cta .btn-ghost { display: none; }
}

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .12s ease, box-shadow .15s ease, background .15s, color .15s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dim));
  color: #fff;
  box-shadow: 0 6px 24px rgba(47,123,255,.35);
}
.btn-primary:hover { transform: translateY(-1px); color: #fff; box-shadow: 0 10px 32px rgba(47,123,255,.5); }
.btn-accent {
  background: linear-gradient(135deg, var(--accent), #e0a200);
  color: #1a1300;
  box-shadow: 0 6px 24px rgba(245,184,32,.3);
}
.btn-accent:hover { transform: translateY(-1px); color: #1a1300; }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { background: var(--surface); color: var(--text); }
.btn-lg { padding: 16px 30px; font-size: 16px; }

/* === HERO === */
.hero {
  position: relative;
  padding: 80px 0 100px;
  background:
    linear-gradient(180deg, rgba(10,18,36,0.55), rgba(10,18,36,0.9)),
    url("hero-bg.svg") center center / cover no-repeat,
    var(--bg);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 80% -10%, rgba(47,123,255,.25), transparent),
    radial-gradient(600px 300px at 10% 100%, rgba(245,184,32,.12), transparent);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(47,123,255,.12);
  border: 1px solid rgba(47,123,255,.3);
  color: var(--primary-2);
  padding: 6px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  margin-bottom: 24px;
}
.hero-eyebrow .dot { width: 8px; height: 8px; background: var(--success); border-radius: 50%; box-shadow: 0 0 12px var(--success); animation: pulse 2s infinite; }
@keyframes pulse { 50% { opacity: .5; } }
.hero h1 { color: var(--text); }
.hero h1 span { background: linear-gradient(90deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lede { font-size: 1.15rem; max-width: 540px; }
.hero-cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 32px; margin-top: 40px; flex-wrap: wrap; }
.hero-trust .item { display: flex; gap: 10px; align-items: center; font-size: 14px; color: var(--text-dim); }
.hero-trust .item svg { width: 18px; height: 18px; color: var(--success); }

/* hero card / chart visual */
.hero-visual {
  position: relative;
  background: linear-gradient(180deg, var(--surface), var(--bg-3));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
}
.hv-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.hv-pair { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; }
.hv-pair .flag { width: 32px; height: 32px; border-radius: 50%; background: var(--bg-3); display: grid; place-items: center; font-size: 18px; }
.hv-price { text-align: right; }
.hv-price .big { font-size: 26px; font-weight: 800; font-family: 'JetBrains Mono', monospace; }
.hv-price .delta { font-size: 13px; color: var(--success); font-weight: 600; }
.hv-chart { height: 200px; position: relative; }
.hv-tabs { display: flex; gap: 6px; margin-bottom: 12px; }
.hv-tabs span { font-size: 12px; padding: 4px 10px; border-radius: 6px; background: var(--bg-3); color: var(--text-dim); }
.hv-tabs span.on { background: var(--primary); color: #fff; }
.hv-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.hv-stats .s { text-align: center; }
.hv-stats .s .lbl { font-size: 11px; color: var(--text-mute); text-transform: uppercase; letter-spacing: .08em; }
.hv-stats .s .val { font-size: 15px; font-weight: 700; font-family: 'JetBrains Mono', monospace; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 50px 0 70px; }
}

/* === SECTIONS === */
.section { padding: 90px 0; }
.section-tight { padding: 60px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.section-head .eyebrow { color: var(--accent); font-weight: 600; letter-spacing: .12em; font-size: 13px; text-transform: uppercase; margin-bottom: 12px; display: block; }
.section-head h2 { color: var(--text); }
.section-head p { font-size: 1.1rem; }

/* === STAT BAR === */
.stat-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat-grid .stat { text-align: center; }
.stat-grid .num { font-size: 2.2rem; font-weight: 800; background: linear-gradient(135deg, var(--primary-2), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-grid .lbl { color: var(--text-dim); font-size: 14px; margin-top: 4px; }
@media (max-width: 700px) { .stat-grid { grid-template-columns: repeat(2,1fr); } }

/* === FEATURE GRID === */
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.feat {
  background: linear-gradient(180deg, var(--surface), var(--bg-3));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.feat:hover { transform: translateY(-4px); border-color: var(--primary); box-shadow: var(--shadow); }
.feat .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(47,123,255,.2), rgba(245,184,32,.2));
  display: grid; place-items: center;
  margin-bottom: 18px;
  color: var(--primary-2);
}
.feat .icon svg { width: 24px; height: 24px; }
.feat h3 { color: var(--text); font-size: 1.15rem; }
.feat p { font-size: 15px; margin: 0; }
@media (max-width: 800px) { .feat-grid { grid-template-columns: 1fr; } }

/* === INSTRUMENTS GRID === */
.inst-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.inst {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex; align-items: center; gap: 16px;
  transition: all .2s;
}
.inst:hover { border-color: var(--accent); background: var(--surface); }
.inst .ico { width: 44px; height: 44px; border-radius: 10px; background: var(--bg-3); display: grid; place-items: center; color: var(--accent); }
.inst .ico svg { width: 22px; height: 22px; }
.inst h4 { margin: 0 0 4px; color: var(--text); font-size: 1rem; }
.inst small { color: var(--text-mute); font-size: 13px; }
@media (max-width: 800px) { .inst-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .inst-grid { grid-template-columns: 1fr; } }

/* === ACCOUNT CARDS === */
.acc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; align-items: stretch; }
.acc {
  background: linear-gradient(180deg, var(--surface), var(--bg-3));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.acc:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.acc.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, #1c2c5a, #142242);
}
.acc.featured::before {
  content: "MOST POPULAR";
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), #e0a200);
  color: #1a1300; padding: 5px 14px; border-radius: 999px;
  font-size: 11px; font-weight: 800; letter-spacing: .1em;
}
.acc h3 { font-size: 1.4rem; color: var(--text); margin-bottom: 6px; }
.acc .price { font-size: 2.2rem; font-weight: 800; color: var(--text); margin: 12px 0 2px; }
.acc .price small { font-size: .9rem; font-weight: 500; color: var(--text-dim); }
.acc .meta { color: var(--text-mute); font-size: 13px; margin-bottom: 22px; }
.acc ul { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.acc ul li { padding: 8px 0; color: var(--text-dim); font-size: 14px; display: flex; gap: 10px; align-items: flex-start; }
.acc ul li::before { content: ""; flex: none; width: 16px; height: 16px; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231fc77a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>"); background-size: contain; background-repeat: no-repeat; margin-top: 4px; }
.acc .btn { width: 100%; }
@media (max-width: 1000px) { .acc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .acc-grid { grid-template-columns: 1fr; } }

/* === TABLES === */
.tbl-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-2); }
table.compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.compare th, .compare td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.compare thead th { background: var(--bg-3); color: var(--text); font-weight: 700; }
.compare th:first-child, .compare td:first-child { color: var(--text-mute); font-weight: 600; }
.compare tbody tr:hover { background: var(--surface); }
.compare td { color: var(--text-dim); }

/* === TESTIMONIALS === */
.tst-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.tst {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}
.tst .stars { color: var(--accent); margin-bottom: 12px; font-size: 14px; letter-spacing: 2px; }
.tst p { color: var(--text); font-style: italic; margin-bottom: 18px; }
.tst .who { display: flex; align-items: center; gap: 12px; }
.tst .avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent)); display: grid; place-items: center; color: #fff; font-weight: 700; }
.tst .who small { display: block; color: var(--text-mute); font-size: 12px; }
.tst .who strong { color: var(--text); font-size: 14px; }
@media (max-width: 800px) { .tst-grid { grid-template-columns: 1fr; } }

/* === CTA BAND === */
.cta-band {
  margin: 0;
  padding: 70px 24px;
  background:
    radial-gradient(700px 300px at 20% 50%, rgba(47,123,255,.3), transparent),
    radial-gradient(500px 250px at 80% 50%, rgba(245,184,32,.18), transparent),
    var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.cta-band h2 { color: var(--text); }
.cta-band p { font-size: 1.1rem; max-width: 600px; margin: 0 auto 30px; }
.cta-band .row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* === FOOTER === */
.footer {
  background: #050b18;
  padding: 70px 0 30px;
  border-top: 1px solid var(--border);
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.foot-grid h5 { color: var(--text); font-size: 14px; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 16px; }
.foot-grid ul { list-style: none; padding: 0; margin: 0; }
.foot-grid li { margin-bottom: 10px; }
.foot-grid a { color: var(--text-mute); font-size: 14px; }
.foot-grid a:hover { color: var(--text); }
.foot-grid .about p { font-size: 14px; color: var(--text-mute); }
.foot-socials { display: flex; gap: 12px; margin-top: 18px; }
.foot-socials a { width: 36px; height: 36px; border-radius: 50%; background: var(--bg-3); display: grid; place-items: center; color: var(--text-dim); }
.foot-socials a:hover { background: var(--primary); color: #fff; }
.foot-socials svg { width: 16px; height: 16px; }
.foot-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--text-mute); font-size: 13px; }
.foot-disclaimer { font-size: 12px; color: var(--text-mute); line-height: 1.6; margin-top: 24px; padding: 18px; background: rgba(255,92,92,.05); border: 1px solid rgba(255,92,92,.2); border-radius: 10px; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .foot-grid { grid-template-columns: 1fr; } }

/* === FORMS === */
.form-card {
  background: linear-gradient(180deg, var(--surface), var(--bg-3));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--text-dim); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(47,123,255,.2);
}
.field textarea { min-height: 120px; resize: vertical; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* === FAQ === */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::after { content: "+"; font-size: 22px; color: var(--accent); transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .ans { padding: 0 22px 20px; color: var(--text-dim); }

/* === PAGE HEADER (sub pages) === */
.page-head {
  position: relative;
  padding: 90px 0 70px;
  background:
    linear-gradient(180deg, rgba(15,26,51,0.6), rgba(15,26,51,0.95)),
    url("hero-bg.svg") center center / cover no-repeat,
    var(--bg-2);
  border-bottom: 1px solid var(--border);
  text-align: center;
  overflow: hidden;
}
.page-head .container { position: relative; z-index: 1; }
.page-head h1 { margin-bottom: 14px; }
.page-head p { max-width: 700px; margin: 0 auto; font-size: 1.1rem; }
.crumb { color: var(--text-mute); font-size: 13px; margin-bottom: 16px; }
.crumb a { color: var(--text-mute); }
.crumb a:hover { color: var(--accent); }

/* === UTILITIES === */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.muted { color: var(--text-mute); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 800px) { .grid-2 { grid-template-columns: 1fr; } }
.badge { display: inline-block; padding: 3px 10px; border-radius: 999px; background: rgba(47,123,255,.15); color: var(--primary-2); font-size: 12px; font-weight: 600; }
.badge-accent { background: rgba(245,184,32,.15); color: var(--accent); }
.badge-success { background: rgba(31,199,122,.15); color: var(--success); }
.badge-ai { display:inline-block; padding:4px 12px; border-radius:999px; background: linear-gradient(135deg, rgba(120,80,255,.18), rgba(47,123,255,.18)); color:#a99dff; border:1px solid rgba(120,80,255,.35); font-size:12px; font-weight:600; margin-bottom:14px; }
.badge-ai::before { content:"✦ "; color:#9d8dff; }
.acc-grid-7 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; align-items: stretch; }
@media (max-width: 1200px) { .acc-grid-7 { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 900px)  { .acc-grid-7 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px)  { .acc-grid-7 { grid-template-columns: 1fr; } }
table.compare-7 { min-width: 1100px; }

/* === Education cards === */
.edu-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.edu {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform .2s, border-color .2s;
}
.edu:hover { transform: translateY(-3px); border-color: var(--primary); }
.edu .tag { font-size: 12px; color: var(--accent); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.edu h4 { color: var(--text); margin: 8px 0; font-size: 1.05rem; }
.edu p { font-size: 14px; margin-bottom: 14px; }
.edu .meta { font-size: 12px; color: var(--text-mute); display: flex; gap: 12px; }
@media (max-width: 800px) { .edu-grid { grid-template-columns: 1fr; } }

/* === Platform tiles === */
.plat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.plat {
  background: linear-gradient(180deg, var(--surface), var(--bg-3));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.plat:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plat .pico { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 16px; background: linear-gradient(135deg, rgba(47,123,255,.2), rgba(245,184,32,.2)); display: grid; place-items: center; color: var(--accent); }
.plat .pico svg { width: 32px; height: 32px; }
.plat h3 { color: var(--text); }
.plat .dl { display: flex; gap: 8px; justify-content: center; margin-top: 18px; flex-wrap: wrap; }
.plat .dl a { font-size: 13px; padding: 8px 14px; border: 1px solid var(--border); border-radius: 8px; color: var(--text-dim); }
.plat .dl a:hover { border-color: var(--primary); color: var(--text); }
@media (max-width: 800px) { .plat-grid { grid-template-columns: 1fr; } }
; color: var(--text); }
@media (max-width: 800px) { .plat-grid { grid-template-columns: 1fr; } }
lumns: 1fr; } }
