


@font-face { font-family: "Riforma LL TT Regular";     src: url("assets/fonts/riforma-regular.woff2") format("woff2"); font-display: swap; font-style: normal; font-weight: 400; }
@font-face { font-family: "Riforma LL TT Bold";        src: url("assets/fonts/riforma-bold.woff2") format("woff2"); font-display: swap; font-style: normal; font-weight: 700; }
@font-face { font-family: "Riforma LL TT Italic";      src: url("assets/fonts/riforma-italic.woff2") format("woff2"); font-display: swap; font-style: italic;  font-weight: 400; }
@font-face { font-family: "Riforma LL TT Bold Italic"; src: url("assets/fonts/riforma-bold-italic.woff2") format("woff2"); font-display: swap; font-style: italic;  font-weight: 700; }
@font-face { font-family: "TWK Ghost Regular";         src: url("assets/fonts/twk-ghost-regular.woff") format("woff"); font-display: swap; font-style: normal; font-weight: 400; }

@font-face { font-family: "Riforma LL TT Regular Placeholder";     src: local("Arial"); ascent-override: 89.03%; descent-override: 23.43%; line-gap-override: 0%; size-adjust: 106.70%; }
@font-face { font-family: "Riforma LL TT Bold Placeholder";        src: local("Arial"); ascent-override: 84.37%; descent-override: 22.20%; line-gap-override: 0%; size-adjust: 112.60%; }
@font-face { font-family: "Riforma LL TT Italic Placeholder";      src: local("Arial"); ascent-override: 88.76%; descent-override: 23.36%; line-gap-override: 0%; size-adjust: 107.03%; }
@font-face { font-family: "Riforma LL TT Bold Italic Placeholder"; src: local("Arial"); ascent-override: 84.11%; descent-override: 22.13%; line-gap-override: 0%; size-adjust: 112.94%; }

:root {
  
  --red:        #CC0000;
  --red-light:  #E8001D;
  --red-deep:   #A30016;
  --red-pale:   rgba(232,0,29,0.10);
  --red-pale2:  rgba(232,0,29,0.16);
  --red-pale3:  rgba(232,0,29,0.22);

  
  --bg:        #111111;                          
  --bg2:       #161616;                          
  --bg3:       #1A1A1A;
  --surface:   rgba(250, 250, 249, 0.04);        
  --surface-2: rgba(250, 250, 249, 0.06);
  --border:    rgba(250, 250, 249, 0.08);        
  --border2:   rgba(250, 250, 249, 0.14);

  --text:      #FAFAF9;                          
  --text-soft: rgba(250, 250, 249, 0.92);
  --muted:     rgba(250, 250, 249, 0.55);        
  --muted2:    rgba(250, 250, 249, 0.35);        

  
  --dark:        #0A0A0A;                        
  --dark-2:      #141414;
  --dark-3:      #1F1F1F;
  --dark-text:   #FAFAF9;
  --dark-muted:  rgba(250, 250, 249, 0.55);
  --dark-muted2: rgba(250, 250, 249, 0.35);
  --dark-border: rgba(250, 250, 249, 0.08);
  --dark-border2:rgba(250, 250, 249, 0.14);
  --dark-surface:rgba(250, 250, 249, 0.04);

  
  --dev-bg:        #0A0A0A;
  --dev-bg2:       #131313;
  --dev-bg3:       #1B1B1B;
  --dev-bar:       #161616;
  --dev-border:    rgba(250,250,249,0.08);
  --dev-border2:   rgba(250,250,249,0.14);
  --dev-text:      #FAFAF9;
  --dev-mut:       rgba(250,250,249,0.55);
  --dev-mut2:      rgba(250,250,249,0.35);

  --up:    #4ade80;
  --dn:    #f87171;

  
  --shadow-sm: 0 0 0 transparent;
  --shadow-md: 0 0 0 transparent;
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
  --shadow-dev: 0 30px 80px -20px rgba(0,0,0,0.7), 0 10px 30px rgba(0,0,0,0.4);

  
  --radius-sm:  6px;
  --radius:     8px;
  --radius-lg:  10px;
  --radius-card:10px;
  --radius-dev: 8px;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Riforma LL TT Regular", "Riforma LL TT Regular Placeholder", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
strong, b { font-family: "Riforma LL TT Bold", "Riforma LL TT Bold Placeholder", sans-serif; font-weight: 700; }
em, i    { font-family: "Riforma LL TT Italic", "Riforma LL TT Italic Placeholder", sans-serif; font-style: italic; }

img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; }


nav#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  background: rgba(17, 17, 17, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background .25s, border-color .25s;
}
nav#navbar.scrolled {
  background: rgba(17, 17, 17, 0.88);
  border-bottom-color: var(--border);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  color: var(--text);
}
.nav-logo-mark {
  width: 32px; height: 32px;
  display: block;
  border-radius: 7px;
}
.nav-logo-txt {
  font-family: "Riforma LL TT Bold", "Riforma LL TT Bold Placeholder", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: var(--text);
}
.nav-logo-txt em {
  font-family: "Riforma LL TT Bold Italic", "Riforma LL TT Bold Italic Placeholder", sans-serif;
  font-style: italic;
  font-weight: 700;
}
.nav-logo-wordmark {
  height: 36px; width: auto;
  display: block;
}

.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--text); text-decoration: none;
  font-size: 0.9375rem; font-weight: 400;
  letter-spacing: -0.01em;
  transition: color .15s;
}
.nav-links a:hover { color: var(--muted); }


.nav-dl {
  background: var(--text) !important;
  color: #111 !important;
  padding: 9px 20px;
  border-radius: 100px;
  font-weight: 400 !important;
  font-size: 0.9375rem !important;
  letter-spacing: -0.01em;
  transition: background .15s !important;
}
.nav-dl:hover {
  background: #fff !important;
  color: #111 !important;
}

