/* =====================================================
   Finetees — premium crypto analytics landing
   Vanilla CSS · Awwwards-grade
   ===================================================== */

:root {
  --bg-0: #07090D;
  --bg-1: #0D1117;
  --bg-2: #121821;
  --bg-3: #18202B;
  --line: rgba(255,255,255,0.07);
  --line-2: rgba(255,255,255,0.12);
  --text: #F4F6FA;
  --muted: #8B93A7;
  --muted-2: #5F677A;
  --emerald: #00D18F;
  --cyan: #14E4FF;
  --blue: #3B82F6;
  --red: #FF5B6E;

  --grad: linear-gradient(135deg, #00D18F 0%, #14E4FF 60%, #3B82F6 100%);
  --grad-soft: linear-gradient(135deg, rgba(0,209,143,.14) 0%, rgba(20,228,255,.10) 60%, rgba(59,130,246,.08) 100%);

  --f-display: "Space Grotesk", "Inter", ui-sans-serif, system-ui, sans-serif;
  --f-body: "Inter", ui-sans-serif, system-ui, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;

  --shadow-soft: 0 10px 40px rgba(0,0,0,.35);
  --shadow-glow: 0 20px 80px rgba(0,209,143,.10);

  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg-0); color: var(--text); font-family: var(--f-body); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
html { scroll-behavior: auto; }
body { overflow-x: hidden; font-size: 16px; line-height: 1.6; }
body.menu-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .hero-title .line { transform: none; }
  .loader-bar span { width: 100%; animation: none; }
}

a { color: inherit; text-decoration: none; }
button { background: none; border: none; color: inherit; cursor: pointer; font: inherit; }
img { max-width: 100%; display: block; }

::selection { background: rgba(0,209,143,.35); color: #fff; }

/* ============ LOADER ============ */
.loader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--bg-0);
  display: grid; place-items: center;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-mark {
  display: block;
  font-family: var(--f-display); font-size: 48px; font-weight: 700;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -.02em; margin-bottom: 24px;
}
.loader-bar { width: 180px; height: 2px; background: rgba(255,255,255,.08); position: relative; overflow: hidden; margin: 0 auto; border-radius: 2px; }
.loader-bar span { position: absolute; inset: 0; width: 0; background: var(--grad); animation: loadFill 1.4s var(--ease) forwards; }
@keyframes loadFill { 0% { width: 0 } 100% { width: 100% } }

/* ============ CURSOR ============ */
.cursor-dot, .cursor-ring { position: fixed; pointer-events: none; z-index: 250; top: 0; left: 0; transform: translate(-50%,-50%); mix-blend-mode: difference; }
.cursor-dot { width: 6px; height: 6px; background: #fff; border-radius: 50%; transition: transform .15s var(--ease); }
.cursor-ring { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; transition: width .3s var(--ease), height .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease); }
.cursor-ring.hover { width: 60px; height: 60px; border-color: var(--emerald); }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ============ HEADER ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 40px;
  transition: padding .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding: 14px 40px;
  background: rgba(7,9,13,.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--f-display); font-weight: 700; letter-spacing: -.01em; font-size: 18px; }
