:root {
  /* ── Slush Brand Palette ── */
  --c-white: #ffffff;
  --c-black: #000000;
  --c-aqua: #55db9c;
  --c-cyan: #dceeff;
  --c-pink: #e9ccff;
  --c-purple: #5c4ade;
  --c-blue: #4da2ff;
  --c-orange: #fb4903;
  --c-yellow: #ffd731;
  --elastic-ease-out: linear(0 0%,0.5737 7.6%,0.8382 11.87%,0.9463 14.19%,1.0292 16.54%,1.0886 18.97%,1.1258 21.53%,1.137 22.97%,1.1424 24.48%,1.1423 26.1%,1.1366 27.86%,1.1165 31.01%,1.0507 38.62%,1.0219 42.57%,0.9995 46.99%,0.9872 51.63%,0.9842 58.77%,1.0011 81.26%,1 100%);

  /* ── Grey Scale ── */
  --c-grey-0: #fafafa;
  --c-grey-1: #e6e6e6;
  --c-grey-2: #dfdfdf;
  --c-grey-3: #d7d7d7;
  --c-grey-4: #bebebe;
  --c-grey-mid: #9e9e9e;
  --c-grey-dark: #858585;

  /* ── Text ── */
  --c-text: #000000;
  --c-text-muted: #737373;
  --c-text-disabled: rgba(115, 115, 115, 0.55);

  /* ── Semantic aliases (backward compat) ── */
  --bg: #000000;
  --paper: #ffffff;
  --ink: #000000;
  --muted: #737373;
  --line: rgba(0, 0, 0, 0.12);
  --blue: var(--c-blue);
  --blue-dark: #1a5fd6;
  --cyan: var(--c-cyan);
  --lime: var(--c-aqua);

  /* ── Shadows ── */
  --shadow-sm: 0 0 20px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 7px rgba(0, 0, 0, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.10);

  /* ── Layout ── */
  --radius: 24px;
  --radius-sm: 16px;
  --radius-pill: 999px;
  --section: min(1180px, calc(100% - 40px));

  /* ── Fonts ── */
  --font-display: "Bebas Neue", "Arial Black", Impact, sans-serif;
  --font-body: "DM Sans", Arial, sans-serif;
  --font-footer-heading: "Bebas Neue", sans-serif;
  --font-footer-body: "DM Sans", Arial, sans-serif;

  /* ── Spacing ── */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-7: 28px;
  --sp-8: 32px;
  --sp-9: 40px;
  --sp-10: 48px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  letter-spacing: 0;
}

h1, h2, h3 {
  font-style: normal;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.section-shell {
  width: var(--section);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 50px rgba(29, 58, 118, 0.11);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-size: 30px;
  font-weight: 900;
}

.brand-logo {
  display: block;
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  object-fit: contain;
}

.header-brand-card {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 22%;
  background:
    url("public/logo.jpg") no-repeat center 46% / 116%,
    #ffffff;
  border: 2px solid #000000;
  box-shadow: 3px 3px 0 0 #000000;
  animation: header-logo-drift 7s ease-in-out infinite;
  pointer-events: none;
  margin-top: 4px;
}

.site-nav {
  justify-self: center;
  display: flex;
  gap: 26px;
  font-family: var(--font-body);
  color: #28415f;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: var(--blue);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta,
.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 15px 34px rgba(7, 21, 38, 0.18);
}

.btn-primary:hover,
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(7, 21, 38, 0.24);
}

.btn-secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(21, 54, 112, 0.1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #fff;
}

.hero {
  min-height: calc(100vh - 1.5em);
  padding: 108px 0 56px;
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 34px;
  padding: 13px 18px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  animation: marquee 24s linear infinite;
}

.caps-display {
  font-family: var(--font-display);
  font-style: italic;
  letter-spacing: 0.01em;
}

.asset-row strong,
.phone-back strong,
.swap-card strong {
  font-family: var(--font-display);
  font-style: italic;
  letter-spacing: 0.01em;
}

.ticker-track span::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 34px;
  border-radius: 50%;
  background: var(--lime);
  vertical-align: middle;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1fr);
  align-items: center;
  gap: 52px;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(76px, 12vw, 168px);
  line-height: 0.84;
  font-weight: 800;
  font-style: italic;
}

.hero-subtitle {
  max-width: 650px;
  margin: 28px 0 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 58px);
  line-height: 0.96;
  font-weight: 800;
  font-style: italic;
}

