:root {
  --bg: #070715;
  --bg-elevated: #0f1021;
  --bg-soft: #12142a;
  --bg-panel: rgba(16, 18, 39, 0.82);
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --surface-muted: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.24);
  --ink: #f5f7ff;
  --ink-soft: #d4daf8;
  --muted: #9ca3c9;
  --brand-a: #8b5cf6;
  --brand-b: #4f46e5;
  --brand-c: #7c3aed;
  --brand-d: #c084fc;
  --success: #7dd3fc;
  --warm: #f9a8d4;
  --shadow-lg: 0 32px 90px rgba(1, 2, 10, 0.52);
  --shadow-md: 0 24px 60px rgba(1, 2, 10, 0.36);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --shell: min(1160px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: Manrope, system-ui, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(139, 92, 246, 0.22), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(79, 70, 229, 0.24), transparent 24%),
    linear-gradient(180deg, #090914 0%, #070715 35%, #090a1a 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.035), transparent 35%),
    radial-gradient(circle at 18% 18%, rgba(192, 132, 252, 0.12), transparent 18%),
    radial-gradient(circle at 84% 72%, rgba(79, 70, 229, 0.1), transparent 20%);
  opacity: 0.95;
  z-index: -1;
}

img {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-body,
.inner-body,
.legal-shell {
  overflow-x: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(7, 7, 21, 0.84);
  backdrop-filter: blur(16px);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 40px rgba(2, 4, 14, 0.28);
}

.header-shell {
  width: var(--shell);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand img {
  width: 2.25rem;
  height: 2.25rem;
  filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.35));
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.brand-name {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 1.12rem;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.76rem;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.15rem;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.96rem;
}

.desktop-nav a {
  opacity: 0.82;
  transition: opacity 180ms ease, color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  opacity: 1;
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn,
.menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.82rem 1.2rem;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--brand-d), var(--brand-a) 42%, var(--brand-b));
  color: #fff;
  box-shadow: 0 16px 36px rgba(91, 54, 221, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 20px 42px rgba(91, 54, 221, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink-soft);
}

.btn-full {
  width: 100%;
}

.header-cta {
  display: none;
}

.menu-button {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line);
  color: var(--ink);
  padding-inline: 1rem;
}

.mobile-nav {
  display: grid;
  position: fixed;
  left: 50%;
  top: 5.2rem;
  width: min(420px, calc(100% - 24px));
  max-height: calc(100vh - 6.4rem);
  overflow-y: auto;
  margin: 0;
  padding: 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(11, 13, 28, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-10px);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 49;
}