.lang-toggle {
  display: flex; align-items: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 100px;
  overflow: hidden;
  flex-shrink: 0;
}
.lang-btn {
  padding: 6px 12px;
  font-size: 0.8125rem; font-weight: 400;
  color: var(--muted);
  background: transparent; border: none;
  transition: background .15s, color .15s;
  letter-spacing: 0; line-height: 1;
  font-family: inherit;
}
.lang-btn.active { background: var(--text); color: #111; }
.lang-btn:hover:not(.active) { color: var(--text); }
.lang-divider { width: 1px; height: 18px; background: var(--border); }


.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute;
  width: 720px; height: 720px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,0,29,0.04) 0%, transparent 65%);
  top: -140px; right: -120px; pointer-events: none;
}
.hero::after {
  content: ''; position: absolute;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,0,29,0.03) 0%, transparent 70%);
  bottom: 40px; left: -80px; pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(27,27,27,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,27,27,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 85% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 5rem; align-items: center;
  width: 100%; max-width: 1320px; margin: 0 auto;
  position: relative; z-index: 1;
}

.hero-copy { animation: fadeUp 0.7s ease both; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: transparent;
  border: none;
  color: var(--muted2);
  font-size: 0.9375rem; font-weight: 400;
  letter-spacing: -0.01em; text-transform: none;
  padding: 0;
  margin-bottom: 1.4rem;
}
.hero-badge .bdg-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red-light);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%     { transform: scale(1.5); opacity: 0.55; }
}

