:root {
  --pea-bg: #080d0a;
  --pea-bg-soft: #0a100c;
  --pea-card: #121c18;
  --pea-elevated: #18241e;
  --pea-border: #1e2d26;
  --mint: #8fe9c4;
  --green: #5ecf8f;
  --green-dim: #45b377;
  --blue: #6eb5d9;
  --txt: #f0faf4;
  --txt-muted: #98ada3;
  --txt-faint: #6d8278;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--pea-bg);
  color: var(--txt);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: rgba(94, 207, 143, 0.28);
  color: #fff;
}

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

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

.container {
  width: min(1160px, 92vw);
  margin-inline: auto;
}

/* Background layers */
.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(ellipse 90% 60% at 50% -15%, rgba(94, 207, 143, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 80%, rgba(110, 181, 217, 0.08), transparent),
    radial-gradient(ellipse 40% 35% at 0% 60%, rgba(69, 179, 119, 0.06), transparent);
  pointer-events: none;
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(126, 226, 184, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 226, 184, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black, transparent 75%);
  pointer-events: none;
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
  animation: orb-float 18s var(--ease-out) infinite alternate;
}

.orb-1 {
  width: 420px;
  height: 420px;
  background: rgba(94, 207, 143, 0.18);
  top: -8%;
  left: 10%;
}
.orb-2 {
  width: 320px;
  height: 320px;
  background: rgba(110, 181, 217, 0.12);
  bottom: 10%;
  right: 5%;
  animation-delay: -6s;
}
.orb-3 {
  width: 200px;
  height: 200px;
  background: rgba(143, 233, 196, 0.1);
  top: 45%;
  right: 35%;
  animation-delay: -12s;
}

@keyframes orb-float {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(40px, -30px) scale(1.08);
  }
}

#particles {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(8, 13, 10, 0.82);
  backdrop-filter: blur(16px);
  border-color: rgba(126, 226, 184, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1160px, 92vw);
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(94, 207, 143, 0.2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  color: var(--txt-muted);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--mint);
}

.nav-end {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-dropdown {
  position: relative;
}

.lang-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 52px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--pea-border);
  background: rgba(18, 28, 24, 0.9);
  color: var(--mint);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  font-family: inherit;
}

.lang-dropdown-btn::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--txt-muted);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 40;
  min-width: 160px;
  margin: 0;
  padding: 6px;
  list-style: none;
  border-radius: 12px;
  border: 1px solid var(--pea-border);
  background: rgba(10, 16, 13, 0.98);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.lang-dropdown-menu button {
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  color: var(--txt-muted);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
}

.lang-dropdown-menu button:hover,
.lang-dropdown-menu button.active {
  background: rgba(94, 207, 143, 0.16);
  color: var(--mint);
}

.discord-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 10px;
  border: 1px solid rgba(94, 207, 143, 0.45);
  background: linear-gradient(135deg, rgba(46, 140, 90, 0.95), rgba(94, 207, 143, 0.92));
  color: #06110c;
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
}

.discord-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(94, 207, 143, 0.25);
  color: #06110c;
}

.discord-cta-lg {
  padding: 12px 18px;
  font-size: 0.95rem;
}

.lang-switch {
  display: none;
}

.lang-switch button {
  padding: 6px 10px;
  border: none;
  background: transparent;
  color: var(--txt-faint);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 7px;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s, background 0.2s;
}

.lang-switch button:hover {
  color: var(--txt-muted);
}

.lang-switch button.active {
  background: rgba(94, 207, 143, 0.18);
  color: var(--mint);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green-dim), var(--green));
  color: var(--pea-bg);
  font-weight: 600;
  font-size: 0.88rem;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
  box-shadow: 0 4px 24px rgba(94, 207, 143, 0.25);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(94, 207, 143, 0.35);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-dim) 0%, var(--green) 50%, var(--mint) 100%);
  color: var(--pea-bg);
  box-shadow: 0 4px 28px rgba(94, 207, 143, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(94, 207, 143, 0.4);
}