.hero-text {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

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

.hero-visual {
  position: relative;
  min-height: 630px;
}

.logo-sculpture {
  position: absolute;
  top: 8px;
  right: 34px;
  display: grid;
  width: 310px;
  height: 310px;
  place-items: center;
  border-radius: 38% 62% 48% 52% / 52% 44% 56% 48%;
  background:
    radial-gradient(circle at 34% 20%, rgba(255, 255, 255, 0.88), transparent 24%),
    linear-gradient(145deg, #55c9ff 0%, #2368ff 42%, #082ec8 100%);
  color: #fff;
  box-shadow:
    inset -42px -56px 88px rgba(0, 17, 98, 0.3),
    inset 26px 28px 48px rgba(255, 255, 255, 0.22),
    var(--shadow);
  transform: rotate(-11deg);
}

.logo-sculpture span {
  font-size: 78px;
  font-weight: 900;
  text-shadow: 0 12px 30px rgba(0, 14, 84, 0.32);
}

.logo-wordmark {
  display: inline-block;
  text-align: center;
  line-height: 0.88;
}

.phone {
  position: absolute;
  border: 10px solid #071526;
  background: #fff;
  box-shadow: var(--shadow);
}

.phone-front {
  right: 174px;
  bottom: 0;
  width: 300px;
  min-height: 520px;
  padding: 24px;
  border-radius: 38px;
}

.phone-back {
  right: 0;
  bottom: 64px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  width: 214px;
  min-height: 380px;
  padding: 26px;
  border-radius: 36px;
  background: linear-gradient(160deg, #0b1630, #1c66ff 72%, #7ce4ff);
  color: #fff;
  transform: rotate(7deg);
}

.phone-back span,
.phone-back small {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.phone-back strong {
  margin: 8px 0;
  font-size: 38px;
  line-height: 1;
}

.phone-top {
  display: grid;
  gap: 12px;
  padding-bottom: 22px;
}

.phone-top span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.phone-top strong {
  font-size: 34px;
  line-height: 1;
}

.asset-stack {
  display: grid;
  gap: 12px;
}

.asset-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #f8faff;
}

.asset-row small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.asset-row em {
  color: #078f62;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.coin {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.btc {
  background: linear-gradient(145deg, #ffcb59, #ff8b1f);
}

.eth {
  background: linear-gradient(145deg, #93a9ff, #3f56d9);
}

.usdc {
  background: linear-gradient(145deg, #6cdcff, #2374ff);
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 20px;
}

.quick-actions button {
  min-height: 48px;
  border: 0;
  border-radius: 18px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.intro-band {
  margin: 0 0 18px;
}

.section-heading h2,
.proof-title h2,
.final-grid h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 96px);
  font-weight: 900;
}

.download-link {
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.shortcut-section {
  padding: 30px 0 110px;
}

.content-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.is--medium {
  max-width: 1120px;
}

.flex-v {
  display: flex;
  flex-direction: column;
}

.gap--display-1 {
  gap: 34px;
}

.gap--display-2 {
  gap: 48px;
}

.content-wrap-ml {
  margin-left: 0;
}

.title-row.no--pad {
  padding: 0;
}

.h-sm {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 0.96;
  font-weight: 900;
}

.feature-stack {
  display: grid;
  gap: 26px;
}

.feature-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.feature-row--reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.shortcut-img {
  width: 100%;
  min-height: 250px;
  border-radius: 28px;
  object-fit: cover;
  background: #fff;
  box-shadow: var(--shadow);
}

.feature-copy-block {
  display: grid;
  gap: 18px;
  align-content: center;
}

.h-l {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 92px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: 0;
}

.p-l {
  margin: 0;
  max-width: 540px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.56;
}

.button-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.feature-row .first {
  justify-self: end;
}

.defi-section,
.device-section,
.ecosystem,
.proof-section {
  padding: 110px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: 40px;
  margin-bottom: 48px;
}

.section-heading.centered {
  display: block;
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p,
.security-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.section-heading.centered p {
  margin-top: 20px;
}

.defi-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
}

.feature-copy,
.swap-panel,
.download-card,
.reviews article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 48px rgba(28, 65, 122, 0.08);
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
  padding: 34px;
}

.feature-copy h3,
.download-card h3 {
  margin: 0;
  font-size: 34px;
  line-height: 1;
}

.feature-copy p,
.download-card p,
.reviews p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.feature-copy a {
  color: var(--blue);
  font-weight: 900;
}

.marquee-section {
  margin: 0 0 18px;
}

.intro-band__wrap {
  background: #071526;
  overflow: hidden;
  padding: 4px;
  width: 100%;
  position: relative;
}

.mq-wrap {
  background: #071526;
  overflow: hidden;
  padding: 4px;
  width: 100%;
  position: relative;
}

.mq-wrap::before,
.mq-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  z-index: 2;
  pointer-events: none;
}

.mq-wrap::before {
  left: 0;
  background: linear-gradient(to right, #071526, transparent);
}

.mq-wrap::after {
  right: 0;
  background: linear-gradient(to left, #071526, transparent);
}

.mq-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 8px;
  padding: 0;
  animation: mq-scroll 16s linear infinite;
}

.mq-track--reverse {
  animation-direction: reverse;
}

.mq-logo {
  width: 124px;
  height: 124px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 3px solid #000;
  padding: 4px;
  box-sizing: border-box;
}

.mq-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 10px 30px;
  font-family: var(--font-display);
  font-size: 100px;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  color: #000;
  line-height: 1;
  white-space: nowrap;
  border: 3px solid #000;
  flex-shrink: 0;
  height: 124px;
  box-sizing: border-box;
}

.mq-pill,
.mq-logo {
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.mq-logo svg {
  width: 54px;
  height: 54px;
  display: block;
}

.mq-logo svg path {
  stroke: #000;
}

.mq-track .mq-logo,
.mq-track .mq-pill {
  will-change: transform;
}

.mq-track > * {
  flex: 0 0 auto;
}

@keyframes mq-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 640px) {
  .mq-wrap {
    padding: 4px;
  }

  .mq-logo,
  .mq-pill {
    height: 88px;
  }

  .mq-logo {
    width: 88px;
  }

  .mq-pill {
    padding: 8px 16px;
    font-size: 18px;
  }

  .mq-logo svg {
    width: 36px;
    height: 36px;
  }
}

.swap-panel {
  display: grid;
  gap: 18px;
  padding: 34px;
  background:
    radial-gradient(circle at 80% 20%, rgba(105, 216, 255, 0.42), transparent 34%),
    linear-gradient(145deg, #ffffff, #edf4ff);
}

.swap-card {
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(37, 73, 142, 0.1);
}

.swap-card span,
.swap-card small {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.swap-card strong {
  display: block;
  margin: 8px 0;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 0.95;
}

.swap-arrow {
  width: 54px;
  height: 54px;
  margin: -6px auto;
  border-radius: 50%;
  background: var(--ink);
  position: relative;
}

.swap-arrow::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transform: rotate(45deg) translate(-2px, -2px);
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 12px 0 110px;
}

.benefits article {
  min-height: 280px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--blue);
  color: #fff;
}

.benefits article:nth-child(2) {
  background: #101c35;
}

.benefits article:nth-child(3) {
  background: #fff;
  color: var(--ink);
}

.benefits article:nth-child(4) {
  background: #d9ff66;
  color: var(--ink);
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  font-size: 12px;
  font-weight: 900;
}

.benefits h3 {
  margin: 64px 0 12px;
  font-size: 24px;
  line-height: 1;
}

.benefits p {
  margin: 0;
  color: inherit;
  line-height: 1.48;
  opacity: 0.82;
}

.platform-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 30px;
}

.platform-tabs button {
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.platform-tabs button.active {
  background: var(--blue);
  color: #fff;
}

.device-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.download-card {
  display: grid;
  gap: 18px;
  padding: 20px;
  opacity: 0.5;
  transform: scale(0.98);
  transition: opacity 160ms ease, transform 160ms ease;
}

.download-card.active {
  opacity: 1;
  transform: scale(1);
}

.device-shot {
  min-height: 300px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, #1c66ff, #70ddff);
  position: relative;
  overflow: hidden;
}

.device-shot::before {
  content: "";
  position: absolute;
  inset: 44px 64px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 28px 50px rgba(0, 28, 113, 0.2);
}

.device-shot::after {
  content: "";
  position: absolute;
  left: 86px;
  right: 86px;
  bottom: 70px;
  height: 94px;
  border-radius: 22px;
  background: linear-gradient(145deg, #081a35, #286dff);
}

.windows-shot {
  background: linear-gradient(145deg, #101c35, #2368ff 68%, #d9ff66);
}

.macos-shot {
  background: linear-gradient(145deg, #fff, #dbe8ff 42%, #69d8ff);
}

.linux-shot {
  background: linear-gradient(145deg, #1c66ff, #70ddff);
}

.security-band {
  background: #0a0a0a;
  padding: 8px;
  min-height: 0;
  height: calc(100vh - 1.5em);
  display: flex;
  flex-direction: column;
}

.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: minmax(0, 1fr) auto auto;
  gap: 6px;
  flex: 1;
  min-height: 0;
}

.security-copy {
  background: #fff;
  border-radius: 18px;
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  color: #000;
}

.security-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 92px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: 0;
}

.security-copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.6);
  max-width: 46ch;
}

.security-media {
  border-radius: 18px;
  overflow: hidden;
  background: #111;
}

.security-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

.security-card {
  border-radius: 18px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  color: #000;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  will-change: transform;
}

.security-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.security-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 52px);
  line-height: 0.92;
  font-weight: 400;
  text-transform: uppercase;
  -webkit-text-stroke: 1px #000;
}

.security-card span {
  display: block;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.62);
}

.security-card--1 { background: #ff5733; }
.security-card--2 { background: #ffd731; }
.security-card--3 { background: #55db9c; }
.security-card--4 { background: #d8b4fe; }

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.logo-cloud span {
  display: grid;
  min-height: 86px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  color: #263c59;
  font-weight: 900;
}

.proof-section {
  display: grid;
  gap: 34px;
}

.proof-title {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 28px;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.reviews article {
  padding: 28px;
}

.reviews p {
  margin: 0 0 28px;
  font-size: 20px;
}

.reviews span {
  color: var(--blue);
  font-weight: 900;
}

.last-screen {
  --section: calc(100% - 40px);
  height: calc(100vh - 1.5em);
  min-height: calc(100vh - 1.5em);
  scroll-margin-top: 0.75em;
  display: flex;
  flex-direction: column;
  background: #000;
  overflow: hidden;
}

.last-screen-ticker {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  width: 100%;
  min-height: 0;
  padding-top: 62px;
}

.final-cta {
  padding: 110px 0 0;
  background: #000;
  color: #000;
  flex-shrink: 0;
}

.final-card {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  padding: 44px 36px;
  border-radius: 20px;
  background: var(--blue);
  color: white;
}

.final-copy {
  display: flex;
  align-items: center;
  flex: 1;
}

.final-copy h2 {
  color: #000;
  white-space: nowrap;
}

.final-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}

.final-actions .btn-primary {
  background: #000;
  color: #fff;
}

.site-footer {
  padding: 24px 0 52px;
  background: #000;
  color: #000;
}

.footer-row {
  display: flex;
  align-items: stretch;
  gap: 16px;
}

.footer-social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  flex-shrink: 0;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  border-radius: 28px;
  background: #fff;
  color: #000;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.footer-social-link:hover {
  background: #e8e8e8;
  transform: scale(1.03);
}

.footer-social-link svg {
  width: 64px;
  height: 64px;
}

.footer-card {
  flex: 1;
  background: #4ecb97;
  border-radius: 28px;
  padding: 48px 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto;
  gap: 0;
  min-height: 340px;
}

.footer-heading {
  grid-column: 1;
  grid-row: 1;
  font-family: var(--font-footer-heading);
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 0.95;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.01em;
  color: #000;
  text-transform: uppercase;
  align-self: start;
}

.footer-nav {
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-end;
  padding-left: 60px;
}

.footer-nav a {
  display: block;
  font-family: var(--font-footer-body);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #000;
  text-decoration: none;
  line-height: 1.55;
  transition: opacity 0.15s;
}

.footer-nav a:hover {
  opacity: 0.55;
}

.footer-spacer {
  grid-column: 1;
  grid-row: 2;
}

.footer-bottom-left {
  grid-column: 1;
  grid-row: 3;
  align-self: end;
}

.footer-copyright {
  font-family: var(--font-footer-body);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #000;
}

.footer-legal {
  grid-column: 2;
  grid-row: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  align-self: end;
  padding-left: 60px;
}

.footer-legal a {
  font-family: var(--font-footer-body);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #000;
  text-decoration: none;
  line-height: 1.7;
  opacity: 0.65;
  transition: opacity 0.15s;
}

.footer-legal a:hover {
  opacity: 1;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.open {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 18px;
    border-radius: 26px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.open a {
    padding: 18px;
    border-bottom: 1px solid var(--line);
  }

  .hero-grid,
  .section-heading,
  .defi-layout,
  .proof-title,
  .final-grid {
    grid-template-columns: 1fr;
  }

  .security-grid {
    grid-template-columns: 1fr;
  }

  .security-media {
    grid-row: span 1;
    min-height: 300px;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 560px;
  }

  .feature-row,
  .feature-row--reverse {
    grid-template-columns: 1fr;
  }

  .feature-row--reverse .feature-copy-block {
    order: 2;
  }

  .feature-row--reverse .shortcut-img {
    order: 1;
  }

  .phone-front {
    left: 0;
    right: auto;
  }

  .phone-back {
    right: 0;
  }

  .benefits,
  .device-grid,
  .reviews {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-cloud {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-row {
    flex-direction: column;
  }

  .footer-social-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-social-link {
    width: 100%;
    height: 100px;
    border-radius: 20px;
  }

  .footer-social-link svg {
    width: 44px;
    height: 44px;
  }

  .footer-card {
    padding: 32px 28px;
  }

  .footer-nav,
  .footer-legal {
    padding-left: 24px;
  }

  .final-card {
    padding: 44px 28px;
  }
}

/* ═══════════════════════════════════════════
   REDESIGN — Slush-style light theme
   ═══════════════════════════════════════════ */

/* ── Snap scroll ── */
html {
  scroll-behavior: auto;
}

[data-snap] {
  min-height: calc(100vh - 1.5em);
  scroll-margin-top: 0.75em;
}

/* ── Header ── */
.site-header {
  grid-template-columns: auto 1fr auto;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  gap: 8px;
}

.site-header.is-scrolled {
  border-color: transparent;
  background: transparent;
}

.brand {
  font-size: unset;
}

.brand-wordmark {
  display: none;
}

.brand-logo {
  width: 44px;
  height: 44px;
}

.site-nav {
  justify-self: center;
  display: flex;
  gap: 6px;
  font-size: unset;
  font-weight: unset;
  color: unset;
  text-transform: unset;
}

.site-nav a {
  transition: none;
}

.site-nav a:hover {
  color: unset;
}

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

.nav-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1.5px solid #000;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
}

.nav-pill:hover {
  background: #000;
  color: #fff;
}

.header-cta.nav-pill {
  background: #000;
  color: #fff;
  border-color: #000;
  box-shadow: none;
}

.header-cta.nav-pill:hover {
  background: #333;
  color: #fff;
  transform: none;
  box-shadow: none;
}

/* ── Privacy Modal ── */
.privacy-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
}

.privacy-overlay.hidden {
  display: none;
}

.privacy-box {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 780px;
  width: 100%;
  padding: 24px 28px;
  background: #fff;
  border: 1.5px solid #000;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.privacy-title {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.privacy-text {
  margin: 0;
  flex: 1;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.5;
  min-width: 200px;
}

.privacy-link {
  color: #000;
  font-weight: 700;
  text-decoration: underline;
}

.privacy-accept {
  flex-shrink: 0;
  min-height: 44px;
  padding: 0 24px;
  border: none;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 150ms ease;
}

.privacy-accept:hover {
  background: #333;
}

/* ── Legal Page ── */
body.legal-body {
  background:
    radial-gradient(circle at top left, rgba(85, 219, 156, 0.18), transparent 26%),
    radial-gradient(circle at top right, rgba(77, 162, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #050505 0%, #0b0b0b 100%);
  color: var(--c-text);
}

.legal-hero {
  padding: 18px 0 28px;
}

.legal-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr);
  gap: 20px;
  align-items: stretch;
}

.legal-hero__copy,
.legal-summary-card,
.legal-section-card,
.legal-point-card {
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 20px 50px rgba(18, 33, 59, 0.08);
}

.legal-hero__copy {
  border-radius: 30px;
  padding: clamp(28px, 4vw, 46px);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
}

.legal-kicker {
  margin: 0 0 16px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-muted);
}

.legal-title {
  margin: 0;
  max-width: 11ch;
  font-family: var(--font-display);
  font-size: clamp(54px, 8vw, 110px);
  line-height: 0.9;
  font-style: italic;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.legal-meta {
  margin: 18px 0 0;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}

.legal-lead {
  max-width: 68ch;
  margin: 22px 0 0;
  font-family: var(--font-body);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
  color: #222;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.legal-summary-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 34px 32px;
  border-radius: 30px;
  background: #000;
}

.legal-summary-card__label {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
}

.legal-summary-list {
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.72;
  color: #fff;
  font-weight: 800;
}

.legal-points {
  padding: 8px 0 24px;
}

.legal-points__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.legal-point-card {
  border-radius: 28px;
  padding: 26px;
  background: #fff;
}

.legal-point-card--orange {
  background: linear-gradient(180deg, rgba(251, 73, 3, 0.12), rgba(255, 255, 255, 0.95));
}

.legal-point-card--pink {
  background: linear-gradient(180deg, rgba(233, 204, 255, 0.35), rgba(255, 255, 255, 0.95));
}

.legal-point-card--blue {
  background: linear-gradient(180deg, rgba(77, 162, 255, 0.14), rgba(255, 255, 255, 0.95));
}

.legal-point-card__eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-muted);
}

.legal-point-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 0.92;
  font-style: italic;
  font-weight: 400;
  text-transform: uppercase;
}

.legal-point-card p {
  margin: 14px 0 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: #222;
}

.legal-article {
  padding: 6px 0 18px;
}

.legal-article__shell {
  display: grid;
  gap: 16px;
}

.legal-section-card {
  border-radius: 30px;
  padding: clamp(26px, 4vw, 38px);
  background: var(--legal-bg, var(--c-white));
  color: var(--c-black);
}

.legal-section-card--aqua {
  --legal-bg: var(--c-aqua);
}

.legal-section-card--pink {
  --legal-bg: var(--c-pink);
}

.legal-section-card--blue {
  --legal-bg: var(--c-blue);
}

.legal-section-card--orange {
  --legal-bg: var(--c-orange);
}

.legal-section-card--yellow {
  --legal-bg: var(--c-yellow);
}

.legal-section-card--purple {
  --legal-bg: var(--c-purple);
}

.legal-section-card h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.95;
  font-style: italic;
  font-weight: 400;
  text-transform: uppercase;
}

.legal-section-card p,
.legal-section-card li {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.72;
  color: #222;
}

.legal-section-card p {
  margin: 14px 0 0;
  max-width: 76ch;
}

.legal-section-card ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

@media (max-width: 960px) {
  .legal-hero__grid,
  .legal-points__grid {
    grid-template-columns: 1fr;
  }

  .legal-title {
    max-width: none;
  }
}

/* ── Support Widget ── */
.support-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 340px;
  border: 1.5px solid #000;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 240ms ease, opacity 240ms ease;
}

