﻿:root {
  color-scheme: dark;
  --bg: #060a12;
  --bg-elevated: #0b1120;
  --surface: rgba(17, 24, 39, 0.78);
  --surface-soft: rgba(15, 23, 42, 0.68);
  --surface-strong: rgba(30, 41, 59, 0.9);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --subtle: #94a3b8;
  --line: rgba(148, 163, 184, 0.2);
  --line-strong: rgba(203, 213, 225, 0.34);
  --primary: #60a5fa;
  --primary-strong: #2563eb;
  --secondary: #5eead4;
  --secondary-strong: #14b8a6;
  --gold: #fbbf24;
  --danger: #f87171;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --soft-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --content: 1120px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 76% 8%, rgba(96, 165, 250, 0.18), transparent 34%),
    radial-gradient(circle at 12% 18%, rgba(94, 234, 212, 0.12), transparent 30%),
    linear-gradient(180deg, #0b1120 0%, #060a12 46%, #070b13 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(148, 163, 184, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(148, 163, 184, 0.04) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 74%);
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 4px;
}

::selection {
  background: rgba(96, 165, 250, 0.4);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(6, 10, 18, 0.82);
  backdrop-filter: blur(18px);
}

.nav {
  width: calc(100% - 32px);
  max-width: var(--content);
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
}

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

.nav-links {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px 14px;
  flex: 1;
}

.nav-links a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links > a {
  padding: 7px 0;
}

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

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.7);
}

.language-switcher a {
  min-width: 36px;
  padding: 7px 9px;
  color: var(--subtle);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

.language-switcher a[aria-current="page"] {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #06111f;
}

.hero {
  width: calc(100% - 32px);
  max-width: var(--content);
  margin: 0 auto;
  padding: 78px 0 66px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  align-items: center;
  gap: 64px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--secondary), var(--gold));
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 6vw, 4.05rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.68;
}

.hero-actions,
.doc-actions,
.cta-store-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-actions,
.doc-actions {
  margin-bottom: 26px;
}

.store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: transform 180ms ease, filter 180ms ease;
}

.store-link:hover,
.store-link:focus-visible {
  filter: drop-shadow(0 12px 24px rgba(96, 165, 250, 0.22));
  transform: translateY(-2px);
}

.play-badge {
  width: auto;
  height: 60px;
  max-width: 100%;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  color: #06111f;
  background: linear-gradient(135deg, #93c5fd, var(--primary));
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.25);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: linear-gradient(135deg, #bfdbfe, #7dd3fc);
  transform: translateY(-2px);
}

.button.secondary {
  color: var(--text);
  border-color: rgba(148, 163, 184, 0.28);
  background: rgba(15, 23, 42, 0.72);
  box-shadow: none;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: rgba(94, 234, 212, 0.52);
  background: rgba(30, 41, 59, 0.86);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.24);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-row li {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(15, 23, 42, 0.64);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  font-size: 13px;
  font-weight: 750;
}

.trust-row li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--secondary);
  box-shadow: 0 0 18px rgba(94, 234, 212, 0.72);
}

.hero-meta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.hero-meta-links a {
  color: var(--subtle);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.hero-meta-links a:hover,
.hero-meta-links a:focus-visible {
  color: var(--secondary);
}

.hero-media {
  min-width: 0;
  display: flex;
  justify-content: center;
}

.phone-frame {
  position: relative;
  width: min(100%, 390px);
  isolation: isolate;
  padding: 10px;
  border: 1px solid rgba(203, 213, 225, 0.28);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(248, 250, 252, 0.16), transparent 22%),
    linear-gradient(160deg, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.98));
  box-shadow:
    0 36px 92px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.phone-frame::before {
  content: "";
  position: absolute;
  inset: -28px;
  z-index: -1;
  border-radius: 44px;
  background:
    radial-gradient(circle at 50% 8%, rgba(94, 234, 212, 0.24), transparent 42%),
    radial-gradient(circle at 82% 82%, rgba(96, 165, 250, 0.18), transparent 48%);
  filter: blur(12px);
  opacity: 0.95;
}