.mobile-nav.open {
  gap: 0.75rem;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mobile-nav a {
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  color: var(--ink-soft);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.page-shell {
  padding-bottom: 4.5rem;
}

.section {
  padding: 5rem 0;
}

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

.section-kicker,
.eyebrow,
.mini-eyebrow {
  margin: 0;
  color: #d9c9ff;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 800;
}

.mini-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
}

.section-heading,
.display-title,
.page-title,
.hero-title {
  margin: 0.7rem 0 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1;
  letter-spacing: -0.045em;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.display-title,
.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  max-width: 10.5ch;
}

.page-title {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  max-width: 12ch;
}

.section-lead,
.page-lead,
.hero-copy,
.card-copy,
.muted-copy {
  color: var(--ink-soft);
}

.section-lead,
.page-lead,
.hero-copy {
  font-size: 1.05rem;
  max-width: 64ch;
}

.hero-section {
  position: relative;
  padding: 3rem 0 5rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  margin: 1.2rem 0 0;
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.hero-proof {
  margin-top: 1.6rem;
  display: grid;
  gap: 0.85rem;
}

.hero-proof-card,
.stat-card,
.glass-card,
.info-card,
.list-card,
.metric-card,
.feature-card,
.trust-card,
.faq-item,
.support-card,
.help-card,
.panel-card,
.timeline-card,
.value-card,
.step-card,
.quote-card,
.download-card,
.contact-panel,
.network-node,
.flow-card,
.role-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.hero-proof-card,
.metric-card,
.info-card,
.feature-card,
.help-card,
.support-card,
.value-card,
.step-card,
.flow-card,
.role-card {
  padding: 1.15rem;
}

.hero-proof-card strong,
.stat-number,
.metric-card strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.hero-proof-card span,
.metric-card span,
.support-copy,
.card-copy,
.tiny-copy {
  color: var(--muted);
}

.hero-visual {
  position: relative;
  min-height: 25rem;
  width: min(100%, 31.5rem);
  justify-self: end;
  align-self: start;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 4% 5% 0;
  border-radius: 38px;
  background:
    radial-gradient(circle at top, rgba(139, 92, 246, 0.18), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  filter: blur(0.5px);
}

.visual-stage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "phone phone"
    "top right"
    "beam beam";
  gap: 1rem 1rem;
  align-items: start;
  align-content: start;
  min-height: inherit;
  padding: 0.6rem 0.9rem 0;
}

.phone-frame {
  position: relative;
  grid-area: phone;
  justify-self: center;
  align-self: start;
  width: min(14rem, 100%);
  transform: perspective(1800px) translateY(-0.15rem) rotateY(-17deg) rotateZ(6deg);
  transform-origin: 28% 52%;
  border-radius: 40px;
  padding: 0.8rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 30px 80px rgba(4, 5, 15, 0.6),
    0 0 80px rgba(124, 58, 237, 0.18);
  z-index: 4;
}

.phone-frame img {
  display: block;
  width: 100%;
  border-radius: 32px;
  border: 8px solid #0a0d1c;
  background: #0a0d1c;
}

.floating-card {
  position: relative;
  width: 100%;
  padding: 1rem 1.05rem;
  border-radius: 22px;
  background: rgba(11, 12, 28, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.floating-card h3,
.feature-card h3,
.value-card h3,
.help-card h3,
.support-card h3,
.step-card h3,
.flow-card h3,
.role-card h3,
.download-card h3,
.trust-card h3,
.info-card h3,
.list-card h3 {
  margin: 0 0 0.45rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.06rem;
  letter-spacing: -0.02em;
}

.floating-card p,
.feature-card p,
.value-card p,
.help-card p,
.support-card p,
.step-card p,
.flow-card p,
.role-card p,
.download-card p,
.trust-card p,
.info-card p,
.list-card p,
.metric-card p,
.hero-proof-card p {
  margin: 0;
  color: var(--muted);
}

.floating-card.top-left {
  grid-area: top;
  align-self: start;
  justify-self: stretch;
  max-width: none;
  z-index: 3;
}

.floating-card.bottom-right {
  grid-area: right;
  align-self: start;
  justify-self: stretch;
  max-width: none;
  z-index: 5;
}

.floating-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.floating-pill,
.tag,
.inline-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.45rem 0.72rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 600;
}

.network-beam {
  position: relative;
  grid-area: beam;
  width: min(100%, 26rem);
  height: 3rem;
  justify-self: center;
  margin-top: -0.1rem;
  display: grid;
  align-items: center;
  z-index: 2;
}

.network-beam::before {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  height: 2px;
  background: linear-gradient(90deg, rgba(125, 211, 252, 0.18), rgba(139, 92, 246, 0.9), rgba(79, 70, 229, 0.18));
  box-shadow: 0 0 28px rgba(139, 92, 246, 0.5);
}

.beam-node {
  position: absolute;
  top: 50%;
  width: 7rem;
  transform: translateY(-50%);
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.beam-node::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  margin: 0 auto 0.45rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand-d), var(--brand-b));
  box-shadow: 0 0 0 8px rgba(139, 92, 246, 0.12), 0 0 22px rgba(139, 92, 246, 0.45);
}

.beam-node.customer {
  left: 0;
}

.beam-node.sills {
  left: 50%;
  transform: translate(-50%, -50%);
}

.beam-node.merchant {
  right: 0;
}

.partner-strip {
  padding: 1rem 0 0;
}

.partner-bar {
  width: var(--shell);
  margin: 0 auto;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  gap: 0.85rem;
  align-items: center;
}

.partner-bar p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 700;
}

.partner-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.partner-list span {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.88rem;
}

.section-grid,
.two-col,
.split-grid,
.download-grid,
.support-grid,
.role-grid,
.feature-grid,
.value-grid,
.step-grid,
.benefit-grid,
.help-grid,
.metric-grid,
.quote-grid,
.timeline-grid,
.trust-grid,
.flow-grid {
  display: grid;
  gap: 1rem;
}

.section-header {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.8rem;
}

.problem-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
}

.problem-card {
  padding: 1.3rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.problem-card h3 {
  margin: 0 0 0.45rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.18rem;
}

.problem-card p {
  margin: 0;
  color: var(--muted);
}

.glass-card {
  padding: 1.5rem;
  backdrop-filter: blur(18px);
}

.trust-card {
  overflow: hidden;
}

.glass-card h3,
.panel-card h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
}

.glass-card p,
.panel-card p {
  margin: 0.7rem 0 0;
  color: var(--ink-soft);
}

.point-list,
.feature-list,
.step-list,
.trust-list,
.legal-main ul,
.contact-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  list-style: none;
  margin: 1.1rem 0 0;
}

.point-list li,
.feature-list li,
.step-list li,
.trust-list li,
.contact-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--ink-soft);
}