.support-widget.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.support-widget__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1.5px solid #000;
  background: var(--c-aqua);
}

.support-widget__title {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.support-widget__close {
  width: 30px;
  height: 30px;
  border: 1.5px solid #000;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms, color 150ms;
}

.support-widget__close:hover {
  background: #000;
  color: #fff;
}

.support-widget__body {
  display: flex;
  flex-direction: column;
}

.support-widget__shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--c-grey-1);
}

.support-shortcut {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1.5px solid #000;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #000;
  background: #fff;
  text-decoration: none;
  transition: background 150ms, color 150ms;
  cursor: pointer;
}

.support-shortcut:hover {
  background: #000;
  color: #fff;
}

.support-chat {
  flex: 1;
  min-height: 160px;
  max-height: 220px;
  overflow-y: auto;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-msg {
  max-width: 82%;
  padding: 9px 13px;
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.45;
}

.chat-msg--user {
  align-self: flex-end;
  background: #000;
  color: #fff;
  border-bottom-right-radius: 4px;
}

.chat-msg--auto {
  align-self: flex-start;
  background: var(--c-grey-1);
  color: #000;
  border-bottom-left-radius: 4px;
}

.support-input-row {
  display: flex;
  gap: 6px;
  padding: 10px 16px;
  border-top: 1px solid var(--c-grey-1);
}

.support-input {
  flex: 1;
  min-height: 38px;
  padding: 0 13px;
  border: 1.5px solid var(--c-grey-2);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
  transition: border-color 150ms;
}

.support-input:focus {
  border-color: #000;
}

.support-send {
  min-height: 38px;
  padding: 0 14px;
  border: 1.5px solid #000;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 150ms;
}

.support-send:hover {
  background: #333;
}

/* ── Footer color update ── */
.footer-card {
  background: var(--c-aqua);
}

@media (max-width: 640px) {
  :root {
    --section: min(100% - 24px, 1180px);
  }

  .site-header {
    top: 10px;
    width: calc(100% - 24px);
  }

  .hero {
    padding-top: 88px;
  }

  .hero h1 {
    font-size: 72px;
  }

  .hero-subtitle {
    font-size: 34px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions,
  .platform-tabs {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .platform-tabs button {
    width: 100%;
  }

  .hero-visual {
    min-height: 510px;
  }

  .shortcut-section {
    padding-bottom: 72px;
  }

  .h-l {
    font-size: 42px;
  }

  .p-l {
    font-size: 16px;
  }

  .logo-sculpture {
    right: 4px;
    width: 210px;
    height: 210px;
  }

  .logo-sculpture span {
    font-size: 48px;
  }

  .brand-wordmark {
    font-size: 12px;
  }

  .phone-front {
    width: 250px;
    min-height: 448px;
    padding: 18px;
  }

  .phone-back {
    width: 160px;
    min-height: 300px;
    bottom: 42px;
    padding: 18px;
  }

  .phone-back strong {
    font-size: 28px;
  }

  .phone-top strong {
    font-size: 28px;
  }

  .asset-row {
    grid-template-columns: 34px 1fr;
  }

  .asset-row em {
    grid-column: 2;
  }

  .coin {
    width: 34px;
    height: 34px;
  }

  .defi-section,
  .device-section,
  .ecosystem,
  .proof-section,
  .security-band {
    padding: 72px 0;
  }

  .section-heading h2,
  .proof-title h2,
  .final-grid h2 {
    font-size: 44px;
  }

  .final-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    min-height: auto;
  }

  .final-copy h2 {
    white-space: normal;
  }

  .final-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .feature-copy {
    min-height: 330px;
  }

  .benefits,
  .device-grid,
  .reviews,
  .logo-cloud {
    grid-template-columns: 1fr;
  }

  .benefits {
    padding-bottom: 72px;
  }

  .security-band {
    padding: 6px;
  }
}

/* ═══════════════════════════════════════════
   HERO REDESIGN
   ═══════════════════════════════════════════ */

.hero {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 1.5em);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 20px 60px;
  background:
    linear-gradient(154deg, transparent 0 54%, var(--c-blue) 54.2% 100%),
    var(--c-cyan);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
  width: 100%;
  max-width: 1100px;
}

.hero-brand-mark {
  position: absolute;
  z-index: 1;
  left: clamp(5%, 9vw, 13%);
  bottom: clamp(12%, 14vw, 21%);
  width: clamp(62px, 6.2vw, 96px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  pointer-events: none;
  animation: hero-logo-drift 7s ease-in-out infinite;
}

/* Ambient glow — убрана, заменена чистой тенью */
.hero-brand-mark::before {
  display: none;
}

/* Тень под карточкой */
.hero-brand-mark::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 10%;
  bottom: -9%;
  height: 10%;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  filter: blur(10px);
  animation: hero-logo-shadow 7s ease-in-out infinite;
}

/* ── Карточка: белый квадрат с объёмной гранью через box-shadow ── */
.hero-brand-mark__tile {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
  border-radius: 22%;
  background:
    url("public/logo.jpg") no-repeat center 46% / 116%,
    #ffffff;
  border: 2px solid #000000;
  box-shadow: 7px 7px 0 0 #000000;
  overflow: hidden;
  animation: hero-logo-tilt 6s var(--elastic-ease-out) infinite;
}

.hero-brand-mark__tile::before {
  display: none;
}

.hero-brand-mark__tile::after {
  display: none;
}

.hero-logo-sm {
  display: none;
}

.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(88px, 14vw, 210px);
  line-height: 0.86;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.01em;
}