.hero-title {
  font-family: "Riforma LL TT Bold", "Riforma LL TT Bold Placeholder", sans-serif;
  font-weight: 700;
  font-size: clamp(2.14rem, 3.52vw, 3.14rem);
  line-height: 1.04;
  letter-spacing: -0.01em;                      
  color: var(--text);
}
.hero-title em {
  font-family: "Riforma LL TT Bold Italic", "Riforma LL TT Bold Italic Placeholder", sans-serif;
  font-style: italic; font-weight: 700;
  color: var(--text);                          
}
.hero-sub {
  margin-top: 1.6rem;
  font-size: 1.0625rem;                         
  color: var(--muted);
  max-width: 520px;
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.hero-dl {
  display: flex; gap: 1rem; margin-top: 2.6rem; flex-wrap: wrap;
}

.dl-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: transparent;
  border: 1px solid var(--border2);
  border-radius: 100px;
  padding: 11px 22px;
  text-decoration: none; color: var(--text);
  transition: background .15s, color .15s, border-color .15s;
}
.dl-btn:hover {
  background: rgba(250, 250, 249, 0.08);
  border-color: var(--text);
}
.dl-btn.primary {
  background: var(--text);
  border-color: var(--text);
  color: #111;
}
.dl-btn.primary:hover {
  background: #fff;
  border-color: #fff;
  color: #111;
}
.dl-btn .os-label {
  font-size: 0.6875rem; opacity: 0.55;
  display: block; line-height: 1.2;
  letter-spacing: 0;
}
.dl-btn .os-name {
  font-family: "Riforma LL TT Bold", "Riforma LL TT Bold Placeholder", sans-serif;
  font-weight: 700; font-size: 0.9375rem;
  display: block; letter-spacing: -0.01em;
}
.dl-btn svg path { fill: currentColor !important; }
.dl-btn.primary svg path { fill: #111 !important; }

.hero-meta {
  margin-top: 2rem; display: flex; align-items: center; gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-meta-item {
  font-size: 0.875rem; color: var(--muted2);
  letter-spacing: -0.005em;
}
.hero-meta-item strong {
  font-family: "Riforma LL TT Bold", "Riforma LL TT Bold Placeholder", sans-serif;
  color: var(--text); font-weight: 700;
}
.meta-divider { width: 1px; height: 22px; background: var(--border); }


.device-wrap {
  position: relative;
  perspective: 1800px;
  animation: fadeUp 0.85s 0.18s ease both;
}
.device-wrap.right { perspective-origin: left center; }

.device {
  background: var(--dev-bg);
  border-radius: var(--radius-dev);
  border: 1px solid var(--dev-border);
  box-shadow: var(--shadow-dev);
  overflow: hidden;
  color: var(--dev-text);
  transform: rotateY(-9deg) rotateX(4deg) rotateZ(-1deg);
  transform-origin: center center;
  transition: transform 0.6s cubic-bezier(.2,.7,.2,1);
  position: relative;
  width: 100%;
}
.device-wrap.right .device { transform: rotateY(9deg) rotateX(4deg) rotateZ(1deg); }
.device-wrap:hover .device { transform: rotateY(-4deg) rotateX(2deg) rotateZ(0deg); }
.device-wrap.right:hover .device { transform: rotateY(4deg) rotateX(2deg) rotateZ(0deg); }


.dev-bar {
  background: var(--dev-bar);
  padding: 10px 14px;
  display: flex; align-items: center; gap: 14px;
  border-bottom: 1px solid var(--dev-border);
}
.dev-dots { display: flex; gap: 6px; }
.dd { width: 11px; height: 11px; border-radius: 50%; }
.dd.red    { background: #FF5F57; }
.dd.yellow { background: #FEBC2E; }
.dd.green  { background: #28C840; }

.dev-title {
  flex: 1;
  text-align: center;
  font-size: 0.78rem; color: var(--dev-mut);
  letter-spacing: -0.005em;
  font-weight: 400;
}

.dev-actions { display: flex; gap: 6px; }
.da-pill {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 3px 9px; border-radius: 100px;
  background: rgba(22,163,74,0.14); color: #4ade80;
  border: 1px solid rgba(22,163,74,0.3);
}


.dev-body {
  display: flex;
  min-height: 460px;
}


.dev-side {
  width: 58px;
  background: var(--dev-bg2);
  border-right: 1px solid var(--dev-border);
  display: flex; flex-direction: column; align-items: center;
  padding: 14px 0 16px;
  gap: 6px;
  flex-shrink: 0;
}
.ds-logo {
  width: 34px; height: 34px;
  margin-bottom: 10px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.35));
}
.ds-logo img { width: 100%; height: 100%; display: block; }
.ds-item {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--dev-mut);
  cursor: pointer;
  transition: background .15s, color .15s;
}
.ds-item svg { width: 18px; height: 18px; }
.ds-item:hover { background: rgba(255,255,255,0.04); color: var(--dev-text); }
.ds-item.active {
  background: var(--red-pale2);
  color: var(--red-light);
}
.ds-bottom { margin-top: auto; }


.dev-main {
  flex: 1;
  padding: 22px 24px;
  display: flex; flex-direction: column;
  background: var(--dev-bg);
  overflow: hidden;
}


.dvm-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.dvm-eyebrow {
  font-size: 0.66rem;
  color: var(--dev-mut2);
  text-transform: uppercase; letter-spacing: 0.1em;
  font-weight: 700;
}
.dvm-total {
  font-weight: 800;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  letter-spacing: -0.03em;
  color: var(--dev-text);
  margin-top: 4px;
  line-height: 1;
}
.dvm-total em { font-style: normal; }
.dvm-deltas { margin-top: 6px; display: flex; gap: 8px; align-items: center; }
.dlt-up {
  color: #4ade80; font-weight: 700; font-size: 0.78rem;
}
.dvm-period {
  color: var(--dev-mut2); font-size: 0.7rem;
  background: rgba(255,255,255,0.05);
  padding: 2px 8px; border-radius: 100px;
}

.dvm-cta { display: flex; gap: 6px; }
.dvm-btn {
  background: var(--dev-bg3);
  color: var(--dev-text);
  border: 1px solid var(--dev-border);
  border-radius: 7px;
  padding: 7px 13px;
  font-size: 0.72rem; font-weight: 600;
  transition: background .15s, border-color .15s;
}
.dvm-btn:hover { background: rgba(255,255,255,0.07); }
.dvm-btn.primary {
  background: var(--red-light);
  border-color: var(--red-light);
  color: #fff;
}
.dvm-btn.primary:hover { background: var(--red); }


.dvm-chart { margin-bottom: 1.1rem; }
.dvc-tabs {
  display: flex; gap: 4px;
  margin-bottom: 8px;
}
.dvc-tab {
  font-size: 0.66rem; font-weight: 600;
  color: var(--dev-mut);
  padding: 4px 10px; border-radius: 5px;
  background: transparent;
  cursor: pointer;
  letter-spacing: 0.02em;
}
.dvc-tab.active {
  background: rgba(255,255,255,0.08);
  color: var(--dev-text);
}
.dvc-svg { width: 100%; height: 140px; display: block; }


.dvm-assets {
  background: var(--dev-bg2);
  border: 1px solid var(--dev-border);
  border-radius: 10px;
  overflow: hidden;
  margin-top: auto;
}
.dva-head, .dva-row {
  display: grid;
  grid-template-columns: 1.4fr 1.2fr 0.9fr 0.7fr 1.1fr;
  gap: 12px;
  padding: 10px 14px;
  align-items: center;
  font-size: 0.74rem;
}
.dva-head {
  color: var(--dev-mut2);
  text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 0.62rem; font-weight: 700;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--dev-border);
}
.dva-row {
  border-bottom: 1px solid var(--dev-border);
  transition: background .15s;
}
.dva-row:last-child { border-bottom: none; }
.dva-row:hover { background: rgba(255,255,255,0.025); }
.ta-r { text-align: right; }

.dva-name { display: flex; align-items: center; gap: 10px; }
.dva-name strong { display: block; color: var(--dev-text); font-weight: 600; font-size: 0.78rem; }
.dva-name em { display: block; font-style: normal; color: var(--dev-mut2); font-size: 0.64rem; }
.dva-ic {
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 800; color: #fff;
  flex-shrink: 0;
  overflow: hidden;
}
.token-icon {
  width: 100%; height: 100%; display: block;
  object-fit: contain;
}
.dva-net {
  color: var(--dev-mut); font-size: 0.72rem;
  display: flex; align-items: center; gap: 7px;
}
.net-dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
}
.dva-hold strong { color: var(--dev-text); font-weight: 600; font-size: 0.78rem; display: block; }
.dva-hold em { font-style: normal; color: var(--dev-mut2); font-size: 0.64rem; display: block; }
.up { color: #4ade80; font-weight: 600; }
.dn { color: #f87171; font-weight: 600; }
.mut { color: var(--dev-mut2); }


.float-card {
  position: absolute; z-index: 3;
  background: var(--dev-bg2);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
  font-size: 0.78rem;
  backdrop-filter: blur(8px);
  animation: fadeUp 0.7s 0.6s ease both;
}
.float-card.top-right {
  top: -22px; right: -28px; width: 180px;
}
.float-card.bot-left {
  bottom: -22px; left: -28px; width: 170px;
}
.split-swap .float-card.top-right {
  width: 238px;
  padding-right: 12px;
}
.split-swap .float-card.top-right .fc-val {
  white-space: nowrap;
}
.fc-label { color: var(--muted2); font-size: 0.75rem; font-weight: 400; letter-spacing: -0.005em; }
.fc-val {
  font-family: "Riforma LL TT Bold", "Riforma LL TT Bold Placeholder", sans-serif;
  font-weight: 700; font-size: 1.0625rem; color: var(--text);
  margin-top: 4px; letter-spacing: -0.01em;
}
.fc-val.green { color: var(--up); }

.route-step {
  display: inline-block;
  background: var(--red-pale);
  color: var(--red-light);
  padding: 1px 8px; border-radius: 5px;
  font-size: 0.78rem; font-weight: 700;
  margin: 0 1px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}


.trust-strip {
  padding: 36px 5%;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-inner {
  max-width: 1320px; margin: 0 auto;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.trust-label {
  font-family: "Riforma LL TT Regular", "Riforma LL TT Regular Placeholder", sans-serif;
  font-size: 0.875rem; font-weight: 400;
  letter-spacing: 0;
  color: var(--muted2);
  display: inline-block;
  text-align: left;
}
.trust-label::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red-light);
  margin-right: 10px;
  vertical-align: middle;
  transform: translateY(-1px);
}
.trust-logos {
  display: flex; gap: 2rem; flex-wrap: wrap; flex: 1; justify-content: flex-end;
}
.tl {
  font-family: "Riforma LL TT Bold", "Riforma LL TT Bold Placeholder", sans-serif;
  color: var(--text);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
  padding: 4px 0;
  opacity: 0.35;
  transition: opacity .15s;
}
.tl:hover { opacity: 0.85; }


.stats-wrap {
  padding: 56px 5%;
  background: var(--bg);
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0;
}
.stat-cell {
  background: transparent;
  padding: 0 24px;
  text-align: left;
  border-left: 1px solid var(--border);
}
.stat-cell:first-child { border-left: none; padding-left: 0; }
.stat-n {
  font-family: "Riforma LL TT Bold", "Riforma LL TT Bold Placeholder", sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 2.4vw, 2.375rem);  
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1;
}
.stat-n em {
  font-family: "Riforma LL TT Bold Italic", "Riforma LL TT Bold Italic Placeholder", sans-serif;
  font-style: italic; font-weight: 700;
  color: var(--text);
}
.stat-l {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-top: 10px;
  letter-spacing: -0.005em;
}


.section { padding: 110px 5%; max-width: 1320px; margin: 0 auto; border-bottom: 1px solid var(--border); }
.eyebrow {
  font-family: "Riforma LL TT Regular", "Riforma LL TT Regular Placeholder", sans-serif;
  font-size: 0.875rem; font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted2);
  margin-bottom: 1.35rem;
  display: inline-block;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--red-light);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  transform: translateY(-1px);
}
.sec-title {
  font-family: "Riforma LL TT Bold", "Riforma LL TT Bold Placeholder", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.2vw, 2.8125rem);    
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.08;
}
.sec-title em {
  font-family: "Riforma LL TT Bold Italic", "Riforma LL TT Bold Italic Placeholder", sans-serif;
  font-style: italic; font-weight: 700;
  color: var(--text);
}
.sec-sub {
  margin-top: 1.1rem; color: var(--muted);
  font-size: 1.0625rem;                         
  line-height: 1.55;
  letter-spacing: -0.01em;
  max-width: 580px;
}