.btn-ghost {
  background: rgba(18, 28, 24, 0.8);
  border: 1px solid var(--pea-border);
  color: var(--txt);
}

.btn-ghost:hover {
  border-color: rgba(126, 226, 184, 0.35);
  transform: translateY(-2px);
}

/* Hero */
.hero {
  min-height: 100vh;
  padding-top: calc(var(--nav-h) + 48px);
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.beta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #08110c;
  background: linear-gradient(135deg, #b8f0d0, #5ecf8f);
  box-shadow: 0 0 24px rgba(94, 207, 143, 0.35);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(126, 226, 184, 0.2);
  background: rgba(18, 28, 24, 0.6);
  font-size: 0.78rem;
  color: var(--mint);
  margin-bottom: 0;
  animation: badge-pulse 3s ease-in-out infinite;
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  animation: blink 2s infinite;
}

.hero-devnote {
  margin: 0 0 22px;
  max-width: 36rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--txt-muted);
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(94, 207, 143, 0); }
  50% { box-shadow: 0 0 24px rgba(94, 207, 143, 0.12); }
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero h1 .gradient {
  background: linear-gradient(120deg, var(--txt) 0%, var(--mint) 45%, var(--green) 70%, var(--blue) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s linear infinite;
}

@keyframes shimmer {
  to { background-position: 200% center; }
}

.hero-lead {
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--txt-muted);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 32px;
}

.stat {
  text-align: left;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--mint);
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--txt-faint);
  margin-top: 4px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  perspective: 1200px;
}

.hero-card {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(126, 226, 184, 0.15);
  background: linear-gradient(160deg, rgba(18, 28, 24, 0.95), rgba(8, 13, 10, 0.9));
  box-shadow:
    0 0 0 1px rgba(126, 226, 184, 0.06),
    0 24px 80px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(94, 207, 143, 0.08);
  overflow: hidden;
  transform: rotateY(-8deg) rotateX(4deg);
  animation: card-float 8s var(--ease-out) infinite alternate;
}

@keyframes card-float {
  from { transform: rotateY(-8deg) rotateX(4deg) translateY(0); }
  to { transform: rotateY(-4deg) rotateX(2deg) translateY(-12px); }
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--pea-border);
  background: rgba(14, 22, 18, 0.8);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-r { background: #e88484; }
.dot-y { background: #e8c46a; }
.dot-g { background: var(--green); }

.hero-card-title {
  margin-left: 8px;
  font-size: 0.75rem;
  color: var(--txt-faint);
}

.hero-card-body {
  padding: 20px;
  font-family: "Consolas", "Cascadia Code", monospace;
  font-size: 0.8rem;
  line-height: 1.7;
  min-height: 280px;
}

.code-line {
  opacity: 0;
  animation: code-in 0.6s var(--ease-out) forwards;
}
.code-line:nth-child(1) { animation-delay: 0.2s; }
.code-line:nth-child(2) { animation-delay: 0.5s; }
.code-line:nth-child(3) { animation-delay: 0.8s; }
.code-line:nth-child(4) { animation-delay: 1.1s; }
.code-line:nth-child(5) { animation-delay: 1.4s; }
.code-line:nth-child(6) { animation-delay: 1.7s; }
.code-line:nth-child(7) { animation-delay: 2s; }

@keyframes code-in {
  from { opacity: 0; transform: translateX(-8px); }
  to { opacity: 1; transform: translateX(0); }
}

.kw { color: var(--blue); }
.fn { color: var(--mint); }
.str { color: var(--green); }
.cm { color: var(--txt-faint); }

.hero-mascot {
  position: absolute;
  width: 120px;
  bottom: -20px;
  right: -20px;
  filter: drop-shadow(0 16px 40px rgba(94, 207, 143, 0.25));
  animation: mascot-bob 5s ease-in-out infinite;
}

@keyframes mascot-bob {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-10px) rotate(3deg); }
}

.glow-ring {
  position: absolute;
  inset: -40%;
  border: 1px solid rgba(126, 226, 184, 0.08);
  border-radius: 50%;
  animation: ring-spin 24s linear infinite;
}

