@charset "UTF-8";
/* =====================================================================
   ARVION NETWORK -- site v4.2, light theme
   ---------------------------------------------------------------------
   Bright, premium fintech: white and pale blue surfaces, the electric
   blue of the app icon, bold headlines, floating UI cards, bento grids,
   one dark contrast band and a gradient call to action.

   No accented character anywhere in this file: Hostinger once served
   CSS without a declared charset, and a misread accent closed a comment
   early and swallowed every rule after it.

   Linked as arvion4.css?v=N. The Hostinger CDN caches CSS for seven
   days: raise N in every page whenever this file changes.
   ===================================================================== */

:root {
  --bg: #F5F7FB;
  --surface: #FFFFFF;
  --surface-2: #F0F4FB;
  --soft: #EAF1FF;
  --line: #E3E8F2;
  --line-hi: #D2DBEA;

  --ink: #0B1633;
  --ink-2: #4A5877;
  --ink-3: #8491AC;

  --blue: #1F6BFF;
  --blue-hi: #4B8BFF;
  --cyan: #22C3F0;
  --navy: #07122B;
  --navy-2: #0D1D45;

  --live: #0FA968;
  --dev: #C98A06;
  --future: #6B7894;

  --grad: linear-gradient(135deg, #1F6BFF 0%, #22C3F0 100%);
  --grad-text: linear-gradient(100deg, #1F6BFF 0%, #22A7F0 60%, #22C3F0 100%);

  --fd: "Plus Jakarta Sans", Manrope, system-ui, sans-serif;
  --fs: Manrope, system-ui, -apple-system, "Segoe UI", sans-serif;
  --fm: "Space Mono", ui-monospace, Menlo, Consolas, monospace;

  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 32px;
  --r-pill: 999px;
  --maxw: 1220px;
  --gutter: clamp(1.1rem, 4.5vw, 2.8rem);
  --nav-h: 84px;
  --ease: cubic-bezier(.22, .61, .36, 1);

  --shadow-sm: 0 1px 2px rgba(11, 22, 51, .05), 0 6px 16px -8px rgba(11, 22, 51, .12);
  --shadow: 0 2px 4px rgba(11, 22, 51, .04), 0 24px 50px -24px rgba(11, 22, 51, .22);
  --shadow-blue: 0 22px 50px -18px rgba(31, 107, 255, .55);

  color-scheme: light;
}

/* ------------------------------------------------------------ Base */

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--fs);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0; }

h1, h2, h3, h4 { margin: 0; font-family: var(--fd); font-weight: 700; line-height: 1.08; letter-spacing: -.03em; color: var(--ink); }
h1 { font-size: clamp(2.5rem, 5.8vw, 4.7rem); font-weight: 800; letter-spacing: -.045em; line-height: 1.02; }
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); font-weight: 800; letter-spacing: -.04em; }
h3 { font-size: 1.2rem; letter-spacing: -.02em; }

::selection { background: rgba(31, 107, 255, .18); }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 8px; }

.skip { position: absolute; left: -999px; top: 0; }
.skip:focus { left: 1rem; top: 1rem; z-index: 100; background: var(--ink); color: #fff; padding: .6rem 1rem; border-radius: var(--r-sm); }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { position: relative; padding-block: clamp(4.5rem, 9vw, 8rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--white { background: var(--surface); }
.center { text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .38rem .85rem; border-radius: var(--r-pill);
  background: var(--soft); color: var(--blue);
  font-family: var(--fs); font-weight: 700; font-size: .8rem; letter-spacing: .02em;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--grad); }

.head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 3.8rem); }
.head.center { margin-inline: auto; }
.head h2 { margin-top: 1rem; }

