:root {
  color-scheme: dark;
  --bg: #04060a;
  --bg-2: #07100c;
  --surface: rgba(9, 13, 20, 0.72);
  --surface-strong: rgba(13, 20, 29, 0.88);
  --surface-soft: rgba(255, 255, 255, 0.065);
  --border: rgba(255, 255, 255, 0.16);
  --border-strong: rgba(255, 255, 255, 0.28);
  --text: rgba(249, 255, 252, 0.96);
  --muted: rgba(220, 232, 228, 0.72);
  --soft: rgba(220, 232, 228, 0.54);
  --cyan: #6fffea;
  --blue: #4fa7ff;
  --pink: #ff4fd8;
  --lime: #d7ff4f;
  --gold: #ffb84f;
  --green: #20d477;
  --danger: #ff5a79;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.48);
  --shadow-soft: 0 16px 38px rgba(0, 0, 0, 0.32);
  --container: 1160px;
  --radius: 8px;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Space Grotesk", Inter, ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background:
    linear-gradient(112deg, transparent 0 14%, rgba(111, 255, 234, 0.08) 14.2% 14.7%, transparent 15% 100%),
    linear-gradient(68deg, transparent 0 20%, rgba(255, 79, 216, 0.07) 20.2% 20.6%, transparent 21% 100%),
    linear-gradient(180deg, #05070d 0%, #060b0f 42%, #04110c 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(233, 255, 247, 0.12) 8.1% 8.28%, transparent 8.45% 16%),
    linear-gradient(90deg, transparent 0 91%, rgba(233, 255, 247, 0.1) 91.1% 91.25%, transparent 91.45% 100%),
    repeating-linear-gradient(0deg, transparent 0 76px, rgba(255, 255, 255, 0.045) 77px 78px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 34%);
  opacity: 0.85;
}

body::after {
  content: "";
  position: fixed;
  inset: auto 0 0;
  height: 32vh;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(90deg, transparent 0 9%, rgba(215, 255, 79, 0.14) 9.2% 9.5%, transparent 9.8%),
    linear-gradient(90deg, transparent 0 49.8%, rgba(255, 255, 255, 0.14) 50% 50.2%, transparent 50.4%),
    linear-gradient(180deg, transparent, rgba(14, 101, 55, 0.2));
  mask-image: linear-gradient(to top, #000, transparent);
}

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

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

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

::selection {
  background: rgba(111, 255, 234, 0.26);
  color: #fff;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-150%);
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #07100c;
  padding: 0.7rem 1rem;
  color: var(--text);
}

.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(4, 6, 10, 0.72);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 0 22px rgba(111, 255, 234, 0.16);
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0;
}

.brand-copy span {
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.45rem 0.78rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.06);
}

.site-nav .nav-pill {
  color: #06100d;
  border-color: transparent;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
}

.site-nav .nav-pill:hover,
.site-nav .nav-pill:focus-visible {
  color: #06100d;
  background: linear-gradient(135deg, #a7fff4, #ecff8f);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.nav-toggle span {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  margin-inline: auto;
  border-radius: 99px;
  background: currentColor;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  padding: 5rem 0 4rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(102deg, transparent 0 14%, rgba(111, 255, 234, 0.12) 14.2% 14.5%, transparent 14.8% 100%),
    linear-gradient(74deg, transparent 0 72%, rgba(255, 184, 79, 0.1) 72.1% 72.4%, transparent 72.7% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 26%);
  opacity: 0.95;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.86fr);
  align-items: center;
  gap: 3.5rem;
}