@keyframes ring-spin {
  to { transform: rotate(360deg); }
}

/* Sections */
section {
  padding: 100px 0;
}

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  max-width: 640px;
}

.section-desc {
  color: var(--txt-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.marquee-wrap {
  overflow: hidden;
  padding: 24px 0;
  border-block: 1px solid var(--pea-border);
  background: rgba(12, 19, 16, 0.5);
  margin-bottom: 80px;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 42s linear infinite;
  will-change: transform;
}

.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-group {
  display: flex;
  gap: 48px;
  padding-right: 48px;
  flex-shrink: 0;
}

.marquee-group span {
  font-size: 0.85rem;
  color: var(--txt-faint);
  white-space: nowrap;
}

.marquee-group span strong {
  color: var(--txt-muted);
  font-weight: 600;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Bento grid */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bento-card {
  padding: 28px;
  border-radius: 18px;
  border: 1px solid var(--pea-border);
  background: linear-gradient(145deg, rgba(18, 28, 24, 0.9), rgba(12, 19, 16, 0.7));
  transition: transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(94, 207, 143, 0.12), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.bento-card:hover {
  transform: translateY(-6px);
  border-color: rgba(126, 226, 184, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-card.wide {
  grid-column: span 2;
}

.bento-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(94, 207, 143, 0.12);
  margin-bottom: 16px;
  font-size: 1.25rem;
}

.bento-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.bento-card p {
  font-size: 0.9rem;
  color: var(--txt-muted);
  line-height: 1.6;
}

/* Use cases */
.use-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.use-card {
  padding: 32px;
  border-radius: 18px;
  border: 1px solid var(--pea-border);
  background: var(--pea-card);
  transition: transform 0.35s var(--ease-out);
}

.use-card:hover {
  transform: scale(1.02);
}

.use-card h3 {
  margin-bottom: 10px;
}

.use-card p {
  color: var(--txt-muted);
  line-height: 1.65;
  font-size: 0.92rem;
}

/* Trust strip */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--pea-border);
  background: rgba(18, 28, 24, 0.5);
}

.trust-item h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.trust-item p {
  font-size: 0.82rem;
  color: var(--txt-faint);
  line-height: 1.5;
}

.page-jump {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.page-jump a {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--pea-border);
  background: rgba(12, 19, 16, 0.7);
  color: var(--txt-muted);
  font-size: 0.82rem;
  font-weight: 600;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.page-jump a:hover {
  color: var(--mint);
  border-color: rgba(126, 226, 184, 0.35);
  background: rgba(94, 207, 143, 0.08);
}

/* Community (Discord) */
.community-panel {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 28px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 36px 36px;
  border-radius: 20px;
  border: 1px solid rgba(88, 101, 242, 0.28);
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(88, 101, 242, 0.14), transparent),
    linear-gradient(180deg, rgba(16, 18, 28, 0.95), rgba(10, 12, 18, 0.98));
}

.community-copy h3 {
  margin: 12px 0 10px;
  font-size: 1.35rem;
}

.community-copy p:last-child {
  color: var(--txt-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

.community-beta {
  margin: 0;
}

@media (max-width: 720px) {
  .community-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .community-panel .discord-cta-lg {
    justify-self: center;
  }
}

.support-panel {
  max-width: 720px;
  margin: 0 auto;
  padding: 36px 32px 28px;
  border-radius: 20px;
  border: 1px solid rgba(126, 226, 184, 0.18);
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(94, 207, 143, 0.1), transparent),
    linear-gradient(180deg, rgba(18, 28, 24, 0.92), rgba(10, 16, 12, 0.96));
  text-align: center;
}

.support-stripe-head {
  margin-bottom: 22px;
}

.support-stripe-mark {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #635bff;
  background: rgba(99, 91, 255, 0.12);
  border: 1px solid rgba(99, 91, 255, 0.28);
}

.support-preview .support-actions {
  opacity: 0.92;
}

.support-preview .support-amount.disabled {
  opacity: 0.55;
}

.support-pending {
  color: var(--txt-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

.support-amounts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

@media (max-width: 720px) {
  .support-amounts {
    grid-template-columns: repeat(2, 1fr);
  }
}

.support-amount {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 14px;
  border-radius: 14px;
  border: 1px solid var(--pea-border);
  background: rgba(8, 13, 10, 0.55);
  color: var(--txt);
  text-decoration: none;
  transition: border-color 0.2s var(--ease-out), transform 0.2s var(--ease-out), background 0.2s;
}

.support-amount:hover:not(.disabled) {
  border-color: rgba(143, 233, 196, 0.45);
  background: rgba(94, 207, 143, 0.08);
  transform: translateY(-2px);
}

.support-amount-featured {
  border-color: rgba(143, 233, 196, 0.35);
  background: rgba(94, 207, 143, 0.1);
}

.support-amount.disabled {
  opacity: 0.45;
  pointer-events: none;
}

.support-amount-tag {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--txt-faint);
}

.support-amount-value {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--mint);
}

.support-custom-form {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
}

.support-custom-label {
  display: block;
  font-size: 0.8rem;
  color: var(--txt-muted);
  margin-bottom: 8px;
}

.support-custom-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--pea-border);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(8, 13, 10, 0.65);
}

.support-custom-prefix {
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: var(--mint);
  font-weight: 700;
  border-right: 1px solid var(--pea-border);
}

.support-custom-input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--txt);
  font: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 12px 14px;
  outline: none;
}

