@import url("https://api.fontshare.com/v2/css?f[]=satoshi@700,800&f[]=general-sans@400,500,600&display=swap");

:root {
  --bg-primary: #080c12;
  --bg-secondary: #0e1420;
  --bg-tertiary: #141b27;
  --border-subtle: #1e2a3a;
  --border-default: #263345;
  --accent-green: #ffd900;
  --accent-green-dim: #d4b800;
  --accent-cyan: #00b8d4;
  --accent-glow: rgba(255, 217, 0, 0.12);
  --text-primary: #f0f4fa;
  --text-secondary: #8a9bb5;
  --text-muted: #4a5a72;
  --font-display: "Satoshi", "General Sans", sans-serif;
  --font-body: "General Sans", "DM Sans", sans-serif;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  --scroll-depth: 0;
  --scroll-depth-y: 0px;
}

body {
  margin: 0;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  padding: 0 22px;
  pointer-events: none;
}

.header-capsule {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 820px;
  min-height: 60px;
  padding: 0 20px 0 24px;
  background: rgba(8, 12, 18, 0.3);
  border: 1px solid rgba(38, 51, 69, 0.25);
  border-radius: 999px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  pointer-events: auto;
  transition: all 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.is-scrolled .header-capsule {
  max-width: 640px;
  min-height: 48px;
  gap: 14px;
  padding: 0 10px 0 16px;
  background: rgba(8, 12, 18, 0.72);
  border-color: rgba(38, 51, 69, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.36);
}

.site-header.is-scrolled .wordmark-logo {
  height: 22px;
}

.site-header.is-scrolled .desktop-nav {
  gap: 16px;
  font-size: 12px;
}

.site-header.is-scrolled .header-cta {
  min-height: 32px;
  padding: 0 14px;
  font-size: 12px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.wordmark-logo {
  display: block;
  height: 28px;
  width: auto;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  gap: 24px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  transition: all 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.desktop-nav a {
  position: relative;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-green);
  border-radius: 2px;
  transition: width 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.desktop-nav a:hover {
  color: var(--text-primary);
}

.desktop-nav a:hover::after {
  width: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease,
    box-shadow 180ms ease, filter 180ms ease;
}

[data-parallax] {
  will-change: transform;
}

.button:hover {
  transform: translateY(-3px) scale(1.03);
}

.button-primary {
  background: var(--accent-green);
  color: #00150b;
  box-shadow: 0 0 0 rgba(255, 217, 0, 0);
}

.button-primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 32px rgba(255, 217, 0, 0.25);
}

.button-ghost {
  color: var(--text-primary);
  border-color: var(--border-default);
  background: rgba(14, 20, 32, 0.2);
}

.button-ghost:hover {
  color: var(--accent-green);
  border-color: var(--accent-green);
  box-shadow: 0 0 24px rgba(255, 217, 0, 0.1);
}

.button-large {
  min-height: 56px;
  padding: 0 30px;
}

.menu-button,
.menu-close {
  display: none;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 86px 28px 28px;
  background: rgba(5, 10, 20, 0.96);
  backdrop-filter: blur(20px);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), opacity 220ms ease;
}

.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a:not(.button) {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  padding: 112px 32px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, var(--bg-primary));
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 20, 0.55);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: min(700px, 100%);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-green);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.hero-kicker,
.hero h1 span,
.hero-copy,
.hero-actions {
  opacity: 0;
  transform: translateY(24px);
  animation: heroEnter 740ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero h1 {
  display: grid;
  gap: 2px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 span:nth-child(1) {
  animation-delay: 100ms;
}

.hero h1 span:nth-child(2) {
  animation-delay: 220ms;
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--text-secondary);
  font-size: clamp(17px, 2vw, 20px);
  animation-delay: 340ms;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
  animation-delay: 460ms;
}

.section {
  position: relative;
  padding: 116px 0;
  background: var(--bg-primary);
  opacity: 0;
  filter: blur(6px);
  transition: opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
              filter 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.section.in-view {
  opacity: 1;
  filter: blur(0);
}

.section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(70%, 600px);
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 217, 0, 0.04) 20%,
    rgba(255, 217, 0, 0.15) 50%,
    rgba(255, 217, 0, 0.04) 80%,
    transparent 100%);
}

