:root {
  --ink: #070d14;
  --ink-soft: #101820;
  --paper: #e8eef3;
  --paper-2: #f3f6f9;
  --line: rgba(7, 13, 20, 0.12);
  --teal: #0f766e;
  --teal-bright: #2dd4bf;
  --teal-deep: #0a4f4a;
  --gold: #e1a755;
  --muted: #6b7c8f;
  --white: #ffffff;
  --panel: #0c141c;
  --panel-2: #121c28;
  --ok: #34d399;
  --warn: #fbbf24;
  --font-display: "Syne", sans-serif;
  --font-body: "Sora", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper-2);
  line-height: 1.55;
  font-size: 16px;
  overflow-x: hidden;
}

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

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

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Ticker */
.ticker {
  position: relative;
  z-index: 50;
  overflow: hidden;
  background: #050a10;
  border-bottom: 1px solid rgba(45, 212, 191, 0.25);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: rgba(45, 212, 191, 0.85);
  padding: 8px 0;
}

.ticker-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}

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

/* ——— Nav ——— */
.nav {
  position: fixed;
  inset: 28px 0 auto;
  z-index: 40;
  padding: 14px 0;
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease), padding 0.35s var(--ease), inset 0.35s var(--ease);
}

.nav.is-solid {
  inset: 0 0 auto;
  background: rgba(7, 13, 20, 0.88);
  backdrop-filter: blur(16px);
  padding: 10px 0;
  border-bottom: 1px solid rgba(45, 212, 191, 0.15);
}

.nav.is-solid .nav-links {
  color: rgba(255, 255, 255, 0.65);
}

.nav.is-solid .nav-links a:hover {
  color: var(--teal-bright);
}

.nav.is-solid .nav-links a::after {
  background: var(--teal-bright);
}

.nav.is-solid .nav-cta {
  background: var(--teal-bright);
  color: var(--ink);
}

.nav.is-solid .brand-logo-dark { display: block; }
.nav.is-solid .brand-logo-light { display: none; }

.nav.is-solid .nav-toggle span {
  background: var(--white);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: nowrap;
}

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

.brand-logo {
  width: auto;
  height: 72px;
  border-radius: 0;
  background: transparent;
  padding: 0;
  display: block;
}

.brand-text {
  display: none;
}

.nav.is-solid .brand-logo-dark { display: block; }
.nav.is-solid .brand-logo-light { display: none; }
.nav:not(.is-solid) .brand-logo-dark { display: block; }
.nav:not(.is-solid) .brand-logo-light { display: none; }

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.brand .brand-logo {
  width: auto;
  height: 72px;
  border-radius: 0;
}