.lead { margin-top: 1.1rem; font-size: clamp(1.06rem, 1.6vw, 1.22rem); line-height: 1.6; color: var(--ink-2); }
.grad { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.small { font-size: .92rem; color: var(--ink-3); }
.small a { color: var(--ink-2); text-decoration: underline; text-underline-offset: 3px; }

/* --------------------------------------------------------- Buttons */

.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 54px; padding: .85rem 1.55rem; border-radius: var(--r-pill);
  font-family: var(--fd); font-weight: 700; font-size: 1rem; letter-spacing: -.01em;
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn--primary { background: var(--grad); color: #FFFFFF; box-shadow: var(--shadow-blue); }
.btn--primary::after {
  content: ""; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .45), transparent);
  transform: skewX(-20deg); animation: shine 4.5s var(--ease) infinite;
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 26px 60px -18px rgba(31, 107, 255, .7); }
.btn--dark { background: var(--ink); color: #FFFFFF; box-shadow: 0 16px 40px -18px rgba(11, 22, 51, .6); }
.btn--dark:hover { transform: translateY(-2px); background: #172552; }
.btn--ghost { background: var(--surface); color: var(--ink); border-color: var(--line-hi); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--blue-hi); color: var(--blue); }
.btn--light { background: #FFFFFF; color: var(--ink); }
.btn--light:hover { transform: translateY(-2px); }
.btn--outline-light { background: rgba(255, 255, 255, .1); color: #FFFFFF; border-color: rgba(255, 255, 255, .4); }
.btn--outline-light:hover { background: rgba(255, 255, 255, .2); transform: translateY(-2px); }
.btn--sm { min-height: 44px; padding: .55rem 1.15rem; font-size: .92rem; }
@keyframes shine { 0%, 60% { left: -60%; } 100% { left: 130%; } }

/* ------------------------------------------------------ Navigation */

.nav { position: sticky; top: 0; z-index: 50; padding-top: 12px; transition: padding .3s var(--ease); }
.nav__bar {
  display: flex; align-items: center; gap: 1rem; height: 64px;
  padding: 0 .6rem 0 1.1rem; border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .72); border: 1px solid rgba(227, 232, 242, .9);
  -webkit-backdrop-filter: blur(18px) saturate(160%); backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 10px 30px -20px rgba(11, 22, 51, .25);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.nav.is-scrolled .nav__bar { background: rgba(255, 255, 255, .92); box-shadow: 0 18px 40px -22px rgba(11, 22, 51, .35); }

.brand { display: inline-flex; align-items: center; gap: .6rem; flex-shrink: 0; font-family: var(--fd); font-weight: 800; font-size: 1.08rem; letter-spacing: -.02em; }
.brand img { width: 34px; height: 34px; border-radius: 10px; }

.nav__links { display: flex; align-items: center; gap: .1rem; list-style: none; margin: 0 0 0 auto; padding: 0; }
.nav__cta { margin-left: .3rem; }
.nav__drawer-cta { display: none; }

.nav__item { position: relative; }
.nav__top {
  display: inline-flex; align-items: center; gap: .3rem; padding: .55rem .8rem; border: 0; border-radius: var(--r-pill);
  background: none; color: var(--ink-2); cursor: pointer; font-family: var(--fs); font-weight: 700; font-size: .93rem;
  transition: color .2s, background .2s;
}
.nav__top svg { width: 14px; height: 14px; transition: transform .2s var(--ease); }
.nav__top:hover, .nav__item.is-open > .nav__top { color: var(--ink); background: var(--surface-2); }
.nav__item:hover > .nav__top svg, .nav__item.is-open > .nav__top svg { transform: rotate(180deg); }

.sub {
  position: absolute; top: calc(100% + 14px); left: 50%; min-width: 280px;
  list-style: none; margin: 0; padding: .5rem;
  border-radius: var(--r-md); border: 1px solid var(--line); background: #FFFFFF; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translate(-50%, -8px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.sub::before { content: ""; position: absolute; left: 0; right: 0; top: -16px; height: 16px; }
.nav__item:hover > .sub, .nav__item:focus-within > .sub, .nav__item.is-open > .sub { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.sub a { display: block; padding: .65rem .85rem; border-radius: 12px; font-weight: 700; font-size: .94rem; color: var(--ink); transition: background .2s; }
.sub a:hover { background: var(--surface-2); }
.sub a span { display: block; margin-top: .1rem; font-weight: 500; font-size: .8rem; color: var(--ink-3); }

.nav__burger {
  display: none; margin-left: auto; width: 46px; height: 46px; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid var(--line-hi); background: #FFFFFF; color: var(--ink); cursor: pointer;
}
.nav__burger svg { width: 22px; height: 22px; }

@media (max-width: 1100px) {
  .nav__burger { display: inline-flex; }
  .nav__cta { display: none; }
  .nav__links {
    position: fixed; top: calc(var(--nav-h) + 4px); left: var(--gutter); right: var(--gutter);
    flex-direction: column; align-items: stretch; gap: 0; margin: 0; padding: .8rem;
    border-radius: var(--r-md); border: 1px solid var(--line); background: #FFFFFF; box-shadow: var(--shadow);
    max-height: calc(100vh - var(--nav-h) - 20px); overflow-y: auto;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  }
  .nav.is-open .nav__links { opacity: 1; visibility: visible; transform: none; }
  .nav__item { padding: .45rem 0; border-top: 1px solid var(--line); }
  .nav__item:first-child { border-top: 0; }
  .nav__top { padding: .3rem .8rem; background: none; pointer-events: none; font-family: var(--fm); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); }
  .nav__top svg { display: none; }
  .sub { position: static; min-width: 0; padding: 0; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .sub::before { display: none; }
  .sub a { padding: .6rem .8rem; font-size: 1.02rem; }
  .sub a span { display: none; }
  .nav__drawer-cta { display: block; margin-top: .6rem; }
  .nav__drawer-cta .btn { width: 100%; }
}

/* ------------------------------------------------------------ Hero */

.hero { position: relative; overflow: hidden; padding-block: clamp(2.2rem, 5vw, 4.5rem) clamp(3.5rem, 7vw, 6rem); }
.blob { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; opacity: .55; animation: drift 18s var(--ease) infinite alternate; }
.blob--1 { width: 520px; height: 520px; right: -120px; top: -80px; background: #9CC2FF; }
.blob--2 { width: 380px; height: 380px; left: -160px; top: 30%; background: #BDEBFF; animation-delay: -6s; }
.blob--3 { width: 300px; height: 300px; right: 20%; bottom: -120px; background: #D9E6FF; animation-delay: -11s; }
@keyframes drift { from { transform: translate(0, 0) scale(1); } to { transform: translate(40px, 30px) scale(1.12); } }

.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(2.5rem, 5vw, 4rem); align-items: center; }
.hero h1 { margin-top: 1.3rem; }
.hero .lead { max-width: 33rem; }
.hero__act { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }

.facts { display: flex; flex-wrap: wrap; gap: 2.2rem; margin-top: 2.6rem; padding-top: 1.8rem; border-top: 1px solid var(--line); }
.fact strong { display: block; font-family: var(--fd); font-weight: 800; font-size: 1.7rem; letter-spacing: -.03em; line-height: 1; }
.fact span { display: block; margin-top: .35rem; font-size: .85rem; color: var(--ink-3); }

.showcase {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--r-lg);
  background: radial-gradient(90% 70% at 70% 20%, #CFE0FF 0%, #EAF2FF 45%, #F7FAFF 100%);
  border: 1px solid #DCE6F7; box-shadow: var(--shadow);
}
.showcase__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }

.float {
  position: absolute; z-index: 2; display: flex; align-items: center; gap: .65rem;
  padding: .7rem 1rem .7rem .7rem; border-radius: 18px;
  background: rgba(255, 255, 255, .92); border: 1px solid rgba(227, 232, 242, .95);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  box-shadow: 0 20px 44px -18px rgba(11, 22, 51, .35);
  font-size: .9rem; animation: float 6s var(--ease) infinite;
}
.float b { display: block; font-family: var(--fd); font-weight: 800; font-size: .98rem; letter-spacing: -.01em; }
.float small { display: block; color: var(--ink-3); font-size: .78rem; }
.float__icon { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; color: #FFFFFF; background: var(--grad); flex-shrink: 0; }
.float__icon svg { width: 20px; height: 20px; }
.float__icon--ok { background: linear-gradient(135deg, #10B981, #34D399); }
.float--1 { top: 9%; left: -9%; }
.float--2 { top: 44%; right: -8%; animation-delay: -2s; }
.float--3 { bottom: 8%; left: -5%; animation-delay: -4s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .showcase { max-width: 520px; width: 100%; margin-inline: auto; }
  .float--1 { left: 3%; }
  .float--2 { right: 3%; }
  .float--3 { left: 6%; }
}

/* --------------------------------------------------------- Marquee */

.marquee { overflow: hidden; padding-block: 1.4rem; border-block: 1px solid var(--line); background: var(--surface); }
.marquee__track { display: flex; gap: 2.6rem; width: max-content; animation: marquee 32s linear infinite; }
.marquee span { display: inline-flex; align-items: center; gap: 2.6rem; font-family: var(--fd); font-weight: 800; font-size: clamp(1.4rem, 3vw, 2.2rem); letter-spacing: -.03em; color: var(--ink); white-space: nowrap; }
.marquee span::after { content: ""; width: 14px; height: 14px; border-radius: 4px; background: var(--grad); transform: rotate(45deg); }
.marquee span:nth-child(even) { color: var(--ink-3); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ----------------------------------------------------------- Cards */

.grid { display: grid; gap: 1.1rem; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 1000px) { .grid--4, .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; } }

.card {
  position: relative; overflow: hidden; padding: 1.8rem; border-radius: var(--r-md);
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #CFDBF3; }
.card h3 { margin-bottom: .45rem; }
.card p { margin: 0; color: var(--ink-2); font-size: .98rem; }
.card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: .8rem; margin-bottom: 1.3rem; }
.card__top .icon { margin-bottom: 0; }

.icon {
  width: 50px; height: 50px; margin-bottom: 1.3rem; flex-shrink: 0;
  display: grid; place-items: center; border-radius: 15px; color: var(--blue);
  background: linear-gradient(145deg, #EAF1FF, #DDEBFF); border: 1px solid #D6E4FF;
}
.icon svg { width: 24px; height: 24px; }

.verb { margin-bottom: .35rem; font-family: var(--fd); font-weight: 800; font-size: 1.45rem; letter-spacing: -.02em; }

/* ---------------------------------------------------------- Status */

.status {
  display: inline-flex; align-items: center; gap: .45rem; padding: .3rem .7rem; border-radius: var(--r-pill);
  font-family: var(--fs); font-weight: 700; font-size: .72rem; letter-spacing: .02em; white-space: nowrap; border: 1px solid;
}
.status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.status--live { color: var(--live); border-color: #BDEFD6; background: #ECFBF3; }
.status--live::before { animation: pulse 2s var(--ease) infinite; }
.status--dev { color: var(--dev); border-color: #F3DDA6; background: #FFF7E3; }
.status--future { color: var(--future); border-color: #DCE2EE; background: #F4F6FA; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(15, 169, 104, .5); } 100% { box-shadow: 0 0 0 8px rgba(15, 169, 104, 0); } }
.legend { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; margin-top: 1.5rem; }

/* --------------------------------------------------------- Problem */

.problems { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.problem { position: relative; padding: 2rem; border-radius: var(--r-md); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.problem:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.problem__n { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 13px; background: var(--ink); color: #FFFFFF; font-family: var(--fd); font-weight: 800; font-size: .95rem; }
.problem h3 { margin: 1.3rem 0 .6rem; font-size: clamp(1.3rem, 2vw, 1.55rem); }
.problem p { margin: 0; color: var(--ink-2); }
@media (max-width: 880px) { .problems { grid-template-columns: 1fr; } }

/* ------------------------------------------------------ Dark band */

.band { position: relative; overflow: hidden; margin-inline: var(--gutter); border-radius: var(--r-lg); background: radial-gradient(70% 90% at 80% 10%, rgba(31, 107, 255, .55), transparent 60%), radial-gradient(50% 70% at 0% 100%, rgba(34, 195, 240, .25), transparent 60%), var(--navy); color: #FFFFFF; }
.band .wrap { position: relative; z-index: 1; }
.band h2, .band h3 { color: #FFFFFF; }
.band .lead { color: #B9C6E4; }
.band .eyebrow { background: rgba(255, 255, 255, .1); color: #CFE0FF; }
.band__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; }
.band__orb { position: relative; max-width: 440px; margin-inline: auto; animation: float 8s var(--ease) infinite; }
.band__orb img { width: 100%; height: auto; filter: drop-shadow(0 40px 60px rgba(31, 107, 255, .45)); }
.glass { padding: 1.7rem; border-radius: var(--r-md); background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); transition: background .3s var(--ease), transform .3s var(--ease); }
.glass:hover { background: rgba(255, 255, 255, .1); transform: translateY(-4px); }
.glass p { margin: 0; color: #B9C6E4; font-size: .97rem; }
.glass h3 { margin-bottom: .45rem; }
.glass .icon { color: #FFFFFF; background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .18); }
@media (max-width: 900px) { .band__grid { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------- Bento */

.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.1rem; }
.bento > .card { display: flex; flex-direction: column; }
.b-hold { grid-column: span 3; grid-row: span 2; background: linear-gradient(160deg, #FFFFFF 40%, #EAF2FF); }
.b-send { grid-column: span 3; }
.b-exchange { grid-column: span 3; }
.b-use { grid-column: span 6; flex-direction: row !important; align-items: center; gap: 2rem; }
.b-hold__coin { width: min(300px, 70%); margin: auto auto 0; animation: float 7s var(--ease) infinite; filter: drop-shadow(0 30px 40px rgba(31, 107, 255, .35)); }
.bento .verb { margin: 1rem 0 .35rem; font-family: var(--fd); font-weight: 800; font-size: clamp(1.25rem, 2vw, 1.55rem); letter-spacing: -.02em; color: var(--ink); }
.bento .b-hold .verb { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.widget { margin-top: 1.3rem; padding: 1rem 1.1rem; border-radius: 16px; background: var(--surface-2); border: 1px solid var(--line); display: flex; align-items: center; gap: .9rem; }
.widget__icon { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: #FFFFFF; color: var(--blue); box-shadow: var(--shadow-sm); flex-shrink: 0; }
.widget__icon svg { width: 20px; height: 20px; }
.widget b { display: block; font-family: var(--fd); font-weight: 800; }
.widget small { color: var(--ink-3); font-size: .82rem; }
.widget .status { margin-left: auto; }
@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr; }
  .b-hold, .b-send, .b-exchange, .b-use { grid-column: auto; grid-row: auto; }
  .b-use { flex-direction: column !important; align-items: flex-start; gap: 0; }
}

/* ------------------------------------------------------ Conversion */

.convert { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.convert__coin { position: relative; max-width: 420px; margin-inline: auto; }
.convert__coin img { width: 100%; height: auto; animation: float 7s var(--ease) infinite; filter: drop-shadow(0 40px 50px rgba(31, 107, 255, .35)); }
.convert__coin::before { content: ""; position: absolute; inset: 12%; border-radius: 50%; background: radial-gradient(circle, #CFE0FF, transparent 70%); z-index: -1; }
.rates { display: grid; gap: .75rem; margin-top: 2rem; }
.rate { display: flex; align-items: center; gap: 1rem; padding: 1.05rem 1.3rem; border-radius: 18px; border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.rate:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.rate__from { font-family: var(--fd); font-weight: 800; color: var(--blue); }
.rate svg { width: 22px; height: 22px; color: var(--ink-3); flex-shrink: 0; }
.rate__to { font-family: var(--fd); font-weight: 800; font-size: 1.1rem; }
.rate .status { margin-left: auto; }
@media (max-width: 860px) { .convert { grid-template-columns: 1fr; } }
@media (max-width: 420px) { .rate { flex-wrap: wrap; } .rate .status { margin-left: 0; } }

/* ------------------------------------------------------- App phones */

.phones { position: relative; display: flex; justify-content: center; align-items: flex-end; gap: clamp(.6rem, 2vw, 1.6rem); padding: clamp(2rem, 5vw, 3.5rem) 1rem 0; border-radius: var(--r-lg); background: linear-gradient(180deg, #E9F1FF, #F7FAFF); border: 1px solid #DCE6F7; overflow: hidden; }
.phone { position: relative; width: clamp(150px, 22vw, 250px); aspect-ratio: 9 / 18.5; padding: 9px; border-radius: 38px; background: #0B1633; box-shadow: 0 30px 60px -24px rgba(11, 22, 51, .5); margin-bottom: -12%; }
.phone--main { width: clamp(175px, 26vw, 290px); z-index: 2; animation: float 7s var(--ease) infinite; }
.phone__screen { position: relative; height: 100%; overflow: hidden; display: flex; flex-direction: column; padding: 18% 9% 10%; border-radius: 30px; background: linear-gradient(180deg, #FFFFFF, #EEF4FF); }
.phone__notch { position: absolute; top: 3%; left: 50%; width: 32%; height: 2.6%; transform: translateX(-50%); border-radius: 99px; background: #0B1633; }
.phone__label { font-size: .6rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }
.phone__title { font-family: var(--fd); font-weight: 800; font-size: clamp(.75rem, 1.2vw, 1rem); letter-spacing: -.02em; }
.phone__bal { margin-top: 4%; font-family: var(--fd); font-weight: 800; font-size: clamp(1.05rem, 2vw, 1.6rem); letter-spacing: -.03em; }
.phone__bal small { margin-left: .2em; font-size: .5em; color: var(--blue); }
.phone__ring { position: relative; width: 78%; aspect-ratio: 1 / 1; margin: 10% auto 8%; }
.phone__ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.phone__ring b { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; font-family: var(--fd); font-weight: 800; font-size: clamp(.7rem, 1.2vw, .95rem); }
.phone__ring b span { display: block; font-weight: 700; font-size: .55em; letter-spacing: .1em; color: var(--ink-3); }
.phone__btn { margin-top: auto; padding: 9% 0; border-radius: 99px; background: var(--grad); color: #FFFFFF; text-align: center; font-family: var(--fd); font-weight: 800; font-size: clamp(.58rem, 1vw, .8rem); box-shadow: var(--shadow-blue); }
.phone__rows { display: grid; gap: 6%; margin-top: 10%; }
.phone__row { display: flex; align-items: center; gap: 8%; padding: 8% 7%; border-radius: 14px; background: #FFFFFF; border: 1px solid var(--line); font-size: clamp(.55rem, .9vw, .75rem); font-weight: 700; }
.phone__row i { width: 22%; aspect-ratio: 1; border-radius: 9px; background: var(--soft); flex-shrink: 0; }
.phone__row em { margin-left: auto; font-style: normal; color: var(--blue); }
.checks { list-style: none; padding: 0; margin: 1.6rem 0 2rem; display: grid; gap: .8rem; }
.checks li { display: flex; align-items: flex-start; gap: .75rem; font-weight: 600; }
.checks li::before {
  content: ""; flex-shrink: 0; width: 24px; height: 24px; margin-top: .1rem; border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6.2 5 8.5l4.5-5' fill='none' stroke='%23FFFFFF' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px no-repeat, var(--grad);
}
.app { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; }
@media (max-width: 900px) { .app { grid-template-columns: 1fr; } .phone:not(.phone--main) { display: none; } .phone { margin-bottom: -18%; } }

/* ------------------------------------------------------- Ecosystem */

.chain { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: .75rem .45rem; list-style: none; padding: 0; margin: 0 auto; max-width: 1000px; }
.chain li { display: inline-flex; align-items: center; gap: .45rem; }
.chain li:not(:last-child)::after { content: ""; width: 20px; height: 2px; border-radius: 2px; background: linear-gradient(90deg, #C9D7F0, var(--blue-hi)); }
.chain__node { padding: .8rem 1.3rem; border-radius: var(--r-pill); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); font-family: var(--fd); font-weight: 700; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.chain__node:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.chain__node--core { background: var(--grad); color: #FFFFFF; border-color: transparent; box-shadow: var(--shadow-blue); }
.chain__node--far { color: var(--ink-3); border-style: dashed; background: transparent; box-shadow: none; }
.future { max-width: 760px; margin: 2.8rem auto 0; text-align: center; }
.future p { margin: 1rem 0 0; color: var(--ink-2); font-size: .98rem; }
@media (max-width: 560px) {
  .chain { flex-direction: column; gap: 0; }
  .chain li { flex-direction: column; gap: 0; }
  .chain li:not(:last-child)::after { width: 2px; height: 16px; background: linear-gradient(180deg, #C9D7F0, var(--blue-hi)); }
}

/* ------------------------------------------------------- Community */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.media { position: relative; overflow: hidden; border-radius: var(--r-lg); box-shadow: var(--shadow); aspect-ratio: 4 / 3.4; background: var(--soft); }
.media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.media:hover img { transform: scale(1.04); }
.media .float { animation-duration: 7s; }
.media .float--m { left: 1.2rem; bottom: 1.2rem; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

.roles { display: flex; flex-wrap: wrap; gap: .55rem; list-style: none; padding: 0; margin: 1.8rem 0 0; }
.roles li { padding: .55rem 1rem; border-radius: var(--r-pill); background: var(--surface); border: 1px solid var(--line); font-weight: 700; font-size: .93rem; transition: background .2s, color .2s, border-color .2s; }
.roles li:hover { background: var(--soft); color: var(--blue); border-color: #CFE0FF; }
.statement { margin: 2rem 0 0; padding: 1.3rem 1.5rem; border-radius: var(--r-md); background: var(--soft); font-family: var(--fd); font-weight: 700; font-size: clamp(1.15rem, 2vw, 1.4rem); line-height: 1.35; letter-spacing: -.02em; color: var(--ink); }

/* --------------------------------------------------------- Roadmap */

.phases { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; list-style: none; margin: 0; padding: 0; }
.phase { display: flex; flex-direction: column; gap: .7rem; padding: 1.8rem; border-radius: var(--r-md); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.phase:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.phase__n { font-family: var(--fd); font-weight: 800; font-size: 2.2rem; letter-spacing: -.04em; line-height: 1; color: #D3DDF0; }
.phase h3 { font-size: 1.35rem; }
.phase p { margin: 0 0 .6rem; color: var(--ink-2); font-size: .97rem; }
.phase .status { align-self: flex-start; margin-top: auto; }
.phase--live { border-color: #BDEFD6; background: linear-gradient(170deg, #ECFBF3, #FFFFFF 55%); }
.phase--live .phase__n { color: #8EDDB8; }
.phase--dev { border-color: #F3DDA6; background: linear-gradient(170deg, #FFF7E3, #FFFFFF 55%); }
.phase--dev .phase__n { color: #EBC874; }
@media (max-width: 900px) { .phases { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .phases { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------ Note */

.note { display: grid; grid-template-columns: auto 1fr auto; gap: 1.5rem; align-items: center; padding: clamp(1.5rem, 4vw, 2.3rem); border-radius: var(--r-md); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.note h3 { margin-bottom: .45rem; font-size: 1.3rem; }
.note p { margin: 0; color: var(--ink-2); }
.note .icon { margin: 0; }
@media (max-width: 760px) { .note { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------- CTA */

.cta {
  position: relative; overflow: hidden; text-align: center; color: #FFFFFF;
  padding: clamp(3rem, 8vw, 5.5rem) clamp(1.4rem, 5vw, 4rem); border-radius: var(--r-lg);
  background: radial-gradient(60% 120% at 100% 0%, rgba(34, 195, 240, .8), transparent 60%), radial-gradient(60% 120% at 0% 100%, rgba(11, 22, 51, .9), transparent 70%), linear-gradient(135deg, #1F6BFF, #0B3EC9);
}
.cta::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255, 255, 255, .18) 1px, transparent 1px); background-size: 22px 22px; -webkit-mask-image: radial-gradient(70% 70% at 50% 50%, #000, transparent 80%); mask-image: radial-gradient(70% 70% at 50% 50%, #000, transparent 80%); }
.cta > * { position: relative; }
.cta h2 { color: #FFFFFF; max-width: 18ch; margin: 1rem auto 0; }
.cta .lead { color: #DCE8FF; max-width: 38rem; margin-inline: auto; }
.cta .eyebrow { background: rgba(255, 255, 255, .16); color: #FFFFFF; }
.cta .eyebrow::before { background: #FFFFFF; }
.cta__act { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; margin-top: 2.2rem; }
.socials { display: flex; flex-wrap: wrap; justify-content: center; gap: .55rem; list-style: none; padding: 0; margin: 1.8rem 0 0; }
.social { display: inline-flex; align-items: center; gap: .5rem; padding: .6rem 1rem; border-radius: var(--r-pill); background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .22); color: #FFFFFF; font-weight: 700; font-size: .92rem; transition: background .2s, transform .2s; }
.social:hover { background: rgba(255, 255, 255, .24); transform: translateY(-2px); }
.social svg { width: 17px; height: 17px; }

/* Kept for the inner pages. */
.join { position: relative; overflow: hidden; text-align: center; padding: clamp(2.5rem, 6vw, 4rem) clamp(1.4rem, 5vw, 3rem); border-radius: var(--r-lg); background: linear-gradient(135deg, #1F6BFF, #0B3EC9); color: #FFFFFF; }
.join h2 { color: #FFFFFF; margin-top: 1rem; }
.join .lead { color: #DCE8FF; }
.join .eyebrow { background: rgba(255, 255, 255, .16); color: #FFFFFF; }
.join .eyebrow::before { background: #FFFFFF; }
.join__app { margin-top: 1.6rem; }
.join .btn--primary { background: #FFFFFF; color: var(--ink); box-shadow: none; }

/* ---------------------------------------------------------- Footer */

.foot { margin-top: clamp(3rem, 7vw, 5rem); padding-block: 3.5rem 2.5rem; background: var(--surface); border-top: 1px solid var(--line); }
.foot__grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2rem; }
.foot__tag { margin: 1rem 0 1.3rem; max-width: 28ch; color: var(--ink-2); font-size: .95rem; }
.foot h4 { margin-bottom: 1rem; font-family: var(--fs); font-weight: 800; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.foot a:not(.btn) { color: var(--ink-2); font-size: .95rem; transition: color .2s; overflow-wrap: anywhere; }
.foot a:not(.btn):hover { color: var(--blue); }
.foot__base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .8rem 1.5rem; margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--line); font-size: .85rem; color: var(--ink-3); }
.foot__base a { font-size: .85rem; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 860px) { .foot__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot__grid { grid-template-columns: 1fr; } }

/* ----------------------------------------------------- Inner pages */

.glow-bg { position: relative; overflow: hidden; }
.glow-bg::before { content: ""; position: absolute; width: 620px; height: 520px; right: -160px; top: -380px; border-radius: 50%; background: #BCD5FF; filter: blur(90px); opacity: .6; pointer-events: none; }
.page-hero { padding-block: clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 4vw, 2.5rem); }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { margin-top: 1.1rem; max-width: 18ch; font-size: clamp(2.4rem, 5.4vw, 3.9rem); }
.page-hero .lead { max-width: 44rem; }
.page-hero .status { margin-top: 1.3rem; }

.prose > * { max-width: 780px; }
.prose h2 { margin: 3rem 0 .9rem; font-size: clamp(1.45rem, 2.6vw, 1.85rem); letter-spacing: -.03em; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--ink-2); }
.prose ul { padding-left: 1.2rem; margin: 0 0 1rem; }
.prose li { margin-bottom: .45rem; }
.prose a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--ink); }
.prose a.btn { text-decoration: none; }
.prose a.btn--primary { color: #FFFFFF; }
.prose a.btn--ghost { color: var(--ink); }

.faq { max-width: 820px; display: grid; gap: .75rem; }
.faq details { border-radius: var(--r-md); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: box-shadow .25s, border-color .25s; }
.faq details[open] { border-color: #CFDBF3; box-shadow: var(--shadow); }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.3rem 1.5rem; font-family: var(--fd); font-weight: 700; font-size: 1.1rem; letter-spacing: -.02em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; flex-shrink: 0; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: var(--soft); color: var(--blue); font-family: var(--fs); font-weight: 700; font-size: 1.2rem; line-height: 1; transition: transform .25s var(--ease), background .25s; }
.faq details[open] summary::after { transform: rotate(45deg); background: var(--blue); color: #FFFFFF; }
.faq .answer { padding: 0 1.5rem 1.35rem; color: var(--ink-2); }
.faq .answer p:last-child { margin-bottom: 0; }
.faq .answer a { color: var(--blue); }

.links { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .8rem; }
.topics, .prose .topics { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; list-style: none; padding: 0; margin: 1.4rem 0 0; }
.is-static *, .is-static *::before, .is-static *::after { transition: none !important; animation: none !important; }
.topics li { padding: .9rem 1.05rem; border-radius: var(--r-sm); background: var(--surface); border: 1px solid var(--line); color: var(--ink); font-weight: 700; font-size: .96rem; }
@media (max-width: 560px) { .topics { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------- Motion */

.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--d, 0s); }
.js .reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
}