.section::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 217, 0, 0.25), 0 0 30px rgba(255, 217, 0, 0.1);
  z-index: 1;
}

.section-copy {
  max-width: 780px;
  margin-bottom: 50px;
}

.section-copy h2,
.susd-copy h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
}

.section-copy p:not(.eyebrow),
.susd-copy > p,
.final-cta p {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--text-secondary);
}

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

.strategy-card,
.security-card {
  position: relative;
  min-height: 280px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(20, 27, 39, 0.78), rgba(14, 20, 32, 0.62));
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1),
              border-color 400ms ease,
              box-shadow 400ms ease;
}

.strategy-card::before,
.security-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 217, 0, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 400ms ease;
  pointer-events: none;
}

.strategy-card:hover,
.security-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(255, 217, 0, 0.5);
  box-shadow: 0 12px 48px rgba(255, 217, 0, 0.12),
              inset 0 1px 0 rgba(255, 217, 0, 0.1);
}

.strategy-card:hover::before,
.security-card:hover::before {
  opacity: 1;
}

.strategy-index {
  color: var(--accent-green);
  font-size: 12px;
  font-weight: 800;
}

.strategy-card h3,
.security-card h3,
.feature h3 {
  margin: 24px 0 12px;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.16;
  letter-spacing: 0;
}

.strategy-card p,
.security-card p,
.feature p {
  margin: 0;
  color: var(--text-secondary);
}

.susd {
  position: relative;
  background:
    linear-gradient(180deg, rgba(14, 20, 32, 0.34), transparent 36%),
    var(--bg-primary);
}

.susd-layout {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 460px);
  gap: 84px;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 24px;
  margin-top: 42px;
}

.feature {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  align-items: start;
}

.feature-icon {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 217, 0, 0.26);
  border-radius: 50%;
  background: rgba(255, 217, 0, 0.08);
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1),
              border-color 300ms ease,
              box-shadow 300ms ease;
}

.feature:hover .feature-icon {
  transform: scale(1.15);
  border-color: var(--accent-green);
  box-shadow: 0 0 24px rgba(255, 217, 0, 0.18);
}

.rotate-icon::before,
.unlock-icon::before,
.compose-icon::before,
.compose-icon::after {
  content: "";
  position: absolute;
  border: 2px solid var(--accent-green);
}

.rotate-icon::before {
  inset: 11px;
  border-left-color: transparent;
  border-radius: 50%;
}

.unlock-icon::before {
  left: 13px;
  top: 17px;
  width: 16px;
  height: 12px;
  border-radius: 3px;
}

.unlock-icon::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 9px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--accent-green);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  transform: translateX(4px);
}

.compose-icon::before {
  left: 10px;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 3px;
}

.compose-icon::after {
  right: 10px;
  bottom: 10px;
  width: 10px;
  height: 10px;
  border-radius: 3px;
}

.token-wrap {
  perspective: 1000px;
}

.token-card {
  position: relative;
  min-height: 560px;
  padding: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 217, 0, 0.16), transparent 35%),
    linear-gradient(160deg, rgba(20, 27, 39, 0.92), rgba(7, 16, 18, 0.88));
  border: 1px solid rgba(255, 217, 0, 0.18);
  border-radius: 8px;
  transform-style: preserve-3d;
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1),
              border-color 400ms ease,
              box-shadow 400ms ease;
}

.token-card:hover {
  border-color: rgba(255, 217, 0, 0.4);
  box-shadow: 0 16px 56px rgba(255, 217, 0, 0.1);
}

.token-orbit {
  position: absolute;
  inset: 76px 52px auto;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 217, 0, 0.18);
  border-radius: 50%;
  animation: orbitSpin 18s linear infinite;
}

.token-orbit::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--accent-green);
}

.token-face {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 210px;
  height: 210px;
  margin: 92px auto 0;
  background: linear-gradient(145deg, rgba(240, 244, 250, 0.96), rgba(138, 155, 181, 0.84));
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: #071012;
  box-shadow: inset 0 -24px 52px rgba(0, 0, 0, 0.18), 0 24px 90px rgba(255, 217, 0, 0.16);
  transform: translateZ(48px);
}

.token-symbol {
  align-self: end;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
}

