/* =========================================================
   Tiny Agent · styles
   DA inspirée de tiny.place (noir neutre, accent bleu)
   ========================================================= */

:root {
  /* Surfaces */
  --bg: #050505;
  --bg-2: #0a0b0a;
  --surface: rgba(255, 255, 255, 0.025);
  --surface-2: rgba(255, 255, 255, 0.04);
  --border: #1b1f1c;
  --border-strong: #2a302b;

  /* Texte */
  --fg: #fafafa;
  --muted: #a3a3a3;
  --muted-2: #6f7570;

  /* Brand accent : tiny.place blue */
  --accent: #3b82f6;
  --accent-bright: #60a5fa;
  --accent-deep: #2563eb;
  --glow-accent: rgba(59, 130, 246, 0.30);

  /* Secondary / decorative */
  --violet: #8d54ff;
  --blue: #3b82f6;
  --amber: #f99c00;

  /* Trading semantics (up = green, down = red) */
  --up: #16c784;
  --red: #fb2c36;

  /* Type */
  --font-display: "Google Sans Flex", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Layout */
  --maxw: 1180px;
  --radius: 16px;
  --radius-sm: 11px;
  --radius-lg: 24px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Halos d'ambiance */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 600px at 15% -5%, rgba(59, 130, 246, 0.08), transparent 60%),
    radial-gradient(800px 600px at 95% 0%, rgba(141, 84, 255, 0.06), transparent 55%),
    radial-gradient(700px 700px at 50% 110%, rgba(59, 130, 246, 0.05), transparent 60%);
  pointer-events: none;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 75%);
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -0.02em; }

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

.section { padding: 96px 0; position: relative; }
.section-sm { padding: 64px 0; }