.hero-tagline {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 58px);
  font-weight: 900;
  color: #000;
  letter-spacing: 0;
  line-height: 0.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

.hero-btn {
  min-height: 52px;
  padding: 0 36px;
  font-size: 14px;
  border: 1.5px solid #000;
}

.btn.hero-btn.btn-primary {
  background: #000;
  color: #fff;
  box-shadow: none;
}

.btn.hero-btn.btn-primary:hover {
  background: #333;
  box-shadow: none;
  transform: translateY(-2px);
}

.btn.hero-btn.btn-secondary {
  background: #fff;
  color: #000;
  box-shadow: none;
}

.btn.hero-btn.btn-secondary:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
}

/* Floating Lottie stickers */
.hero-lottie {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.hero-lottie--rocket {
  top: 57%;
  left: 6%;
  width: 140px;
  height: 140px;
}

.hero-lottie-scene-wrap {
  position: absolute;
  z-index: 1;
  bottom: 8%;
  right: 4%;
  width: 180px;
  height: 78px;
  overflow: hidden;
}

.hero-lottie--scene {
  position: absolute;
  bottom: 0;
  width: 180px;
  height: 180px;
}

.hero-rocket {
  position: absolute;
  z-index: 2;
  bottom: 16%;
  right: 8%;
  width: 110px;
  pointer-events: none;
  transform: rotate(15deg);
}

.hero-lottie--avatar {
  top: 12%;
  right: 7%;
  width: 120px;
  height: 120px;
}

@keyframes hero-logo-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-8deg);
  }

  50% {
    transform: translate3d(10px, -18px, 0) rotate(-2deg);
  }
}

@keyframes header-logo-drift {
  0%,
  100% {
    transform: translate3d(0, 4px, 0) rotate(-8deg);
  }

  50% {
    transform: translate3d(10px, -6px, 0) rotate(-2deg);
  }
}

@keyframes hero-logo-tilt {
  0%,
  100% {
    transform: rotate(-2deg) scale(1);
  }

  50% {
    transform: rotate(2deg) scale(1.03);
  }
}

