:root {
  --bg: #09090b;
  --bg-elev: #121216;
  --bg-soft: #1a1a20;
  --paper: #f6f4f1;
  --muted: rgba(246, 244, 241, 0.7);
  --faint: rgba(246, 244, 241, 0.45);
  --coral: #ff5c5c;
  --coral-2: #ff8a6a;
  --coral-deep: #e43d3d;
  --gold: #d9c98a;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 140, 110, 0.35);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --max: 1140px;
  --header-h: 4.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--paper);
  font-family: var(--font-body);
  background:
    radial-gradient(900px 500px at 8% -5%, rgba(255, 92, 92, 0.14), transparent 55%),
    radial-gradient(700px 420px at 92% 8%, rgba(217, 201, 138, 0.08), transparent 50%),
    var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--coral-2);
  text-underline-offset: 0.18em;
}

a:hover {
  color: #fff;
}

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

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  background: rgba(9, 9, 11, 0.92);
  backdrop-filter: blur(12px) saturate(1.1);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(9, 9, 11, 0.97);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(var(--max), calc(100% - 2rem));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  background: transparent !important;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.brand-text small {
  color: var(--faint);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.15rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: #fff;
}

.nav-cta {
  display: inline-flex !important;
  align-items: center;
  min-height: 2.35rem;
  padding: 0 0.95rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--coral), var(--coral-deep));
  color: #fff !important;
  font-weight: 600 !important;
  box-shadow: 0 8px 24px rgba(255, 92, 92, 0.28);
}

.nav-cta:hover {
  filter: brightness(1.06);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.03);
  color: var(--paper);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0.28rem auto;
  background: currentColor;
  border-radius: 2px;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.1rem;
  padding: 0.8rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s ease, border-color 0.25s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, #ff7a62 0%, var(--coral) 42%, var(--coral-deep) 100%);
  color: #fff;
  box-shadow:
    0 14px 36px rgba(255, 92, 92, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-primary:hover {
  color: #fff;
  box-shadow:
    0 18px 44px rgba(255, 92, 92, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--paper);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  border-color: var(--line-strong);
  color: #fff;
}

.btn-soft {
  min-height: 3.35rem;
  padding-inline: 1.7rem;
  font-size: 1.02rem;
}

.btn-icon {
  width: 1.15rem;
  height: 1.15rem;
  opacity: 0.95;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.06);
  animation: kenburns 22s var(--ease) infinite alternate;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(9, 9, 11, 0.88) 0%, rgba(9, 9, 11, 0.55) 48%, rgba(9, 9, 11, 0.72) 100%),
    linear-gradient(180deg, rgba(9, 9, 11, 0.35) 0%, rgba(9, 9, 11, 0.15) 40%, rgba(9, 9, 11, 0.92) 100%),
    radial-gradient(ellipse 50% 45% at 25% 60%, rgba(255, 92, 92, 0.18), transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 5rem;
  max-width: 38rem;
}

.hero-logo {
  width: min(132px, 32vw);
  height: auto;
  margin-bottom: 1.25rem;
  background: transparent !important;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.35));
  animation: floaty 6s ease-in-out infinite;
}

/* Visível o bastante para o Google ler nome + finalidade; discreto no layout */
.sr-purpose {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0.75rem auto 0;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.9rem;
}

.sr-purpose p {
  margin: 0.25rem 0;
}