/* ---------- Helpers texte ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--glow-accent);
}
.section-head { max-width: 660px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4.2vw, 46px); margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 17px; }

.grad-text {
  background: linear-gradient(120deg, var(--accent-bright), var(--accent-deep) 55%, var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s var(--ease), box-shadow 0.25s var(--ease), background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-deep));
  color: #fff;
  box-shadow: 0 8px 28px -8px var(--glow-accent), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 38px -8px var(--glow-accent), inset 0 1px 0 rgba(255, 255, 255, 0.3); }
.btn-ghost {
  background: var(--surface);
  border-color: var(--border-strong);
  color: var(--fg);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: var(--surface-2); border-color: #3a423b; transform: translateY(-2px); }
.btn-lg { padding: 15px 28px; font-size: 16px; border-radius: 13px; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(5, 5, 5, 0.55);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.header.scrolled { border-bottom-color: var(--border); background: rgba(5, 5, 5, 0.82); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 17px; letter-spacing: -0.01em; }
.brand img { width: 28px; height: 28px; }
.brand .dot { color: var(--accent); }
.nav-links { display: flex; gap: 30px; }
.nav-links a { color: var(--muted); font-size: 14.5px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--fg); }
.only-mobile { display: none; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: 0; color: var(--fg); cursor: pointer; }

/* ---------- Hero ---------- */
.hero { padding: 76px 0 72px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.badge-pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 6px 13px 6px 7px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  border-radius: 100px;
  font-size: 13px; color: var(--muted);
  margin-bottom: 26px;
}
.badge-pill b { color: var(--fg); font-weight: 600; }
.badge-pill .tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
  color: var(--accent); background: rgba(59, 130, 246, 0.14);
  padding: 3px 8px; border-radius: 100px;
}
.hero h1 { font-size: clamp(40px, 6.2vw, 70px); margin-bottom: 22px; }
.hero .lede { font-size: clamp(17px, 2vw, 19.5px); color: var(--muted); max-width: 540px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note { display: flex; align-items: center; gap: 18px; margin-top: 26px; color: var(--muted-2); font-size: 13.5px; flex-wrap: wrap; }
.hero-note span { display: inline-flex; align-items: center; gap: 7px; }
.hero-note svg { width: 15px; height: 15px; color: var(--accent); }

/* ---------- Hero visual : carte trading ---------- */
.trade-card {
  position: relative;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(59, 130, 246, 0.05);
  backdrop-filter: blur(10px);
}
.tc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.tc-pair { display: flex; align-items: center; gap: 11px; }
.tc-ico { width: 38px; height: 38px; border-radius: 11px; background: linear-gradient(135deg, var(--violet), #5b21b6); display: grid; place-items: center; font-weight: 700; font-size: 14px; font-family: var(--font-display); }
.tc-pair h4 { font-size: 15.5px; }
.tc-pair small { color: var(--muted-2); font-size: 12.5px; }
.tc-price { text-align: right; }
.tc-price .val { font-family: var(--font-display); font-weight: 600; font-size: 19px; }
.tc-price .chg { font-size: 12.5px; font-weight: 600; color: var(--up); }
.chart { width: 100%; height: 132px; margin: 4px 0 14px; }
.tc-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.tc-stat { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 10px 12px; }
.tc-stat small { color: var(--muted-2); font-size: 11px; display: block; margin-bottom: 3px; }
.tc-stat b { font-family: var(--font-display); font-size: 15px; font-weight: 600; }
.tc-bots { display: flex; flex-direction: column; gap: 8px; }
.tc-bot { display: flex; align-items: center; gap: 11px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 9px 12px; }
.tc-bot .led { width: 8px; height: 8px; border-radius: 50%; background: var(--up); box-shadow: 0 0 8px rgba(22, 199, 132, 0.5); flex: none; }
.tc-bot .nm { font-size: 13px; font-weight: 600; flex: 1; }
.tc-bot .pl { font-size: 12.5px; font-weight: 600; color: var(--up); font-family: var(--font-display); }

/* étiquettes flottantes */
.floaty { position: absolute; display: flex; align-items: center; gap: 9px; padding: 9px 13px; border: 1px solid var(--border-strong); background: rgba(10, 11, 10, 0.9); border-radius: 12px; box-shadow: 0 14px 36px -12px rgba(0, 0, 0, 0.8); backdrop-filter: blur(8px); font-size: 12.5px; animation: floaty 5s ease-in-out infinite; }
.floaty svg { width: 16px; height: 16px; }
.floaty.one { top: 8%; left: -34px; }
.floaty.two { bottom: 12%; right: -28px; animation-delay: -2.5s; }
.floaty b { font-weight: 600; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ---------- Ticker ---------- */
.ticker-wrap { border-block: 1px solid var(--border); background: rgba(255, 255, 255, 0.012); overflow: hidden; }
.ticker { display: flex; gap: 44px; padding: 15px 0; width: max-content; animation: ticker 38s linear infinite; }
.ticker:hover { animation-play-state: paused; }
.ticker .it { display: inline-flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--muted); white-space: nowrap; }
.ticker .sym { color: var(--fg); font-weight: 600; }
.ticker .up { color: var(--up); font-weight: 600; }
.ticker .dn { color: var(--red); font-weight: 600; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- Logos / protocole ---------- */
.proto { text-align: center; }
.proto p { color: var(--muted-2); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 26px; }
.proto-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 18px; }
.proto-chip { display: inline-flex; align-items: center; gap: 9px; padding: 10px 18px; border: 1px solid var(--border); border-radius: 100px; background: var(--surface); font-weight: 600; font-size: 14px; color: var(--muted); transition: color 0.2s, border-color 0.2s; }
.proto-chip:hover { color: var(--fg); border-color: var(--border-strong); }
.proto-chip .pd { width: 8px; height: 8px; border-radius: 50%; }

/* ---------- Features ---------- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature {
  position: relative;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform 0.25s var(--ease), border-color 0.25s, background 0.25s;
  overflow: hidden;
}
.feature::after { content: ""; position: absolute; inset: 0; border-radius: var(--radius); padding: 1px; background: linear-gradient(140deg, rgba(59, 130, 246, 0.4), transparent 40%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity 0.3s; }
.feature:hover { transform: translateY(-4px); border-color: var(--border-strong); background: var(--surface-2); }
.feature:hover::after { opacity: 1; }
.feature .fi { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 18px; background: rgba(59, 130, 246, 0.1); border: 1px solid rgba(59, 130, 246, 0.2); }
.feature .fi svg { width: 23px; height: 23px; color: var(--accent); }
.feature.v .fi { background: rgba(141, 84, 255, 0.1); border-color: rgba(141, 84, 255, 0.2); }
.feature.v .fi svg { color: var(--violet); }
.feature.b .fi { background: rgba(48, 128, 255, 0.1); border-color: rgba(48, 128, 255, 0.2); }
.feature.b .fi svg { color: var(--blue); }
.feature h3 { font-size: 18.5px; margin-bottom: 9px; }
.feature p { color: var(--muted); font-size: 14.5px; }

/* ---------- Split (copytrade) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.rev .split-media { order: -1; }
.feature-list { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.feature-list li { display: flex; gap: 13px; align-items: flex-start; }
.feature-list .ci { flex: none; width: 24px; height: 24px; border-radius: 7px; background: rgba(59, 130, 246, 0.12); display: grid; place-items: center; margin-top: 2px; }
.feature-list .ci svg { width: 14px; height: 14px; color: var(--accent); }
.feature-list b { font-weight: 600; }
.feature-list p { color: var(--muted); font-size: 14.5px; }

/* Leaderboard mockup */
.board { border: 1px solid var(--border); background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.008)); border-radius: var(--radius-lg); padding: 22px; box-shadow: 0 30px 70px -34px rgba(0,0,0,0.9); }
.board-h { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.board-h h4 { font-size: 15px; }
.board-h .pill { font-size: 11.5px; color: var(--up); background: rgba(22,199,132,0.12); padding: 4px 10px; border-radius: 100px; font-weight: 600; }
.trader { display: grid; grid-template-columns: 22px 38px 1fr auto auto; gap: 13px; align-items: center; padding: 11px 8px; border-radius: 12px; transition: background 0.2s; }
.trader:hover { background: var(--surface); }
.trader .rk { color: var(--muted-2); font-weight: 700; font-family: var(--font-display); font-size: 14px; text-align: center; }
.trader .av { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 13px; color: #051; font-family: var(--font-display); }
.trader .who b { display: block; font-size: 14px; font-weight: 600; }
.trader .who small { color: var(--muted-2); font-size: 12px; }
.trader .roi { font-family: var(--font-display); font-weight: 600; color: var(--up); font-size: 15px; text-align: right; }
.trader .roi small { display: block; color: var(--muted-2); font-size: 11px; font-weight: 400; }
.trader .copy { font-size: 12.5px; font-weight: 600; padding: 7px 14px; border-radius: 9px; background: var(--surface-2); border: 1px solid var(--border-strong); transition: background 0.2s, border-color 0.2s; }
.trader .copy:hover { background: rgba(59,130,246,0.16); border-color: rgba(59,130,246,0.35); color: var(--accent-bright); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: s; }
.step { border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius); padding: 28px 24px; position: relative; }
.step .num { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--accent); margin-bottom: 16px; display: inline-flex; align-items: center; gap: 8px; }
.step .num::before { counter-increment: s; content: "0" counter(s); }
.step h3 { font-size: 18px; margin-bottom: 9px; }
.step p { color: var(--muted); font-size: 14.5px; }
.step .line { position: absolute; top: 40px; right: -10px; width: 20px; height: 1px; background: var(--border-strong); }

/* ---------- Security ---------- */
.sec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 12px; }
.sec-card { border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius); padding: 24px 22px; }
.sec-card svg { width: 24px; height: 24px; color: var(--accent); margin-bottom: 14px; }
.sec-card h3 { font-size: 16.5px; margin-bottom: 8px; }
.sec-card p { color: var(--muted); font-size: 13.5px; }