.point-list li::before,
.feature-list li::before,
.step-list li::before,
.trust-list li::before,
.contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand-d), var(--brand-b));
  box-shadow: 0 0 18px rgba(139, 92, 246, 0.35);
}

.audience-switch {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 0.4rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 1.35rem;
}

.switch-pill {
  border: 0;
  padding: 0.78rem 1rem;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
}

.switch-pill.is-active {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.24), rgba(79, 70, 229, 0.32));
  color: #fff;
}

.audience-panel {
  display: none;
}

.audience-panel.is-active {
  display: block;
}

.step-card span,
.flow-card span,
.role-card span,
.metric-label,
.small-label {
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: #d6c4ff;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
}

.split-panel {
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.04);
}

.split-panel h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.42rem;
}

.split-panel p {
  margin: 0.7rem 0 0;
  color: var(--ink-soft);
}

.stats-row {
  display: grid;
  gap: 1rem;
  margin-top: 1.3rem;
}

.stat-card {
  padding: 1.2rem;
}

.stat-number {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #fff;
}

.stat-card p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.network-card {
  padding: 1.5rem;
}

.network-map {
  position: relative;
  min-height: 22rem;
  margin-top: 1.3rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at top, rgba(139, 92, 246, 0.2), transparent 38%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.network-line {
  position: absolute;
  inset: 50% 12% auto;
  height: 2px;
  background: linear-gradient(90deg, rgba(125, 211, 252, 0.2), rgba(139, 92, 246, 0.92), rgba(249, 168, 212, 0.24));
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.45);
}

.network-node {
  position: absolute;
  width: min(14rem, 42vw);
  padding: 1rem;
}

.network-node h3 {
  margin: 0 0 0.35rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.network-node p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.network-node.customer {
  top: 1.3rem;
  left: 1.2rem;
}

.network-node.merchant-a {
  top: 1.6rem;
  right: 1.2rem;
}

.network-node.admin {
  bottom: 1.3rem;
  left: 1.8rem;
}

.network-node.redemption {
  bottom: 1rem;
  right: 1.5rem;
}

.network-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.05) 55%),
    linear-gradient(180deg, rgba(139, 92, 246, 0.9), rgba(79, 70, 229, 0.7));
  box-shadow:
    0 0 0 14px rgba(139, 92, 246, 0.12),
    0 0 36px rgba(139, 92, 246, 0.35);
}

.dashboard-frame,
.image-frame {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-lg);
}

.dashboard-frame img,
.image-frame img {
  display: block;
  width: 100%;
}

.download-card {
  padding: 1.4rem;
}

.download-card .button-stack,
.support-card .button-stack,
.contact-panel .button-stack {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.faq-grid {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.2rem;
  font-weight: 700;
  color: #fff;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: #d5c8ff;
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.2rem 1.2rem;
  color: var(--ink-soft);
}

.download-band {
  padding: 5rem 0;
}

.download-panel {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(192, 132, 252, 0.22), transparent 30%),
    radial-gradient(circle at 82% 22%, rgba(79, 70, 229, 0.22), transparent 24%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
}

.download-panel h2 {
  margin: 0.7rem 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.04em;
}

.download-panel p {
  margin: 0.9rem 0 0;
  max-width: 60ch;
  color: var(--ink-soft);
}

.footer {
  padding: 2.5rem 0 2.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 5, 14, 0.72);
}

