:root {
  --ink: #e8f1f4;
  --muted: #8aa0ad;
  --accent: #12d18a;
  --accent-2: #1a6dff;
  --accent-strong: #0fb87a;
  --accent-soft: rgba(18, 209, 138, 0.14);
  --line: rgba(62, 240, 224, 0.16);
  --surface: #0c1828;
  --canvas: #07111f;
  --shell: #0a1624;
  --shell-text: #e8f1f4;
  --shell-muted: #8aa0ad;
  --danger: #e05b5b;
  --ok: #12d18a;
  --radius: 14px;
  --font: "Outfit", "Segoe UI", sans-serif;
  --display: "Rajdhani", "Outfit", sans-serif;
  --brand: "Rajdhani", "Outfit", sans-serif;
  --max: 1120px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --grad: linear-gradient(135deg, #12d18a 0%, #1ad4c8 42%, #1a6dff 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background-color: var(--canvas);
  background-image:
    radial-gradient(ellipse 80% 50% at 0% 0%, rgba(18, 209, 138, 0.16), transparent 55%),
    radial-gradient(ellipse 70% 45% at 100% 10%, rgba(26, 109, 255, 0.18), transparent 50%),
    linear-gradient(rgba(18, 209, 138, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 209, 138, 0.07) 1px, transparent 1px);
  background-size: auto, auto, 28px 28px, 28px 28px;
  background-position: 0 0, 0 0, 0 0, 0 0;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

a {
  color: var(--accent);
}

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

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
}

.skip:focus {
  left: 12px;
  z-index: 20;
  background: var(--surface);
  padding: 8px 12px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(7, 17, 31, 0.88);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #fff;
  line-height: 1.05;
}

.brand-logo {
  height: 72px;
  width: 72px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.brand-stack {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-company {
  font-family: var(--brand);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #fff;
}

.brand-maker {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

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

.nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
}

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

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  border-radius: 10px;
  padding: 8px 10px;
  font: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 22px;
  font: inherit;
  font-weight: 650;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--grad);
  color: #041018;
}

.btn-primary:hover {
  filter: brightness(1.08);
  color: #041018;
}

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

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-light {
  background: #fff;
  color: #07111f;
}

.hero {
  padding: 72px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.kicker {
  color: var(--accent);
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 14px;
}

h1,
h2,
.display {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: #fff;
}

h1 {
  font-size: clamp(40px, 5.4vw, 64px);
  margin: 0 0 18px;
}

h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin: 0 0 14px;
}

.lede {
  font-size: 19px;
  color: var(--muted);
  max-width: 38rem;
  margin: 0 0 28px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.fineprint {
  color: var(--muted);
  font-size: 14px;
  max-width: 34rem;
}

.product-frame {
  background: linear-gradient(180deg, rgba(18, 209, 138, 0.08), rgba(26, 109, 255, 0.08));
  border: 1px solid var(--line);
  color: var(--shell-text);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.product-frame header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  color: var(--shell-muted);
  font-size: 13px;
}

.dots {
  display: flex;
  gap: 6px;
}

.dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2a3d52;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0.08em;
}

.product-card .tag {
  align-self: flex-start;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.product-card .tag.soon {
  color: var(--muted);
}

.product-card p {
  margin: 0;
  color: var(--muted);
  flex: 1;
}

.stat {
  background: rgba(7, 17, 31, 0.72);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
}

.stat b {
  display: block;
  font-size: 28px;
  margin-top: 6px;
  font-family: var(--display);
}

.stat small,
.caption {
  color: var(--shell-muted);
}

.bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 92px;
  margin-top: 16px;
}

.bars i {
  display: block;
  width: 18px;
  border-radius: 6px 6px 0 0;
  background: var(--grad);
}

.note {
  font-size: 12px;
  color: var(--shell-muted);
  margin: 12px 0 0;
}

.identity-frame {
  margin-top: 14px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.identity-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

section {
  padding: 72px 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 36px;
}

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

.pain-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.pain-list li {
  list-style: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  font-size: 22px;
  font-family: var(--display);
  font-weight: 650;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #fff;
}

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

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0;
  margin: 0;
}

.steps li {
  list-style: none;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--line);
}

.steps h3 {
  color: #fff;
}

.steps span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 12px;
}

.final-cta {
  background:
    radial-gradient(ellipse 80% 80% at 0% 0%, rgba(18, 209, 138, 0.18), transparent 50%),
    radial-gradient(ellipse 80% 80% at 100% 100%, rgba(26, 109, 255, 0.22), transparent 50%),
    #081320;
  color: var(--shell-text);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
}

.final-cta p {
  color: var(--shell-muted);
  max-width: 36rem;
  margin: 0 auto 24px;
}

.final-cta h2 {
  color: #fff;
}