.feat-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3.5rem; gap: 0.9rem 3rem; flex-wrap: wrap;
}
.feat-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem;
}

.feat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: background .15s, border-color .15s;
  position: relative;
}
.feat-card:hover {
  background: var(--surface-2);
  border-color: var(--border2);
}
.feat-card.wide {
  grid-column: span 2;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 2.4rem; align-items: center;
}

.fc-icon {
  width: 40px; height: 40px; border-radius: var(--radius);
  background: rgba(250, 250, 249, 0.06);
  border: 1px solid var(--border2);
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.3rem;
  flex-shrink: 0;
}
.fc-icon svg { width: 20px; height: 20px; }
.fc-title {
  font-family: "Riforma LL TT Bold", "Riforma LL TT Bold Placeholder", sans-serif;
  font-weight: 700; font-size: 1.125rem;
  color: var(--text); margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.fc-text {
  font-size: 0.9375rem; color: var(--muted);
  line-height: 1.55;
  letter-spacing: -0.005em;
}


.alloc-bar {
  display: flex; height: 10px;
  border-radius: 100px; overflow: hidden;
  margin-bottom: 14px;
  background: var(--border);
}
.alloc-bar span { display: block; height: 100%; }
.alloc-legend {
  display: flex; flex-wrap: wrap; gap: 10px 16px;
  font-size: 0.875rem; color: var(--muted);
  letter-spacing: -0.005em;
}
.alloc-legend i,
.token-mini {
  display: inline-block; width: 12px; height: 12px;
  border-radius: 50%; margin-right: 6px;
  vertical-align: -2px;
}
.token-mini {
  object-fit: contain;
}
.alloc-foot {
  margin-top: 14px;
  display: flex; gap: 18px; flex-wrap: wrap;
  font-size: 0.875rem; color: var(--muted);
  padding-top: 14px;
  border-top: 1px solid var(--border);
  letter-spacing: -0.005em;
}
.alloc-foot strong { color: var(--text); font-weight: 700; }
.alloc-sync { display: inline-flex; align-items: center; gap: 6px; color: var(--up); font-weight: 600; }
.alloc-sync i {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--up);
  animation: pulse 2s infinite;
}


@media (min-width: 1321px) {
  #features {
    padding-left: 0;
    padding-right: 0;
  }
}

.steps-wrap {
  padding: 110px 5%;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps-inner { max-width: 1320px; margin: 0 auto; }
.steps-head { text-align: left; margin-bottom: 4rem; max-width: 760px; }
.steps-head .sec-sub { margin-top: 1.1rem; }

.steps-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px; left: 12%; width: 76%; height: 1px;
  background: var(--border);
}
.step-item { text-align: center; position: relative; padding: 0 8px; }
.step-n {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid var(--border2);
  background: var(--bg);
  margin: 0 auto 1.4rem;
  display: flex; align-items: center; justify-content: center;
  font-family: "Riforma LL TT Bold", "Riforma LL TT Bold Placeholder", sans-serif;
  font-weight: 700; font-size: 1rem;
  color: var(--text);
  letter-spacing: -0.01em;
  transition: background .15s, color .15s, border-color .15s;
  position: relative; z-index: 2;
}
.step-item:hover .step-n {
  background: var(--text); color: #111;
  border-color: var(--text);
}
.step-title {
  font-family: "Riforma LL TT Bold", "Riforma LL TT Bold Placeholder", sans-serif;
  font-weight: 700; font-size: 1.125rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
  color: var(--text);
}
.step-text {
  font-size: 0.9375rem; color: var(--muted);
  line-height: 1.55;
  letter-spacing: -0.005em;
}


