/* =========================================================
   MR.VIP Website — Responsive product & partnership system
   ========================================================= */

.site-body {
  --site-bg: #07111f;
  --site-bg-soft: #0a1728;
  --site-panel: #0d1b2f;
  --site-panel-2: #11233a;
  --site-line: rgba(255,255,255,.11);
  --site-line-strong: rgba(255,255,255,.2);
  --site-text: #f4f7fb;
  --site-muted: #98a8ba;
  --site-blue: #6ca7ff;
  --site-blue-strong: #377df0;
  --site-cyan: #64e6d5;
  --site-gold: #e6c885;
  --site-max: 1180px;
  background: var(--site-bg);
  color: var(--site-text);
  overflow-x: clip;
  line-height: 1.65;
}

.site-body *,
.site-body *::before,
.site-body *::after { min-width: 0; }

.site-body a { color: inherit; }
.site-body h1,
.site-body h2,
.site-body h3,
.site-body p { overflow-wrap: anywhere; }

.site-body :focus-visible {
  outline: 3px solid var(--site-cyan);
  outline-offset: 4px;
  border-radius: 6px;
}

.site-container {
  width: min(var(--site-max), calc(100% - clamp(32px, 7vw, 96px)));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 9999;
  padding: 10px 16px;
  color: #07111f !important;
  background: var(--site-cyan);
  border-radius: 8px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 300;
  height: 76px;
  border-bottom: 1px solid transparent;
  background: rgba(7,17,31,.72);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  background: rgba(7,17,31,.95);
  border-color: var(--site-line);
  box-shadow: 0 12px 34px rgba(0,0,0,.18);
}

.site-nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  color: var(--site-text) !important;
}

.site-brand__mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  color: #07111f;
  background: linear-gradient(135deg, var(--site-cyan), var(--site-blue));
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 7px 24px rgba(100,230,213,.18);
}

.site-brand__word {
  font-size: 20px;
  line-height: 1;
  letter-spacing: .035em;
  font-weight: 900;
}
.site-brand__word strong { color: var(--site-blue); }

.site-nav__menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav__menu > a {
  position: relative;
  color: #b8c3d0;
  font-size: 14px;
  font-weight: 650;
  transition: color .2s ease;
}
.site-nav__menu > a:not(.site-nav__demo)::after {
  content: '';
  position: absolute;
  inset: auto 0 -9px;
  height: 1px;
  background: var(--site-cyan);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}
.site-nav__menu > a:hover,
.site-nav__menu > a.is-current { color: #fff; }
.site-nav__menu > a:hover::after,
.site-nav__menu > a.is-current::after { transform: scaleX(1); transform-origin: left; }

.site-nav__menu .site-nav__demo {
  min-height: 42px;
  padding: 9px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #06101e;
  background: var(--site-text);
  border-radius: 999px;
  font-weight: 800;
}

.site-nav__toggle {
  width: 44px;
  height: 44px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--site-line);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
}
.site-nav__toggle span {
  width: 18px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.site-header.is-menu-open .site-nav__toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.site-header.is-menu-open .site-nav__toggle span:nth-child(2) { opacity: 0; }
.site-header.is-menu-open .site-nav__toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Shared controls */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #bdc9d7;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--site-cyan);
  box-shadow: 0 0 0 5px rgba(100,230,213,.1), 0 0 18px rgba(100,230,213,.8);
}

.site-btn {
  min-height: 52px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.site-btn:hover { transform: translateY(-2px); }
.site-btn--primary {
  color: #06101e !important;
  background: linear-gradient(135deg, #89f4e8, #6ca7ff);
  box-shadow: 0 12px 36px rgba(76,147,255,.22);
}
.site-btn--primary:hover { box-shadow: 0 16px 42px rgba(76,147,255,.32); }
.site-btn--secondary {
  color: #eef5ff !important;
  border-color: var(--site-line-strong);
  background: rgba(255,255,255,.035);
}
.site-btn--secondary:hover { border-color: rgba(100,230,213,.55); background: rgba(255,255,255,.07); }
.site-btn--light { color: #081526 !important; background: #f6f9fd; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--site-cyan) !important;
  font-weight: 800;
}

/* Homepage hero */
.hero-section {
  min-height: 830px;
  display: flex;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 132px 0 84px;
  background:
    radial-gradient(circle at 77% 39%, rgba(55,125,240,.2), transparent 28%),
    radial-gradient(circle at 12% 88%, rgba(100,230,213,.08), transparent 27%),
    var(--site-bg);
}

.hero-section::before {
  content: '';
  position: absolute;
  z-index: -1;
  width: 470px;
  aspect-ratio: 1;
  top: 12%;
  right: -220px;
  border: 1px solid rgba(108,167,255,.11);
  border-radius: 50%;
}

.hero-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .28;
  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: 72px 72px;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 88%);
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr);
  align-items: center;
  gap: clamp(54px, 7vw, 110px);
}