.phone-frame img {
  width: 100%;
  height: auto;
  border-radius: 26px;
  background: #020617;
  object-fit: contain;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.6);
}

.phone-frame-small {
  width: min(100%, 270px);
  padding: 8px;
  border-radius: 28px;
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.phone-frame-small::before {
  inset: -18px;
  border-radius: 34px;
  opacity: 0.62;
}

.phone-frame-small img {
  border-radius: 21px;
}

.section {
  padding: 78px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.section.alt {
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.58), rgba(11, 17, 32, 0.38)),
    rgba(11, 17, 32, 0.42);
}

.section-inner {
  width: calc(100% - 32px);
  max-width: var(--content);
  margin: 0 auto;
}

.section-kicker {
  margin-bottom: 10px;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-title {
  max-width: 790px;
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 4vw, 2.45rem);
  line-height: 1.14;
  letter-spacing: 0;
}

.section-lead {
  max-width: 780px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 18px;
}

.grid {
  display: grid;
  gap: 16px;
}

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

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

.reveal-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
}

.reveal-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.feature-card,
.audience-card,
.faq-card,
.policy-card,
.step-card {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 36%),
    rgba(17, 24, 39, 0.76);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.035) inset;
  transition:
    opacity 420ms ease,
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.feature-card:hover,
.feature-card:focus-within,
.audience-card:hover,
.faq-card:hover,
.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(94, 234, 212, 0.42);
  background:
    linear-gradient(180deg, rgba(94, 234, 212, 0.055), transparent 42%),
    rgba(17, 24, 39, 0.9);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.feature-card h3,
.audience-card h3,
.faq-card h3,
.policy-card h3,
.step-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.35;
}

.feature-card p,
.audience-card p,
.faq-card p,
.policy-card p,
.step-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.card-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  color: #06111f;
  background: linear-gradient(135deg, var(--secondary), #99f6e4);
  font-size: 17px;
  font-weight: 900;
}

.card-icon.blue {
  background: linear-gradient(135deg, var(--primary), #bfdbfe);
}

.card-icon.gold {
  background: linear-gradient(135deg, var(--gold), #fde68a);
}

.screenshot-section {
  overflow: hidden;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.screenshot-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 45%),
    rgba(17, 24, 39, 0.72);
  box-shadow: var(--soft-shadow);
  transition:
    opacity 420ms ease,
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.screenshot-card:hover {
  transform: translateY(-4px);
  border-color: rgba(96, 165, 250, 0.42);
  background:
    linear-gradient(180deg, rgba(96, 165, 250, 0.06), transparent 45%),
    rgba(17, 24, 39, 0.88);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
}

.screenshot-media {
  min-height: 570px;
  display: grid;
  place-items: center;
  padding: 34px 24px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  background:
    radial-gradient(circle at 50% 8%, rgba(94, 234, 212, 0.12), transparent 42%),
    radial-gradient(circle at 86% 74%, rgba(96, 165, 250, 0.1), transparent 42%),
    rgba(2, 6, 23, 0.26);
}

.screenshot-copy {
  padding: 24px;
}

.screenshot-copy h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.25;
}

.screenshot-copy p {
  margin-bottom: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: start;
  gap: 44px;
}

.privacy-panel {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 44%),
    rgba(17, 24, 39, 0.78);
  box-shadow: var(--soft-shadow);
  transition: opacity 420ms ease, transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.privacy-panel:hover {
  border-color: rgba(94, 234, 212, 0.36);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.28);
}

.privacy-panel-header {
  padding: 20px 22px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  display: flex;
  align-items: center;
  gap: 12px;
}

.privacy-panel-header img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.privacy-panel-header strong {
  display: block;
}

.privacy-panel-header span {
  color: var(--subtle);
  font-size: 13px;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  padding: 15px 22px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  color: var(--muted);
}

.check-list li:last-child {
  border-bottom: 0;
}

