:root {
  --bg: #07080f;
  --surface: #12141f;
  --text: #f4f6ff;
  --text-soft: #c7ccde;
  --text-muted: #8a90a6;
  --text-faint: #7b82a6;
  --line: #14162a;
  --line-strong: #2a2f44;
  --purple: #7c3aff;
  --purple-bright: #8d55ff;
  --lime: #c6ff00;
  --lime-bright: #d6ff4d;
  --block-base: #3a2c6b;
  --block-build: #5433b8;
  --font-display: 'Archivo', sans-serif;
  --font-body: 'Gabarito', system-ui, sans-serif;
  --font-mono: 'Space Mono', monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
}

img {
  display: block;
}

a {
  text-decoration: none;
}

a:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

@keyframes bar-grow {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(7, 8, 15, 0.94);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: flex-end;
  gap: 9px;
  color: var(--text);
}

.logo-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  transform: skewX(-12deg);
  margin-bottom: 2px;
}

.logo-bars i {
  width: 5px;
  border-radius: 2px;
}

.logo-bars i:nth-child(1) {
  height: 11px;
  background: var(--block-base);
}

.logo-bars i:nth-child(2) {
  height: 17px;
  background: var(--block-build);
}

.logo-bars i:nth-child(3) {
  height: 24px;
  background: var(--purple);
}

.logo-bars i:nth-child(4) {
  height: 31px;
  background: var(--lime);
}

.logo-word {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 27px;
  line-height: 0.8;
  letter-spacing: -0.04em;
}

.logo-small .logo-bars i {
  width: 4px;
  border-radius: 1.5px;
}

.logo-small .logo-bars i:nth-child(1) {
  height: 8px;
}

.logo-small .logo-bars i:nth-child(2) {
  height: 12px;
}

.logo-small .logo-bars i:nth-child(3) {
  height: 17px;
}

.logo-small .logo-bars i:nth-child(4) {
  height: 22px;
}

.logo-small .logo-word {
  font-size: 19px;
}

.btn {
  display: inline-block;
  transform: skewX(-12deg);
  border-radius: 4px;
  font-weight: 600;
}

.btn > span {
  display: inline-block;
  transform: skewX(12deg);
}

.btn-nav {
  font-size: 14px;
  padding: 10px 22px;
  background: var(--purple);
  color: #fff;
}

.btn-nav:hover {
  background: var(--purple-bright);
}

.btn-primary {
  padding: 17px 36px;
  background: var(--purple);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}

.btn-primary:hover {
  background: var(--purple-bright);
}

.btn-ghost {
  padding: 17px 36px;
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-size: 16px;
}

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

.btn-lime {
  padding: 18px 40px;
  background: var(--lime);
  color: var(--bg);
  font-weight: 700;
  font-size: 16px;
}

.btn-lime:hover {
  background: var(--lime-bright);
}

.cta-final .btn-ghost:hover {
  border-color: var(--lime);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
}

.hero-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 150px 32px 0;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.kicker {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.kicker-lime {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--lime);
}

h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  max-width: 14ch;
  text-wrap: balance;
}

.hero-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-sub {
  margin: 0;
  color: var(--text-soft);
  font-size: 19px;
  line-height: 1.6;
  max-width: 44ch;
  text-wrap: pretty;
}

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

.signature {
  margin-top: 44px;
  border-top: 1px solid var(--line);
  padding: 36px 0 40px;
}

.signature-bars {
  display: flex;
  align-items: flex-end;
  gap: clamp(8px, 1.6vw, 22px);
  transform: skewX(-12deg);
  height: 184px;
}

.week {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  height: 100%;
  min-width: 0;
}

.week i {
  display: block;
  width: 100%;
  max-width: 34px;
  border-radius: 4px;
  transform-origin: bottom;
  animation: bar-grow 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.week span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  transform: skewX(12deg);
}

.week:nth-child(1) i {
  height: 83px;
  background: var(--block-base);
}

.week:nth-child(2) i {
  height: 94px;
  background: var(--block-base);
  animation-delay: 0.09s;
}

.week:nth-child(3) i {
  height: 104px;
  background: var(--block-base);
  animation-delay: 0.18s;
}

.week:nth-child(4) i {
  height: 88px;
  background: var(--block-base);
  animation-delay: 0.27s;
}

.week:nth-child(5) i {
  height: 114px;
  background: var(--block-build);
  animation-delay: 0.36s;
}

.week:nth-child(6) i {
  height: 125px;
  background: var(--block-build);
  animation-delay: 0.45s;
}

.week:nth-child(7) i {
  height: 99px;
  background: var(--block-build);
  animation-delay: 0.54s;
}

.week:nth-child(8) i {
  height: 135px;
  background: var(--block-build);
  animation-delay: 0.63s;
}