.footer-shell {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.footer-brand p,
.footer-note {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.footer-nav {
  display: grid;
  gap: 1rem;
}

.footer-column h3 {
  margin: 0 0 0.7rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.footer-column a {
  display: block;
  margin: 0.45rem 0;
  color: var(--ink-soft);
}

.footer-column a:hover {
  color: #fff;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  align-items: center;
  color: var(--muted);
}

.page-hero {
  padding: 3rem 0 2.5rem;
}

.page-hero-grid {
  display: grid;
  gap: 1.25rem;
  align-items: center;
}

.page-meta {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.page-media-card,
.info-stack {
  display: grid;
  gap: 1rem;
}

.page-device-shot {
  justify-items: center;
  align-content: center;
}

.device-shot-card {
  position: relative;
  width: min(19rem, 100%);
  padding: 0.8rem;
  border-radius: 40px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 30px 80px rgba(4, 5, 15, 0.58),
    0 0 70px rgba(124, 58, 237, 0.18);
}

.device-shot-card::before {
  content: "";
  position: absolute;
  top: 0.75rem;
  left: 50%;
  width: 35%;
  height: 0.68rem;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(10, 12, 25, 0.92);
  z-index: 2;
}

.device-shot-card img {
  display: block;
  width: 100%;
  border-radius: 32px;
  border: 8px solid #0a0d1c;
  background: #0a0d1c;
}

.device-shot-left {
  transform: perspective(1800px) rotateY(-17deg) rotateZ(5deg) translateY(4px);
  transform-origin: 76% 50%;
}

.device-shot-right {
  transform: perspective(1800px) rotateY(17deg) rotateZ(-5deg) translateY(4px);
  transform-origin: 24% 50%;
}

.hero-access {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.legal-main {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 3.5rem 0 5rem;
}

.legal-main h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: -0.04em;
}

.legal-main .meta {
  margin: 0.7rem 0 1.5rem;
  color: var(--muted);
}

.legal-main article {
  padding: 1.6rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.legal-main h2 {
  margin: 1.45rem 0 0.55rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
}

.legal-main h2:first-child {
  margin-top: 0;
}

.legal-main p,
.legal-main li {
  color: var(--ink-soft);
}

.help-card small,
.support-card small,
.download-card small,
.info-card small {
  display: block;
  margin-top: 0.8rem;
  color: var(--muted);
}

.contact-panel {
  padding: 1.45rem;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.form-row {
  display: grid;
  gap: 0.9rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field label {
  font-weight: 700;
  color: var(--ink-soft);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  color: #fff;
  background: rgba(7, 7, 21, 0.8);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-status {
  color: #d6c4ff;
  font-size: 0.92rem;
  min-height: 1.4em;
}

.reveal {
  opacity: 1;
  transform: translateY(0) scale(1);
  will-change: opacity, transform;
  transition:
    opacity 820ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

body.js-animate .reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
}

body.js-animate .reveal.visible,
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.audience-panel.is-active {
  animation: fade-slide-in 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes fade-slide-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  body.js-animate .reveal,
  .reveal,
  .btn,
  .menu-button,
  .desktop-nav a {
    transition: none;
    transform: none;
    opacity: 1;
    animation: none;
  }

  .phone-frame {
    transform: none;
  }

  .device-shot-left,
  .device-shot-right {
    transform: none;
  }
}

@media (max-width: 767px) {
  .desktop-nav,
  .header-cta {
    display: none !important;
  }

  .hero-visual {
    min-height: 26rem;
    margin-top: 0.35rem;
  }

  .visual-stage {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "top"
      "phone"
      "bottom";
    justify-items: center;
    gap: 0.9rem;
    width: min(100%, 18.8rem);
    margin: 0 auto;
    padding: 0.7rem 0.1rem 0.35rem;
  }

  .phone-frame {
    width: min(11.8rem, 56vw);
    justify-self: center;
    transform: perspective(1400px) rotateY(-12deg) rotateZ(4deg);
  }

  .floating-card.top-left,
  .floating-card.bottom-right {
    width: 100%;
    padding: 0.85rem;
    max-width: 15.8rem;
  }

  .floating-card.top-left {
    align-self: stretch;
  }

  .floating-card.bottom-right {
    align-self: stretch;
    grid-area: bottom;
  }

  .network-beam {
    display: none;
  }

  .beam-node {
    width: 5rem;
    font-size: 0.72rem;
  }

  .network-map {
    min-height: 29rem;
  }

  .network-node.customer,
  .network-node.merchant-a {
    top: 1.2rem;
  }

  .network-node.customer {
    left: 0.9rem;
  }

  .network-node.merchant-a {
    right: 0.9rem;
  }

  .network-node.admin,
  .network-node.redemption {
    bottom: 1rem;
  }

  .network-node.admin {
    left: 0.9rem;
  }

  .network-node.redemption {
    right: 0.9rem;
  }

  .device-shot-card {
    width: min(15rem, 68vw);
  }

  .device-shot-left,
  .device-shot-right {
    transform: perspective(1200px) rotateY(-10deg) rotateZ(4deg);
    transform-origin: 64% 50%;
  }
}

@media (min-width: 768px) {
  .header-cta {
    display: inline-flex;
  }

  .hero-proof,
  .problem-grid,
  .support-grid,
  .download-grid,
  .quote-grid,
  .help-grid,
  .metric-grid,
  .value-grid,
  .step-grid,
  .role-grid,
  .flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .desktop-nav {
    display: flex;
  }

  .menu-button {
    display: none;
  }

  .hero-grid,
  .page-hero-grid,
  .two-col,
  .split-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    align-items: start;
  }

  .hero-visual {
    margin-left: -0.7rem;
    align-self: start;
    margin-top: 1.25rem;
  }

  .page-device-shot {
    justify-self: end;
  }

  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .problem-grid,
  .feature-grid,
  .benefit-grid,
  .support-grid,
  .download-grid,
  .help-grid,
  .value-grid,
  .step-grid,
  .metric-grid,
  .role-grid,
  .flow-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stats-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-shell {
    grid-template-columns: 1.2fr 1.8fr;
    align-items: start;
  }
}