.eyebrow,
.kicker {
  margin: 0;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-size: 5.7rem;
  line-height: 0.88;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero h1 .headline-action {
  max-width: 760px;
  margin-top: 0.4rem;
  font-size: 3.05rem;
  line-height: 1.02;
  color: rgba(249, 255, 252, 0.88);
}

.lead {
  max-width: 640px;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 2rem;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 0.55rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  color: var(--text);
}

.store-badge:disabled {
  cursor: default;
  opacity: 1;
}

.store-badge__icon {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 7px;
  color: #06100d;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  font-weight: 950;
}

.store-badge__text {
  display: grid;
  gap: 0.05rem;
  line-height: 1.08;
}

.store-badge small {
  color: var(--soft);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-badge strong {
  font-size: 1.02rem;
}

.ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.65rem 1.1rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 800;
}

.ghost-link:hover,
.ghost-link:focus-visible {
  color: var(--text);
  border-color: var(--border-strong);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  max-width: 650px;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-metrics li {
  min-height: 96px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(16px);
}

.hero-metrics strong {
  display: block;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: 0;
}

.hero-metrics span {
  display: block;
  margin-top: 0.25rem;
  color: var(--soft);
  font-size: 0.82rem;
  line-height: 1.35;
}

.hero-visual {
  perspective: 1200px;
}

.sticker-stage {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --shine-x: 50%;
  --shine-y: 35%;
  position: relative;
  min-height: 580px;
  display: grid;
  place-items: center;
}

.sticker-card {
  position: relative;
  width: min(360px, 82vw);
  aspect-ratio: 0.72;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  padding: 1rem;
  overflow: hidden;
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) rotate(-4deg);
  transform-style: preserve-3d;
  transition: transform 220ms ease;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.58),
    0 0 52px rgba(111, 255, 234, 0.2);
  background:
    linear-gradient(135deg, rgba(111, 255, 234, 0.92), rgba(79, 167, 255, 0.88) 26%, rgba(255, 79, 216, 0.86) 53%, rgba(215, 255, 79, 0.88) 75%, rgba(255, 184, 79, 0.9)),
    #0a0d12;
}

.sticker-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--shine-x) var(--shine-y), rgba(255, 255, 255, 0.92), transparent 0 18%, rgba(255, 255, 255, 0.16) 22%, transparent 42%),
    repeating-linear-gradient(112deg, rgba(255, 255, 255, 0.24) 0 1px, transparent 1px 10px);
  mix-blend-mode: screen;
  opacity: 0.64;
  pointer-events: none;
}

.sticker-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 7px;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(255, 255, 255, 0.12) 48.2% 48.6%, transparent 49%),
    linear-gradient(0deg, transparent 0 68%, rgba(255, 255, 255, 0.1) 68.2% 68.6%, transparent 69%),
    rgba(4, 7, 12, 0.78);
}

.sticker-face {
  position: absolute;
  inset: 15px;
  z-index: 2;
  display: grid;
  grid-template-rows: auto 1fr auto;
  border-radius: 7px;
  padding: 1.25rem;
}

.sticker-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(249, 255, 252, 0.82);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.player-silhouette {
  align-self: center;
  justify-self: center;
  position: relative;
  width: 68%;
  aspect-ratio: 1;
  border: 3px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(255, 255, 255, 0.3) 48.2% 48.8%, transparent 49%),
    linear-gradient(0deg, transparent 0 48%, rgba(255, 255, 255, 0.3) 48.2% 48.8%, transparent 49%),
    rgba(111, 255, 234, 0.08);
  box-shadow: inset 0 0 40px rgba(111, 255, 234, 0.12);
}

.player-silhouette::before {
  content: "F";
  position: absolute;
  inset: 16%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fafffb;
  font-family: var(--font-display);
  font-size: 6.6rem;
  font-weight: 900;
  background: rgba(0, 0, 0, 0.22);
}

.sticker-bottom {
  display: grid;
  gap: 0.55rem;
}

.sticker-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0;
}

.scan-row {
  display: grid;
  grid-template-columns: 1fr 0.45fr;
  gap: 0.45rem;
}

.scan-row span {
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.26);
}

.scan-row span:first-child {
  background: linear-gradient(90deg, var(--cyan), var(--lime));
}

.sticker-card--back,
.sticker-card--side {
  position: absolute;
  inset: auto;
  z-index: -1;
  border-radius: var(--radius);
  opacity: 0.78;
  filter: saturate(1.12);
}