@media (max-width: 720px) {
  .brand-logo,
  .brand .brand-logo {
    height: 48px;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
  font-size: 0.88rem;
  /* Hero escuro: links claros (paleta do bot) */
  color: rgba(255, 255, 255, 0.72);
}

/* Language switch — compact pill pair */
.lang-switch {
  display: inline-flex;
  align-items: stretch;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.lang-switch button {
  appearance: none;
  border: 0;
  margin: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 7px 11px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-switch button + button {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.lang-switch button:hover:not(.is-active) {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.lang-switch button.is-active {
  background: var(--teal-bright);
  color: var(--ink);
}

.nav.is-solid .lang-switch {
  border-color: rgba(45, 212, 191, 0.35);
  background: rgba(0, 0, 0, 0.28);
}

.nav.is-solid .lang-switch button {
  color: rgba(255, 255, 255, 0.55);
}

.nav.is-solid .lang-switch button + button {
  border-left-color: rgba(45, 212, 191, 0.22);
}

.nav.is-solid .lang-switch button:hover:not(.is-active) {
  color: var(--teal-bright);
  background: rgba(45, 212, 191, 0.1);
}

.nav.is-solid .lang-switch button.is-active {
  background: var(--teal-bright);
  color: var(--ink);
}

.nav-links a {
  position: relative;
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--teal-bright);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Ao rolar: mantém estética dark trade */
.nav.is-solid .nav-links {
  color: rgba(255, 255, 255, 0.65);
}

.nav.is-solid .nav-links a::after {
  background: var(--teal-bright);
}

.nav.is-solid .nav-links a:hover {
  color: var(--teal-bright);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  background: var(--teal-bright);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 4px;
  transition: transform 0.25s var(--ease), background 0.25s ease, color 0.25s ease;
}

.nav-cta:hover {
  background: #2dd4bf;
  color: var(--ink);
  transform: translateY(-1px);
}

.nav.is-solid .nav-cta {
  background: var(--teal);
  color: var(--white);
}

.nav.is-solid .nav-cta:hover {
  background: var(--teal-deep);
  color: var(--white);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.nav.is-solid .nav-toggle span {
  background: var(--ink);
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(20, 184, 166, 0.28), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(15, 118, 110, 0.35), transparent 50%),
    linear-gradient(160deg, #071018 0%, #0b1a24 42%, #0e2a2c 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.hero-pair {
  position: absolute;
  right: max(2vw, calc((100% - var(--max)) / 2 - 10px));
  top: 50%;
  transform: translateY(-50%);
  width: min(52vw, 560px);
  height: min(52vw, 420px);
  z-index: 1;
}

.hero-icon {
  position: absolute;
  width: min(58%, 280px);
  aspect-ratio: 1;
  border-radius: 22%;
  overflow: hidden;
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.45);
}

.hero-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: none;
  transform-origin: center;
}

.hero-icon-one {
  left: 0;
  top: 8%;
  animation: float-a 7s ease-in-out infinite;
}

.hero-icon-pro {
  right: 4%;
  bottom: 0;
  animation: float-b 7.5s ease-in-out infinite;
}

@keyframes float-a {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes float-b {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 0 64px;
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  max-width: 560px;
  margin-right: auto;
  margin-left: max(20px, calc((100% - var(--max)) / 2));
}

.hero-kicker {
  margin: 0 0 12px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(45, 212, 191, 0.9);
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.8s var(--ease) 0.05s forwards;
}

.hero-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.4rem, 9vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  opacity: 0;
  transform: translateY(24px);
  animation: rise 0.9s var(--ease) 0.15s forwards;
}

.hero-brand span {
  display: block;
  color: var(--teal-bright);
  font-size: 0.42em;
  letter-spacing: 0.28em;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-lead {
  margin: 0 0 28px;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 34ch;
  opacity: 0;
  transform: translateY(24px);
  animation: rise 0.9s var(--ease) 0.35s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 0;
  transform: translateY(24px);
  animation: rise 0.9s var(--ease) 0.5s forwards;
}

.hero-metrics {
  display: flex;
  gap: 28px;
  margin: 36px 0 0;
  padding: 0;
  opacity: 0;
  transform: translateY(24px);
  animation: rise 0.9s var(--ease) 0.65s forwards;
}

.hero-metrics div {
  margin: 0;
}

.hero-metrics dt {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 4px;
}

.hero-metrics dd {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--teal-bright);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45, 212, 191, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 212, 191, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
  pointer-events: none;
  opacity: 0.5;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

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

.btn-primary {
  background: var(--teal-bright);
  color: var(--ink);
}

.btn-primary:hover {
  background: #2dd4bf;
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--teal-deep);
}

.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--white);
}

.btn-pro {
  background: linear-gradient(135deg, #d4a017, #f0c14b);
  color: #1a1408;
}

.btn-pro:hover {
  background: linear-gradient(135deg, #e0b020, #f5d06a);
}

/* Products split */
.products {
  background: var(--paper-2);
}

.product-split {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.product-panel {
  display: block;
  padding: 36px 32px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: border-color 0.3s ease, transform 0.3s var(--ease), background 0.3s ease;
}

.product-panel:hover {
  transform: translateY(-4px);
  border-color: var(--teal);
}

.product-panel .icon-clip,
.detail-visual .icon-clip,
.download-card .icon-clip,
.plan-card .icon-clip {
  display: block;
  width: 88px;
  height: 88px;
  margin-bottom: 20px;
  border-radius: 22%;
  overflow: hidden;
}

.detail-visual .icon-clip {
  width: min(100%, 340px);
  height: auto;
  aspect-ratio: 1;
  margin-inline: auto;
  margin-bottom: 0;
}

.download-card .icon-clip,
.plan-card .icon-clip {
  width: 96px;
  height: 96px;
  margin: 0 auto 16px;
}

.product-panel .icon-clip img,
.detail-visual .icon-clip img,
.download-card .icon-clip img,
.plan-card .icon-clip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: none;
  border-radius: 0;
}

.product-panel h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
}

.product-panel p {
  margin: 0 0 18px;
  color: var(--muted);
}

.product-link {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--teal);
}

.product-pro:hover {
  border-color: #c9a227;
}

.product-pro .product-link {
  color: #a67c00;
}

/* Product detail */
.product-detail {
  background: var(--paper);
}

.product-detail-pro {
  background: #121a22;
  color: var(--white);
}

.product-detail-pro .section-label {
  color: var(--gold);
}

.product-detail-pro .section-copy,
.product-detail-pro .detail-list {
  color: rgba(255, 255, 255, 0.68);
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.detail-grid-rev {
  direction: rtl;
}

.detail-grid-rev > * {
  direction: ltr;
}

.detail-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
}

.product-detail-pro .detail-list li {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.detail-visual .icon-clip {
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.25));
}

.download-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.download-card {
  padding: 32px 28px;
  border: 1px solid var(--line);
  background: var(--white);
  text-align: center;
}

.download-card img {
  width: 96px;
  height: 96px;
  margin: 0 auto 16px;
  border-radius: 20px;
}

.download-card h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.dl-ver {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.download-card-pro {
  background: #141c24;
  border-color: rgba(240, 193, 75, 0.35);
  color: var(--white);
}

.download-card-pro .dl-ver {
  color: rgba(255, 255, 255, 0.55);
}

/* ——— Sections ——— */
section {
  padding: 96px 0;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 12px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 750;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  max-width: 16ch;
}

.section-copy {
  margin: 0;
  color: var(--muted);
  max-width: 52ch;
  font-size: 1.05rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* How it works */
.how {
  background: var(--paper);
}

.steps {
  margin-top: 48px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.step {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}

.step h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
}

.step p {
  margin: 0;
  color: var(--muted);
  max-width: 54ch;
}

/* Features */
.features-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.feature {
  background: var(--paper-2);
  padding: 32px 28px;
  transition: background 0.3s ease;
}

.feature:hover {
  background: #e8f5f3;
}

.feature h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}

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

.feature-kicker {
  margin: 0 0 8px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}

.power {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.power .features-grid {
  margin-top: 48px;
}

/* DEXes */
.dexes {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.dexes::before {
  content: "";
  position: absolute;
  inset: -20% 40% auto -10%;
  height: 55%;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.18), transparent 70%);
  pointer-events: none;
}

.dexes .section-label {
  color: var(--teal-bright);
}

.dexes .section-copy {
  color: rgba(255, 255, 255, 0.68);
}

.dex-families {
  position: relative;
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dex-family {
  background: rgba(12, 20, 28, 0.92);
  padding: 28px 24px 32px;
}

.dex-family header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 16px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(45, 212, 191, 0.2);
}

.dex-family h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.dex-family header span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(45, 212, 191, 0.75);
}

.dex-family ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.dex-family li {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  padding-left: 14px;
  position: relative;
}

.dex-family li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background: var(--teal-bright);
}