.brand svg { flex-shrink: 0; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative; padding: 10px 14px; font-size: 14px; color: var(--muted); transition: color .25s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 6px; height: 1px;
  background: var(--emerald); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.nav a:hover { color: var(--text); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.menu-toggle { display: none; width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line); align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.menu-toggle span { display: block; width: 16px; height: 1.5px; background: var(--text); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.menu-toggle.open span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(7,9,13,.96);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.mobile-menu nav a { font-family: var(--f-display); font-size: 28px; font-weight: 500; letter-spacing: -.01em; }

/* ============ BUTTONS ============ */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--f-body); font-weight: 500; font-size: 14.5px;
  letter-spacing: .01em;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  overflow: hidden; isolation: isolate;
  border: 1px solid transparent;
}
.btn-sm { padding: 10px 18px; font-size: 13.5px; }
.btn-primary {
  background: var(--emerald); color: #04120C;
  box-shadow: 0 10px 30px rgba(0,209,143,.25), inset 0 1px 0 rgba(255,255,255,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(0,209,143,.35), inset 0 1px 0 rgba(255,255,255,.35); }
.btn-primary::before {
  content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, #14E4FF, #00D18F);
  opacity: 0; transition: opacity .3s var(--ease); z-index: -1;
}
.btn-primary:hover::before { opacity: 1; }

.btn-ghost {
  background: rgba(255,255,255,.02);
  border-color: var(--line-2);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.22); transform: translateY(-2px); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 40px 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 40%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 40%, transparent 90%);
  z-index: -2;
}
.hero-spot {
  position: absolute; top: -20%; right: -10%;
  width: 780px; height: 780px;
  background: radial-gradient(circle, rgba(0,209,143,.14) 0%, rgba(20,228,255,.06) 40%, transparent 70%);
  filter: blur(30px);
  z-index: -1;
  pointer-events: none;
}
.hero-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px;
  align-items: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,.02);
  font-family: var(--f-mono); font-size: 11.5px;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: 32px;
}
.pulse {
  width: 6px; height: 6px; border-radius: 50%; background: var(--emerald);
  box-shadow: 0 0 0 0 rgba(0,209,143,.6);
  animation: pulse 1.8s var(--ease) infinite;
}
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(0,209,143,.6) } 70% { box-shadow: 0 0 0 12px rgba(0,209,143,0) } 100% { box-shadow: 0 0 0 0 rgba(0,209,143,0) } }

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(48px, 6.4vw, 96px);
  line-height: 1.02;
  letter-spacing: -.035em;
  font-weight: 500;
  margin-bottom: 28px;
}
.hero-title .line-mask { display: block; overflow: hidden; padding: 0 0 4px; }
.hero-title .line { display: block; transform: translateY(110%); transition: transform 1.1s var(--ease); }
.hero-title.reveal .line { transform: translateY(0); }
.hero-title .line.accent {
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  font-style: italic; font-weight: 400;
}