.sticker-card--back {
  width: 300px;
  aspect-ratio: 0.72;
  transform: translate(-106px, 30px) rotate(-16deg);
  background: linear-gradient(135deg, rgba(255, 79, 216, 0.88), rgba(79, 167, 255, 0.88), rgba(255, 184, 79, 0.86));
  box-shadow: var(--shadow);
}

.sticker-card--side {
  width: 270px;
  aspect-ratio: 0.72;
  transform: translate(118px, 62px) rotate(15deg);
  background: linear-gradient(135deg, rgba(215, 255, 79, 0.88), rgba(111, 255, 234, 0.86), rgba(255, 79, 216, 0.82));
  box-shadow: var(--shadow);
}

.scan-beam {
  position: absolute;
  z-index: 5;
  left: 14%;
  right: 15%;
  top: 44%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--cyan), #fff, var(--lime), transparent);
  box-shadow: 0 0 26px rgba(111, 255, 234, 0.8);
  animation: scan 3.6s ease-in-out infinite;
}

.floating-label {
  position: absolute;
  z-index: 8;
  max-width: 180px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.78rem 0.9rem;
  background: rgba(5, 8, 13, 0.78);
  backdrop-filter: blur(14px);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
  box-shadow: var(--shadow-soft);
}

.floating-label strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.floating-label--left {
  left: 0;
  top: 18%;
}

.floating-label--right {
  right: 0;
  bottom: 17%;
}

.section {
  padding: 5.5rem 0;
}

.section--tight {
  padding-top: 3rem;
}

.section-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section h2,
.legal-hero h1 {
  margin: 0.65rem 0 0;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.muted {
  color: var(--muted);
  line-height: 1.72;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.feature-card {
  min-height: 180px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035)),
    rgba(5, 8, 13, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(111, 255, 234, 0.42);
  background:
    linear-gradient(145deg, rgba(111, 255, 234, 0.12), rgba(255, 79, 216, 0.055)),
    rgba(5, 8, 13, 0.78);
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(111, 255, 234, 0.18), rgba(255, 79, 216, 0.14));
  color: var(--cyan);
  font-weight: 950;
}

.feature-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0;
}

.feature-card p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.comparison {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(90deg, rgba(111, 255, 234, 0.08), transparent 40%, rgba(215, 255, 79, 0.08)),
    rgba(255, 255, 255, 0.025);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.plan-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  background: rgba(5, 8, 13, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.plan-card--premium {
  border-color: rgba(215, 255, 79, 0.42);
  background:
    linear-gradient(145deg, rgba(215, 255, 79, 0.1), rgba(255, 79, 216, 0.07)),
    rgba(5, 8, 13, 0.8);
}

.plan-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.plan-head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0;
}

.price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.2rem;
  color: var(--lime);
  font-weight: 950;
  white-space: nowrap;
}

.price strong {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0;
}

.clean-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--muted);
  line-height: 1.5;
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  box-shadow: 0 0 14px rgba(111, 255, 234, 0.55);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.62fr);
  gap: 1rem;
  align-items: stretch;
}

.story-panel,
.support-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  background: rgba(5, 8, 13, 0.7);
  backdrop-filter: blur(18px);
}

.story-panel h3,
.support-panel h2,
.faq-item summary {
  font-family: var(--font-display);
  letter-spacing: 0;
}

.flow-list {
  display: grid;
  gap: 0.8rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.flow-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 0.85rem;
  align-items: start;
}

.flow-list strong {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: #06100d;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  font-family: var(--font-display);
}

.flow-list span {
  color: var(--muted);
  line-height: 1.58;
}