.market-section {
  padding: 110px 5%;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.market-inner { max-width: 1320px; margin: 0 auto; }
.market-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 2.4rem; gap: 2rem; flex-wrap: wrap;
}
.market-head-left { max-width: 720px; }
.market-head-left .sec-sub { margin-top: 1.1rem; }
.live-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(22,163,74,0.08);
  border: 1px solid rgba(22,163,74,0.2);
  color: var(--up);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 13px; border-radius: 100px;
}
.lb-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--up);
  animation: pulse 1.7s infinite;
}

.market-card {
  background: var(--dark);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--dark-text);
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.30);
}

.mc-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 16px 18px;
  border-bottom: 1px solid var(--dev-border);
  flex-wrap: wrap;
}
.mc-symbol-tabs { display: flex; gap: 4px; flex-wrap: wrap; }
.mc-tab {
  background: transparent;
  border: 1px solid var(--dev-border);
  color: var(--dev-mut);
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 0.8125rem; font-weight: 400;
  letter-spacing: -0.005em;
  transition: background .15s, color .15s, border-color .15s;
  font-family: inherit;
  cursor: pointer;
}
.mc-tab:hover { color: var(--dev-text); border-color: var(--dev-border2); }
.mc-tab.active {
  background: var(--dev-text);
  border-color: var(--dev-text);
  color: #111;
}
.mc-tv-attr {
  font-size: 0.75rem;
  color: var(--dev-mut2);
  text-decoration: none;
  letter-spacing: -0.005em;
  transition: color .15s;
}
.mc-tv-attr:hover { color: var(--dev-text); }

.mc-tv-wrap {
  position: relative;
  height: 520px;
  background: #111;
}
.mc-tv-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}


.ticker {
  margin-top: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 12px 0; overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}
.ti      { color: var(--muted); }
.ti strong { color: var(--text); }
.ti-sep  { color: var(--border2); }
.ticker-track {
  display: flex; gap: 2.5rem;
  animation: scroll 38s linear infinite;
  width: max-content; white-space: nowrap;
}
.ti {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--muted);
}
.ti strong { color: var(--text); font-weight: 700; }
.ti-up { color: var(--up); font-weight: 700; }
.ti-dn { color: var(--dn); font-weight: 700; }
.ti-sep { color: var(--border2); }
@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


.split-section {
  padding: 110px 5%;
  position: relative;
  overflow: hidden;
}
.split-section.split-swap {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.split-inner {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: 5rem; align-items: center;
  position: relative;
}
.split-copy .ghost-link { margin-top: 1.6rem; }

.bullet-list {
  list-style: none;
  margin: 1.6rem 0 0;
  display: grid; gap: 12px;
}
.bullet-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 1rem; color: var(--text);
  letter-spacing: -0.01em;
}
.bullet-list li::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red-light);
  margin-top: 9px;
  flex-shrink: 0;
}
.bullet-list li span { color: var(--muted); line-height: 1.55; letter-spacing: -0.005em; }

.ghost-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--text);
  font-size: 1rem; font-weight: 400;
  letter-spacing: -0.01em;
  text-decoration: none;
  border-bottom: 1px solid var(--text);
  padding-bottom: 2px;
  transition: gap .2s, color .15s, border-color .15s;
}
.ghost-link:hover { gap: 10px; color: var(--red-light); border-color: var(--red-light); }


.device--swap .dev-body { min-height: 540px; }

.swap-panel {
  width: 100%;
  background: var(--dev-bg);
  display: flex; flex-direction: column;
  gap: 8px;
}
.swap-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 6px;
}
.swap-title { font-weight: 800; font-size: 1.15rem; letter-spacing: -0.02em; }
.swap-actions { display: flex; align-items: center; gap: 10px; }
.swap-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.7rem; font-weight: 700;
  color: var(--up);
  background: rgba(22,163,74,0.12);
  border: 1px solid rgba(22,163,74,0.25);
  padding: 4px 10px; border-radius: 100px;
}
.swap-pill i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--up);
  animation: pulse 1.7s infinite;
}
.swap-cog { color: var(--dev-mut); font-size: 1.1rem; cursor: pointer; }

.swap-box {
  background: var(--dev-bg2);
  border: 1px solid var(--dev-border);
  border-radius: 12px;
  padding: 16px 18px;
}
.swap-box-row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.swap-label { font-size: 0.7rem; color: var(--dev-mut2); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.swap-amt { font-weight: 800; font-size: 1.6rem; letter-spacing: -0.02em; color: var(--dev-text); margin-top: 6px; line-height: 1; }
.swap-fiat { font-size: 0.78rem; color: var(--dev-mut); margin-top: 4px; }

.swap-asset { text-align: right; }
.swap-net { font-size: 0.7rem; color: var(--dev-mut); margin-bottom: 6px; }
.swap-net strong { color: var(--dev-text); font-weight: 700; }
.swap-token {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--dev-bg3);
  border: 1px solid var(--dev-border);
  color: var(--dev-text);
  padding: 8px 12px;
  border-radius: 100px;
  font-weight: 700; font-size: 0.92rem;
}
.swap-tk-ic {
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.7rem; color: #fff;
  overflow: hidden;
}
.swap-caret { color: var(--dev-mut); font-size: 0.7rem; }
.swap-bal { font-size: 0.7rem; color: var(--dev-mut2); margin-top: 6px; }

.swap-arrow {
  display: flex; align-items: center; justify-content: center;
  margin: -4px 0;
  position: relative;
  z-index: 2;
}
.swap-arrow svg {
  width: 34px; height: 34px;
  background: var(--dev-bg);
  border: 1px solid var(--dev-border2);
  border-radius: 8px; padding: 7px;
  color: var(--red-light);
}

.swap-route {
  background: var(--dev-bg2);
  border: 1px solid var(--dev-border);
  border-radius: 10px;
  padding: 12px 16px;
  display: grid; gap: 8px;
  margin-top: 4px;
}
.sr-row { display: flex; justify-content: space-between; font-size: 0.76rem; }
.sr-l { color: var(--dev-mut); }
.sr-r { color: var(--dev-text); font-weight: 600; }
.mev-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--red-pale2);
  color: var(--red-light);
  font-weight: 700;
  font-size: 0.7rem;
  padding: 2px 9px; border-radius: 100px;
  border: 1px solid rgba(232,0,29,0.3);
}
.mev-pill i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red-light);
}