.check-list li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  color: #06111f;
  background: linear-gradient(135deg, var(--secondary), #99f6e4);
  font-size: 13px;
  font-weight: 900;
}

.steps {
  counter-reset: steps;
}

.step-card {
  counter-increment: steps;
}

.step-card::before {
  content: counter(steps);
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #06111f;
  background: linear-gradient(135deg, var(--gold), #fde68a);
  font-weight: 900;
}

.cta-band {
  padding: 52px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  background:
    radial-gradient(circle at 86% 34%, rgba(94, 234, 212, 0.14), transparent 30%),
    linear-gradient(90deg, rgba(37, 99, 235, 0.2), rgba(15, 118, 110, 0.18));
}

.cta-content {
  width: calc(100% - 32px);
  max-width: var(--content);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-content > div:first-child {
  max-width: 680px;
}

.cta-content h2 {
  margin-bottom: 8px;
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  line-height: 1.18;
}

.cta-content p {
  margin-bottom: 0;
  color: var(--muted);
}

.cta-band .cta-store-actions {
  justify-content: flex-end;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  background: #060a12;
}

.footer-inner {
  width: calc(100% - 32px);
  max-width: var(--content);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--subtle);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

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

.legal-hero {
  width: calc(100% - 32px);
  max-width: 860px;
  margin: 0 auto;
  padding: 72px 0 36px;
}

.legal-hero h1 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 5vw, 2.7rem);
}

.legal-hero p {
  color: var(--muted);
  font-size: 18px;
}

.legal-layout {
  width: calc(100% - 32px);
  max-width: 860px;
  margin: 0 auto 72px;
  padding: 34px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 32%),
    rgba(17, 24, 39, 0.78);
  box-shadow: var(--soft-shadow);
}

.legal-layout h2 {
  margin: 32px 0 10px;
  font-size: 22px;
}

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

.legal-layout p,
.legal-layout li {
  color: var(--muted);
}

.legal-layout ul {
  padding-left: 22px;
}

.legal-layout a {
  color: var(--secondary);
  font-weight: 700;
}

.last-updated {
  color: var(--subtle);
  font-size: 14px;
  font-weight: 750;
}

.contact-hero {
  padding-bottom: 28px;
}

.contact-section {
  width: calc(100% - 32px);
  max-width: var(--content);
  margin: 0 auto 78px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.44fr);
  align-items: start;
  gap: 22px;
}

.contact-card,
.contact-aside {
  min-width: 0;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 34%),
    rgba(17, 24, 39, 0.78);
  box-shadow: var(--soft-shadow);
  transition: opacity 420ms ease, transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.contact-card {
  padding: 30px;
}

.contact-aside {
  padding: 24px;
}

.contact-card:hover,
.contact-aside:hover {
  border-color: rgba(94, 234, 212, 0.34);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.28);
}

.contact-card h2,
.contact-aside h2 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.25;
}

.contact-card p,
.contact-aside p {
  color: var(--muted);
}