.cta-band {
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(90deg, rgba(255, 79, 216, 0.08), transparent 38%, rgba(111, 255, 234, 0.1)),
    rgba(255, 255, 255, 0.02);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-inner h2 {
  margin: 0;
}

.cta-inner p {
  max-width: 620px;
  margin: 0.7rem 0 0;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  background: rgba(3, 5, 9, 0.82);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  display: grid;
  gap: 0.25rem;
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.footer-brand span {
  color: var(--soft);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.7rem;
}

.footer-links a {
  color: var(--muted);
  font-weight: 750;
  font-size: 0.92rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.legal-main {
  padding: 4rem 0 5rem;
}

.legal-hero {
  max-width: 860px;
  margin-bottom: 1.5rem;
}

.legal-shell {
  max-width: 900px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  background: rgba(247, 255, 252, 0.94);
  color: #101820;
  box-shadow: var(--shadow);
}

.legal-shell h2 {
  margin: 2rem 0 0.55rem;
  color: #08110d;
  font-size: 1.2rem;
  line-height: 1.35;
}

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

.legal-shell p,
.legal-shell li {
  color: #31403d;
  line-height: 1.7;
}

.legal-shell a {
  color: #005f55;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-shell ul {
  padding-left: 1.2rem;
}

.legal-meta {
  color: var(--muted);
  margin-top: 0.8rem;
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.contact-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  background:
    linear-gradient(145deg, rgba(111, 255, 234, 0.1), rgba(255, 79, 216, 0.055)),
    rgba(5, 8, 13, 0.74);
  box-shadow: var(--shadow-soft);
}

.contact-card h2,
.faq h2 {
  margin-top: 0;
}

.mail-link {
  display: inline-flex;
  margin-top: 0.4rem;
  color: var(--cyan);
  font-weight: 900;
}

.support-form {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field span {
  color: var(--soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.8rem 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  outline: none;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(111, 255, 234, 0.58);
  box-shadow: 0 0 0 3px rgba(111, 255, 234, 0.12);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0.75rem 1.1rem;
  color: #06100d;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  font-weight: 950;
  cursor: pointer;
}

.faq {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(5, 8, 13, 0.68);
  overflow: clip;
}

.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.1rem;
  font-size: 1.18rem;
  font-weight: 800;
}

.faq-item summary::marker {
  color: var(--cyan);
}

.faq-item p {
  margin: 0;
  padding: 0 1.1rem 1.05rem;
  color: var(--muted);
  line-height: 1.64;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@keyframes scan {
  0%,
  100% {
    transform: translateY(-138px);
    opacity: 0.45;
  }

  48%,
  58% {
    opacity: 1;
  }

  50% {
    transform: translateY(142px);
  }
}

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

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.65rem;
    background: rgba(5, 8, 13, 0.94);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: flex-start;
    border-radius: var(--radius);
  }

  .hero {
    min-height: auto;
    padding: 3rem 0 2rem;
  }

  .hero-grid,
  .story-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 4.1rem;
  }

  .hero h1 .headline-action {
    font-size: 2.35rem;
  }

  .sticker-stage {
    min-height: 500px;
  }

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

@media (max-width: 700px) {
  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  .brand-copy span {
    display: none;
  }

  .hero h1 {
    font-size: 3.1rem;
  }

  .hero h1 .headline-action {
    font-size: 1.78rem;
  }

  .lead {
    font-size: 1rem;
  }

  .hero-actions,
  .cta-inner,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .store-badge,
  .ghost-link,
  .button {
    width: 100%;
  }

  .hero-metrics,
  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics li {
    min-height: auto;
  }

  .sticker-stage {
    min-height: 430px;
  }

  .sticker-card {
    width: min(300px, 78vw);
  }

  .sticker-card--back {
    width: 240px;
    transform: translate(-70px, 32px) rotate(-14deg);
  }

  .sticker-card--side {
    width: 220px;
    transform: translate(78px, 58px) rotate(13deg);
  }

  .floating-label {
    display: none;
  }

  .section {
    padding: 4rem 0;
  }

  .section h2,
  .legal-hero h1 {
    font-size: 2.15rem;
  }

  .plan-head {
    display: grid;
  }

  .legal-main {
    padding: 2.5rem 0 4rem;
  }

  .legal-shell {
    padding: 1.2rem;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