.swap-cta {
  margin-top: 8px;
  background: var(--red-light);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-weight: 700; font-size: 0.95rem;
  transition: background .2s;
}
.swap-cta:hover { background: var(--red); }


.chains-marquee {
  margin-top: 80px;
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: transparent;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  scroll-margin-top: 80px;
  display: flex; flex-direction: column; gap: 4px;
}
.cm-track {
  display: flex; gap: 1.6rem; align-items: center;
  white-space: nowrap; width: max-content;
}
.cm-track--left  { animation: scrollL 60s linear infinite; }
.cm-track--right { animation: scrollR 70s linear infinite; }
@keyframes scrollL { 0% { transform: translateX(0); }    100% { transform: translateX(-50%); } }
@keyframes scrollR { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
.cm-chip {
  font-family: "Riforma LL TT Bold", "Riforma LL TT Bold Placeholder", sans-serif;
  font-weight: 700; font-size: 1.5rem;
  color: var(--text);
  letter-spacing: -0.01em;
  opacity: 0.6;
  transition: opacity .15s;
}
.cm-chip:hover { opacity: 1; }
.cm-sep {
  color: var(--red-light);
  font-size: 0.7rem;
}


.fiat-section {
  padding: 110px 5%;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.fiat-inner { max-width: 1320px; margin: 0 auto; }
.fiat-head { text-align: left; margin-bottom: 4rem; max-width: 760px; }
.fiat-head .sec-sub { margin-top: 1.1rem; }

.fiat-flow {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.fiat-node {
  flex: 0 0 auto;
  width: 240px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: background .15s, border-color .15s;
}
.fiat-node:hover { background: var(--surface-2); border-color: var(--border2); }
.fn-icon {
  width: 72px; height: 50px;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(250, 250, 249, 0.06);
  border: 1px solid var(--border2);
}
.fn-icon svg { width: 52px; height: 32px; }

.fn-title {
  font-family: "Riforma LL TT Bold", "Riforma LL TT Bold Placeholder", sans-serif;
  font-weight: 700; font-size: 1rem;
  color: var(--text); margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.fn-sub {
  font-size: 0.875rem; color: var(--muted);
  line-height: 1.5;
}

.fiat-arrow {
  color: var(--muted);
  flex: 0 0 80px;
  display: flex; align-items: center; justify-content: center;
}
.fiat-arrow svg { width: 80px; height: 24px; }

.fiat-methods {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px 28px;
  align-items: center;
}
.fm-label {
  font-size: 0.875rem; font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--muted2);
  flex-shrink: 0;
}
.fm-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.fm-chip {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  padding: 0 16px;
  height: 52px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .15s, border-color .15s;
  min-width: 0;
}
.fm-chip:hover { background: var(--surface-2); border-color: var(--text); }
.fm-chip svg { height: 26px; width: auto; max-width: 100%; }
.fm-chip-txt {
  font-size: 0.875rem; font-weight: 400; color: var(--text);
  letter-spacing: -0.01em; white-space: nowrap;
}
.fm-chip--wide svg { height: 18px; }
@media (max-width: 900px) {
  .fiat-methods { grid-template-columns: 1fr; gap: 16px; }
  .fm-row { grid-template-columns: repeat(2, 1fr); }
}


.security-section {
  padding: 110px 5%;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.security-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,0,29,0.03) 0%, transparent 70%);
  top: -200px; right: -200px;
  pointer-events: none;
}
.sec-inner { max-width: 1320px; margin: 0 auto; position: relative; }
.sec-head { text-align: left; margin-bottom: 4rem; max-width: 760px; }
.sec-head .sec-sub { margin-top: 1.1rem; }

.sec-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.2rem;
  margin-bottom: 3.5rem;
}
.sec-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: background .15s, border-color .15s;
}
.sec-card:hover { background: var(--surface-2); border-color: var(--border2); }
.sec-card-ic {
  width: 40px; height: 40px;
  border-radius: var(--radius);
  background: rgba(250, 250, 249, 0.06);
  border: 1px solid var(--border2);
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.sec-card-ic svg { width: 20px; height: 20px; }
.sec-card strong {
  font-family: "Riforma LL TT Bold", "Riforma LL TT Bold Placeholder", sans-serif;
  display: block; font-weight: 700; font-size: 1.125rem;
  color: var(--text); margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.sec-card p {
  font-size: 0.9375rem; color: var(--muted);
  line-height: 1.55; letter-spacing: -0.005em;
}


.sec-partners {
  margin-top: 2.4rem;
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.sec-partners-track {
  display: flex; gap: 1rem; align-items: center;
  white-space: nowrap; width: max-content;
  animation: scroll 50s linear infinite;
}
.sp-chip {
  font-family: "Riforma LL TT Regular", "Riforma LL TT Regular Placeholder", sans-serif;
  font-weight: 400; font-size: 0.9375rem;
  letter-spacing: -0.01em;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  display: inline-flex; align-items: center; gap: 7px;
}
.sp-chip::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
}
.sp-chip--hw::before    { background: #16a34a; }
.sp-chip--audit::before { background: var(--red-light); }
.sp-chip--fund::before  { background: #627EEA; }


.testi-section { padding: 110px 5%; background: var(--bg); border-bottom: 1px solid var(--border); }
.testi-inner { max-width: 1320px; margin: 0 auto; }
.testi-head { text-align: center; margin-bottom: 3.5rem; }
.testi-head .eyebrow { display: inline-block; }

.tweet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.tweet {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  text-decoration: none;
  color: var(--text);
  display: flex; flex-direction: column;
  transition: background .15s, border-color .15s;
}
.tweet:hover {
  background: var(--surface-2);
  border-color: var(--border2);
}
.tw-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.tw-av {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: #fff; font-size: 1rem;
  flex-shrink: 0;
}
.tw-meta { flex: 1; min-width: 0; }
.tw-name {
  font-family: "Riforma LL TT Bold", "Riforma LL TT Bold Placeholder", sans-serif;
  font-weight: 700; font-size: 0.9375rem;
  letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 4px;
}
.tw-check {
  color: var(--bg);
  font-size: 0.6rem;
  background: var(--text);
  width: 14px; height: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-weight: 800;
}
.tw-handle { font-size: 0.875rem; color: var(--muted2); }
.tw-x { width: 16px; height: 16px; color: var(--muted2); }
.tw-text {
  font-size: 0.9375rem; color: var(--text);
  line-height: 1.55;
  letter-spacing: -0.005em;
  font-weight: 400;
  flex: 1;
  margin-bottom: 14px;
}
.tw-stats {
  display: flex; gap: 1.4rem;
  font-size: 0.875rem; color: var(--muted2);
  padding-top: 12px;
  border-top: 1px solid var(--border);
}


.faq-section {
  padding: 110px 5%;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.faq-inner { max-width: 920px; margin: 0 auto; }
.faq-head { text-align: left; margin-bottom: 3rem; max-width: 760px; }
.faq-head .sec-sub { margin-top: 1.1rem; }

.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  background: transparent;
  border-top: 1px solid var(--border);
  border-radius: 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-trigger {
  width: 100%; background: transparent; border: none;
  padding: 28px 0;
  display: flex; justify-content: space-between; align-items: center;
  text-align: left;
  font-family: "Riforma LL TT Regular", "Riforma LL TT Regular Placeholder", sans-serif;
  font-size: 1.125rem; font-weight: 400;
  color: var(--text);
  letter-spacing: -0.01em;
  gap: 1.5rem;
  transition: color .15s;
  cursor: pointer;
}
.faq-trigger:hover { color: var(--muted); }
.faq-item.is-open .faq-trigger { color: var(--text); }


.faq-chev {
  position: relative;
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--text);
  transition: transform .35s cubic-bezier(.4,.0,.2,1);
}
.faq-chev::before,
.faq-chev::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 1px;
}
.faq-chev::before { left: 0; right: 0; top: 50%; height: 1.5px; margin-top: -0.75px; }   
.faq-chev::after  { top: 0; bottom: 0; left: 50%; width: 1.5px; margin-left: -0.75px;  } 
.faq-item.is-open .faq-chev { transform: rotate(45deg); }


.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s cubic-bezier(.4,.0,.2,1);
}
.faq-item.is-open .faq-body { grid-template-rows: 1fr; }


.faq-body-in {
  min-height: 0;
  overflow: hidden;
}

.faq-body-in > p {
  margin: 0;
  padding: 4px 0 28px;
  font-size: 1.0625rem; color: var(--muted);
  line-height: 1.55;
  letter-spacing: -0.005em;
  max-width: 760px;
}


.cta-section {
  padding: 140px 5%; text-align: center;
  position: relative;
  background: var(--bg);
  color: var(--text);
}
.cta-title {
  font-family: "Riforma LL TT Bold", "Riforma LL TT Bold Placeholder", sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4.0625rem);     
  letter-spacing: -0.01em;
  line-height: 1.04; max-width: 880px; margin: 0 auto 1.2rem;
  color: var(--text);
}
.cta-title em {
  font-family: "Riforma LL TT Bold Italic", "Riforma LL TT Bold Italic Placeholder", sans-serif;
  font-style: italic; font-weight: 700;
  color: var(--text);
}
.cta-sub {
  color: var(--muted); font-size: 1.125rem;
  max-width: 540px; margin: 0 auto 2.8rem;
  line-height: 1.55;
  letter-spacing: -0.01em;
}
.cta-dl {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}


footer {
  border-top: 1px solid var(--border);
  padding: 64px 5% 32px;
  background: var(--bg);
}
.footer-inner { max-width: 1320px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.2fr 2fr;
  gap: 3rem;
  padding-bottom: 40px;
}
.footer-brand .f-logo-link {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--text);
}
.f-logo-mark {
  width: 38px; height: 38px;
  display: block;
  border-radius: 8px;
}
.f-logo-txt {
  font-family: "Riforma LL TT Bold", "Riforma LL TT Bold Placeholder", sans-serif;
  font-weight: 700; font-size: 1.125rem;
  letter-spacing: -0.01em; color: var(--text);
}
.f-logo-txt em {
  font-family: "Riforma LL TT Bold Italic", "Riforma LL TT Bold Italic Placeholder", sans-serif;
  font-style: italic;
}
.f-logo-wordmark {
  height: 38px; width: auto;
  display: block;
}
.footer-brand p {
  font-size: 0.9375rem; color: var(--muted);
  margin-top: 18px; max-width: 320px; line-height: 1.55;
  letter-spacing: -0.005em;
}

