:root {
  color-scheme: dark;
  --bg: #10141a;
  --bg-elevated: #121826;
  --surface: #171f2d;
  --surface-high: #1f2937;
  --line: #2f3a45;
  --line-soft: rgba(185, 203, 189, 0.16);
  --text: #eaf0ff;
  --muted: #b9cbbd;
  --hint: #8b95a7;
  --primary: #00ef9d;
  --primary-dark: #03ae75;
  --cyan: #00dcfd;
  --warning: #f0b90b;
  --danger: #ff6b7a;
  --shadow: 0 32px 110px rgba(0, 0, 0, 0.42);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 239, 157, 0.1), transparent 34rem),
    linear-gradient(180deg, #0d1117 0%, var(--bg) 38%, #0d1117 100%);
  color: var(--text);
  font-family: Manrope, system-ui, sans-serif;
}

body,
main,
section,
div,
article,
form,
header,
footer {
  min-width: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

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

h1,
h2,
h3,
p,
span,
strong,
a,
label,
button {
  overflow-wrap: anywhere;
  word-break: normal;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(13, 17, 23, 0.78);
  backdrop-filter: blur(20px);
  transition: background 220ms ease, border-color 220ms ease;
}

.brand,
.nav-links,
.nav-action,
.button,
.ticker span,
.apk-meta,
.hero-actions,
.proof-strip {
  display: flex;
  align-items: center;
}

.brand {
  gap: 11px;
  font-weight: 800;
}

.brand img {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  object-fit: cover;
}

.nav-links {
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  content: "";
  opacity: 0;
  transform: scaleX(0.36);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.nav-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-action {
  gap: 8px;
  min-height: 42px;
  border: 1px solid rgba(0, 239, 157, 0.38);
  border-radius: 8px;
  padding: 0 14px;
  background: rgba(0, 239, 157, 0.08);
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-action:hover {
  border-color: rgba(0, 239, 157, 0.64);
  background: rgba(0, 239, 157, 0.14);
  transform: translateY(-1px);
}

.nav-action svg,
.button svg,
.ticker svg,
.role-grid svg,
.trust-grid svg,
.proof-card svg,
.wallet-card svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.section-shell {
  width: calc(100% - 36px);
  max-width: var(--max);
  margin: 0 auto;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.68fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  min-height: calc(100svh - 132px);
  padding: clamp(28px, 5vw, 48px) 0 clamp(16px, 3vw, 28px);
}

.hero-copy {
  max-width: 780px;
  animation: hero-copy-in 800ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  border: 1px solid rgba(0, 239, 157, 0.28);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(0, 239, 157, 0.08);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.launch-badge span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(0, 239, 157, 0.12);
  animation: status-pulse 1800ms ease-in-out infinite;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Space Grotesk", Manrope, system-ui, sans-serif;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 0.94;
}

h2 {
  max-width: 740px;
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.hero-text,
.section-heading p,
.trust-copy p,
.download-copy p {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  text-wrap: pretty;
}

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

.button {
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 900;
  box-shadow: 0 0 0 rgba(0, 239, 157, 0);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--primary);
  color: #07120f;
}

.button.primary:hover {
  box-shadow: 0 14px 36px rgba(0, 239, 157, 0.22);
}

.button.secondary {
  border-color: rgba(234, 240, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.button.secondary:hover {
  border-color: rgba(234, 240, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.proof-strip {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.proof-strip span,
.apk-meta span {
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--hint);
  font-size: 13px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  animation: hero-visual-in 900ms 100ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-visual::before {
  position: absolute;
  width: 82%;
  height: 82%;
  border: 1px solid rgba(0, 220, 253, 0.2);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(0, 239, 157, 0.12), rgba(0, 220, 253, 0.07)),
    url("https://images.unsplash.com/photo-1639762681057-408e52192e55?auto=format&fit=crop&w=1100&q=80");
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
  content: "";
  filter: saturate(1.05);
  transform: rotate(-2deg);
  transition: transform 450ms ease, filter 450ms ease;
}

.hero-visual:hover::before {
  filter: saturate(1.18) brightness(1.05);
  transform: rotate(-1deg) scale(1.01);
}

.phone-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 318px);
  min-height: 480px;
  padding: 17px;
  border: 10px solid #05070a;
  border-radius: 34px;
  background: #0f1722;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.52);
  animation: phone-float 5200ms ease-in-out infinite;
  transform-origin: center;
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.phone-shell:hover {
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.6), 0 0 42px rgba(0, 239, 157, 0.08);
}

.phone-top,
.wallet-card,
.offer-card,
.proof-card,
.release-button {
  border-radius: 16px;
}

.phone-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.phone-top strong {
  color: var(--primary);
}

.wallet-card,
.proof-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px;
  border: 1px solid rgba(185, 203, 189, 0.12);
  background: rgba(255, 255, 255, 0.055);
  transition: border-color 220ms ease, background 220ms ease;
}

.phone-shell:hover .wallet-card,
.phone-shell:hover .proof-card {
  border-color: rgba(0, 239, 157, 0.22);
  background: rgba(255, 255, 255, 0.075);
}

.wallet-card span,
.proof-card span,
.offer-head span,
.market-row span,
.ops-panel span,
.launch-list span {
  color: var(--hint);
  font-size: 12px;
  font-weight: 800;
}

.wallet-card strong,
.proof-card strong {
  display: block;
  margin-top: 4px;
  color: var(--text);
}

.wallet-card svg,
.proof-card svg {
  color: var(--primary);
}

.offer-card {
  margin: 18px 0;
  padding: 18px;
  background: #eaf0ff;
  color: #0d1117;
}

.offer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.offer-head strong {
  font-family: "Space Grotesk", Manrope, system-ui, sans-serif;
  font-size: 32px;
  line-height: 1;
  text-align: right;
}

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

.market-row span {
  border-radius: 999px;
  padding: 8px;
  background: rgba(13, 17, 23, 0.08);
  color: #36424a;
  text-align: center;
}

.trade-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 24px;
}

.trade-progress span {
  height: 7px;
  border-radius: 999px;
  background: rgba(13, 17, 23, 0.18);
}

.trade-progress .active {
  background: var(--primary-dark);
  animation: progress-glow 1800ms ease-in-out infinite;
}

.release-button {
  width: 100%;
  min-height: 52px;
  margin-top: 34px;
  border: 0;
  background: var(--primary);
  color: #07120f;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.release-button:hover {
  box-shadow: 0 12px 28px rgba(0, 239, 157, 0.2);
  transform: translateY(-1px);
}

.ops-panel {
  position: absolute;
  right: 0;
  bottom: 26px;
  z-index: 2;
  display: grid;
  gap: 1px;
  width: min(280px, 58%);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: rgba(18, 24, 38, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  animation: panel-slide-in 760ms 300ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.ops-panel div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.ops-panel strong {
  color: var(--primary);
  font-size: 12px;
  text-align: right;
}

.ticker {
  width: calc(100% - 36px);
  max-width: var(--max);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0 auto;
  padding-bottom: clamp(56px, 8vw, 92px);
}

.ticker span {
  gap: 10px;
  min-height: 58px;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  transition: border-color 220ms ease, background 220ms ease, color 220ms ease,
    transform 220ms ease;
}

.ticker span:hover {
  border-color: rgba(0, 239, 157, 0.34);
  background: rgba(0, 239, 157, 0.07);
  color: var(--text);
  transform: translateY(-2px);
}

.ticker svg {
  color: var(--primary);
}

.flow-section,
.role-section,
.trust-section,
.download-section,
.launch-section,
.access-section {
  padding: clamp(70px, 10vw, 124px) 0;
  border-top: 1px solid var(--line-soft);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.72fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: 34px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.flow-grid,
.role-grid,
.trust-grid {
  display: grid;
  gap: 12px;
}

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

.flow-grid article,
.role-grid article,
.trust-grid article,
.download-card,
.access-form {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease,
    box-shadow 220ms ease;
}

.flow-grid article:hover,
.role-grid article:hover,
.trust-grid article:hover {
  border-color: rgba(0, 239, 157, 0.28);
  background: rgba(255, 255, 255, 0.058);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
  transform: translateY(-3px);
}

.flow-grid article {
  min-height: 232px;
  padding: 24px;
}

.flow-grid span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
}

.flow-grid p,
.role-grid p,
.trust-grid span,
.download-copy p,
.form-note {
  color: var(--muted);
  line-height: 1.6;
}

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

.role-grid article {
  padding: 24px;
}

.role-grid svg {
  width: 28px;
  height: 28px;
  margin-bottom: 22px;
  color: var(--primary);
}

.role-grid a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--primary);
  font-weight: 900;
  transition: color 180ms ease, transform 180ms ease;
}

.role-grid a:hover {
  color: var(--cyan);
  transform: translateX(2px);
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: start;
}

.trust-copy {
  position: sticky;
  top: 104px;
}

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

.trust-grid article {
  min-height: 210px;
  padding: 24px;
}

.trust-grid svg {
  width: 28px;
  height: 28px;
  margin-bottom: 24px;
  color: var(--cyan);
}

.trust-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.download-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(135deg, rgba(0, 239, 157, 0.12), rgba(0, 220, 253, 0.05)),
    rgba(255, 255, 255, 0.04);
}

.download-actions {
  display: grid;
  gap: 12px;
  width: 220px;
}

.apk-meta {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.launch-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 84px);
}

.launch-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: var(--line-soft);
}