.hero-sub {
  font-size: 17px; color: var(--muted); max-width: 520px;
  margin-bottom: 40px;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  max-width: 520px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.hero-stats > div .num { font-family: var(--f-display); font-size: 32px; font-weight: 600; letter-spacing: -.02em; }
.hero-stats > div .num-suffix { font-family: var(--f-display); font-size: 20px; color: var(--emerald); }
.hero-stats > div p { color: var(--muted); font-size: 13px; margin-top: 6px; }

/* Dashboard mockup */
.hero-right { position: relative; perspective: 1400px; }
.dash-glow {
  position: absolute; inset: -10% -10% -10% -10%;
  background: radial-gradient(ellipse at 60% 30%, rgba(20,228,255,.14), transparent 60%);
  filter: blur(20px); z-index: -1;
}
.dash {
  background: linear-gradient(180deg, rgba(24,32,43,.9), rgba(13,17,23,.9));
  border: 1px solid var(--line-2);
  border-radius: var(--r-xl);
  padding: 22px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  transform-style: preserve-3d;
  transition: transform .4s var(--ease);
}
.dash-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.dash-title { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.dot { width: 6px; height: 6px; border-radius: 50%; display: inline-block; }
.dot-live { background: var(--emerald); box-shadow: 0 0 8px var(--emerald); animation: pulse 1.8s var(--ease) infinite; }
.dash-tabs { display: inline-flex; gap: 4px; padding: 3px; background: rgba(255,255,255,.03); border-radius: 8px; border: 1px solid var(--line); }
.dash-tabs button { padding: 5px 10px; font-size: 11px; color: var(--muted); border-radius: 6px; font-family: var(--f-mono); }
.dash-tabs button.active { background: rgba(255,255,255,.06); color: var(--text); }

.dash-portfolio {
  display: grid; grid-template-columns: 1fr auto; gap: 24px;
  padding-bottom: 20px; margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.big-value { font-family: var(--f-display); font-size: 34px; font-weight: 600; letter-spacing: -.02em; margin: 4px 0; }
.delta { font-family: var(--f-mono); font-size: 12px; }
.delta.up { color: var(--emerald); }
.delta.down { color: var(--red); }

.dash-assets { display: flex; flex-direction: column; gap: 10px; min-width: 140px; }
.asset { display: inline-flex; align-items: center; gap: 10px; }
.tk { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-family: var(--f-display); font-weight: 600; font-size: 14px; flex-shrink: 0; }
.tk.btc { background: linear-gradient(135deg, #F7931A, #FFC463); color: #1a1000; }
.tk.eth { background: linear-gradient(135deg, #627EEA, #A5B4FC); color: #0a0f2e; }
.tk.sol { background: linear-gradient(135deg, #9945FF, #14F195); color: #0d0430; }
.asset b { display: block; font-size: 13px; font-weight: 500; }

.dash-chart-head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 14px; }
.dash-chart-head h4 { font-family: var(--f-display); font-size: 22px; font-weight: 600; letter-spacing: -.02em; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px; border-radius: 999px;
  font-family: var(--f-mono); font-size: 11px;
  background: rgba(0,209,143,.12); color: var(--emerald);
  border: 1px solid rgba(0,209,143,.24);
}
.chip.small { padding: 3px 8px; font-size: 10px; }
.chip.down { background: rgba(255,91,110,.12); color: var(--red); border-color: rgba(255,91,110,.24); }

.mini-chart { height: 160px; width: 100%; margin-bottom: 20px; }

.dash-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.mini-card {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--line);
}
.mini-card b { display: block; font-family: var(--f-display); font-size: 15px; font-weight: 600; margin-top: 4px; }
.mini-card b.ok { color: var(--emerald); }

.mono { font-family: var(--f-mono); font-size: 11px; letter-spacing: .04em; }
.muted { color: var(--muted); }
.ok { color: var(--emerald); }

.float-chip {
  position: absolute;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(13,17,23,.9);
  border: 1px solid var(--line-2);
  font-family: var(--f-mono); font-size: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
  color: var(--text);
}
.fc-1 { top: 24px; left: -30px; animation: float 6s ease-in-out infinite; }
.fc-2 { bottom: 40px; right: -30px; animation: float 7s ease-in-out infinite reverse; color: var(--cyan); }
@keyframes float { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-10px) } }

.hero-foot {
  position: absolute; bottom: 24px; left: 40px;
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--muted);
}
.scroll-line { display: inline-block; width: 60px; height: 1px; background: linear-gradient(90deg, var(--muted), transparent); position: relative; overflow: hidden; }
.scroll-line::after { content: ""; position: absolute; inset: 0; background: var(--emerald); width: 30%; animation: scrollHint 2.2s ease-in-out infinite; }
@keyframes scrollHint { 0% { transform: translateX(-100%) } 100% { transform: translateX(300%) } }

/* ============ MARQUEE ============ */
.marquee-wrap {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-1);
  overflow: hidden;
}
.marquee { position: relative; }
.marquee-track {
  display: inline-flex; align-items: center; gap: 60px;
  white-space: nowrap;
  animation: marq 42s linear infinite;
  will-change: transform;
}
.marquee-track span { font-family: var(--f-display); font-weight: 400; font-style: italic; font-size: clamp(40px, 6vw, 84px); letter-spacing: -.03em; color: var(--muted-2); }
.marquee-track i { font-style: normal; color: var(--emerald); font-size: 24px; }
@keyframes marq { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ============ SECTIONS COMMON ============ */
section { position: relative; }
.section-inner { max-width: 1300px; margin: 0 auto; padding: 140px 40px; }
.section-head { margin-bottom: 80px; max-width: 900px; }
.chapter {
  font-family: var(--f-mono); font-size: 11.5px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--emerald); margin-bottom: 20px;
}
.h-display {
  font-family: var(--f-display);
  font-size: clamp(38px, 4.6vw, 68px);
  line-height: 1.05;
  letter-spacing: -.03em;
  font-weight: 500;
}
.h-display em { font-style: italic; font-weight: 400; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { font-size: 17px; color: var(--muted); max-width: 640px; }
.lead.center { margin: 0 auto; text-align: center; }

/* Reveal animation base */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
[data-reveal].in { opacity: 1; transform: translateY(0); }

/* ============ ABOUT ============ */
.about .section-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.about-left h2 { margin-bottom: 24px; }
.about-list { list-style: none; margin-top: 40px; }
.about-list li {
  display: grid; grid-template-columns: 40px 1fr; gap: 16px; align-items: center;
  padding: 20px 0; border-top: 1px solid var(--line);
  font-size: 16px; color: var(--text);
  transition: padding-left .3s var(--ease);
}
.about-list li:last-child { border-bottom: 1px solid var(--line); }
.about-list li:hover { padding-left: 8px; }
.about-list li span { font-family: var(--f-mono); font-size: 12px; color: var(--emerald); }

.composition { position: relative; height: 520px; }
.comp-card {
  position: absolute;
  padding: 22px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(24,32,43,.9), rgba(13,17,23,.9));
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}
.comp-a { top: 0; left: 0; width: 62%; }
.comp-b { top: 32%; right: 0; width: 60%; }
.comp-c { bottom: 0; left: 8%; width: 52%; }
.cc-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.depth { display: flex; flex-direction: column; gap: 8px; }
.depth-bar { position: relative; height: 22px; background: rgba(255,255,255,.03); border-radius: 6px; overflow: hidden; display: flex; align-items: center; padding: 0 10px; }
.depth-bar span { position: absolute; left: 0; top: 0; bottom: 0; background: linear-gradient(90deg, rgba(0,209,143,.35), rgba(0,209,143,.05)); }
.depth-bar span.red { background: linear-gradient(90deg, rgba(255,91,110,.32), rgba(255,91,110,.04)); }
.depth-bar b { position: relative; z-index: 1; color: var(--text); font-weight: 400; font-size: 10.5px; }

.matrix { display: grid; grid-template-columns: 40px 1fr 1fr 1fr; gap: 4px; margin-top: 14px; font-family: var(--f-mono); font-size: 11px; }
.matrix > span { padding: 8px 6px; text-align: center; color: var(--muted); border-radius: 6px; }
.matrix .c1 { background: rgba(0,209,143,.20); color: var(--emerald); }
.matrix .c2 { background: rgba(20,228,255,.12); color: var(--cyan); }
.matrix .c3 { background: rgba(59,130,246,.10); color: #7BA5FF; }

.comp-c h4 { font-family: var(--f-display); font-size: 22px; font-weight: 500; margin: 6px 0 8px; letter-spacing: -.01em; }

/* ============ FEATURES ============ */
.features { background: var(--bg-1); }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat-card {
  padding: 32px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(24,32,43,.4), rgba(13,17,23,.4));
  border: 1px solid var(--line);
  transition: transform .5s var(--ease), border-color .5s var(--ease), background .5s var(--ease);
  position: relative; overflow: hidden;
  will-change: transform;
}
.feat-card::before {
  content: ""; position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,0%), rgba(0,209,143,.10), transparent 60%);
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.feat-card:hover::before { opacity: 1; }
.feat-card:hover { border-color: rgba(0,209,143,.35); }
.feat-card .icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,209,143,.14), rgba(20,228,255,.10));
  border: 1px solid rgba(0,209,143,.24);
  display: grid; place-items: center; color: var(--emerald);
  margin-bottom: 28px;
}
.feat-card .icon svg { width: 22px; height: 22px; }
.feat-card h3 { font-family: var(--f-display); font-size: 20px; font-weight: 500; letter-spacing: -.01em; margin-bottom: 10px; }
.feat-card p { color: var(--muted); font-size: 14.5px; }