/* ---------- Stats band ---------- */
.stats-band { border: 1px solid var(--border); border-radius: var(--radius-lg); background: linear-gradient(120deg, rgba(0,199,88,0.06), rgba(141,84,255,0.05)); padding: 44px 32px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-b { text-align: center; }
.stat-b b { font-family: var(--font-display); font-weight: 600; font-size: clamp(28px, 4vw, 40px); display: block; letter-spacing: -0.02em; }
.stat-b span { color: var(--muted); font-size: 13.5px; }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.plan { display: flex; flex-direction: column; border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius-lg); padding: 30px 26px; transition: border-color 0.25s, transform 0.25s; }
.plan:hover { transform: translateY(-4px); }
.plan.pop { border-color: rgba(0,199,88,0.4); background: linear-gradient(180deg, rgba(0,199,88,0.07), var(--surface)); position: relative; box-shadow: 0 30px 70px -40px var(--glow-accent); }
.plan .ptag { position: absolute; top: 18px; right: 18px; font-size: 11px; font-weight: 700; letter-spacing: 0.04em; color: var(--accent); background: rgba(0,199,88,0.14); padding: 4px 10px; border-radius: 100px; }
.plan h3 { font-size: 17px; margin-bottom: 6px; }
.plan .desc { color: var(--muted); font-size: 13.5px; margin-bottom: 20px; min-height: 40px; }
.plan .price { font-family: var(--font-display); margin-bottom: 22px; }
.plan .price b { font-size: 42px; font-weight: 600; letter-spacing: -0.03em; }
.plan .price span { color: var(--muted); font-size: 14px; }
.plan ul { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; flex: 1; }
.plan li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--muted); }
.plan li svg { width: 17px; height: 17px; color: var(--accent); flex: none; margin-top: 3px; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin-inline: auto; }
.qa { border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); margin-bottom: 12px; overflow: hidden; }
.qa summary { list-style: none; cursor: pointer; padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-weight: 600; font-size: 16px; font-family: var(--font-display); }
.qa summary::-webkit-details-marker { display: none; }
.qa summary .ic { flex: none; width: 22px; height: 22px; position: relative; transition: transform 0.3s; }
.qa summary .ic::before, .qa summary .ic::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; }
.qa summary .ic::before { top: 50%; left: 3px; right: 3px; height: 2px; transform: translateY(-50%); }
.qa summary .ic::after { left: 50%; top: 3px; bottom: 3px; width: 2px; transform: translateX(-50%); transition: opacity 0.3s; }
.qa[open] summary .ic::after { opacity: 0; }
.qa .ans { padding: 0 22px 20px; color: var(--muted); font-size: 14.5px; }