.launch-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  background: var(--bg-elevated);
}

.launch-list strong {
  text-align: right;
}

.access-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.78fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.access-section .section-heading {
  display: block;
  margin-bottom: 0;
}

.access-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: var(--bg-elevated);
}

.access-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 13px;
  background: var(--surface-high);
  color: var(--text);
  transition: border-color 180ms ease, background 180ms ease, outline-color 180ms ease;
}

input:focus,
select:focus {
  border-color: var(--primary);
  outline: 3px solid rgba(0, 239, 157, 0.14);
}

.access-form .button {
  width: 100%;
  margin-top: 2px;
}

.form-note {
  margin: 0;
  color: var(--hint);
  font-size: 13px;
}

.form-note a,
.site-footer a,
.legal-content a {
  color: var(--primary);
  font-weight: 800;
}

.legal-page {
  background:
    radial-gradient(circle at 18% 0%, rgba(0, 239, 157, 0.09), transparent 28rem),
    linear-gradient(180deg, #0d1117 0%, var(--bg) 48%, #0d1117 100%);
}

.legal-hero {
  padding-top: 76px;
  padding-bottom: 38px;
}

.legal-hero h1 {
  max-width: 820px;
  margin: 10px 0 18px;
  font-size: clamp(40px, 7vw, 82px);
}

.legal-hero > p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.legal-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.legal-content {
  display: grid;
  gap: 16px;
  padding-top: 24px;
  padding-bottom: 78px;
}

.legal-content article {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 32px);
  background: rgba(18, 24, 38, 0.82);
}