@keyframes hero-logo-shadow {
  0%,
  100% {
    transform: scaleX(1);
    opacity: 0.22;
  }

  50% {
    transform: scaleX(0.8);
    opacity: 0.12;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-brand-mark,
  .hero-brand-mark::after,
  .hero-brand-mark__tile {
    animation: none;
  }
}

@media (max-width: 760px) {
  .hero-brand-mark {
    left: 3%;
    bottom: 7%;
    width: 86px;
  }

  .hero-brand-mark__tile::before {
    transform: translate3d(8px, 8px, 0);
  }
}

/* ═══════════════════════════════════════════
   BUTTON FLIP SYSTEM (Slush-style 3D hover)
   ═══════════════════════════════════════════ */

:root {
  --elastic: linear(
    0 0%, 0.5737 7.6%, 0.8382 11.87%, 0.9463 14.19%, 1.0292 16.54%,
    1.0886 18.97%, 1.1258 21.53%, 1.137 22.97%, 1.1424 24.48%,
    1.1423 26.1%, 1.1366 27.86%, 1.1165 31.01%, 1.0507 38.62%,
    1.0219 42.57%, 0.9995 46.99%, 0.9872 51.63%, 0.9842 58.77%,
    1.0011 81.26%, 1 100%
  );
  --dur-btn: 0.5s;
}

/* Outer element — just a cursor/transition wrapper, no visual */
.nav-pill,
.hero-btn {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  overflow: visible;
  transition: transform var(--dur-btn) var(--elastic);
  text-decoration: none;
  cursor: pointer;
}

.nav-pill:active,
.hero-btn:active {
  transform: scale(0.955) !important;
}

/* 3D perspective container — grid so front and back overlap */
.bmi {
  perspective: 500px;
  transform-style: preserve-3d;
  display: grid;
}

.nav-pill .bmi  { min-height: 54px; }
.hero-btn .bmi  { min-height: 80px; }

/* Front and back share grid cell 1/1 */
.bmi-front,
.bmi-back {
  grid-area: 1 / 1;
  display: grid;
  border-radius: 999px;
}

/* Front face transitions */
.bmi-front {
  transition:
    translate var(--dur-btn) var(--elastic),
    rotate   var(--dur-btn) var(--elastic),
    opacity  0.1s ease-out;
}

/* Background layer of front face */
.bmi-bg {
  grid-area: 1 / 1;
  background: #fff;
  border: 1.5px solid #000;
  border-radius: 999px;
}

.btn-primary .bmi-bg,
.header-cta  .bmi-bg {
  background: #000;
  border-color: #000;
}

/* Text label */
.bmi-text {
  grid-area: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 28px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #000;
  position: relative;
  z-index: 1;
  white-space: nowrap;
  transition: translate var(--dur-btn) var(--elastic);
}

.btn-primary .bmi-text,
.header-cta  .bmi-text { color: #fff; }
.hero-btn    .bmi-text { font-size: 15px; padding: 0 48px; }

/* Back face — starts rotated/behind, invisible */
.bmi-back {
  border: 1.5px solid #000;
  background-color: var(--c-aqua);
  color: #000;
  justify-content: center;
  align-items: center;
  display: flex;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  opacity: 0;
  translate: 0 2em -6em;
  rotate: x -90deg;
  transition:
    translate var(--dur-btn) var(--elastic),
    rotate   var(--dur-btn) var(--elastic),
    opacity  0.15s ease-out;
}

.hero-btn .bmi-back { font-size: 15px; }

.bmi-back::before { content: attr(data-text); }

/* Per-accent back-face colors */
.bmi-back[data-accent="cyan"]   { background-color: var(--c-cyan);   color: #000; }
.bmi-back[data-accent="aqua"]   { background-color: var(--c-aqua);   color: #000; }
.bmi-back[data-accent="yellow"] { background-color: var(--c-yellow); color: #000; }
.bmi-back[data-accent="pink"]   { background-color: var(--c-pink);   color: #000; }
.bmi-back[data-accent="orange"] { background-color: var(--c-orange); color: #fff; border-color: var(--c-orange); }
.bmi-back[data-accent="blue"]   { background-color: var(--c-blue);   color: #000; }
.bmi-back[data-accent="dark"]   { background-color: #000; color: #fff; border-color: #000; }

/* Hover: front flips out up, back flips in from below */
.nav-pill:hover .bmi-front,
.hero-btn:hover .bmi-front {
  opacity: 0;
  translate: 0 -2em;
  rotate: x 90deg;
}

.nav-pill:hover .bmi-back,
.hero-btn:hover .bmi-back {
  opacity: 1;
  translate: 0 0;
  rotate: x 0deg;
}

/* ═══════════════════════════════════════════
   ЭТАП 3 — Content blocks
   ═══════════════════════════════════════════ */

/* ── Product section ── */
.product-section {
  min-height: calc(100vh - 1.5em);
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  background: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.product-media {
  position: relative;
}

.product-frame {
  position: relative;
  aspect-ratio: 1.18;
  border: 2px solid #000;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 8px 8px 0 #000;
  background: var(--c-grey-1);
}

.product-screen {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.product-sticker {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(4px 6px 0 rgba(0, 0, 0, 0.95));
}

.product-sticker--coin {
  top: 260px;
  left: -89px;
  width: 104px;
  height: 104px;
  transform: rotate(-8deg);
}

.product-sticker--plane {
  right: 10px;
  bottom: -20px;
  width: 118px;
  height: 118px;
  transform: rotate(12deg);
}

.product-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}

.product-kicker {
  margin: 0;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-kicker::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  background: currentColor;
  flex-shrink: 0;
}

.product-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 92px);
  line-height: 0.9;
  font-weight: 900;
  color: #000;
  letter-spacing: 0;
}

.product-desc {
  margin: 0;
  max-width: 380px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-text-muted);
}

.product-lottie {
  position: absolute;
  top: -60px;
  right: -20px;
  width: 90px;
  height: 90px;
  pointer-events: none;
}

/* ── DeFi static section ── */
.defi-static-section {
  min-height: calc(100vh - 1.5em);
  display: flex;
  align-items: center;
  padding: 72px 0 8px;
  background: var(--c-grey-0);
}

.defi-static-section .feature-stack {
  gap: 16px;
}

.defi-static-section .shortcut-img {
  min-height: 0;
  max-height: 400px;
  height: 400px;
}

.shortcut-img--bordered {
  border: 2px solid #000;
  box-shadow: 6px 6px 0 #000;
}

/* ── Second marquee row ── */
.marquee-section {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mq-wrap--row2 {
  margin-top: 6px;
}

/* ── Feature cards ── */
.feat-cards-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 1.5em);
  padding: 112px 0 78px;
  overflow: hidden;
  background: #fff;
}

.feat-cards-dots {
  position: absolute;
  left: 50%;
  bottom: 44px;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  z-index: 2;
}

.feat-cards-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-grey-2);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.feat-cards-dot.is-active {
  background: #000;
  transform: scale(1.15);
}

.feat-cards-dot:focus-visible {
  outline: 2px solid #000;
  outline-offset: 3px;
}

.feat-cards-track {
  display: flex;
  align-items: stretch;
  gap: 22px;
  width: max-content;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
  will-change: transform;
}

.feat-cards-track.is-dragging {
  cursor: grabbing;
}

.feat-cards-track.is-dragging * {
  pointer-events: none;
}

.feat-card {
  position: relative;
  flex: 0 0 clamp(430px, 30.5vw, 610px);
  overflow: hidden;
  background-color: var(--fc-bg, var(--c-cyan));
  border-radius: 30px;
  border: 2px solid #000;
  padding: clamp(34px, 3vw, 56px);
  height: clamp(470px, 62vh, 640px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: none;
}

.feat-card__art {
  width: min(58%, 290px);
  aspect-ratio: 1.24;
  pointer-events: none;
}

.feat-card__art svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.feat-card--text-top .feat-card__art {
  align-self: flex-end;
  margin-top: auto;
  transform: rotate(5deg);
}

.feat-card--art-top .feat-card__art {
  align-self: flex-end;
  margin-bottom: auto;
  transform: rotate(-4deg);
}

.feat-card__art--chains {
  width: min(64%, 320px);
}

.feat-card__art--security,
.feat-card__art--rocket {
  width: min(55%, 280px);
}

.feat-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(78px, 6.8vw, 136px);
  line-height: 0.88;
  font-weight: 900;
  font-style: italic;
  color: #000;
  max-width: 9ch;
  text-transform: uppercase;
}

.feat-card--art-top h3 {
  margin-top: auto;
}

.feat-card p {
  margin: 8px 0 0;
  max-width: 32ch;
  font-size: clamp(18px, 1.15vw, 22px);
  line-height: 1.5;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.66);
}

/* ── Feature card illustrations ── */
.ill { transform-box: fill-box; transform-origin: center; }

/* Card 1 — Easy to use */
.ill-phone     { transform-box: fill-box; transform-origin: center; animation: ill-wobble 4.6s ease-in-out infinite; }
.ill-back-card { transform-box: fill-box; transform-origin: center; animation: ill-float 4.8s ease-in-out infinite -0.8s; }
.ill-tap       { transform-box: fill-box; transform-origin: 50% 100%; animation: ill-tap 2.4s ease-in-out infinite; }
.ill-spark     { transform-box: fill-box; transform-origin: center; animation: ill-twinkle 2.4s ease-in-out infinite; }
.ill-spark--a  { animation-delay: -0.4s; }
.ill-spark--b  { animation-delay: -1.1s; }
.ill-spark--c  { animation-delay: -1.8s; }

/* Card 2 — Multichain */
.ill-ring      { transform-box: fill-box; transform-origin: center; animation: ill-spin 18s linear infinite; }
.ill-hub       { transform-box: fill-box; transform-origin: center; animation: ill-hub-pulse 3.4s ease-in-out infinite; }
.ill-sat       { transform-box: fill-box; transform-origin: center; animation: ill-float 4s ease-in-out infinite; }
.ill-sat--n    { animation-delay: 0s; }
.ill-sat--e    { animation-delay: -1s; }
.ill-sat--s    { animation-delay: -2s; }
.ill-sat--w    { animation-delay: -3s; }
.ill-pulse     { animation: ill-travel 2.6s ease-in-out infinite; }
.ill-pulse--1  { offset-path: path("M130 22 L130 70"); animation-delay: -0.2s; }
.ill-pulse--2  { offset-path: path("M228 105 L168 105"); animation-delay: -1.1s; }
.ill-pulse--3  { offset-path: path("M130 188 L130 140"); animation-delay: -0.8s; }
.ill-pulse--4  { offset-path: path("M32 105 L92 105"); animation-delay: -1.9s; }

/* Card 3 — Secure */
.ill-shield    { transform-box: fill-box; transform-origin: 50% 100%; animation: ill-float 4.4s ease-in-out infinite; }
.ill-scan      { transform-box: fill-box; transform-origin: center; animation: ill-scan 2.6s ease-in-out infinite; }
.ill-check     { stroke-dasharray: 110; stroke-dashoffset: 110; animation: ill-draw 3.2s ease-in-out infinite; }
.ill-key       { transform-box: fill-box; transform-origin: 70% 80%; animation: ill-key-wiggle 3.8s ease-in-out infinite; }
.ill-twinkle   { transform-box: fill-box; transform-origin: center; animation: ill-twinkle 2.4s ease-in-out infinite; }
.ill-twinkle--a { animation-delay: -0.4s; }
.ill-twinkle--b { animation-delay: -1.2s; }

/* Card 4 — DeFi */
.ill-defi-card { transform-box: fill-box; transform-origin: center; animation: ill-tilt 4.4s ease-in-out infinite; }
.ill-chart     { stroke-dasharray: 220; stroke-dashoffset: 220; animation: ill-draw-long 3.6s ease-in-out infinite; }
.ill-chart-arrow { transform-box: fill-box; transform-origin: 159px 102px; animation: ill-pop-in 3.6s ease-in-out infinite; }
.ill-coin--big   { transform-box: fill-box; transform-origin: center; animation: ill-bounce 2.6s ease-in-out infinite; }
.ill-coin--small { transform-box: fill-box; transform-origin: center; animation: ill-bounce 2.6s ease-in-out infinite -1.3s; }

/* Card 5 — Rocket */
.ill-rocket    { transform-box: fill-box; transform-origin: 50% 100%; animation: ill-rocket-launch 3.4s ease-in-out infinite; }
.ill-flame     { transform-box: fill-box; transform-origin: 50% 0; animation: ill-flame-flicker 0.36s ease-in-out infinite; }
.ill-shadow    { transform-box: fill-box; transform-origin: center; animation: ill-shadow-pulse 3.4s ease-in-out infinite; }
.ill-star      { transform-box: fill-box; transform-origin: center; animation: ill-twinkle 2.2s ease-in-out infinite; }
.ill-star--a   { animation-delay: -0.4s; }
.ill-star--b   { animation-delay: -0.9s; }
.ill-star--c   { animation-delay: -1.4s; }
.ill-star--d   { animation-delay: -1.9s; }

@keyframes ill-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes ill-wobble {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}
@keyframes ill-twinkle {
  0%, 100% { transform: scale(0.6) rotate(0deg); opacity: 0.55; }
  50% { transform: scale(1.15) rotate(18deg); opacity: 1; }
}
@keyframes ill-tap {
  0%, 100% { transform: translate(0, -6px); }
  48% { transform: translate(0, 2px); }
  56% { transform: translate(0, 2px); }
}
@keyframes ill-spin { to { transform: rotate(360deg); } }
@keyframes ill-hub-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
@keyframes ill-travel {
  0% { offset-distance: 0%; opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}
@keyframes ill-scan {
  0%, 100% { transform: translateY(-28px); opacity: 0; }
  20%, 80% { opacity: 0.85; }
  50% { transform: translateY(28px); opacity: 1; }
}
@keyframes ill-draw {
  0% { stroke-dashoffset: 110; }
  35%, 80% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 110; }
}
@keyframes ill-key-wiggle {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(14deg) translateY(-4px); }
}
@keyframes ill-tilt {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(2deg); }
}
@keyframes ill-draw-long {
  0% { stroke-dashoffset: 220; }
  40%, 85% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 220; }
}
@keyframes ill-pop-in {
  0%, 30% { opacity: 0; transform: scale(0.3); }
  50%, 85% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(0.3); }
}
@keyframes ill-bounce {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-9px) rotate(6deg); }
}
@keyframes ill-rocket-launch {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-12px) rotate(3deg); }
}
@keyframes ill-flame-flicker {
  0%, 100% { transform: scaleY(0.88) scaleX(1.05); }
  50% { transform: scaleY(1.18) scaleX(0.92); }
}
@keyframes ill-shadow-pulse {
  0%, 100% { transform: scaleX(1); opacity: 0.9; }
  50% { transform: scaleX(0.74); opacity: 0.55; }
}

@media (max-width: 760px) {
  .feat-cards-section {
    padding: 96px 0 70px;
  }

  .feat-cards-track {
    gap: 16px;
  }

  .feat-card {
    flex-basis: min(84vw, 420px);
    min-height: 520px;
    padding: 30px;
  }

  .feat-card h3 {
    font-size: clamp(58px, 16vw, 82px);
  }

  .feat-card__art {
    width: min(68%, 240px);
  }
}