/* ---------- CTA final ---------- */
.cta { position: relative; border: 1px solid var(--border-strong); border-radius: var(--radius-lg); padding: 64px 40px; text-align: center; overflow: hidden; background: radial-gradient(700px 300px at 50% 0%, rgba(59,130,246,0.16), transparent 70%), var(--bg-2); }
.cta h2 { font-size: clamp(30px, 4.5vw, 48px); margin-bottom: 16px; }
.cta p { color: var(--muted); font-size: 17px; max-width: 520px; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 56px 0 36px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 44px; }
.footer .brand { margin-bottom: 14px; }
.footer .about { color: var(--muted); font-size: 14px; max-width: 300px; }
.footer .socials { display: flex; gap: 10px; margin-top: 18px; }
.footer .socials a { width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 9px; display: grid; place-items: center; color: var(--muted); transition: color 0.2s, border-color 0.2s; }
.footer .socials a:hover { color: var(--accent); border-color: var(--border-strong); }
.footer .socials svg { width: 17px; height: 17px; }
.fcol h5 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted-2); margin-bottom: 16px; font-family: var(--font-body); font-weight: 600; }
.fcol a { display: block; color: var(--muted); font-size: 14px; margin-bottom: 11px; transition: color 0.2s; }
.fcol a:hover { color: var(--fg); }
.footer-bot { display: flex; align-items: center; justify-content: space-between; padding-top: 26px; border-top: 1px solid var(--border); color: var(--muted-2); font-size: 13px; gap: 16px; flex-wrap: wrap; }
.footer-bot .disclaimer { max-width: 620px; }

/* ---------- Toast "coming soon" ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translate(-50%, 24px);
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 20px;
  background: rgba(10, 11, 10, 0.92);
  border: 1px solid var(--border-strong);
  border-radius: 13px;
  box-shadow: 0 18px 50px -16px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(59, 130, 246, 0.1);
  backdrop-filter: blur(12px);
  color: var(--fg);
  font-size: 14.5px;
  font-weight: 500;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast svg { width: 18px; height: 18px; color: var(--accent); flex: none; }
.toast b { font-weight: 600; }

/* ---------- Reveal anim ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 460px; }
  .split, .split.rev { grid-template-columns: 1fr; gap: 36px; }
  .split.rev .split-media { order: 0; }
  .features-grid, .steps, .pricing { grid-template-columns: 1fr 1fr; }
  .sec-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .step .line { display: none; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .nav-links.open { display: flex; position: absolute; top: 66px; left: 0; right: 0; flex-direction: column; gap: 0; background: rgba(8,8,8,0.98); border-bottom: 1px solid var(--border); padding: 8px 24px 18px; backdrop-filter: blur(14px); }
  .nav-links.open a { padding: 13px 0; border-bottom: 1px solid var(--border); }
  .nav-links.open .only-mobile { display: block; color: var(--accent); font-weight: 600; }
  .section { padding: 72px 0; }
  .features-grid, .steps, .pricing, .sec-grid, .stats-band { grid-template-columns: 1fr; }
  .stats-band { gap: 30px; padding: 36px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .floaty.one { left: 0; top: -18px; }
  .floaty.two { right: 0; bottom: -18px; }
  .nav-cta .btn-ghost { display: none; }
}
@media (max-width: 600px) {
  .nav-cta .btn-primary { display: none; }
}
@media (max-width: 460px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-note { gap: 12px; }
}