/* ============ WHY / MANIFESTO ============ */
.manifesto { list-style: none; counter-reset: mm; }
.manifesto li {
  display: grid; grid-template-columns: 100px 1fr 2fr; gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.manifesto li:last-child { border-bottom: 1px solid var(--line); }
.manifesto .ch { font-family: var(--f-mono); font-size: 13px; color: var(--emerald); }
.manifesto h4 { font-family: var(--f-display); font-size: clamp(24px, 2.6vw, 36px); font-weight: 500; letter-spacing: -.02em; }
.manifesto p { color: var(--muted); font-size: 15.5px; max-width: 560px; }

/* ============ MARKETS ============ */
.markets { background: var(--bg-1); }
.market-panel {
  background: linear-gradient(180deg, rgba(24,32,43,.6), rgba(13,17,23,.6));
  border: 1px solid var(--line-2);
  border-radius: var(--r-xl);
  padding: 6px;
  box-shadow: var(--shadow-soft);
}
.market-panel-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 28px 16px;
}
.market-panel-head > div:first-child { display: inline-flex; align-items: center; gap: 10px; }

.market-table {
  padding: 0 12px 12px;
}
.mt-head, .mt-row {
  display: grid; grid-template-columns: 1.6fr .9fr .8fr .9fr 1fr;
  gap: 16px; align-items: center;
  padding: 16px 20px;
}
.mt-head { color: var(--muted); font-family: var(--f-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; border-bottom: 1px solid var(--line); }
.ta-right { text-align: right; justify-self: end; }
.mt-row { border-radius: 14px; transition: background .3s var(--ease); border-bottom: 1px solid transparent; }
.mt-row:hover { background: rgba(255,255,255,.02); }
.mt-body .mt-row + .mt-row { border-top: 1px solid var(--line); }
.mt-asset { display: inline-flex; align-items: center; gap: 12px; }
.mt-asset img { width: 30px; height: 30px; border-radius: 50%; }
.mt-asset b { font-weight: 500; font-size: 15px; }
.mt-asset span { display: block; color: var(--muted); font-family: var(--f-mono); font-size: 11px; text-transform: uppercase; }
.mt-price { font-family: var(--f-display); font-weight: 500; font-size: 15px; }
.mt-delta { font-family: var(--f-mono); font-size: 13px; }
.mt-delta.up { color: var(--emerald); }
.mt-delta.down { color: var(--red); }
.mt-vol { color: var(--muted); font-family: var(--f-mono); font-size: 13px; }
.mt-spark svg { width: 100%; height: 36px; display: block; }
.mt-skeleton { height: 52px; border-radius: 12px; background: linear-gradient(90deg, rgba(255,255,255,.02), rgba(255,255,255,.05), rgba(255,255,255,.02)); background-size: 200% 100%; animation: sk 1.2s ease-in-out infinite; margin: 6px 12px; }
@keyframes sk { 0% { background-position: 200% 0 } 100% { background-position: -200% 0 } }

/* ============ TEAM ============ */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card {
  border-radius: var(--r-lg);
  background: rgba(24,32,43,.4);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .5s var(--ease), border-color .5s var(--ease);
}
.team-card:hover { transform: translateY(-6px); border-color: rgba(0,209,143,.30); }
.tc-photo { aspect-ratio: 3/4; overflow: hidden; position: relative; }
.tc-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7,9,13,.9) 100%);
  pointer-events: none;
}
.tc-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); filter: saturate(.9) contrast(1.05); }
.team-card:hover .tc-photo img { transform: scale(1.06); }
.tc-body { padding: 22px 22px 26px; }
.tc-body h4 { font-family: var(--f-display); font-size: 20px; font-weight: 500; letter-spacing: -.01em; margin-bottom: 4px; }
.tc-body p { color: var(--muted); font-size: 13.5px; margin-top: 8px; }