/* ── Feature cards 2 ── */
.feat2-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 1.5em);
  padding: 112px 0 78px;
  overflow: hidden;
  background: #f5f5f0;
}

.feat2-section .feat-cards-dots {
  bottom: 44px;
}

.feat2-card {
  position: relative;
  flex: 0 0 clamp(430px, 30.5vw, 610px);
  overflow: hidden;
  background-color: var(--fc2-bg, #4da2ff);
  border-radius: 30px;
  border: 2px solid #000;
  padding: clamp(34px, 3vw, 56px);
  min-height: clamp(470px, 62vh, 640px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: none;
}

.feat2-num {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 900;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.45);
  line-height: 1;
}

.feat2-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(60px, 5.4vw, 108px);
  line-height: 0.88;
  font-weight: 900;
  font-style: italic;
  color: #000;
  text-transform: uppercase;
}

.feat2-desc {
  margin: 6px 0 0;
  max-width: 30ch;
  font-size: clamp(15px, 0.95vw, 18px);
  line-height: 1.5;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.6);
}

.feat2-art {
  width: min(64%, 310px);
  aspect-ratio: 1.24;
  margin-top: auto;
  align-self: flex-end;
  pointer-events: none;
}

.feat2-art svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* ── feat2 animations ── */

/* 01 — Onboarding steps */
.ob-step          { transform-box: fill-box; transform-origin: center; animation: ob-float 3s ease-in-out infinite; }
.ob-step--1       { animation-delay: 0s; }
.ob-step--2       { animation-delay: -1s; }
.ob-step--3       { animation-delay: -2s; }
.ob-check         { stroke-dasharray: 20; stroke-dashoffset: 20; animation: ob-draw 2.8s ease-in-out infinite; }
.ob-check--1      { animation-delay: 0.3s; }
.ob-check--2      { animation-delay: 1.1s; }
.ob-check--3      { animation-delay: 1.9s; }

@keyframes ob-float {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(3px); }
}
@keyframes ob-draw {
  0%, 5%      { stroke-dashoffset: 20; }
  30%, 85%    { stroke-dashoffset: 0; }
  100%        { stroke-dashoffset: 20; }
}

/* 02 — Earn & swap */
.sw-token         { transform-box: fill-box; transform-origin: center; animation: sw-bounce 3.8s ease-in-out infinite; }
.sw-token--b      { animation-delay: -1.9s; }
.sw-arrows        { transform-box: fill-box; transform-origin: center; animation: sw-pulse 1.5s ease-in-out infinite; }
.sw-spark         { transform-box: fill-box; transform-origin: center; animation: ill-twinkle 2.2s ease-in-out infinite; }

@keyframes sw-bounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-7px) scale(1.03); }
}
@keyframes sw-pulse {
  0%, 100% { transform: scaleX(1); opacity: 0.75; }
  50%      { transform: scaleX(1.18); opacity: 1; }
}

/* 03 — Instant transfers */
.tx-phone         { transform-box: fill-box; transform-origin: 50% 100%; animation: ill-float 4.2s ease-in-out infinite; }
.tx-phone--right  { animation-delay: -2.1s; }
.tx-coin          { animation: tx-fly 2.2s ease-in-out infinite; }
.tx-coin--1       { offset-path: path("M 88 105 Q 130 60 172 105"); offset-rotate: 0deg; animation-delay: 0s; }
.tx-coin--2       { offset-path: path("M 88 105 Q 130 60 172 105"); offset-rotate: 0deg; animation-delay: -0.7s; }
.tx-coin--3       { offset-path: path("M 88 105 Q 130 60 172 105"); offset-rotate: 0deg; animation-delay: -1.4s; }
.tx-receive       { transform-box: fill-box; transform-origin: center; animation: sw-bounce 2.2s ease-in-out infinite; }

@keyframes tx-fly {
  0%   { offset-distance: 0%;   opacity: 0; transform: scale(0.6); }
  12%  { opacity: 1;             transform: scale(1); }
  88%  { opacity: 1;             transform: scale(1); }
  100% { offset-distance: 100%; opacity: 0; transform: scale(0.6); }
}

/* 04 — dApp connect */
.da-card { transform-box: fill-box; transform-origin: 50% 100%; animation: da-enter 3.8s ease-in-out infinite; }
.da-link { animation: da-connect 3.8s ease-in-out infinite; }
.da-btn  { transform-box: fill-box; transform-origin: center; animation: da-glow 3.8s ease-in-out infinite; }

@keyframes da-enter {
  0%, 8%    { transform: translateY(18px); opacity: 0; }
  22%, 80%  { transform: translateY(0);   opacity: 1; }
  96%, 100% { transform: translateY(18px); opacity: 0; }
}
@keyframes da-connect {
  0%, 22%   { opacity: 0; }
  42%, 80%  { opacity: 1; }
  96%, 100% { opacity: 0; }
}
@keyframes da-glow {
  0%, 55%   { transform: scaleX(0.3); opacity: 0; }
  72%, 85%  { transform: scaleX(1);   opacity: 1; }
  96%, 100% { transform: scaleX(0.3); opacity: 0; }
}

/* 05 — Portfolio view */
.pt-bar  { transform-box: fill-box; transform-origin: bottom; animation: pt-grow 3s ease-in-out infinite; }
.pt-bar--1 { animation-delay: 0s; }
.pt-bar--2 { animation-delay: -0.18s; }
.pt-bar--3 { animation-delay: -0.36s; }
.pt-bar--4 { animation-delay: -0.54s; }
.pt-bar--5 { animation-delay: -0.72s; }
.pt-trend  { stroke-dasharray: 210; stroke-dashoffset: 210; animation: pt-line 3s ease-in-out infinite; }
.pt-spark  { transform-box: fill-box; transform-origin: center; animation: ill-twinkle 2.4s ease-in-out infinite; }

@keyframes pt-grow {
  0%, 8%    { transform: scaleY(0); }
  35%, 82%  { transform: scaleY(1); }
  98%, 100% { transform: scaleY(0); }
}
@keyframes pt-line {
  0%, 28%   { stroke-dashoffset: 210; }
  60%, 85%  { stroke-dashoffset: 0; }
  100%      { stroke-dashoffset: 210; }
}

/* 06 — Hardware signing */
.hw-device  { transform-box: fill-box; transform-origin: center; animation: ill-float 4.4s ease-in-out infinite; }
.hw-shield  { transform-box: fill-box; transform-origin: center; animation: ill-hub-pulse 3.2s ease-in-out infinite; }
.hw-confirm { transform-box: fill-box; transform-origin: center; animation: hw-ping 2s ease-in-out infinite; }
.hw-spark   { transform-box: fill-box; transform-origin: center; animation: ill-twinkle 2.4s ease-in-out infinite; }
.hw-spark--a { animation-delay: -0.5s; }
.hw-spark--b { animation-delay: -1.3s; }

@keyframes hw-ping {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.18); }
}

@media (max-width: 760px) {
  .feat2-section {
    padding: 96px 0 70px;
  }
  .feat2-card {
    flex-basis: min(84vw, 420px);
    min-height: 520px;
    padding: 30px;
  }
  .feat2-title {
    font-size: clamp(52px, 15vw, 76px);
  }
  .feat2-art {
    width: min(70%, 240px);
  }
}

/* ── Security light theme ── */

/* ═══════════════════════════════════════════
   ЭТАП 4 — Download / Chains / Reviews / FAQ
   ═══════════════════════════════════════════ */

/* ── Download section ── */
.download-section {
  background: #0a0a0a;
  padding: 8px;
  height: calc(100vh - 1.5em);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto clamp(405px, 50.6vh, 583px);
  gap: 8px;
  padding: 0 5%;
}

.dl-hero-card {
  grid-column: 1 / -1;
  background: #fff;
  border-radius: 18px;
  padding: 36px 44px 36px clamp(16px, 2vw, 22px);
  min-height: 188px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.dl-hero-deco {
  position: absolute;
  left: 62%;
  right: 16px;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.dl-hero-deco svg {
  width: clamp(198px, 23.4vw, 306px);
  height: auto;
  display: block;
  overflow: visible;
}

.dlx-monitor {
  transform-box: fill-box;
  transform-origin: center;
  animation: ill-float 4.5s ease-in-out infinite;
}

.dlx-coins {
  transform-box: fill-box;
  transform-origin: center;
  animation: dlx-bob 3.8s ease-in-out infinite;
}

.dlx-arrow {
  transform-box: fill-box;
  transform-origin: center;
  animation: dlx-drop 2.2s ease-in-out infinite;
}

.dlx-tok {
  transform-box: fill-box;
  transform-origin: center;
}

.dlx-tok--a { animation: ill-float 3.6s ease-in-out infinite; }
.dlx-tok--b { animation: ill-float 4.2s ease-in-out -1.2s infinite; }
.dlx-tok--c { animation: ill-float 3.2s ease-in-out -0.6s infinite; }

.dlx-shadow {
  transform-box: fill-box;
  transform-origin: center;
  animation: ill-shadow-pulse 4.5s ease-in-out infinite;
}

.dlx-chart {
  stroke-dasharray: 100;
  animation: dlx-draw 4s ease-in-out infinite;
}

@keyframes dlx-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@keyframes dlx-drop {
  0%, 100% { transform: translateY(-3px); }
  50% { transform: translateY(5px); }
}

@keyframes dlx-draw {
  0% { stroke-dashoffset: 100; }
  45%, 80% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 100; }
}

@media (prefers-reduced-motion: reduce) {
  .dlx-monitor,
  .dlx-coins,
  .dlx-arrow,
  .dlx-tok,
  .dlx-shadow,
  .dlx-chart {
    animation: none;
  }
}

.dl-kicker {
  margin: 0;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-text-muted);
}

