:root {
  color-scheme: dark;

  --bg: #000000;
  --surface: #ffffff21;
  --surface-alt: rgba(255, 255, 255, 0.08);
  --surface-glass: rgba(255, 255, 255, 0.1);
  --text: #fffffff2;
  --text-muted: #ffffff99;
  --line: rgba(255, 255, 255, 0.14);

  --brand-yellow: #ffc800;
  --brand-green: #92e623;
  --brand-pink: #ff7d7d;
  --brand-cyan: #6df6f5;
  --brand-purple: #cd80fe;

  --primary: var(--brand-yellow);
  --secondary: var(--brand-green);
  --accent: var(--brand-pink);
  --accent-blue: var(--brand-cyan);
  --accent-purple: var(--brand-purple);

  --blur-strong: 14px;
  --blur: 12px;
  --blur-soft: 10px;

  --shadow: 0 28px 70px rgba(0, 0, 0, 0.7);
  --shadow-soft: 0 16px 44px rgba(0, 0, 0, 0.55);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

::selection {
  background: rgba(255, 200, 0, 0.28);
  color: #0b0b0f;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  line-height: 1.55;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: var(--bg);
  opacity: 1;
}

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

a {
  color: inherit;
}

.shell {
  max-width: 1140px;
  margin: 0 auto;
  padding: 26px 20px 40px;
  position: relative;
  z-index: 1;
}

.stack {
  display: grid;
  gap: 20px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-glass);
  backdrop-filter: blur(var(--blur-strong));
  -webkit-backdrop-filter: blur(var(--blur-strong));
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 4px;
}

.brand span {
  display: block;
}

.brand small {
  display: block;
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.nav-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn:focus-visible,
.nav-link:focus-visible,
.chip:focus-visible,
.footer-links a:focus-visible {
  outline: 3px solid rgba(109, 246, 245, 0.35);
  outline-offset: 3px;
}

h1,
h2,
h3 {
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

h2 {
  font-size: clamp(1.3rem, 2.6vw, 2rem);
}

h3 {
  font-size: 1.1rem;
}

.lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 60ch;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--text);
  background: var(--surface-alt);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.badge .emoji {
  font-size: 1rem;
}

.card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  padding: 24px;
  display: grid;
  gap: 16px;
  backdrop-filter: blur(var(--blur-strong));
  -webkit-backdrop-filter: blur(var(--blur-strong));
}

.card--gradient {
  background: var(--surface-alt);
}

.card--soft {
  background: var(--surface-alt);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.hero-copy .floaty {
  position: absolute;
  right: 24px;
  top: 22px;
  font-size: 2rem;
  animation: float 3.5s ease-in-out infinite;
}

.hero-card {
  display: grid;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.hero-card .mini-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 16px;
  border: 1px solid var(--line);
  display: grid;
  gap: 10px;
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
}

.hero-card .mini-card h3 {
  margin-bottom: 6px;
}

.hero-card .mini-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hero-steps {
  display: grid;
  gap: 10px;
}

.step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
}

.step span {
  font-weight: 600;
}

.step .emoji {
  font-size: 1.2rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: var(--brand-yellow);
  color: #0b0b0f;
  box-shadow: var(--shadow-soft);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text);
  backdrop-filter: blur(var(--blur-soft));
  -webkit-backdrop-filter: blur(var(--blur-soft));
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-store {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-soft);
  color: var(--text);
  backdrop-filter: blur(var(--blur-soft));
  -webkit-backdrop-filter: blur(var(--blur-soft));
}

.btn-store:hover {
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-store .emoji {
  font-size: 1.1rem;
}

.store-caption {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.86rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(109, 246, 245, 0.26);
  color: var(--text);
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

a.chip:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(109, 246, 245, 0.38);
  transform: translateY(-1px);
}

.icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-badge {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--surface-alt);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text);
}

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

.feature {
  display: grid;
  gap: 10px;
}

.feature p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-title p {
  color: var(--text-muted);
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.info-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 14px;
  border: 1px solid var(--line);
  display: grid;
  gap: 6px;
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
}

.info-card strong {
  display: block;
  color: var(--text);
  font-size: 1.05rem;
}

.info-card span {
  font-size: 0.84rem;
  color: var(--text-muted);
}

.alert {
  border-radius: var(--radius-md);
  padding: 14px 16px;
  border: 1px solid transparent;
  font-weight: 600;
  display: grid;
  gap: 6px;
  background: rgba(109, 246, 245, 0.1);
  border-color: rgba(109, 246, 245, 0.28);
  color: var(--text);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
}

.alert--success {
  background: rgba(146, 230, 35, 0.12);
  border-color: rgba(146, 230, 35, 0.3);
  color: var(--text);
}

.alert--warning {
  background: rgba(255, 200, 0, 0.14);
  border-color: rgba(255, 200, 0, 0.34);
  color: var(--text);
}

.form-card {
  display: grid;
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 8px;
}

label {
  font-weight: 600;
  color: var(--text);
}

input[type='email'],
input[type='text'],
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: rgba(0, 0, 0, 0.35);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

input[type='email']::placeholder,
input[type='text']::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

input[type='email']:focus,
input[type='text']:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 4px rgba(109, 246, 245, 0.18);
  background: rgba(0, 0, 0, 0.45);
}

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

.help-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.85rem;
}

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

.footer-links a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text);
  border-bottom-color: rgba(255, 255, 255, 0.6);
}

.prose {
  display: grid;
  gap: 16px;
  color: var(--text);
}

.prose p,
.prose li {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.prose strong {
  color: var(--text);
}

.prose h2 {
  margin-top: 12px;
}

.prose h3 {
  margin-top: 8px;
}

.prose ul,
.prose ol {
  padding-left: 22px;
  display: grid;
  gap: 6px;
}

.prose a {
  color: var(--accent-blue);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.prose code {
  background: rgba(255, 200, 0, 0.16);
  padding: 2px 6px;
  border-radius: 6px;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text);
}

code {
  background: rgba(255, 200, 0, 0.16);
  padding: 2px 6px;
  border-radius: 6px;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text);
}

.meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--text-muted);
}

/* .reveal class removed for instant appearance */

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  /* .reveal class removed for instant appearance */

  .hero-copy .floaty {
    animation: none;
  }
}

@media (prefers-reduced-transparency: reduce),
(hover: none) and (pointer: coarse) {
  :root {
    --surface: rgba(255, 255, 255, 0.16);
    --surface-alt: rgba(255, 255, 255, 0.12);
    --surface-glass: rgba(255, 255, 255, 0.14);

    --blur-strong: 0px;
    --blur: 0px;
    --blur-soft: 0px;

    --shadow: 0 18px 44px rgba(0, 0, 0, 0.6);
    --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.45);
  }

  .topbar,
  .card,
  .hero-card .mini-card,
  .btn-secondary,
  .btn-store,
  .info-card,
  .alert {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .brand img {
    filter: none;
    box-shadow:
      0 10px 22px rgba(205, 128, 254, 0.25),
      0 14px 26px rgba(109, 246, 245, 0.14);
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

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

  .info-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .topbar {
    border-radius: var(--radius-md);
  }

  .hero-copy,
  .hero-card,
  .card {
    border-radius: var(--radius-lg);
  }

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

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