/* ============ REVIEWS ============ */
.reviews { background: var(--bg-1); overflow: hidden; }
.reviews-swiper { padding: 8px 0 60px !important; }
.review-card {
  padding: 40px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(24,32,43,.6), rgba(13,17,23,.5));
  border: 1px solid var(--line-2);
  min-height: 280px;
  display: flex; flex-direction: column; gap: 24px;
}
.stars { color: var(--emerald); font-size: 16px; letter-spacing: 4px; }
.review-card > p { font-family: var(--f-display); font-size: clamp(20px, 1.6vw, 24px); font-weight: 400; line-height: 1.45; letter-spacing: -.01em; }
.rc-foot { display: inline-flex; align-items: center; gap: 14px; margin-top: auto; }
.rc-foot img { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-2); }
.rc-foot b { display: block; font-size: 14px; font-weight: 500; }

.reviews-nav { display: inline-flex; gap: 10px; margin-top: 12px; }
.rv-btn { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease); color: var(--muted); }
.rv-btn:hover { border-color: var(--emerald); color: var(--emerald); }

.swiper-pagination-bullet { background: rgba(255,255,255,.2); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--emerald); width: 20px; border-radius: 10px; transition: width .3s var(--ease); }

/* ============ CTA ============ */
.cta { position: relative; overflow: hidden; isolation: isolate; }
.cta-inner { text-align: center; padding-top: 160px; padding-bottom: 160px; max-width: 1000px; }
.cta-title { margin: 20px auto 24px; }
.cta-buttons { display: inline-flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; justify-content: center; }
.cta .chapter { color: var(--emerald); }
.cta-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(0,209,143,.10), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(20,228,255,.08), transparent 50%);
  z-index: -1;
  animation: ctaShift 12s ease-in-out infinite alternate;
}
@keyframes ctaShift { from { transform: translate3d(0,0,0) scale(1) } to { transform: translate3d(4%, 2%, 0) scale(1.05) } }
.cta-particles { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.particle { position: absolute; width: 2px; height: 2px; background: var(--emerald); border-radius: 50%; opacity: .5; animation: pDrift linear infinite; }
@keyframes pDrift { 0% { transform: translateY(120vh) } 100% { transform: translateY(-20vh) } }

/* ============ FOOTER ============ */
.site-footer { background: var(--bg-0); border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr; gap: 40px; padding: 100px 40px 60px; max-width: 1400px; }
.foot-brand p { color: var(--muted); font-size: 14px; max-width: 320px; margin: 20px 0 16px; }
.footer-grid h5 { font-family: var(--f-display); font-size: 13px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.footer-grid > div a { display: block; padding: 6px 0; font-size: 14px; color: var(--text); transition: color .25s var(--ease); }
.footer-grid > div a:hover { color: var(--emerald); }
.newsletter form { display: flex; gap: 8px; margin-top: 12px; align-items: center; background: rgba(255,255,255,.03); border: 1px solid var(--line-2); border-radius: 999px; padding: 4px 6px 4px 16px; }
.newsletter input { flex: 1; background: none; border: none; color: var(--text); font-size: 13.5px; padding: 10px 0; outline: none; font-family: var(--f-body); }
.newsletter input::placeholder { color: var(--muted-2); }
.newsletter button { width: 34px; height: 34px; border-radius: 50%; background: var(--emerald); color: #04120C; display: grid; place-items: center; transition: background .25s var(--ease); }
.newsletter button:hover { background: var(--cyan); }
.foot-msg { margin-top: 8px; color: var(--emerald); font-size: 11px; min-height: 14px; }

.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 40px; border-top: 1px solid var(--line);
}

.foot-contact {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.foot-contact li,
.foot-contact a {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
  padding: 0;
}
.foot-contact a {
  display: inline;
  color: var(--text);
}
.foot-contact a:hover { color: var(--emerald); }

/* ============ LEGAL PAGES ============ */
.legal-page .site-header { background: rgba(7,9,13,.88); border-bottom-color: var(--line); }
.legal-main {
  padding: 140px 40px 80px;
  background:
    radial-gradient(ellipse 70% 40% at 10% 0%, rgba(0,209,143,.08), transparent 55%),
    radial-gradient(ellipse 50% 30% at 90% 10%, rgba(20,228,255,.06), transparent 50%),
    var(--bg-0);
}
.legal-inner { max-width: 780px; margin: 0 auto; }
.legal-meta { margin: 20px 0 48px; font-size: 12px; }
.legal-prose { color: var(--muted); font-size: 15.5px; line-height: 1.75; }
.legal-prose h2 {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  letter-spacing: -.02em;
  color: var(--text);
  margin: 48px 0 16px;
}
.legal-prose h3 {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  margin: 28px 0 10px;
}
.legal-prose p { margin-bottom: 16px; }
.legal-prose ul {
  margin: 0 0 20px;
  padding-left: 22px;
}
.legal-prose li { margin-bottom: 8px; }
.legal-prose a { color: var(--emerald); text-decoration: underline; text-underline-offset: 3px; }
.legal-prose a:hover { color: var(--cyan); }
.legal-inner .h-display { margin-top: 8px; }
.footer-grid-legal {
  grid-template-columns: 2fr 1fr 1fr;
  max-width: 1400px;
}