.app-name-label {
  margin: 0 0 0.35rem;
  color: var(--coral-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 4.6rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.02;
}

.purpose-panel {
  padding: clamp(1.5rem, 3.5vw, 2.4rem);
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 140, 110, 0.3);
  background:
    radial-gradient(500px 240px at 0% 0%, rgba(255, 92, 92, 0.16), transparent 60%),
    linear-gradient(160deg, #15151c, #0e0e12);
  box-shadow: var(--shadow);
}

.purpose-panel .lead {
  max-width: 52rem;
}

.purpose-en {
  margin: 1.5rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 52rem;
}

.hero .lede {
  margin: 0 0 1.75rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  max-width: 32rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-note {
  margin: 1.1rem 0 0;
  color: var(--faint);
  font-size: 0.88rem;
}

/* —— Sections —— */
.section {
  padding: 5.25rem 0;
  border-top: 1px solid var(--line);
}

.kicker {
  margin: 0 0 0.55rem;
  color: var(--coral-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section h2 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 2.65rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.lead {
  margin: 0 0 2.2rem;
  color: var(--muted);
  max-width: 38rem;
  font-size: 1.06rem;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.75rem;
  align-items: center;
}

.split-media {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  min-height: 300px;
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.offer-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.offer-grid li {
  padding: 1.2rem 1.15rem;
  border-radius: 1.1rem;
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(255, 92, 92, 0.07), rgba(255, 255, 255, 0.02));
  transition: border-color 0.25s ease, transform 0.25s var(--ease);
}

.offer-grid li:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}

.offer-grid strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: var(--gold);
}

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

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

.role {
  padding: 1.35rem 1.2rem 1.5rem;
  border-radius: 1.2rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.25s var(--ease), border-color 0.25s ease, background 0.25s ease;
}

.role:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: rgba(255, 92, 92, 0.06);
}

.role .mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 0.9rem;
  border-radius: 0.7rem;
  background: rgba(255, 92, 92, 0.12);
  color: var(--coral-2);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
}

.role h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

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

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  counter-reset: step;
}

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

.step {
  position: relative;
  padding: 1.5rem 1.3rem 1.6rem;
  border-radius: 1.25rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--coral), var(--coral-deep));
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
}

.step h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.18rem;
}

.step p {
  margin: 0;
  color: var(--muted);
}

/* Download panel */
.download-panel {
  position: relative;
  overflow: hidden;
  border-radius: 1.75rem;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border: 1px solid rgba(255, 140, 110, 0.28);
  background:
    radial-gradient(600px 280px at 10% 0%, rgba(255, 92, 92, 0.22), transparent 60%),
    radial-gradient(500px 260px at 100% 100%, rgba(217, 201, 138, 0.12), transparent 55%),
    linear-gradient(155deg, #15151c 0%, #0e0e12 100%);
  box-shadow: var(--shadow);
}

.download-panel::before {
  content: "";
  position: absolute;
  inset: -40% auto auto 55%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 92, 92, 0.25), transparent 70%);
  filter: blur(8px);
  animation: glowOrb 7s ease-in-out infinite alternate;
  pointer-events: none;
}

.download-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem 2rem;
  align-items: center;
}

.download-logo {
  width: min(150px, 34vw);
  background: transparent !important;
  filter: drop-shadow(0 16px 40px rgba(255, 92, 92, 0.28));
}

.download-panel h2 {
  margin: 0 0 0.55rem;
}

.download-panel .lead {
  margin-bottom: 1.35rem;
}

.download-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.15rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 1.85rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.8rem;
}

.page-hero {
  padding: 3.5rem 0 2rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 55% 80% at 15% 0%, rgba(255, 92, 92, 0.14), transparent 60%),
    linear-gradient(180deg, #101014 0%, transparent 100%);
}

.page-hero h1 {
  margin: 0.35rem 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 600;
}

.page-hero p {
  margin: 0;
  color: var(--muted);
  max-width: 40rem;
  font-size: 1.05rem;
}

.legal {
  padding: 2rem 0 4.5rem;
}

.legal article {
  max-width: 46rem;
}

.legal h2 {
  margin: 2rem 0 0.6rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--coral-2);
}

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

.legal code {
  color: var(--gold);
  font-size: 0.86em;
}

/* —— Footer —— */
.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #0c0c10 0%, #08080a 100%);
  padding: 3.25rem 0 1.75rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem 1.5rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 16rem;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: transparent !important;
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-col h3 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold);
}

.footer-col a {
  display: block;
  width: fit-content;
  margin-bottom: 0.55rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.35rem;
  color: var(--faint);
  font-size: 0.85rem;
}

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

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes kenburns {
  from {
    transform: scale(1.06) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.12) translate3d(-1.5%, 1%, 0);
  }
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes glowOrb {
  from {
    transform: translate(0, 0);
    opacity: 0.7;
  }
  to {
    transform: translate(-30px, 20px);
    opacity: 1;
  }
}