.dex-note {
  position: relative;
  margin: 28px 0 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 58ch;
}

.dex-note strong {
  color: var(--teal-bright);
  font-weight: 600;
}

/* Platforms */
.platforms {
  background: var(--paper-2);
  padding: 72px 0;
}

.platforms-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px 48px;
  align-items: center;
}

.platforms .section-title {
  max-width: 14ch;
}

.platforms-badges {
  display: grid;
  gap: 14px;
}

.os-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color 0.3s ease, transform 0.3s var(--ease);
}

.os-badge:hover {
  border-color: rgba(15, 118, 110, 0.45);
  transform: translateY(-2px);
}

.os-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--ink);
  color: var(--teal-bright);
  flex-shrink: 0;
}

.os-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.os-badge span:not(.os-mark) {
  display: block;
  margin-top: 2px;
  font-size: 0.85rem;
  color: var(--muted);
}

.fake-row i.pulse {
  animation: live-pulse 1.6s ease-in-out infinite;
  background: var(--ok) !important;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55); }
  50% { opacity: 0.85; box-shadow: 0 0 0 6px rgba(52, 211, 153, 0); }
}

/* Fees / trade */
.fees {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.fees::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% 40%;
  height: 70%;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.25), transparent 65%);
  pointer-events: none;
}

.fees .section-label {
  color: var(--teal-bright);
}