.token-label {
  align-self: start;
  color: rgba(7, 16, 18, 0.64);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.token-meta {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-top: 24px;
  border-top: 1px solid rgba(138, 155, 181, 0.2);
  color: var(--text-secondary);
  transform: translateZ(30px);
}

.token-meta strong {
  color: var(--accent-green);
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
}

.token-bars {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 112px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  align-items: end;
  height: 64px;
  opacity: 0.44;
}

.token-bars span {
  display: block;
  height: var(--bar-height, 44%);
  background: linear-gradient(180deg, var(--accent-green), rgba(255, 217, 0, 0.05));
  border-radius: 999px;
  transform-origin: bottom;
  animation: barPulse 1600ms ease-in-out infinite alternate;
}

.token-bars span:nth-child(2) {
  --bar-height: 58%;
  animation-delay: 120ms;
}

.token-bars span:nth-child(3) {
  --bar-height: 78%;
  animation-delay: 240ms;
}

.token-bars span:nth-child(4) {
  --bar-height: 52%;
  animation-delay: 360ms;
}

.token-bars span:nth-child(5) {
  --bar-height: 92%;
  animation-delay: 480ms;
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.metric {
  min-height: 154px;
  padding: 28px 22px;
  border-right: 1px solid var(--border-subtle);
  transition: background 300ms ease;
}

.metric:last-child {
  border-right: 0;
}

.metric:hover {
  background: rgba(255, 217, 0, 0.03);
}

.metric strong {
  display: block;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 14px;
  color: var(--text-secondary);
  font-size: 14px;
}

.dashboard {
  margin-top: 44px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(20, 27, 39, 0.78), rgba(14, 20, 32, 0.58)),
    repeating-linear-gradient(90deg, transparent 0 84px, rgba(138, 155, 181, 0.035) 85px);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  transition: border-color 400ms ease, box-shadow 400ms ease;
}

.dashboard:hover {
  border-color: rgba(255, 217, 0, 0.2);
  box-shadow: 0 0 40px rgba(255, 217, 0, 0.05);
}

.dashboard-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.dashboard-header span {
  display: block;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.dashboard-header strong {
  display: block;
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: 26px;
}

.dashboard-header a {
  color: var(--accent-green);
  font-size: 14px;
  font-weight: 800;
}

.chart {
  display: block;
  width: 100%;
  height: auto;
}

.grid-lines path {
  stroke: rgba(138, 155, 181, 0.12);
  stroke-width: 1;
}

.chart-area {
  fill: rgba(255, 217, 0, 0.07);
}

.chart-line {
  fill: none;
  stroke: var(--accent-green);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 1120;
  stroke-dashoffset: 1120;
  filter: drop-shadow(0 0 12px rgba(255, 217, 0, 0.28));
  transition: stroke-dashoffset 1600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.dashboard.in-view .chart-line {
  stroke-dashoffset: 0;
}

.dashboard.in-view {
  box-shadow: 0 28px 90px rgba(255, 217, 0, 0.08);
}

.partners {
  overflow: hidden;
}

.marquee {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
}

.marquee + .marquee {
  border-bottom: 1px solid var(--border-subtle);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-reverse .marquee-track {
  animation-direction: reverse;
  animation-duration: 34s;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee span {
  display: grid;
  place-items: center;
  min-width: 232px;
  min-height: 92px;
  padding: 0 28px;
  color: rgba(240, 244, 250, 0.56);
  border-right: 1px solid var(--border-subtle);
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  filter: grayscale(1);
  transition: color 180ms ease, filter 180ms ease, opacity 180ms ease;
}

.marquee span:hover {
  color: var(--text-primary);
  filter: grayscale(0);
}

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

.security-card {
  min-height: 220px;
}

.security-card h3 {
  margin-top: 0;
}

.audit-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.audit-row span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  color: var(--text-secondary);
  background: rgba(14, 20, 32, 0.62);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.audit-row i {
  display: block;
  width: 14px;
  height: 14px;
  background: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(255, 217, 0, 0.3);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 217, 0, 0.12) 44%, transparent 62%),
    linear-gradient(135deg, #050a14, #071012);
  background-size: 220% 220%, 100% 100%;
  animation: shimmer 8s ease-in-out infinite;
}

.final-cta-inner {
  max-width: 760px;
}

.footer {
  padding: 54px 0;
  color: var(--text-secondary);
  background: #05080d;
  border-top: 1px solid var(--border-subtle);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.footer-wordmark {
  color: var(--text-primary);
}

.footer nav,
.legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  font-size: 14px;
}

.footer a:hover {
  color: var(--text-primary);
}

.disclaimer {
  max-width: 680px;
  margin: 0;
  color: var(--text-muted);
  font-size: 12px;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

.effects-ready .animate-on-scroll.in-view {
  animation: revealSettle 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.from-left {
  transform: translateX(-34px);
}

.from-right {
  transform: translateX(34px);
}

.from-left.in-view,
.from-right.in-view {
  transform: translateX(0);
}

.strategy-card:nth-child(2),
.feature:nth-child(2),
.metric:nth-child(2),
.security-card:nth-child(2) {
  transition-delay: 100ms;
}

.strategy-card:nth-child(3),
.feature:nth-child(3),
.metric:nth-child(3),
.security-card:nth-child(3) {
  transition-delay: 200ms;
}

.metric:nth-child(4),
.security-card:nth-child(4) {
  transition-delay: 300ms;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
}

.cursor-dot {
  width: 10px;
  height: 10px;
  background: var(--accent-green);
  box-shadow: 0 0 20px rgba(255, 217, 0, 0.42);
}

.cursor-ring {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 217, 0, 0.44);
}

@keyframes heroEnter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes barPulse {
  from {
    transform: scaleY(0.72);
    opacity: 0.48;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes revealSettle {
  0% {
    filter: blur(6px);
  }
  100% {
    filter: blur(0);
  }
}

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

@keyframes shimmer {
  0%,
  100% {
    background-position: 160% 50%, 0 0;
  }
  50% {
    background-position: 10% 50%, 0 0;
  }
}

@media (hover: hover) and (pointer: fine) {
  body {
    cursor: none;
  }

  a,
  button {
    cursor: none;
  }

  .cursor-dot,
  .cursor-ring {
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .site-header {
    top: 10px;
    padding: 0 14px;
  }

  .header-capsule {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    max-width: 100%;
    min-height: 50px;
    padding: 0 10px 0 14px;
  }

  .site-header.is-scrolled .header-capsule {
    max-width: 100%;
    min-height: 42px;
    gap: 10px;
    padding: 0 6px 0 12px;
  }

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

  .menu-button {
    justify-self: end;
    display: grid;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 0;
    place-content: center;
    background: transparent;
    border: 1px solid var(--border-default);
    border-radius: 50%;
    transition: all 300ms ease;
  }

  .site-header.is-scrolled .menu-button {
    width: 32px;
    height: 32px;
  }

  .menu-button span {
    display: block;
    width: 14px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
  }

  .menu-close {
    position: absolute;
    top: 22px;
    right: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    color: var(--text-primary);
    background: transparent;
    border: 1px solid var(--border-default);
    border-radius: 8px;
  }

  .hero {
    align-items: center;
    min-height: 100svh;
    padding: 100px 22px 42px;
  }

  .strategy-grid,
  .susd-layout,
  .metrics-row,
  .security-grid {
    grid-template-columns: 1fr;
  }

  .metrics-row {
    border-bottom: 0;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid var(--border-subtle);
  }

  .susd-layout {
    gap: 48px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(100% - 36px, 1200px);
  }

  .section {
    padding: 72px 0;
  }

  .section::after {
    width: min(85%, 300px);
  }

  .section::before {
    display: none;
  }

  .hero-copy {
    max-width: 92%;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    flex: 1 1 160px;
  }

  .strategy-card,
  .security-card {
    min-height: auto;
    padding: 24px;
  }

  .token-card {
    min-height: 500px;
    padding: 24px;
  }

  .token-face {
    width: 184px;
    height: 184px;
  }

  .token-meta {
    left: 24px;
    right: 24px;
  }

  .token-meta strong {
    font-size: 36px;
  }

  .dashboard {
    padding: 18px;
  }

  .dashboard-header {
    flex-direction: column;
  }

  .marquee span {
    min-width: 190px;
    min-height: 78px;
    font-size: 16px;
  }
}

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

  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }

  .section {
    opacity: 1;
    filter: blur(0);
  }
}