.footer-cols {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem;
}
.footer-col h4 {
  font-family: "Riforma LL TT Bold", "Riforma LL TT Bold Placeholder", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  text-transform: none;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a {
  font-size: 0.9375rem; color: var(--muted);
  text-decoration: none;
  letter-spacing: -0.005em;
  transition: color .15s;
}
.footer-col a:hover { color: var(--text); }

.footer-divider { border: none; height: 1px; background: var(--border); }

.footer-bot {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1.5rem; flex-wrap: wrap;
}
.footer-copy { font-size: 0.875rem; color: var(--muted2); letter-spacing: -0.005em; }
.footer-social {
  display: flex;
  gap: 12px;
  margin-left: auto;
  margin-right: 84px;
}
.footer-social a {
  width: 34px; height: 34px; border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s, border-color .15s;
}
.footer-social a:hover {
  background: var(--text);
  border-color: var(--text);
  color: var(--bg);
}
.footer-social svg { width: 15px; height: 15px; }


.consent-popups {
  position: fixed; left: 24px; bottom: 24px; z-index: 950;
  max-width: 520px;
}
.consent-popup {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 18px 22px;
  display: flex; gap: 1.4rem; align-items: center; flex-wrap: wrap;
}
.consent-left h3 {
  font-family: "Riforma LL TT Bold", "Riforma LL TT Bold Placeholder", sans-serif;
  font-size: 1rem; font-weight: 700;
  color: var(--text);
  margin-bottom: 4px; letter-spacing: -0.01em;
}
.consent-left p  { font-size: 0.875rem; color: var(--muted); line-height: 1.5; }
.consent-right { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.consent-link {
  font-size: 0.875rem; color: var(--text);
  text-decoration: none; font-weight: 400;
  border-bottom: 1px solid var(--text);
  padding-bottom: 1px;
}
.consent-link:hover { color: var(--muted); border-color: var(--muted); }
.consent-btn {
  background: var(--text); color: #111; border: none;
  padding: 9px 20px; border-radius: 100px;
  font-weight: 400; font-size: 0.875rem;
  letter-spacing: -0.01em;
  transition: background .15s;
}
.consent-btn:hover { background: #fff; }


#support-chat {
  position: fixed; right: 22px; bottom: 22px; z-index: 940;
}
.support-fab {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--text); color: #111;
  border: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform .2s, background .2s;
}
.support-fab:hover { background: #fff; transform: translateY(-2px); }
.sup-ic { width: 24px; height: 24px; position: absolute; transition: opacity .2s, transform .2s; }
.sup-ic--close { opacity: 0; transform: rotate(-90deg); }
.support-fab.is-open .sup-ic--chat { opacity: 0; transform: rotate(90deg); }
.support-fab.is-open .sup-ic--close { opacity: 1; transform: rotate(0); }

.support-window {
  position: absolute;
  bottom: 70px; right: 0;
  width: 340px; max-height: 500px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  overflow: hidden;
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s, transform .2s;
}
.support-window.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.support-head {
  background: linear-gradient(135deg, var(--red-light), var(--red));
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
}
.support-av {
  width: 38px; height: 38px;
  border-radius: 9px;
  overflow: hidden;
  background: #fff;
  flex-shrink: 0;
}
.support-av img { width: 100%; height: 100%; display: block; }
.support-title { color: #fff; }
.support-title strong { display: block; font-size: 0.95rem; font-weight: 700; }
.support-title span { display: block; font-size: 0.7rem; opacity: 0.85; }

.support-msgs {
  flex: 1;
  padding: 14px;
  display: flex; flex-direction: column; gap: 8px;
  overflow-y: auto;
  min-height: 240px;
  max-height: 320px;
}
.support-msg {
  max-width: 80%;
  padding: 9px 13px;
  font-size: 0.85rem; line-height: 1.4;
  border-radius: 12px;
  word-wrap: break-word;
}
.support-msg--bot {
  background: var(--bg3);
  color: var(--text);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.support-msg--user {
  background: var(--red-light);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.support-msg--typing { display: flex; gap: 4px; padding: 14px 16px; }
.support-msg--typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--muted2);
  animation: typing 1.2s infinite;
}
.support-msg--typing span:nth-child(2) { animation-delay: 0.15s; }
.support-msg--typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing {
  0%,80%,100% { opacity: 0.3; transform: translateY(0); }
  40%         { opacity: 1; transform: translateY(-3px); }
}

.support-input-row {
  border-top: 1px solid var(--border);
  padding: 10px;
  display: flex; gap: 8px;
}
.support-input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 9px 12px;
  font-size: 0.875rem;
  font-family: inherit;
  outline: none;
  color: var(--text);
}
.support-input::placeholder { color: var(--muted2); }
.support-input:focus { border-color: var(--text); }
.support-send {
  width: 36px; height: 36px;
  background: var(--red-light); color: #fff;
  border: none; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.support-send:hover { background: var(--red); }
.support-send svg { width: 16px; height: 16px; }


@media (max-width: 1100px) {
  .hero-inner, .split-inner { grid-template-columns: 1fr; gap: 4rem; }
  .device { transform: rotateY(0deg) rotateX(0deg) !important; }
  .feat-grid { grid-template-columns: repeat(2,1fr); }
  .feat-card.wide { grid-column: span 2; grid-template-columns: 1fr; }
  .sec-grid { grid-template-columns: repeat(2,1fr); }
  .tweet-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .stats-grid, .steps-grid, .mc-foot { grid-template-columns: repeat(2,1fr); }
  .stats-grid > .stat-cell:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .mc-foot .mcf-cell:nth-child(2), .mc-foot .mcf-cell:nth-child(4) { border-right: none; }
  .steps-grid::before { display: none; }
  .nav-links li:not(.nav-dl) { display: none; }
  .nav-links li:has(.nav-dl) { display: block; }
}
@media (max-width: 760px) {
  nav#navbar { padding: 0 4%; height: 60px; }
  .nav-logo-wordmark { height: 32px; }
  .hero { padding: 100px 5% 60px; }
  .feat-grid { grid-template-columns: 1fr; }
  .feat-card.wide { grid-column: span 1; }
  .sec-grid, .tweet-grid, .stats-grid, .steps-grid, .footer-cols { grid-template-columns: 1fr; }
  .mc-foot { grid-template-columns: 1fr 1fr; }
  .mcf-cell { border-right: none !important; border-bottom: 1px solid var(--dev-border); }
  .stats-grid > .stat-cell { border-bottom: 1px solid var(--border); }
  .float-card.top-right { top: -10px; right: 8px; width: 140px; }
  .float-card.bot-left { bottom: -10px; left: 8px; width: 140px; }
  .split-swap .float-card.top-right {
    width: 224px;
    padding-right: 12px;
  }
  .fiat-flow { flex-direction: column; }
  .fiat-arrow { transform: rotate(90deg); flex: none; margin: 6px 0; }
  .consent-popups { left: 12px; right: 12px; bottom: 12px; max-width: none; }
  .support-window { width: calc(100vw - 30px); right: -10px; }
  .lang-toggle { display: none; }
  .nav-links { gap: 1rem; }
}