.dl-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 130px);
  line-height: 0.86;
  font-weight: 400;
  color: #000;
  -webkit-text-stroke: 1.5px #000;
}

.dl-card {
  border-radius: 18px;
  padding: clamp(14px, 1.6vw, 20px) clamp(16px, 2vw, 22px) clamp(16px, 1.8vw, 22px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  will-change: transform;
  overflow: hidden;
  height: 100%;
  box-sizing: border-box;
}

.dl-card:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.dl-card__art {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
}

.dl-card__art svg {
  display: block;
  width: 100%;
  height: 100%;
}

.dl-card--linux  { background: var(--c-aqua); }
.dl-card--windows { background: var(--c-blue); }
.dl-card--macos  { background: var(--c-pink); }


.dl-card__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(40px, 3.5vw, 54px);
  line-height: 0.95;
  font-weight: 400;
  color: #000;
  font-style: italic;
  -webkit-text-stroke: 1px #000;
}

.dl-card__desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.66);
}

.dl-card__meta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(0, 0, 0, 0.42);
  text-transform: uppercase;
}

/* OS download button with icon */
.dl-os-btn {
  display: inline-flex;
  align-items: center;
  gap: clamp(6px, 0.6vw, 10px);
  padding: clamp(8px, 0.8vw, 12px) clamp(14px, 1.6vw, 22px) clamp(8px, 0.8vw, 12px) clamp(10px, 1vw, 14px);
  border: 1.5px solid #000;
  border-radius: 100px;
  background: #fff;
  color: #000;
  font-size: clamp(11px, 0.9vw, 13px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 150ms ease, color 150ms ease;
  align-self: center;
}

.dl-os-btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(22px, 2vw, 28px);
  height: clamp(22px, 2vw, 28px);
  border-radius: 50%;
  background: #000;
  color: #fff;
  flex-shrink: 0;
  transition: background 150ms ease, color 150ms ease;
}

.dl-card--linux   .dl-os-btn:hover { background: var(--c-yellow); }
.dl-card--windows .dl-os-btn:hover { background: var(--c-aqua); }
.dl-card--macos   .dl-os-btn:hover { background: var(--c-cyan); }

/* ── Download section — mobile ── */
@media (max-width: 760px) {
  .download-section {
    height: auto;
    padding: 24px 8px 32px;
  }

  .dl-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 0;
    gap: 8px;
  }

  .dl-hero-card {
    min-height: 140px;
    padding: 24px 20px;
  }

  .dl-hero-deco {
    left: auto;
    right: -10px;
    top: 0;
    bottom: 0;
    width: 45%;
  }

  .dl-hero-deco svg {
    width: 100%;
  }

  .dl-title {
    font-size: clamp(52px, 14vw, 80px);
  }

  .dl-card {
    height: auto;
    min-height: 280px;
  }

  .dl-card__art {
    flex: none;
    height: 140px;
  }

  .dl-card__name {
    font-size: clamp(36px, 9vw, 48px);
  }

  .dl-card__desc {
    font-size: 14px;
  }
}

/* ── Chains section ── */
.chains-section {
  min-height: calc(100vh - 1.5em);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 48px;
  background: #000;
  overflow: hidden;
}

.chains-inner {
  margin-bottom: 52px;
}

.chains-kicker {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  gap: 8px;
}

.chains-kicker::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  background: currentColor;
  flex-shrink: 0;
}

.chains-title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 116px);
  line-height: 0.88;
  font-weight: 400;
  color: #fff;
  -webkit-text-stroke: 1.5px #fff;
}

.chains-sub {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.58);
  max-width: 480px;
}

.chains-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chains-mq-wrap {
  overflow: hidden;
  position: relative;
  padding: 4px 0;
}