.hero-copy h1,
.deal-hero__copy h1 {
  max-width: 760px;
  margin: 24px 0 24px;
  color: #f7faff;
  font-size: clamp(3.4rem, 6.15vw, 5.65rem);
  line-height: 1.06;
  letter-spacing: -.055em;
  font-weight: 850;
}
.hero-copy h1 em,
.deal-hero__copy h1 em {
  color: transparent;
  background: linear-gradient(100deg, var(--site-cyan) 0%, #8fc0ff 78%);
  -webkit-background-clip: text;
  background-clip: text;
  font-style: normal;
}

.hero-lead,
.deal-hero__copy > p {
  max-width: 650px;
  color: #a5b2c2;
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  color: #77899c;
  font-size: 12px;
}
.hero-note__pulse {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--site-cyan);
  box-shadow: 0 0 12px rgba(100,230,213,.65);
  animation: sitePulse 2s ease-in-out infinite;
}

.hero-stage {
  width: 100%;
  max-width: 570px;
  min-height: 590px;
  position: relative;
  display: grid;
  place-items: center;
  justify-self: end;
}

.stage-orbit {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.stage-orbit--one {
  width: 92%;
  aspect-ratio: 1;
  border: 1px solid rgba(108,167,255,.14);
}
.stage-orbit--two {
  width: 70%;
  aspect-ratio: 1;
  border: 1px dashed rgba(100,230,213,.13);
  animation: siteSpin 40s linear infinite;
}

.product-window {
  width: min(100%, 500px);
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 28px;
  background: rgba(12,27,47,.9);
  box-shadow: 0 34px 80px rgba(0,0,0,.48), inset 0 1px rgba(255,255,255,.06);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  transform: perspective(1100px) rotateY(-5deg) rotateX(1.5deg);
}

.product-window__topbar {
  height: 48px;
  padding: 0 17px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--site-line);
  color: #8092a6;
  font-size: 10px;
  letter-spacing: .14em;
}
.window-dots { display: flex; gap: 5px; }
.window-dots i { width: 6px; height: 6px; display: block; border-radius: 50%; background: #52657a; }
.window-dots i:first-child { background: var(--site-cyan); }
.demo-chip { justify-self: end; padding: 3px 7px; color: var(--site-cyan); border: 1px solid rgba(100,230,213,.25); border-radius: 999px; letter-spacing: .1em; }

.wallet-preview { padding: 22px; }
.wallet-preview__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  padding: 23px;
  border: 1px solid rgba(108,167,255,.27);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(55,125,240,.38), rgba(18,52,91,.78));
  box-shadow: inset 0 1px rgba(255,255,255,.1);
}
.preview-kicker { display: block; color: #a8bad0; font-size: 9px; letter-spacing: .15em; }
.wallet-preview__head strong { display: block; margin: 5px 0 2px; font-size: 30px; line-height: 1.2; letter-spacing: -.04em; }
.wallet-preview__head small { color: #91a5bb; font-size: 10px; }
.status-pill { padding: 5px 8px; display: inline-flex; align-items: center; gap: 5px; color: #c5d3e2; background: rgba(5,19,35,.34); border: 1px solid rgba(255,255,255,.08); border-radius: 999px; font-size: 9px; }
.status-pill i { width: 5px; height: 5px; border-radius: 50%; background: var(--site-cyan); }

.preview-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin: 11px 0;
}
.preview-actions div { padding: 11px 7px; display: flex; align-items: center; justify-content: center; gap: 6px; border: 1px solid var(--site-line); border-radius: 11px; color: #bac8d6; background: rgba(255,255,255,.025); font-size: 11px; }
.preview-actions span { color: var(--site-cyan); font-size: 14px; }

.preview-rewards {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(230,200,133,.2);
  border-radius: 13px;
  background: rgba(230,200,133,.055);
}
.preview-rewards > div { display: grid; grid-template-columns: auto auto; align-items: center; column-gap: 8px; }
.preview-rewards > div small { grid-column: 2; color: #8293a6; font-size: 9px; }
.reward-star { grid-row: 1 / 3; color: var(--site-gold); font-size: 18px; }
.preview-rewards strong { color: #f1ddb0; font-size: 12px; }
.preview-rewards > span { color: #c7aa69; font-size: 8px; letter-spacing: .1em; }

.preview-section-title { margin: 18px 2px 5px; display: flex; justify-content: space-between; color: #cdd8e5; font-size: 11px; font-weight: 800; }
.preview-section-title small { color: #6f8296; font-size: 9px; font-weight: 500; }
.asset-row { padding: 10px 2px; display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 10px; border-bottom: 1px solid rgba(255,255,255,.055); }
.asset-icon { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; color: #fff; font-size: 12px; font-weight: 900; }
.asset-icon--usdt { background: #26a17b; }
.asset-icon--ton { background: #168acd; }
.asset-icon--btc { background: #e89b2e; }
.asset-name strong, .asset-value strong { display: block; color: #dce5ef; font-size: 11px; }
.asset-name small, .asset-value small { display: block; color: #708296; font-size: 8px; }
.asset-value { text-align: right; }
.asset-value .positive { color: #68d9c7; }

.floating-card {
  position: absolute;
  z-index: 3;
  min-width: 148px;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 15px;
  background: rgba(11,25,43,.88);
  box-shadow: 0 18px 46px rgba(0,0,0,.35);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.floating-card small, .floating-card strong { display: block; }
.floating-card small { color: #718397; font-size: 8px; letter-spacing: .13em; }
.floating-card strong { color: #dbe6f1; font-size: 12px; }
.floating-card--reward { left: 0; bottom: 58px; }
.floating-card--reward > span { width: 28px; height: 28px; display: grid; place-items: center; color: #152235; background: var(--site-gold); border-radius: 9px; }
.floating-card--network { top: 54px; right: 0; }
.floating-card--network > i { width: 28px; height: 28px; display: block; position: relative; border-radius: 9px; background: linear-gradient(135deg, #46b9ff, #4a73dc); }
.floating-card--network > i::after { content: '↗'; position: absolute; inset: 0; display: grid; place-items: center; font-style: normal; color: white; }

/* Product signals */
.signal-section { border-block: 1px solid var(--site-line); background: rgba(255,255,255,.018); }
.signal-grid { min-height: 145px; display: grid; grid-template-columns: 1.45fr repeat(3, 1fr); align-items: stretch; }
.signal-grid > div { padding: 26px clamp(18px, 3vw, 38px); display: flex; align-items: center; border-right: 1px solid var(--site-line); }
.signal-grid > div:first-child { padding-left: 0; }
.signal-grid > div:last-child { border-right: 0; padding-right: 0; }
.signal-intro { flex-direction: column; align-items: flex-start !important; justify-content: center; }
.signal-intro span { color: var(--site-blue); font-size: 10px; font-weight: 800; letter-spacing: .15em; }
.signal-intro strong { margin-top: 7px; max-width: 280px; font-size: 18px; line-height: 1.45; }
.signal-item { gap: 14px; }
.signal-item strong { color: #fff; font-size: clamp(28px, 3vw, 42px); line-height: 1; letter-spacing: -.05em; }
.signal-item span { color: #7f91a5; font-size: 11px; line-height: 1.5; }

/* Shared sections */
.site-section { padding: clamp(86px, 9vw, 132px) 0; scroll-margin-top: 76px; }
.site-section--panel { background: var(--site-bg-soft); border-block: 1px solid rgba(255,255,255,.055); }
.section-heading { margin-bottom: 52px; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); align-items: end; gap: 48px; }
.section-heading--center { display: flex; flex-direction: column; align-items: center; text-align: center; }
.section-heading--center p { max-width: 600px; }
.section-index { display: block; margin-bottom: 15px; color: var(--site-blue); font-size: 10px; font-weight: 850; letter-spacing: .19em; }
.section-heading h2,
.deal-assets-copy h2 {
  color: #f5f8fc;
  font-size: clamp(2.1rem, 4.4vw, 3.75rem);
  line-height: 1.14;
  letter-spacing: -.045em;
  font-weight: 830;
}
.section-heading > p,
.deal-assets-copy > p { color: var(--site-muted); font-size: 15px; line-height: 1.8; }

/* Feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 14px; }
.feature-card {
  grid-column: span 3;
  min-height: 300px;
  padding: 27px;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--site-line);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.feature-card:hover { transform: translateY(-5px); border-color: rgba(108,167,255,.4); background: linear-gradient(145deg, rgba(108,167,255,.09), rgba(255,255,255,.018)); }
.feature-card--wide { grid-column: span 6; }
.feature-card__number { position: absolute; top: 24px; right: 24px; color: #52677d; font-size: 10px; letter-spacing: .12em; }
.feature-icon { width: 46px; height: 46px; margin-bottom: auto; display: grid; place-items: center; border: 1px solid rgba(100,230,213,.2); border-radius: 13px; color: var(--site-cyan); background: rgba(100,230,213,.06); font-size: 21px; font-weight: 800; }
.feature-card h3 { margin-top: 44px; color: #eef4fb; font-size: 20px; line-height: 1.3; }
.feature-card p { margin-top: 10px; color: #8596a9; font-size: 13px; line-height: 1.75; }
.feature-tags { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 7px; }
.feature-tags span { padding: 5px 9px; color: #8093a7; border: 1px solid var(--site-line); border-radius: 999px; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.commission-line { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 9px; }
.commission-line span { min-width: 92px; padding: 8px 11px; display: flex; align-items: baseline; gap: 6px; color: #8193a7; background: rgba(255,255,255,.025); border: 1px solid var(--site-line); border-radius: 10px; font-size: 10px; }
.commission-line b { color: var(--site-cyan); font-size: 15px; }

/* Journey & roles */
.journey-flow { display: grid; grid-template-columns: minmax(0,1fr) auto minmax(0,1fr) auto minmax(0,1fr); gap: 18px; align-items: center; }
.journey-flow article { min-height: 280px; padding: 29px; border: 1px solid var(--site-line); border-radius: 22px; background: rgba(255,255,255,.022); }
.journey-step { color: #687d94; font-size: 9px; letter-spacing: .15em; font-weight: 800; }
.journey-icon { width: 46px; height: 46px; margin: 32px 0 20px; display: grid; place-items: center; color: var(--site-cyan); border-radius: 50%; background: rgba(100,230,213,.07); border: 1px solid rgba(100,230,213,.18); font-size: 20px; }
.journey-flow h3 { color: #eef4fb; font-size: 19px; }
.journey-flow p { margin-top: 9px; color: #8294a8; font-size: 13px; line-height: 1.75; }
.journey-connector { width: 38px; height: 38px; display: grid; place-items: center; color: #6c8096; border: 1px solid var(--site-line); border-radius: 50%; }

.role-grid { margin-top: 18px; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.role-card { padding: clamp(28px, 4vw, 46px); border: 1px solid var(--site-line); border-radius: 24px; background: #0b192a; }
.role-card--accent { background: linear-gradient(135deg, rgba(55,125,240,.17), rgba(100,230,213,.055)); border-color: rgba(108,167,255,.25); }
.role-card__label { color: var(--site-blue); font-size: 9px; font-weight: 850; letter-spacing: .16em; }
.role-card h3 { max-width: 430px; margin: 14px 0 28px; font-size: clamp(22px, 2.5vw, 31px); line-height: 1.3; }
.role-card ul { display: grid; gap: 0; }
.role-card li { padding: 14px 0; display: flex; gap: 14px; align-items: center; color: #a2b0bf; border-top: 1px solid var(--site-line); font-size: 13px; }
.role-card li span { color: #64788e; font-size: 9px; letter-spacing: .12em; }

/* Roadmap */
.roadmap-grid { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); }
.roadmap-grid::before { content: ''; position: absolute; top: 36px; left: 12.5%; right: 12.5%; height: 1px; background: linear-gradient(90deg, var(--site-cyan), rgba(108,167,255,.35), rgba(255,255,255,.1)); }
.roadmap-card { min-height: 284px; padding: 16px 25px 25px; position: relative; border-right: 1px solid var(--site-line); }
.roadmap-card:last-child { border-right: 0; }
.roadmap-card > span { color: #6c7f94; font-size: 9px; font-weight: 850; letter-spacing: .14em; }
.roadmap-card > i { width: 12px; height: 12px; margin: 13px 0 36px; display: block; position: relative; z-index: 2; border: 3px solid var(--site-bg); border-radius: 50%; background: #3c5167; box-shadow: 0 0 0 1px #3c5167; }
.roadmap-card.is-active > i { background: var(--site-cyan); box-shadow: 0 0 0 1px var(--site-cyan), 0 0 18px rgba(100,230,213,.65); }
.roadmap-card h3 { color: #eef3f9; font-size: 19px; }
.roadmap-card p { margin-top: 10px; color: #8192a5; font-size: 13px; line-height: 1.75; }
.roadmap-card > small { position: absolute; left: 25px; bottom: 24px; color: #60758b; font-size: 9px; letter-spacing: .12em; }

/* Partnership callout */
.partnership-section { padding: 0 0 clamp(90px, 10vw, 140px); }
.partnership-card { min-height: 380px; padding: clamp(36px, 6vw, 72px); position: relative; overflow: hidden; display: grid; grid-template-columns: minmax(0,1.25fr) minmax(260px,.75fr); align-items: end; gap: 50px; border: 1px solid rgba(108,167,255,.35); border-radius: 32px; background: linear-gradient(130deg, #173a6b 0%, #102849 52%, #0c2038 100%); box-shadow: 0 30px 90px rgba(0,0,0,.3); }
.partnership-card::before { content: ''; position: absolute; width: 430px; aspect-ratio: 1; top: -240px; right: -80px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.018), 0 0 0 140px rgba(255,255,255,.012); }
.partnership-card__copy, .partnership-card__action { position: relative; z-index: 1; }
.partnership-card__copy > span { color: #9ebff0; font-size: 9px; font-weight: 850; letter-spacing: .18em; }
.partnership-card h2 { margin: 15px 0; color: white; font-size: clamp(2.25rem, 4.7vw, 4.2rem); line-height: 1.1; letter-spacing: -.05em; }
.partnership-card p { max-width: 570px; color: #b4c7df; font-size: 15px; }
.partnership-card__action { display: flex; flex-direction: column; align-items: flex-start; gap: 32px; }
.partnership-card__action > div small, .partnership-card__action > div a { display: block; }
.partnership-card__action > div small { color: #7894b6; font-size: 9px; letter-spacing: .15em; }
.partnership-card__action > div a { margin-top: 5px; color: #edf5ff; font-size: 16px; font-weight: 800; }

/* Cooperation page hero */
.deal-hero { min-height: 760px; position: relative; overflow: hidden; display: flex; align-items: center; padding: 146px 0 92px; background: radial-gradient(circle at 78% 32%, rgba(55,125,240,.19), transparent 31%), var(--site-bg); }
.deal-hero__glow { position: absolute; width: 570px; aspect-ratio: 1; top: 80px; right: -170px; border: 1px solid rgba(100,230,213,.08); border-radius: 50%; box-shadow: inset 0 0 100px rgba(55,125,240,.045); }
.deal-hero__layout { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(350px, .62fr); align-items: center; gap: clamp(50px, 7vw, 100px); }
.deal-hero__copy h1 { max-width: 780px; font-size: clamp(3.25rem, 6vw, 5.55rem); }
.deal-contact-card { position: relative; padding: 30px; border: 1px solid rgba(255,255,255,.16); border-radius: 24px; background: linear-gradient(155deg, rgba(255,255,255,.065), rgba(255,255,255,.02)); box-shadow: 0 30px 70px rgba(0,0,0,.3); }
.deal-contact-card__label { color: var(--site-blue); font-size: 9px; font-weight: 850; letter-spacing: .17em; }
.deal-contact-card__status { margin: 21px 0 28px; display: flex; align-items: center; gap: 9px; color: #9fb0c1; font-size: 12px; }
.deal-contact-card__status i { width: 8px; height: 8px; border-radius: 50%; background: var(--site-cyan); box-shadow: 0 0 15px rgba(100,230,213,.6); }
.deal-contact-card__line { padding: 17px 0; border-top: 1px solid var(--site-line); }
.deal-contact-card__line small, .deal-contact-card__line a { display: block; }
.deal-contact-card__line small { color: #5f7389; font-size: 8px; letter-spacing: .16em; }
.deal-contact-card__line a { margin-top: 5px; display: flex; justify-content: space-between; gap: 12px; color: #edf4fc; font-size: 16px; font-weight: 750; }
.deal-contact-card > p { margin-top: 22px; color: #778a9f; font-size: 11px; line-height: 1.7; }

/* Deal options */
.deal-options-section { padding-top: 110px; }
.deal-option-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.deal-option-card { min-height: 520px; padding: clamp(30px, 4vw, 48px); display: flex; flex-direction: column; border: 1px solid var(--site-line); border-radius: 26px; background: rgba(255,255,255,.025); }
.deal-option-card--featured { border-color: rgba(108,167,255,.35); background: linear-gradient(145deg, rgba(55,125,240,.16), rgba(100,230,213,.035)); }
.deal-option-card__top { display: flex; align-items: center; gap: 12px; color: #6f8298; font-size: 9px; font-weight: 850; letter-spacing: .14em; }
.deal-option-card__index { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--site-line); border-radius: 10px; color: var(--site-cyan); font-size: 13px; }
.deal-option-card h3 { margin-top: 78px; color: #f0f5fb; font-size: clamp(1.8rem, 3vw, 2.65rem); line-height: 1.2; letter-spacing: -.035em; }
.deal-option-card > p { margin-top: 16px; color: #8b9caf; font-size: 14px; line-height: 1.8; }
.deal-option-card ul { margin-top: auto; padding-top: 44px; }
.deal-option-card li { padding: 14px 0; display: flex; align-items: flex-start; gap: 14px; border-top: 1px solid var(--site-line); color: #a6b4c3; font-size: 13px; }
.deal-option-card li span { color: #60748a; font-size: 9px; letter-spacing: .1em; }

/* Assets, fit, process, contact */
.deal-assets-layout { display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); gap: clamp(50px, 8vw, 110px); align-items: start; }
.deal-assets-copy { position: sticky; top: 112px; }
.deal-assets-copy h2 { font-size: clamp(2rem, 3.6vw, 3.3rem); }
.deal-assets-copy > p { margin-top: 20px; }
.asset-scope-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.asset-scope-grid article { min-height: 240px; padding: 27px; border: 1px solid var(--site-line); border-radius: 20px; background: rgba(255,255,255,.022); }
.asset-scope-grid article > span { color: #5f748a; font-size: 9px; letter-spacing: .15em; }
.asset-scope-grid h3 { margin-top: 66px; color: #ecf3fa; font-size: 18px; }
.asset-scope-grid p { margin-top: 9px; color: #8193a7; font-size: 12px; line-height: 1.75; }

.fit-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.fit-grid article { min-height: 270px; padding: 26px; border: 1px solid var(--site-line); border-radius: 20px; background: rgba(255,255,255,.02); }
.fit-grid article > div { width: 43px; height: 43px; display: grid; place-items: center; color: var(--site-cyan); border: 1px solid rgba(100,230,213,.18); border-radius: 13px; background: rgba(100,230,213,.05); }
.fit-grid h3 { margin-top: 60px; color: #eef4fa; font-size: 18px; }
.fit-grid p { margin-top: 9px; color: #7f91a5; font-size: 12px; line-height: 1.75; }

.process-section { padding-top: 55px; }
.deal-process { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); border-top: 1px solid var(--site-line); border-bottom: 1px solid var(--site-line); }
.deal-process li { min-height: 230px; padding: 26px; display: flex; flex-direction: column; border-right: 1px solid var(--site-line); }
.deal-process li:last-child { border-right: 0; }
.deal-process > li > span { color: var(--site-blue); font-size: 10px; font-weight: 850; letter-spacing: .14em; }
.deal-process li > div { margin-top: auto; }
.deal-process h3 { color: #eaf1f8; font-size: 18px; }
.deal-process p { margin-top: 8px; color: #7c8fa4; font-size: 12px; line-height: 1.7; }

.contact-section { padding: 10px 0 clamp(90px, 10vw, 140px); }
.contact-panel { padding: clamp(40px, 7vw, 80px); text-align: center; border: 1px solid rgba(108,167,255,.3); border-radius: 30px; background: radial-gradient(circle at 50% 0, rgba(55,125,240,.22), transparent 50%), #0b1b30; }
.contact-panel h2 { max-width: 820px; margin: 15px auto; color: #f5f9fd; font-size: clamp(2.35rem, 5.1vw, 4.55rem); line-height: 1.12; letter-spacing: -.05em; }
.contact-panel > p { color: #91a3b7; }
.contact-panel__links { max-width: 790px; margin: 42px auto 0; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.contact-panel__links a { padding: 19px 21px; display: grid; grid-template-columns: 1fr auto; text-align: left; align-items: end; border: 1px solid var(--site-line); border-radius: 15px; background: rgba(255,255,255,.035); }
.contact-panel__links small { grid-column: 1 / -1; margin-bottom: 4px; color: #667b92; font-size: 8px; letter-spacing: .15em; }
.contact-panel__links strong { color: #eef5fc; font-size: 15px; overflow-wrap: anywhere; }
.contact-panel__links a > span { color: var(--site-cyan); }
.contact-disclaimer { max-width: 810px; margin: 32px auto 0; display: block; color: #61758b; font-size: 10px; line-height: 1.7; }

/* Footer */
.site-footer { padding: 76px 0 30px; border-top: 1px solid var(--site-line); background: #050d17; }
.site-footer__main { padding-bottom: 62px; display: grid; grid-template-columns: 1fr auto auto; gap: clamp(50px, 10vw, 130px); }
.site-brand--footer { margin-bottom: 18px; }
.site-footer__main > div:first-child p { max-width: 300px; color: #6e8196; font-size: 12px; }
.site-footer__links { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.site-footer__links > span { margin-bottom: 8px; color: #536a81; font-size: 9px; font-weight: 850; letter-spacing: .16em; }
.site-footer__links a { color: #9aabbd; font-size: 12px; }
.site-footer__links a:hover { color: var(--site-cyan); }
.site-footer__bottom { padding-top: 22px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--site-line); color: #51667d; font-size: 10px; }

/* Progressive reveal */
.site-body .reveal,
.site-body .stagger > * { opacity: 1; transform: none; }
.js .site-body .reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.js .site-body .reveal.visible { opacity: 1; transform: none; }
.js .site-body .stagger > * { opacity: 0; transform: translateY(14px); transition: opacity .4s ease, transform .4s ease; }
.js .site-body .stagger.visible > * { opacity: 1; transform: none; }

@keyframes sitePulse { 0%,100% { opacity: .55; transform: scale(.9); } 50% { opacity: 1; transform: scale(1.2); } }
@keyframes siteSpin { to { transform: rotate(360deg); } }

/* Laptop and tablet */
@media (max-width: 1080px) {
  .site-nav__menu { gap: 20px; }
  .hero-layout { grid-template-columns: minmax(0,1fr) minmax(385px,.86fr); gap: 42px; }
  .hero-copy h1 { font-size: clamp(3.1rem, 6vw, 4.2rem); }
  .feature-card, .feature-card--wide { grid-column: span 6; }
  .fit-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 920px) {
  .site-header { height: 68px; }
  .site-nav__toggle { display: flex; }
  .site-nav__menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    max-height: calc(100dvh - 88px);
    overflow-y: auto;
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    border: 1px solid var(--site-line);
    border-radius: 18px;
    background: rgba(8,20,35,.985);
    box-shadow: 0 24px 60px rgba(0,0,0,.4);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }
  .site-header.is-menu-open .site-nav__menu { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .site-nav__menu > a { min-height: 48px; padding: 11px 12px; display: flex; align-items: center; border-radius: 10px; }
  .site-nav__menu > a:not(.site-nav__demo)::after { display: none; }
  .site-nav__menu > a:hover, .site-nav__menu > a.is-current { background: rgba(255,255,255,.05); }
  .site-nav__menu .site-nav__demo { margin-top: 6px; justify-content: center; }

  .hero-section { min-height: auto; padding: 124px 0 92px; }
  .hero-layout { grid-template-columns: 1fr; gap: 70px; }
  .hero-copy { max-width: 730px; }
  .hero-stage { justify-self: center; }
  .product-window { transform: none; }

  .signal-grid { grid-template-columns: repeat(3, 1fr); }
  .signal-intro { grid-column: 1 / -1; min-height: 105px; padding-inline: 0 !important; border-right: 0 !important; border-bottom: 1px solid var(--site-line); }
  .signal-grid > div { min-height: 105px; }

  .section-heading { grid-template-columns: 1fr; align-items: start; gap: 22px; }
  .section-heading > p { max-width: 650px; }

  .journey-flow { grid-template-columns: 1fr; gap: 12px; }
  .journey-flow article { min-height: 230px; }
  .journey-connector { margin-inline: auto; transform: rotate(90deg); }
  .role-grid { grid-template-columns: 1fr; }

  .roadmap-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0; }
  .roadmap-grid::before { display: none; }
  .roadmap-card:nth-child(2) { border-right: 0; }
  .roadmap-card { border-bottom: 1px solid var(--site-line); }
  .roadmap-card:nth-last-child(-n+2) { border-bottom: 0; }

  .deal-hero { min-height: auto; padding: 132px 0 94px; }
  .deal-hero__layout { grid-template-columns: 1fr; gap: 55px; }
  .deal-contact-card { max-width: 620px; }
  .deal-assets-layout { grid-template-columns: 1fr; }
  .deal-assets-copy { position: static; }
  .deal-assets-copy > p { max-width: 620px; }
  .deal-process { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .deal-process li:nth-child(2) { border-right: 0; }
  .deal-process li:nth-child(-n+2) { border-bottom: 1px solid var(--site-line); }
}

/* Mobile */
@media (max-width: 680px) {
  .site-container { width: calc(100% - 32px); }
  .site-brand__mark { width: 32px; height: 32px; border-radius: 9px; }
  .site-brand__word { font-size: 18px; }

  .hero-section { padding: 112px 0 76px; }
  .hero-grid { background-size: 48px 48px; }
  .hero-copy h1,
  .deal-hero__copy h1 { margin-top: 19px; font-size: clamp(2.55rem, 12vw, 3.4rem); line-height: 1.08; }
  .hero-lead, .deal-hero__copy > p { font-size: 15px; line-height: 1.75; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .site-btn { width: 100%; min-height: 54px; padding-inline: 16px; white-space: normal; text-align: center; }
  .hero-note { align-items: flex-start; }

  .hero-stage { min-height: auto; padding: 42px 0; }
  .stage-orbit--one { width: 110%; }
  .stage-orbit--two { width: 84%; }
  .product-window { width: 100%; border-radius: 22px; }
  .product-window__topbar { grid-template-columns: 1fr auto; }
  .product-window__topbar > span:nth-child(2) { display: none; }
  .wallet-preview { padding: 14px; }
  .wallet-preview__head { padding: 18px; }
  .wallet-preview__head strong { font-size: 25px; }
  .status-pill { display: none; }
  .preview-rewards > span { display: none; }
  .floating-card { display: none; }

  .signal-grid { grid-template-columns: 1fr; }
  .signal-intro { grid-column: auto; min-height: 118px; }
  .signal-grid > div { min-height: 92px; padding-inline: 0; border-right: 0; border-bottom: 1px solid var(--site-line); }
  .signal-grid > div:last-child { border-bottom: 0; }
  .signal-item { justify-content: space-between; }
  .signal-item span { text-align: right; }

  .site-section { padding: 78px 0; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .deal-assets-copy h2 { font-size: clamp(1.95rem, 9.5vw, 2.7rem); }

  .feature-grid { grid-template-columns: 1fr; }
  .feature-card, .feature-card--wide { grid-column: auto; min-height: 278px; padding: 24px; }
  .feature-card h3 { margin-top: 42px; }

  .journey-flow article { min-height: auto; padding: 25px; }
  .journey-icon { margin-top: 27px; }
  .role-card { padding: 26px; }

  .roadmap-grid { grid-template-columns: 1fr; }
  .roadmap-card { min-height: 245px; padding-inline: 14px; border-right: 0; border-bottom: 1px solid var(--site-line) !important; }
  .roadmap-card:last-child { border-bottom: 0 !important; }
  .roadmap-card > small { left: 14px; }

  .partnership-card { min-height: auto; padding: 34px 26px; grid-template-columns: 1fr; align-items: start; gap: 34px; border-radius: 24px; }
  .partnership-card__action { gap: 25px; }

  .deal-hero { padding: 112px 0 78px; }
  .deal-contact-card { padding: 24px; }
  .deal-contact-card__line a { font-size: 14px; }

  .deal-options-section { padding-top: 78px; }
  .deal-option-grid { grid-template-columns: 1fr; }
  .deal-option-card { min-height: 490px; padding: 26px; }
  .deal-option-card h3 { margin-top: 56px; }

  .asset-scope-grid { grid-template-columns: 1fr; }
  .asset-scope-grid article { min-height: 215px; }
  .fit-grid { grid-template-columns: 1fr; }
  .fit-grid article { min-height: 240px; }
  .deal-process { grid-template-columns: 1fr; border-bottom: 0; }
  .deal-process li { min-height: 190px; border-right: 0; border-bottom: 1px solid var(--site-line) !important; }
  .contact-panel { padding: 38px 22px; border-radius: 23px; }
  .contact-panel__links { grid-template-columns: 1fr; margin-top: 32px; }
  .contact-panel__links strong { font-size: 13px; }

  .site-footer { padding-top: 58px; }
  .site-footer__main { grid-template-columns: 1fr 1fr; gap: 42px 22px; }
  .site-footer__main > div:first-child { grid-column: 1 / -1; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; gap: 7px; }
}

@media (max-width: 360px) {
  .site-container { width: calc(100% - 24px); }
  .site-nav__menu { left: 12px; right: 12px; }
  .hero-copy h1, .deal-hero__copy h1 { font-size: 2.35rem; }
  .wallet-preview__head { padding: 15px; }
  .wallet-preview__head strong { font-size: 22px; }
  .preview-actions div { flex-direction: column; gap: 2px; }
  .asset-row { grid-template-columns: 30px 1fr auto; gap: 7px; }
  .site-footer__main { grid-template-columns: 1fr; }
  .site-footer__main > div:first-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .site-body { scroll-behavior: auto; }
  .site-body *, .site-body *::before, .site-body *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .js .site-body .reveal,
  .js .site-body .stagger > * { opacity: 1; transform: none; }
}