.fees .section-copy {
  color: rgba(255, 255, 255, 0.68);
}

.fee-compare {
  position: relative;
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: stretch;
}

.fee-col h3 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.fee-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fee-col li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.fee-col.highlight li {
  color: rgba(255, 255, 255, 0.92);
}

.fee-col.highlight h3 {
  color: var(--teal-bright);
}

.fee-vs {
  align-self: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
}

/* News */
.news-list {
  margin-top: 40px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.news-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.3s var(--ease);
}

.news-item:hover {
  padding-left: 8px;
}

.news-date {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  padding-top: 4px;
}

.news-item h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.news-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.news-tag {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}

.coming {
  background: var(--ink);
  color: var(--white);
  padding: 96px 0;
}

.coming .section-label {
  color: var(--teal-bright);
}

.coming .section-copy {
  color: rgba(255, 255, 255, 0.68);
}

.coming-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.coming-item {
  background: #121a22;
  padding: 28px 26px;
}

.coming-item h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--teal-bright);
}

.coming-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

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

@media (min-width: 901px) and (max-width: 1100px) {
  .coming-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Plans / comparison (nav “Download”) */
.plans {
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.08), transparent 40%),
    var(--paper);
  padding: 96px 0;
}

.plans-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  padding: 32px 28px 28px;
  background: var(--white);
  border: 1px solid var(--line);
}

.plan-card-pro {
  background: #141c24;
  border-color: rgba(240, 193, 75, 0.4);
  color: var(--white);
}