.chains-mq-wrap::before,
.chains-mq-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.chains-mq-wrap::before {
  left: 0;
  background: linear-gradient(to right, #000, transparent);
}

.chains-mq-wrap::after {
  right: 0;
  background: linear-gradient(to left, #000, transparent);
}

.chains-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 8px;
  animation: mq-scroll 28s linear infinite;
}

.chains-track--reverse {
  animation-direction: reverse;
}

.chain-pill {
  display: flex;
  align-items: center;
  height: 64px;
  padding: 0 28px;
  border-radius: 12px;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #000;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Reviews section ── */
/* ── Proof / social-proof section ── */
.proof-section {
  height: calc(100vh - 1.5em);
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.proof-capsule {
  background: #fff;
  border-radius: 33.5px;
  width: calc(100% - 36px);
  height: calc(100vh - 1.5em - 36px);
  margin: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proof-inner {
  width: 100%;
  max-width: 1640px;
  padding: 0 clamp(48px, 7vw, 124px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(43px, 6.4vh, 74px);
  transform: translateY(28px);
}

/* Heading */
.proof-headline {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(68px, 5.94vw, 111px);
  font-weight: 900;
  line-height: 0.92;
  color: #000;
  margin: 0;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.line-mask {
  display: inline-block;
  overflow: hidden;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
  vertical-align: bottom;
}

.line-mask + .line-mask {
  margin-left: 0.28em;
}

.line {
  display: inline-flex;
  gap: 0.28em;
  flex-wrap: wrap;
  justify-content: center;
}

.proof-headline .word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.9s cubic-bezier(0.22,1,0.36,1), opacity 0.6s ease-out;
}

/* Cards row */
.proof-cards-row {
  display: flex;
  gap: clamp(22px, 1.8vw, 32px);
  justify-content: center;
  width: 100%;
}

.square-card {
  flex: 1;
  max-width: 470px;
  min-height: clamp(410px, 31vw, 520px);
  border: 2px solid #000;
  border-radius: 34px;
  padding: clamp(32px, 2.5vw, 48px);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
}

.square-card--yellow  { background: var(--c-yellow); }
.square-card--lavender { background: var(--c-pink); }
.square-card--blue    { background: var(--c-blue); }

.card-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(64px, 5vw, 112px);
  font-weight: 900;
  font-style: italic;
  line-height: 0.92;
  text-transform: uppercase;
  color: #000;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
  position: relative;
  z-index: 1;
  letter-spacing: 0;
}

/* Illustration */
.square-card-i {
  position: absolute;
  right: 22px;
  bottom: 82px;
  width: min(44%, 230px);
  aspect-ratio: 1;
  pointer-events: none;
}

.square-card-i svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.square-card-i--onboarding {
  right: 28px;
  bottom: 60px;
  width: min(44%, 226px);
}

.square-card-i--defi {
  right: 28px;
  bottom: 80px;
  width: min(43%, 224px);
}

.square-card-i--security {
  right: 30px;
  bottom: 78px;
  width: min(47%, 246px);
}

.onboarding-card,
.onboarding-cursor,
.onboarding-spark,
.defi-node,
.security-key,
.security-chip,
.security-shield {
  transform-box: fill-box;
  transform-origin: center;
}

.onboarding-path {
  animation: proof-dash 2.8s linear infinite;
}

.onboarding-card--back {
  animation: proof-float-soft 5.8s ease-in-out infinite;
}

.onboarding-card--front {
  animation: proof-float-soft 5.8s ease-in-out -1.1s infinite;
}

.onboarding-cursor {
  animation: proof-cursor-route 4.5s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.onboarding-spark--one {
  animation: proof-pop 2.6s ease-in-out infinite;
}

.onboarding-spark--two {
  animation: proof-pop 2.6s ease-in-out -1.2s infinite;
}

.defi-ring {
  transform-box: fill-box;
  transform-origin: center;
  animation: proof-orbit 8s linear infinite;
}

.defi-ring--inner {
  animation-duration: 5.5s;
  animation-direction: reverse;
}

.defi-node--main {
  animation: proof-breathe 3.2s ease-in-out infinite;
}

.defi-node--purple {
  animation: proof-float-soft 4.2s ease-in-out -0.2s infinite;
}

.defi-node--yellow {
  animation: proof-float-soft 4.8s ease-in-out -1.6s infinite;
}

.defi-node--green {
  animation: proof-float-soft 4.5s ease-in-out -0.9s infinite;
}

.defi-node--blue {
  animation: proof-float-soft 5.1s ease-in-out -2s infinite;
}

.defi-pulse {
  stroke-dasharray: 18 190;
  stroke-dashoffset: 0;
  animation: proof-link-pulse 2.9s ease-in-out infinite;
}

.security-shield {
  animation: proof-float-tight 4.8s ease-in-out infinite;
}

.security-key {
  animation: proof-key-swing 4.2s ease-in-out infinite;
}

.security-chip {
  animation: proof-float-soft 5s ease-in-out -1.4s infinite;
}

.security-scan {
  animation: proof-scan 2.4s ease-in-out infinite;
}

@keyframes proof-dash {
  to { stroke-dashoffset: -50; }
}

@keyframes proof-float-soft {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}

@keyframes proof-float-tight {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes proof-cursor-route {
  0%, 100% { transform: translate(-8px, 6px) rotate(-8deg); }
  35% { transform: translate(8px, -4px) rotate(7deg); }
  70% { transform: translate(-2px, -10px) rotate(-4deg); }
}

@keyframes proof-pop {
  0%, 100% { transform: scale(0.82); opacity: 0.55; }
  42% { transform: scale(1.14) rotate(8deg); opacity: 1; }
}

@keyframes proof-orbit {
  to { transform: rotate(360deg); }
}

@keyframes proof-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

@keyframes proof-link-pulse {
  0% { stroke-dashoffset: 170; opacity: 0.2; }
  45% { opacity: 1; }
  100% { stroke-dashoffset: -50; opacity: 0.2; }
}

@keyframes proof-key-swing {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-7px, 8px) rotate(-12deg); }
}

@keyframes proof-scan {
  0%, 100% { transform: translateY(-25px); opacity: 0; }
  20%, 80% { opacity: 0.75; }
  50% { transform: translateY(34px); opacity: 0.9; }
}

/* ── Proof card buttons ── */
.proof-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.58em;
  min-height: 56px;
  margin-top: auto;
  padding: 0 34px;
  border: 2px solid #000;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  z-index: 2;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.proof-button:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

.proof-button__arrow {
  width: 0.72em;
  height: 0.72em;
  flex: 0 0 auto;
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .proof-headline .word { transition: none; transform: translateY(0); opacity: 1; }
  .proof-button { transition: none; }
  .onboarding-path,
  .onboarding-card,
  .onboarding-cursor,
  .onboarding-spark,
  .defi-ring,
  .defi-node,
  .defi-pulse,
  .security-shield,
  .security-key,
  .security-chip,
  .security-scan { animation: none; }
}

@media (max-width: 980px) {
  .proof-inner {
    padding: 72px 28px;
    gap: 38px;
    transform: translateY(20px);
  }

  .proof-headline {
    font-size: clamp(44px, 8vw, 72px);
  }

  .proof-cards-row {
    gap: 16px;
  }

  .square-card {
    min-height: 340px;
    padding: 28px;
    border-radius: 26px;
  }

  .card-title {
    font-size: clamp(48px, 7vw, 72px);
  }

  .proof-button {
    min-height: 48px;
    padding: 0 24px;
    font-size: 14px;
  }
}

@media (max-width: 760px) {
  .proof-section {
    height: auto;
    min-height: calc(100vh - 1.5em);
  }

  .proof-capsule {
    height: auto;
    min-height: calc(100vh - 36px);
  }

  .proof-inner {
    padding: 64px 20px;
    transform: none;
  }

  .proof-cards-row {
    flex-direction: column;
    align-items: stretch;
  }

  .square-card {
    max-width: none;
    min-height: 360px;
  }

  .card-title {
    font-size: clamp(56px, 15vw, 82px);
  }

  .square-card-i {
    bottom: 76px;
    width: min(46%, 190px);
  }
}

@media (max-width: 980px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .product-copy {
    align-items: center;
    text-align: center;
  }

  .product-desc {
    max-width: 560px;
  }

  .product-sticker--coin {
    width: 86px;
    height: 86px;
  }

  .product-sticker--plane {
    width: 94px;
    height: 94px;
  }
}

@media (max-width: 980px) {
  .site-header {
    top: 10px;
    width: calc(100% - 24px);
    grid-template-columns: auto 1fr auto;
    padding: 0 4px;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav.open {
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    display: grid;
    gap: 8px;
    padding: 12px;
    border: 2px solid #000;
    border-radius: 24px;
    background: #fff;
  }

  .site-nav.open .nav-pill {
    width: 100%;
  }

  .site-nav.open .bmi,
  .site-nav.open .bmi-front,
  .site-nav.open .bmi-back {
    width: 100%;
  }
}

/* ═══════════════════════════════════════════
   BLACK SITE / WHITE CARD LAYOUT
   ═══════════════════════════════════════════ */

/* 0.75em gap on all sides, between every section */
main {
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  padding: 0.75em;
}

/* White card for snap sections — exclude hero (keeps its gradient) and security (colored cards) */
[data-snap]:not(.security-band):not(.hero):not(.get-ticker):not(.chains-section):not(.faq-section):not(.last-screen) {
  background: #fff;
  border-radius: 24px;
  color: var(--ink);
}

/* Hero keeps its gradient but still gets rounded corners */
.hero {
  border-radius: 24px;
  overflow: hidden;
}

/* ── FAQ section ── */
.faq-section {
  border-radius: 24px;
  min-height: calc(100vh - 1.5em);
  height: auto;
  overflow: visible;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.faq-shell {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  width: var(--section);
  margin: 0 auto;
  padding: 80px 0 48px;
  gap: 28px;
  overflow: visible;
}

.faq-head__title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 92px);
  color: #000;
  font-weight: 900;
  line-height: 0.9;
  margin: 0;
  letter-spacing: 0;
  text-transform: uppercase;
}

.faq-rows {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scrollbar-width: none;
  padding-right: 30%;
}

.faq-rows::-webkit-scrollbar { display: none; }

.faq-row {
  background: #f5f5f0;
  border-radius: 20px;
  flex-shrink: 0;
  transition: background 150ms ease;
}

.faq-row:hover {
  background: var(--c-yellow);
}

.faq-row__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-row__q {
  color: #000;
  font-size: calc(16px * 1.1);
  font-weight: 500;
  line-height: 1.4;
  font-family: 'Nunito Sans', sans-serif;
}

.faq-row__btn:hover .faq-row__q {
  color: #000;
}

.faq-row__icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.faq-row__icon svg {
  width: calc(16px * 1.5);
  height: calc(16px * 1.5);
}

.faq-row.is-open .faq-row__icon {
  transform: rotate(180deg);
}

.faq-row__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-row__body p {
  margin: 0;
  padding: 0 22px 20px;
  color: rgba(0, 0, 0, 0.62);
  font-size: 15px;
  line-height: 1.6;
}

/* ── Final CTA — keep dark card inside ── */
.final-card h2 {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(34px, 3.35vw, 55px);
  line-height: 0.95;
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* ── Security section — exact viewport fit ── */
.security-band {
  min-height: 0;
  height: calc(100vh - 1.5em);
}

.security-copy {
  padding: 28px 36px;
}

.security-video {
  min-height: 0;
}

/* ── Chains section — dark background, light text ── */
.chains-section {
  background: #000;
}

.chains-title {
  color: #fff;
}

.chains-sub {
  color: rgba(255, 255, 255, 0.6);
}

/* ── Final CTA + footer share black bg, no card ── */

/* ── GET Ticker (full-screen pre-download block) ──────────── */
.get-ticker {
  background: #000;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.get-ticker__rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.get-ticker__row {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.get-ticker__track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 12px;
  animation: get-ticker-scroll 40s linear infinite;
}

.get-ticker__track--rev {
  animation-direction: reverse;
  animation-duration: 34s;
}

@keyframes get-ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.get-ticker__pill {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: clamp(20px, 2.2vw, 36px);
  padding: 0 clamp(32px, 3.5vw, 64px);
  font-family: var(--font-display);
  font-size: clamp(120px, 17vw, 240px);
  line-height: 1;
  white-space: nowrap;
  color: #000;
  border: 4px solid #000;
  flex-shrink: 0;
  height: clamp(150px, 21vw, 300px);
  box-sizing: border-box;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.4);
}

.get-ticker__pill--italic {
  font-style: italic;
}

/* Logo circles inside the tracks */
.get-ticker__logo {
  flex-shrink: 0;
  width: clamp(150px, 20vw, 300px);
  height: clamp(150px, 20vw, 300px);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.get-ticker__logo--b {
  background: #fff;
  border: 4px solid #000;
}

.get-ticker__logo--b img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  display: block;
}

.get-ticker__logo--coin svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Decorative absolute SVG illustrations */
.get-deco {
  position: absolute;
  pointer-events: none;
  z-index: 10;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.5));
}

.get-deco svg {
  width: 100%;
  height: 100%;
  display: block;
}

.get-deco--wallet {
  width: clamp(120px, 13vw, 200px);
  top: clamp(20px, 3vh, 50px);
  left: clamp(30px, 5vw, 100px);
  transform: rotate(-10deg);
}

.get-deco--rocket {
  width: clamp(110px, 11vw, 170px);
  top: clamp(20px, 3vh, 50px);
  right: clamp(30px, 5vw, 100px);
  transform: rotate(14deg);
}

.get-deco--coins {
  width: clamp(120px, 13vw, 200px);
  bottom: clamp(20px, 3vh, 50px);
  right: clamp(30px, 6vw, 120px);
  transform: rotate(-8deg);
}

.get-deco--shield {
  width: clamp(110px, 12vw, 180px);
  bottom: clamp(20px, 3vh, 50px);
  left: clamp(30px, 6vw, 120px);
  transform: rotate(8deg);
}

@media (max-width: 640px) {
  .get-ticker__pill {
    font-size: 64px;
    height: 100px;
    padding: 0 22px;
    border-radius: 14px;
  }

  .get-ticker__logo {
    width: 100px;
    height: 100px;
  }

  .get-ticker__rows {
    gap: 8px;
  }

  .get-deco--wallet { width: 80px; }
  .get-deco--rocket { width: 70px; }
  .get-deco--coins  { width: 80px; }
  .get-deco--shield { width: 75px; }
}

@media (max-width: 980px) {
  .final-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .final-card h2 {
    white-space: normal;
  }

  .final-actions {
    width: 100%;
    justify-content: flex-start;
  }
}