.week:nth-child(9) i {
  height: 146px;
  background: var(--purple);
  animation-delay: 0.72s;
}

.week:nth-child(10) i {
  height: 120px;
  background: var(--purple);
  animation-delay: 0.81s;
}

.week:nth-child(11) i {
  height: 88px;
  background: var(--purple);
  animation-delay: 0.9s;
}

.week:nth-child(12) i {
  height: 55px;
  background: var(--lime);
  animation-delay: 0.99s;
}

.week:nth-child(12) span {
  color: var(--lime);
}

#features {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 32px 0;
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.feature:nth-of-type(even) {
  flex-direction: row-reverse;
}

.feature-copy {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-tag {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.feature-num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  color: var(--purple);
}

.feature-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.feature h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 38px;
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.feature-copy > p:last-child {
  margin: 0;
  color: var(--text-soft);
  font-size: 16.5px;
  line-height: 1.65;
  max-width: 44ch;
  text-wrap: pretty;
}

.phone {
  flex: 0 0 auto;
  width: min(320px, 82vw);
  aspect-ratio: 320 / 600;
  background: #0b0d17;
  border-radius: 40px;
  padding: 9px;
  border: 2px solid var(--line);
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.cta-final {
  display: flex;
  justify-content: center;
}

.cta-inner {
  width: 100%;
  max-width: 1180px;
  padding: 180px 32px 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.cta-final h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -0.03em;
  max-width: 18ch;
  text-wrap: balance;
}

.cta-final .cta-row {
  justify-content: center;
  margin-top: 10px;
}

.footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 28px;
  font-size: 13.5px;
}

.footer-links a {
  color: var(--text-muted);
}

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

.footer-copy {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.12em;
}

@media (max-width: 700px) {
  .nav-inner {
    padding: 14px 20px;
  }

  .hero-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cta-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  #features {
    padding-left: 20px;
    padding-right: 20px;
  }

  .feature {
    gap: 36px;
  }

  .signature-bars {
    height: 160px;
  }

  .signature {
    overflow: hidden;
  }

  .feature-copy {
    min-width: 0;
  }

  .week span {
    display: none;
  }

  .week:nth-child(12) span {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .week i {
    animation: none;
  }
}

.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 148px 32px 96px;
}

.legal-head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-strong);
}

.legal h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.035em;
}

.legal-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.legal-lead {
  margin: 0;
  color: var(--text-soft);
  font-size: 19px;
  line-height: 1.6;
  max-width: 52ch;
  text-wrap: pretty;
}

.legal-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.legal-toc a {
  color: var(--text-muted);
}

.legal-toc a:hover {
  color: var(--lime);
}

.legal section {
  padding: 40px 0 8px;
}

.legal h2 {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.02em;
  scroll-margin-top: 96px;
}

.legal h2 .num {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--lime);
}

.legal h3 {
  margin: 26px 0 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
}

.legal p,
.legal li {
  color: var(--text-soft);
  font-size: 16.5px;
  line-height: 1.7;
  text-wrap: pretty;
}

.legal p {
  margin: 0 0 14px;
}

.legal ul {
  margin: 0 0 16px;
  padding-left: 22px;
}

.legal li {
  margin-bottom: 6px;
}

.legal li::marker {
  color: var(--purple-bright);
}

.legal a {
  color: var(--text);
  border-bottom: 1px solid var(--line-strong);
}

.legal a:hover {
  border-bottom-color: var(--lime);
}

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

.legal-note {
  margin: 20px 0;
  padding: 16px 20px;
  border-left: 3px solid var(--lime);
  background: var(--surface);
  color: var(--text-soft);
  font-size: 15.5px;
  line-height: 1.6;
}

.legal-table-wrap {
  --table-width: min(1100px, calc(100vw - 64px));
  width: var(--table-width);
  margin: 8px 0 20px calc((100% - var(--table-width)) / 2);
  overflow-x: auto;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
}

.legal table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 14.5px;
}

.legal th {
  text-align: left;
  padding: 12px 14px;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--surface);
  border-bottom: 1px solid var(--line-strong);
}

.legal td {
  vertical-align: top;
  padding: 12px 14px;
  color: var(--text-soft);
  line-height: 1.5;
  border-bottom: 1px solid var(--line);
}

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

.legal td:first-child {
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
}

.legal-status {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 12px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-status.ativo {
  color: var(--lime);
  border: 1px solid rgba(198, 255, 0, 0.35);
}

.legal-status.opcional {
  color: var(--text-muted);
  border: 1px solid var(--line-strong);
}

.legal-footer-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line-strong);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
}

@media (max-width: 700px) {
  .legal {
    padding: 120px 20px 72px;
  }

  .legal-table-wrap {
    --table-width: 100%;
  }
}