.support-custom-input::-webkit-outer-spin-button,
.support-custom-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.support-custom-input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.support-custom-btn {
  border-radius: 0;
  border: 0;
  padding-inline: 18px;
  white-space: nowrap;
}

.support-custom-error {
  margin-top: 8px;
  font-size: 0.8rem;
  color: #f0a0a0;
}

.support-note {
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--txt-faint);
  line-height: 1.45;
}

.soon-panel {
  max-width: 640px;
  margin: 0 auto;
  padding: 36px 32px;
  border-radius: 20px;
  border: 1px solid rgba(126, 226, 184, 0.18);
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(94, 207, 143, 0.1), transparent),
    linear-gradient(180deg, rgba(18, 28, 24, 0.92), rgba(10, 16, 12, 0.96));
  text-align: center;
}

.soon-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #08110c;
  background: linear-gradient(135deg, #b8f0d0, #5ecf8f);
}

.soon-panel h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.soon-panel p {
  color: var(--txt-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.legal-section {
  padding-top: 48px;
  padding-bottom: 48px;
}

.legal-meta {
  color: var(--txt-faint);
  font-size: 0.88rem;
  margin-bottom: 28px;
  max-width: 720px;
}

.legal-doc {
  max-width: 760px;
  color: var(--txt-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.legal-doc h3 {
  color: var(--txt);
  font-size: 1.05rem;
  margin: 28px 0 10px;
}

.legal-doc p,
.legal-doc ul {
  margin-bottom: 14px;
}

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

.legal-doc a {
  color: var(--mint);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.imprint-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.imprint-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--pea-border);
  color: var(--txt-muted);
  line-height: 1.55;
}

.imprint-list strong {
  color: var(--mint);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-block;
  min-width: 7.5rem;
}

/* CTA */
.cta-block {
  text-align: center;
  padding: 80px 48px;
  border-radius: 24px;
  border: 1px solid rgba(126, 226, 184, 0.2);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(94, 207, 143, 0.12), transparent),
    linear-gradient(180deg, rgba(18, 28, 24, 0.95), rgba(8, 13, 10, 0.98));
  position: relative;
  overflow: hidden;
}

.cta-block::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 1px;
  top: 0;
  left: -50%;
  background: linear-gradient(90deg, transparent, rgba(143, 233, 196, 0.4), transparent);
  animation: cta-shine 4s ease-in-out infinite;
}

@keyframes cta-shine {
  0%, 100% { transform: translateX(-30%); opacity: 0; }
  50% { transform: translateX(30%); opacity: 1; }
}

.cta-block h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}