.legal-content h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 3vw, 36px);
}

.legal-content p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.legal-content p + p {
  margin-top: 14px;
}

.site-footer {
  width: calc(100% - 36px);
  max-width: var(--max);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 30px 0;
  border-top: 1px solid var(--line-soft);
  color: var(--hint);
  font-size: 14px;
}

:focus-visible {
  outline: 3px solid rgba(0, 239, 157, 0.36);
  outline-offset: 3px;
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-visual-in {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes panel-slide-in {
  from {
    opacity: 0;
    transform: translate(18px, 14px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes phone-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes status-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 6px rgba(0, 239, 157, 0.12);
  }
  50% {
    box-shadow: 0 0 0 9px rgba(0, 239, 157, 0.04);
  }
}

@keyframes progress-glow {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(3, 174, 117, 0);
  }
  50% {
    box-shadow: 0 0 16px rgba(3, 174, 117, 0.45);
  }
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero,
  .section-heading,
  .trust-section,
  .launch-section,
  .access-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

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

  .phone-shell {
    width: min(100%, 316px);
    min-height: 486px;
  }

  .ticker,
  .flow-grid,
  .role-grid,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-copy {
    position: static;
  }

  .download-card {
    grid-template-columns: 1fr;
  }

  .download-actions {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  body {
    background:
      radial-gradient(circle at 50% 0%, rgba(0, 239, 157, 0.12), transparent 22rem),
      linear-gradient(180deg, #0d1117 0%, var(--bg) 42%, #0d1117 100%);
  }

  .site-header {
    min-height: 66px;
    padding-inline: 14px;
    gap: 12px;
  }

  .brand {
    min-width: 0;
    gap: 9px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .brand span {
    font-size: 14px;
  }

  .nav-action {
    display: none;
  }

  .section-shell,
  .ticker,
  .site-footer {
    width: 100%;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero {
    gap: 26px;
    padding-top: 34px;
    overflow: clip;
  }

  .hero-copy,
  .hero-actions,
  .proof-strip {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy {
    padding-right: 18px;
  }

  h1 {
    font-size: clamp(32px, 9.2vw, 38px);
    line-height: 1.02;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  h2 {
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.02;
  }

  .hero-text,
  .section-heading p,
  .trust-copy p,
  .download-copy p {
    font-size: 16px;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .hero-text {
    max-width: 32ch;
  }

  .launch-badge {
    max-width: 100%;
  }

  .hero-actions,
  .download-actions {
    align-items: stretch;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .download-actions .button {
    width: 100%;
    max-width: 324px;
  }

  .ticker,
  .flow-grid,
  .role-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: flex;
    width: 100%;
    max-width: 324px;
    min-height: auto;
    flex-direction: column;
    gap: 14px;
    margin-right: auto;
    margin-left: 0;
    overflow: visible;
  }

  .phone-shell {
    width: min(100%, 292px);
    min-height: 468px;
    border-width: 8px;
    border-radius: 30px;
    padding: 14px;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-visual::before {
    width: 100%;
    height: 72%;
    max-height: 420px;
    transform: rotate(-1deg);
  }

  .offer-card {
    margin: 14px 0;
    padding: 15px;
  }

  .offer-head {
    gap: 10px;
  }

  .offer-head strong {
    font-size: 28px;
  }

  .market-row {
    gap: 6px;
    margin-top: 16px;
  }

  .market-row span {
    padding: 7px 6px;
  }

  .release-button {
    min-height: 48px;
    margin-top: 24px;
  }

  .ops-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 292px);
    margin-right: auto;
    margin-left: auto;
    animation: none;
  }

  .launch-list div,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .launch-list strong {
    text-align: left;
  }

  .flow-section,
  .role-section,
  .trust-section,
  .download-section,
  .launch-section,
  .access-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .flow-grid article,
  .role-grid article,
  .trust-grid article,
  .download-card,
  .access-form {
    padding: 20px;
  }
}

@media (max-width: 380px) {
  .proof-strip span,
  .apk-meta span {
    width: 100%;
    text-align: center;
  }

  .phone-shell,
  .ops-panel {
    width: min(100%, 272px);
  }

  .wallet-card,
  .proof-card {
    gap: 10px;
    padding: 12px;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