.contact-aside a {
  color: var(--secondary);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label {
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: var(--radius-sm);
  color: var(--text);
  background: rgba(2, 6, 23, 0.48);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-field input {
  min-height: 48px;
  padding: 11px 13px;
}

.form-field textarea {
  min-height: 180px;
  padding: 13px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(94, 234, 212, 0.65);
  background: rgba(2, 6, 23, 0.7);
  box-shadow: 0 0 0 4px rgba(94, 234, 212, 0.12);
}

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

.recaptcha-wrap {
  min-height: 78px;
  overflow-x: auto;
}

.form-status {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: var(--radius-sm);
  color: var(--muted);
  background: rgba(15, 23, 42, 0.72);
  font-size: 14px;
  font-weight: 750;
}

.form-status.is-success {
  border-color: rgba(94, 234, 212, 0.46);
  color: #ccfbf1;
  background: rgba(20, 184, 166, 0.12);
}

.form-status.is-error {
  border-color: rgba(248, 113, 113, 0.46);
  color: #fecaca;
  background: rgba(248, 113, 113, 0.12);
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.error-hero {
  width: calc(100% - 32px);
  max-width: var(--content);
  margin: 0 auto;
  padding: 78px 0 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  align-items: center;
  gap: 58px;
}

.error-copy {
  min-width: 0;
}

.error-code {
  width: fit-content;
  margin: 0 0 16px;
  padding: 8px 12px;
  border: 1px solid rgba(94, 234, 212, 0.34);
  border-radius: 999px;
  color: #ccfbf1;
  background: rgba(20, 184, 166, 0.12);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.error-panel {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 70% 18%, rgba(94, 234, 212, 0.14), transparent 36%),
    rgba(2, 6, 23, 0.72);
  box-shadow: var(--shadow);
}

.error-panel-top {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(15, 23, 42, 0.82);
}

.error-panel-top span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--line-strong);
}

.error-panel-top span:nth-child(1) {
  background: var(--danger);
}

.error-panel-top span:nth-child(2) {
  background: var(--gold);
}

.error-panel-top span:nth-child(3) {
  background: var(--secondary);
}

.error-terminal {
  padding: 24px;
  color: #dbeafe;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 14px;
}

.error-terminal p {
  margin: 0 0 10px;
}

.error-terminal p:last-child {
  margin-bottom: 0;
  color: var(--secondary);
}

.error-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 8px;
  padding: 0 24px 24px;
}

.error-grid span {
  aspect-ratio: 1;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 6px;
  background: rgba(15, 23, 42, 0.82);
}

.error-grid span.is-lit {
  border-color: rgba(94, 234, 212, 0.56);
  background: rgba(94, 234, 212, 0.22);
  box-shadow: 0 0 24px rgba(94, 234, 212, 0.2);
}

.error-section {
  padding-top: 48px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 40;
  transform: translateY(-140%);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: #06111f;
  font-weight: 850;
}

.skip-link:focus {
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    padding: 46px 0 42px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .error-hero {
    padding: 46px 0 42px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-media {
    justify-content: center;
  }

  .split,
  .grid.two,
  .grid.three,
  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .screenshot-media {
    min-height: 520px;
  }

  .cta-content,
  .footer-inner,
  .contact-layout {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-layout {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cta-band .cta-store-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .nav,
  .section-inner,
  .hero,
  .error-hero,
  .cta-content,
  .footer-inner,
  .contact-section,
  .legal-hero,
  .legal-layout {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

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

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

  .nav-links {
    gap: 8px 10px;
  }

  .nav-links a {
    font-size: 12px;
  }

  .language-switcher a {
    min-width: 32px;
    padding: 7px 8px;
  }

  .hero-lead,
  .section-lead,
  .legal-hero p {
    font-size: 17px;
  }

  .play-badge {
    height: 52px;
  }

  .hero-actions,
  .cta-store-actions {
    align-items: flex-start;
  }

  .button {
    width: 100%;
    max-width: 290px;
  }

  .store-link {
    max-width: 100%;
  }

  .phone-frame {
    width: min(100%, 326px);
    padding: 8px;
    border-radius: 30px;
  }

  .phone-frame::before {
    inset: -12px;
    filter: blur(10px);
  }

  .phone-frame img {
    border-radius: 23px;
  }

  .phone-frame-small {
    width: min(100%, 244px);
  }

  .phone-frame-small::before {
    inset: -10px;
  }

  .section {
    padding: 56px 0;
  }

  .feature-card,
  .audience-card,
  .faq-card,
  .policy-card,
  .step-card,
  .screenshot-copy,
  .contact-card,
  .contact-aside {
    padding: 20px;
  }

  .screenshot-media {
    min-height: 470px;
    padding: 28px 18px;
  }

  .privacy-panel-header {
    align-items: flex-start;
  }

  .legal-layout {
    padding: 24px;
  }
}

@media (max-width: 380px) {
  .play-badge {
    height: 48px;
  }

  .nav-links {
    gap: 7px 9px;
  }

  .screenshot-media {
    min-height: 430px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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