@media (max-width: 960px) {
  .split,
  .download-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .roles,
  .steps,
  .steps.steps-4,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  body.nav-open .nav {
    display: flex;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1rem 1rem;
    background: rgba(9, 9, 11, 0.96);
    border-bottom: 1px solid var(--line);
  }

  body.nav-open .nav a {
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid var(--line);
  }

  body.nav-open .nav-cta {
    margin-top: 0.5rem;
    justify-content: center;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

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

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

  .brand-text small {
    display: none;
  }
}

/* —— Pain / Why / Flow / Compare —— */
.pain-grid,
.why-grid,
.feature-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.pain-card,
.why-card,
.feature-card {
  padding: 1.35rem 1.25rem 1.5rem;
  border-radius: 1.2rem;
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(255, 92, 92, 0.06), rgba(255, 255, 255, 0.02));
  transition: transform 0.3s var(--ease), border-color 0.25s ease, box-shadow 0.3s ease;
}

.pain-card:hover,
.why-card:hover,
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.pain-card .ico,
.why-card .ico,
.feature-card .ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 0.85rem;
  border-radius: 0.75rem;
  background: rgba(255, 92, 92, 0.12);
  color: var(--coral-2);
  font-size: 1.15rem;
}

.pain-card h3,
.why-card h3,
.feature-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.18rem;
}

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

.flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  position: relative;
}

.flow-card {
  position: relative;
  padding: 1.4rem 1.15rem 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid var(--line);
  background: var(--bg-elev);
  text-align: center;
}

.flow-card .mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--coral), var(--coral-deep));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

.flow-card h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.flow-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.flow-card .arrow {
  display: none;
}

.compare-wrap {
  overflow-x: auto;
  border-radius: 1.25rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
}

.compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.compare-table th,
.compare-table td {
  padding: 0.95rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.compare-table thead th {
  background: rgba(255, 92, 92, 0.08);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--paper);
  white-space: nowrap;
}

.compare-table thead th.col-us {
  color: var(--gold);
}

.compare-table tbody tr.is-hot,
.compare-table tbody tr:hover {
  background: rgba(255, 92, 92, 0.05);
}

.compare-table td.yes {
  color: #8fd4a0;
  font-weight: 600;
}

.compare-table td.no {
  color: var(--faint);
}

.compare-note {
  margin: 1rem 0 0;
  color: var(--faint);
  font-size: 0.88rem;
  max-width: 48rem;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.trust-item {
  padding: 1.2rem;
  border-radius: 1.1rem;
  border: 1px solid var(--line);
  background: rgba(217, 201, 138, 0.04);
  text-align: center;
}

.trust-item strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.05rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.req-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.req-list .tick {
  flex: 0 0 auto;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(143, 212, 160, 0.15);
  color: #8fd4a0;
  font-weight: 700;
  font-size: 0.85rem;
}

.req-list strong {
  display: block;
  margin-bottom: 0.15rem;
}

.req-list span {
  color: var(--muted);
  font-size: 0.92rem;
}

.download-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.dl-card {
  padding: 1.5rem 1.35rem;
  border-radius: 1.35rem;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #16161d, #0f0f14);
}

.dl-card.is-primary {
  border-color: rgba(255, 140, 110, 0.4);
  box-shadow: 0 16px 48px rgba(255, 92, 92, 0.18);
}

.dl-card h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.dl-card .meta {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.version-list li {
  padding: 1.15rem 1.2rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.version-list strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: var(--font-display);
  color: var(--gold);
}

.version-list p {
  margin: 0;
  color: var(--muted);
}

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 1.75rem;
  padding: clamp(2rem, 5vw, 3rem);
  border: 1px solid rgba(255, 140, 110, 0.3);
  background:
    radial-gradient(500px 240px at 0% 0%, rgba(255, 92, 92, 0.2), transparent 60%),
    linear-gradient(155deg, #17171f, #0d0d11);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  margin: 0 0 0.65rem;
}

.anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0 0;
}

.anchor-nav a {
  display: inline-flex;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
}

.anchor-nav a:hover {
  color: #fff;
  border-color: var(--line-strong);
}

.section-tight {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

@media (max-width: 960px) {
  .pain-grid,
  .why-grid,
  .feature-grid,
  .flow,
  .trust-bar,
  .download-cards {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .pain-grid,
  .why-grid,
  .feature-grid,
  .trust-bar {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