.plan-pill {
  display: inline-block;
  margin-bottom: 16px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-pill-free {
  background: rgba(15, 118, 110, 0.12);
  color: var(--teal);
}

.plan-pill-pro {
  background: rgba(240, 193, 75, 0.18);
  color: #f0c14b;
}

.product-panel .plan-pill {
  margin-bottom: 12px;
}

.plan-card h3 {
  margin: 12px 0 6px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
}

.plan-tagline {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.plan-card-pro .plan-tagline {
  color: rgba(255, 255, 255, 0.55);
}

.plan-price {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.plan-card-pro .plan-price {
  color: #f0c14b;
}

.plan-price-note {
  margin: 8px 0 22px;
  font-size: 0.85rem;
  color: var(--muted);
}

.plan-card-pro .plan-price-note {
  color: rgba(255, 255, 255, 0.45);
}

.plan-features {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.plan-card-pro .plan-features {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.plan-features li {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  padding-left: 1.4em;
  position: relative;
}

.plan-card-pro .plan-features li {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
}

.plan-features li.yes::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.plan-card-pro .plan-features li.yes::before {
  color: #f0c14b;
}

.plan-features li.no {
  color: var(--muted);
  opacity: 0.75;
}

.plan-features li.no::before {
  content: "—";
  position: absolute;
  left: 0;
}

.plan-card-pro .plan-features li.no {
  color: rgba(255, 255, 255, 0.4);
}

.plan-features li.soon {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
}

.plan-features li.soon::before {
  content: "…";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.plan-features li.soon::after {
  content: "em breve";
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.9;
}

.plan-card-pro .plan-features li.soon {
  color: rgba(255, 255, 255, 0.88);
}

.plan-card-pro .plan-features li.soon::before {
  color: #f0c14b;
}

.plan-card-pro .plan-features li.soon::after {
  color: #f0c14b;
}

.compare-wrap {
  margin-top: 48px;
}

.compare-title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.compare-table th,
.compare-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.compare-table th {
  background: var(--ink);
  color: var(--white);
  font-weight: 600;
}

.compare-table th:nth-child(2),
.compare-table th:nth-child(3),
.compare-table td:nth-child(2),
.compare-table td:nth-child(3) {
  text-align: center;
  width: 22%;
}

.compare-table tr:last-child td {
  border-bottom: 0;
}

.compare-table tbody tr:nth-child(even) {
  background: #f8fafc;
}

.plans .note {
  margin-top: 24px;
}

.plans-priority {
  margin-top: 28px;
  padding: 22px 26px;
  border: 1px solid rgba(15, 118, 110, 0.28);
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.1), rgba(255, 255, 255, 0.55));
  max-width: 68ch;
}

.plans-priority-label {
  margin: 0 0 8px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}

.plans-priority p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}

.plans-priority strong {
  font-weight: 650;
}

.plans-priority em {
  font-style: normal;
  font-weight: 650;
  color: var(--teal-deep);
}

.download-panel {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.download-meta {
  display: grid;
  gap: 14px;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.meta-row span:first-child {
  color: var(--muted);
}

.meta-row span:last-child {
  font-weight: 600;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Footer */
.footer {
  background: var(--ink-soft);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0 32px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 140px;
  height: auto;
  background: transparent;
  padding: 0;
}

.footer-brand strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

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

.footer-bottom {
  padding-top: 20px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

/* Mobile */
@media (max-width: 900px) {
  .hero-pair {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: min(88vw, 360px);
    height: 220px;
    margin: 110px auto 0;
  }

  .hero-icon {
    width: 46%;
  }

  .hero {
    align-items: start;
    flex-direction: column;
  }

  .hero-content {
    margin: 0 auto;
    padding: 28px 0 64px;
    text-align: center;
    max-width: none;
    width: min(var(--max), calc(100% - 40px));
  }

  .hero-lead {
    margin-inline: auto;
  }

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

  .fee-compare,
  .product-split,
  .plans-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .detail-grid-rev {
    direction: ltr;
  }

  .fee-vs {
    text-align: center;
  }

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

  .download-panel {
    grid-template-columns: 1fr;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }

  .lang-switch {
    margin-left: auto;
  }

  .lang-switch button {
    padding: 6px 9px;
    font-size: 0.64rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #0c141c;
    border: 1px solid rgba(45, 212, 191, 0.2);
    padding: 8px;
    color: rgba(255, 255, 255, 0.7);
  }

  .nav-links a:hover {
    color: var(--teal-bright);
  }

  .nav-links a::after {
    background: var(--teal-bright);
  }

  .nav-links .nav-cta {
    background: var(--teal-bright);
    color: var(--ink);
  }

  .nav-links .nav-cta:hover {
    background: #5eead4;
    color: var(--ink);
  }

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

  .nav-links li a,
  .nav-links .nav-cta {
    display: block;
    padding: 14px 12px;
  }

  .nav-links .nav-cta {
    text-align: center;
    margin-top: 4px;
  }

  .step {
    grid-template-columns: 56px 1fr;
    gap: 12px;
  }
}

/* ——— Showcase / UI frames ——— */
.showcase {
  background: var(--ink);
  color: var(--white);
  padding: 96px 0;
}

.showcase .section-copy { color: rgba(255,255,255,0.65); }

.shot-stage {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.shot-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.4fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.shot-one-stack,
.shot-history-stack {
  display: grid;
  gap: 18px;
}

.shot-side {
  display: grid;
  gap: 18px;
}

.shot {
  margin: 0;
  background: #070b10;
  border: 1px solid rgba(45, 212, 191, 0.2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
  transform: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.shot:hover {
  border-color: rgba(45, 212, 191, 0.45);
  box-shadow: 0 28px 56px rgba(0,0,0,0.48);
}

.shot-chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  background: #080e16;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
}

.shot-chrome span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #334155;
}

.shot-chrome span:nth-child(1) { background: #f87171; }
.shot-chrome span:nth-child(2) { background: #fbbf24; }
.shot-chrome span:nth-child(3) { background: #34d399; }

.shot-chrome em {
  margin-left: 8px;
  font-style: normal;
  letter-spacing: 0.06em;
}

.shot-media {
  background: #05080d;
  line-height: 0;
}

.shot-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  image-rendering: auto;
}

.shot-media-contain {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(34,211,238,0.08), transparent 55%),
    #05080d;
  max-height: none;
  overflow: hidden;
}

.shot-one .shot-media-contain img {
  width: 100%;
  max-width: none;
  margin-inline: auto;
}

.shot-history .shot-media img,
.shot-hero .shot-media img {
  width: 100%;
  height: auto;
}

/* Crisp HTML History preview (readable at any size) */
.shot-history-live {
  display: flex;
  flex-direction: column;
}

.hist-preview {
  padding: 18px 18px 14px;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(45,212,191,0.1), transparent 50%),
    linear-gradient(180deg, #0b121a, #070b10);
  font-family: var(--font-mono);
}

.hist-preview-title {
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.01em;
}

.hist-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.hist-kpi {
  padding: 12px 12px 10px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
}

.hist-kpi span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin-bottom: 6px;
}

.hist-kpi strong {
  font-size: 1.05rem;
  font-weight: 600;
  color: #f8fafc;
}

.hist-kpi-pnl strong { color: #34d399; }

.hist-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
}

.hist-filters span {
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 5px;
  background: rgba(0,0,0,0.25);
}

.hist-filters-token { flex: 1 1 140px; color: rgba(255,255,255,0.35); }

.hist-filters button {
  pointer-events: none;
  border: 0;
  border-radius: 5px;
  padding: 6px 14px;
  background: var(--teal-bright, #2dd4bf);
  color: #041016;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
}

.hist-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
}

.hist-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.74rem;
  white-space: nowrap;
}

.hist-table th {
  text-align: left;
  padding: 9px 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.25);
}

.hist-table td {
  padding: 8px 10px;
  color: rgba(255,255,255,0.82);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.hist-table tbody tr:nth-child(even) td {
  background: rgba(255,255,255,0.02);
}

.hist-table .tag {
  display: inline-block;
  font-style: normal;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 2px 8px;
  border-radius: 999px;
}

.hist-table .tag.buy { background: rgba(52,211,153,0.2); color: #34d399; }
.hist-table .tag.sell { background: rgba(248,113,113,0.2); color: #f87171; }
.hist-table .tag.filled { background: rgba(45,212,191,0.2); color: #2dd4bf; }
.hist-table .tag.failed { background: rgba(148,163,184,0.18); color: #94a3b8; }
.hist-table .tag.attempt { background: rgba(251,191,36,0.18); color: #fbbf24; }

.pnl-pos { color: #34d399; }
.pnl-neg { color: #f87171; }
.pnl-muted { color: rgba(255,255,255,0.35); }

@media (max-width: 900px) {
  .hist-kpis { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.shot-compact {
  max-width: 360px;
  margin-inline: auto;
}

.shot-compact.shot-wide {
  max-width: 420px;
}

.shot-compact .shot-media img {
  max-height: none;
  object-fit: contain;
  object-position: top center;
}

.shot-body {
  padding: 18px;
  min-height: 220px;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(45,212,191,0.12), transparent 50%),
    linear-gradient(180deg, #0c1520, #0a1018);
}

.shot-body.mini { min-height: 200px; }

.fake-row {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.fake-row i {
  flex: 1;
  height: 28px;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.fake-panel {
  padding: 14px;
  margin-bottom: 10px;
  border: 1px solid rgba(45,212,191,0.25);
  border-radius: 8px;
  background: rgba(45,212,191,0.06);
}

.fake-panel-dim {
  border-color: rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
}

.fake-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.fake-bars {
  display: grid;
  gap: 6px;
}

.fake-bars b {
  display: block;
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--teal-bright), transparent);
  opacity: 0.85;
}

.fake-bars b:nth-child(2) { width: 72%; opacity: 0.55; }
.fake-bars b:nth-child(3) { width: 48%; opacity: 0.35; }

.fake-log {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 6px;
  background: #05080d;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  display: grid;
  gap: 4px;
  color: rgba(255,255,255,0.5);
}

.fake-log .ok, .fake-table .ok { color: var(--ok); }
.fake-table .warn { color: var(--warn); }

.fake-pill {
  display: inline-block;
  margin-bottom: 14px;
  padding: 10px 14px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

.fake-pill.accent {
  border-color: rgba(45,212,191,0.4);
  color: var(--teal-bright);
}

.fake-table {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
}

.shot-hint {
  margin-top: 18px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

.shot-hint code {
  font-family: var(--font-mono);
  color: var(--teal-bright);
}

.detail-visual .shot {
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.35));
}

/* Waitlist */
.waitlist {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(45,212,191,0.18), transparent 60%),
    var(--ink);
  color: var(--white);
  border-top: 1px solid rgba(45,212,191,0.2);
}

.waitlist .section-title { max-width: 18ch; }
.waitlist .section-copy { color: rgba(255,255,255,0.68); }

.waitlist-inner {
  display: grid;
  gap: 28px;
  max-width: 640px;
}

.waitlist-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.waitlist-form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.35);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.waitlist-form input:focus {
  outline: 1px solid var(--teal-bright);
  border-color: var(--teal-bright);
}

.waitlist-msg {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: var(--ok);
}

.waitlist-alt {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
}

.waitlist-alt .btn-ghost {
  border-color: rgba(255,255,255,0.3);
}

/* Support / Apoie */
.support {
  padding: 88px 0 100px;
  background: #050a10;
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.support .section-copy {
  color: rgba(255,255,255,0.68);
  max-width: 52ch;
}

.support-inner {
  display: grid;
  gap: 28px;
  max-width: 720px;
}

.support-card {
  padding: 22px 22px 18px;
  border: 1px solid rgba(45, 212, 191, 0.28);
  border-radius: 10px;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(45,212,191,0.1), transparent 55%),
    rgba(12, 20, 28, 0.9);
}

.support-kicker {
  margin: 0 0 12px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.support-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.support-addr {
  flex: 1 1 240px;
  margin: 0;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.35);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.88);
  word-break: break-all;
  line-height: 1.4;
}

.support-hint {
  margin: 12px 0 0;
  font-size: 0.85rem;
  color: var(--ok);
}

.plans { background: var(--paper); }
.plans .section-label { color: var(--teal); }

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

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

@media (max-width: 900px) {
  .shot-stage { display: flex; flex-direction: column; }
  .shot-row { grid-template-columns: 1fr; }
  .waitlist-form { grid-template-columns: 1fr; }
  .hero-metrics { gap: 18px; flex-wrap: wrap; }
  .nav { inset: 0 0 auto; }
  .dex-families { grid-template-columns: 1fr; }
  .platforms-inner { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
}

/* ——— About page ——— */
body[data-page="about"] {
  background: var(--ink);
  color: var(--white);
}

body[data-page="about"] .nav {
  inset: 28px 0 auto;
}

.about-page {
  padding-top: 120px;
}

.about-hero {
  padding: 48px 0 32px;
  background:
    radial-gradient(ellipse 70% 60% at 15% 0%, rgba(45, 212, 191, 0.14), transparent 55%),
    linear-gradient(180deg, #0a121a, var(--ink));
}

.about-hero-inner {
  max-width: 720px;
}

.about-title {
  margin: 8px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.about-lead {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.about-timeline-section {
  padding: 40px 0 72px;
}

.story-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 720px;
}

.story-timeline > li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 18px;
  position: relative;
}

.story-timeline > li:not(:last-child) .tl-rail::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 28px;
  bottom: -8px;
  width: 1px;
  background: linear-gradient(180deg, rgba(45, 212, 191, 0.55), rgba(255, 255, 255, 0.08));
}

.tl-rail {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.tl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.18);
  flex-shrink: 0;
}

.tl-next .tl-dot {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(225, 167, 85, 0.2);
}

.tl-body {
  padding-bottom: 36px;
}

.tl-year {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--teal-bright);
  margin-bottom: 6px;
}

.tl-next .tl-year {
  color: var(--gold);
}

.tl-body h2 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.tl-body > p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
  max-width: 52ch;
}

.tl-body details {
  margin-top: 4px;
}

.tl-body summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(45, 212, 191, 0.85);
  user-select: none;
}

.tl-body summary::-webkit-details-marker { display: none; }

.tl-body summary::before {
  content: "+ ";
  color: var(--teal-bright);
}

.tl-body details[open] summary::before {
  content: "− ";
}

.tl-body details p {
  margin: 12px 0 0;
  padding: 14px 16px;
  border-left: 2px solid rgba(45, 212, 191, 0.35);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.65;
}

.about-narrative {
  padding: 24px 0 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.about-narrative-grid {
  display: grid;
  gap: 28px;
}

.about-block {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.about-block:last-child {
  border-bottom: 0;
}

.about-block h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.about-block p {
  margin: 0 0 14px;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  line-height: 1.7;
}

.about-block p:last-child {
  margin-bottom: 0;
}

.about-close {
  padding: 72px 0 96px;
  background:
    radial-gradient(ellipse 50% 70% at 50% 100%, rgba(45, 212, 191, 0.12), transparent 60%),
    #050a10;
  border-top: 1px solid rgba(45, 212, 191, 0.2);
  text-align: center;
}

.about-brand-line {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.about-tagline {
  margin: 0 auto 28px;
  max-width: 28ch;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.55;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.nav-links a.is-current {
  color: var(--teal-bright);
}

@media (max-width: 720px) {
  .about-page { padding-top: 96px; }
  .tl-body h2 { font-size: 1.2rem; }
}