.cta-block p {
  color: var(--txt-muted);
  margin-bottom: 28px;
}

/* Footer */
.footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--pea-border);
  margin-top: 60px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--txt-faint);
}

.footer-links a:hover {
  color: var(--mint);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--txt-faint);
}

/* Download page */
.page-hero {
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 64px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--txt-muted);
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.65;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.platform-card {
  padding: 36px 28px;
  border-radius: 20px;
  border: 1px solid var(--pea-border);
  background: var(--pea-card);
  text-align: center;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.platform-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  border-color: rgba(126, 226, 184, 0.25);
}

.platform-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: #ffffff;
  fill: currentColor;
  flex-shrink: 0;
  display: block;
}

.platform-icon path,
.platform-icon rect {
  fill: currentColor;
}

.platform-card h3 {
  margin-bottom: 8px;
}

.platform-card .platform-desc {
  font-size: 0.85rem;
  color: var(--txt-faint);
  margin-bottom: 20px;
  line-height: 1.45;
  min-height: 1.3em;
}

.platform-card p:not(.platform-desc) {
  font-size: 0.85rem;
  color: var(--txt-faint);
  margin-bottom: 24px;
  line-height: 1.5;
}

.dl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  background: #f0faf4;
  color: #080d0a;
  transition: transform 0.25s, box-shadow 0.25s;
}

.dl-format {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
}

.dl-format-label {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--txt-faint);
}

.dl-format-toggle {
  display: inline-flex;
  padding: 3px;
  border-radius: 12px;
  border: 1px solid var(--pea-border);
  background: rgba(8, 13, 10, 0.55);
  gap: 2px;
}

.dl-format-btn {
  min-width: 64px;
  padding: 8px 16px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--txt-muted);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.dl-format-btn:hover:not(:disabled) {
  color: var(--txt);
}

.dl-format-btn.is-active {
  background: rgba(94, 207, 143, 0.18);
  color: var(--mint);
}

.dl-format-btn.is-unavailable,
.dl-format-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.dl-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 28px rgba(240, 250, 244, 0.2);
}

.dl-btn.disabled {
  background: rgba(30, 45, 38, 0.8);
  color: var(--txt-faint);
  cursor: not-allowed;
  pointer-events: none;
}

.dl-btn svg {
  width: 20px;
  height: 20px;
}

.req-list {
  max-width: 720px;
  margin-inline: auto;
}

.req-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--pea-border);
  color: var(--txt-muted);
  line-height: 1.6;
  list-style: none;
  display: flex;
  gap: 12px;
}

.req-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.step {
  text-align: center;
  padding: 24px 16px;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(94, 207, 143, 0.15);
  color: var(--mint);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.step p {
  font-size: 0.88rem;
  color: var(--txt-muted);
  line-height: 1.5;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-lead,
  .section-desc {
    margin-inline: auto;
  }
  .hero-actions,
  .hero-stats {
    justify-content: center;
  }
  .hero-visual {
    order: -1;
    max-width: 480px;
    margin-inline: auto;
  }
  .bento {
    grid-template-columns: 1fr;
  }
  .bento-card.wide {
    grid-column: span 1;
  }
  .use-grid,
  .platform-grid,
  .trust-strip,
  .steps {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--txt-faint);
  padding-top: calc(var(--nav-h) + 28px);
  margin-bottom: -48px;
  position: relative;
  z-index: 2;
}

.crumbs a {
  color: var(--txt-muted);
}

.crumbs a:hover {
  color: var(--mint);
}

.crumbs [aria-current="page"] {
  color: var(--txt);
}

.faq-list {
  width: min(760px, 100%);
  margin: 28px auto 0;
  display: grid;
  gap: 10px;
}

.faq-item {
  background: var(--pea-card);
  border: 1px solid var(--pea-border);
  border-radius: 14px;
  padding: 4px 18px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  font-weight: 600;
  color: var(--txt);
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--mint);
  font-weight: 500;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  padding: 0 0 16px;
  color: var(--txt-muted);
  line-height: 1.65;
}