.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 10px;
}

.faq summary {
  cursor: pointer;
  font-weight: 650;
}

.faq p {
  color: var(--muted);
  margin: 10px 0 0;
}

.page-hero {
  padding: 48px 0 12px;
}

.prose {
  max-width: 46rem;
}

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

.legal-banner {
  background: rgba(255, 196, 90, 0.12);
  border: 1px solid rgba(255, 196, 90, 0.35);
  border-radius: 12px;
  padding: 14px 16px;
  color: #f3d59a;
  margin: 18px 0 28px;
}

form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  display: grid;
  gap: 14px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
}

input {
  font: inherit;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #07111f;
  color: var(--ink);
}

input:focus {
  outline: 2px solid rgba(18, 209, 138, 0.35);
  border-color: var(--accent);
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.alert {
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
}

.alert[hidden] {
  display: none;
}

.acesso-criado {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.acesso-criado[hidden] {
  display: none;
}

.acesso-criado h2 {
  margin: 4px 0 10px;
}

.acesso-criado dl {
  margin: 16px 0;
}

.acesso-criado dt {
  color: var(--muted);
  font-size: 13px;
}

.acesso-criado dd {
  margin: 0 0 12px;
  font-family: ui-monospace, monospace;
  font-size: 15px;
  word-break: break-all;
}

.acesso-acoes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trial-modal[hidden] {
  display: none;
}

.trial-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(4, 10, 18, 0.72);
  backdrop-filter: blur(8px);
}

.trial-modal-card {
  width: min(440px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 26px 24px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.trial-modal-card h2 {
  margin: 4px 0 10px;
  font-size: 1.45rem;
}

.trial-modal-card dl {
  margin: 16px 0;
}

.trial-modal-card dt {
  color: var(--muted);
  font-size: 13px;
}

.trial-modal-card dd {
  margin: 0 0 12px;
  font-family: ui-monospace, monospace;
  font-size: 15px;
  word-break: break-all;
}

.trial-steps {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trial-steps li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 15px;
}

.trial-steps li::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-top: 4px;
  flex: 0 0 14px;
  border-radius: 50%;
  border: 2px solid rgba(138, 160, 173, 0.45);
}

.trial-steps li.is-doing {
  color: var(--ink);
  font-weight: 600;
}

.trial-steps li.is-doing::before {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
  animation: trial-pulse 1s ease-in-out infinite;
}

.trial-steps li.is-done {
  color: var(--ok);
}

.trial-steps li.is-done::before {
  border-color: var(--ok);
  background: var(--ok);
}

@keyframes trial-pulse {
  50% { box-shadow: 0 0 0 8px transparent; }
}

.footer {
  padding: 36px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

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

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

.footer-brand img {
  height: 96px;
  width: 96px;
  object-fit: contain;
  display: block;
}

.footer-brand strong {
  display: block;
  color: #fff;
  font-family: var(--brand);
  letter-spacing: 0.12em;
  font-size: 16px;
}

.footer-brand span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.footer a {
  color: var(--muted);
  text-decoration: none;
  margin-right: 14px;
}

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

.muted {
  color: var(--muted);
}

.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}

.chip {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
}

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .features,
  .cards,
  .product-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #07111f;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px 20px;
    gap: 14px;
  }

  .nav.open {
    display: flex;
  }

  .hero,
  section {
    padding: 48px 0;
  }

  .final-cta {
    padding: 32px 22px;
  }

  .pain-list li {
    font-size: 20px;
  }
}

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

.modules legend {
  font-weight: 650;
  margin-bottom: 8px;
  color: #fff;
}

.module {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 12px;
  align-items: start;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #07111f;
  cursor: pointer;
}

.module input {
  margin-top: 4px;
}

.module strong {
  display: block;
  color: #fff;
}

.module span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.included {
  border-color: rgba(18, 209, 138, 0.35);
  cursor: default;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 8px;
  font-size: 15px;
}

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

.preview-card {
  background: #07111f;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
}

.preview-card strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
}

.preview-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.preview-card code {
  color: var(--accent);
  font-size: 13px;
}

.hint {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

.conta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 32px;
}

.conta-modulos {
  margin: 0;
  padding-left: 18px;
}

.conta-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 12px;
}

.conta-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.conta-chat {
  margin-top: 36px;
}

.chat-lista {
  max-height: 280px;
  overflow: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 16px;
  margin-bottom: 14px;
}

.chat-msg {
  margin: 0 0 10px;
}

.chat-teche {
  color: var(--accent);
}

code.pix {
  display: block;
  word-break: break-all;
  font-size: 12px;
}

[data-situacao][data-state="BLOQUEADO"] {
  color: var(--danger);
}

[data-situacao][data-state="CARENCIA"] {
  color: #e0b25b;
}

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