.content_wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

section {
  scroll-margin-top: 24px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.brand_lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.brand_lockup svg {
  color: var(--violet);
  transition: transform 0.3s;
}

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

.brand_lockup b {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.navbar_links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.navbar_links a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--dim);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.15s;
}

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

/* min-width:0 — sem isso o conteúdo mínimo da nav alarga a dobra além da tela no mobile */
.fold_wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}

.manifesto {
  margin-block: auto;
  padding: 48px 0;
}

.manifesto_title {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.032em;
  line-height: 0.98;
  margin: 0;
  font-size: clamp(48px, 9.8vw, 112px);
  text-transform: uppercase;
}

.manifesto_title span {
  display: block;
}

.line_solid {
  color: var(--ink);
}

.line_outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--faint);
}

.line_gradient {
  background: linear-gradient(
    95deg,
    var(--violet) 0%,
    var(--accent) 45%,
    var(--res) 80%,
    var(--violet) 120%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 9s ease-in-out infinite alternate;
}

@keyframes shimmer {
  from {
    background-position: 0% 0;
  }
  to {
    background-position: 100% 0;
  }
}

.manifesto_footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.manifesto_footer p {
  margin: 0;
  max-width: 44ch;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--dim);
}

.manifesto_footer p b {
  color: var(--ink);
  font-weight: 650;
}

.action_row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.manifesto_title span,
.manifesto_footer {
  opacity: 0;
  transform: translateY(26px);
  animation: rise 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.line_solid {
  animation-delay: 0.05s;
}

.line_outline {
  animation-delay: 0.17s;
}

.line_gradient {
  animation:
    rise 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) 0.29s forwards,
    shimmer 9s ease-in-out 1.1s infinite alternate;
}

.manifesto_footer {
  animation-delay: 0.45s;
}

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

.ticker {
  border-block: 1px solid var(--line);
  background: var(--bg2);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.ticker_rail {
  display: flex;
  width: max-content;
  animation: roll 32s linear infinite;
}

.ticker:hover .ticker_rail {
  animation-play-state: paused;
}

@keyframes roll {
  to {
    transform: translateX(-50%);
  }
}

/* min-width:100vw em cada conjunto — a faixa nunca fica com vão e o loop de -50% segue exato */
.ticker_set {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-width: 100vw;
  padding: 13px 0;
}

.ticker_set span {
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
  padding: 0 26px;
}

.ticker_set b {
  color: var(--violet);
  font-weight: 400;
  padding-right: 26px;
}

.section_title {
  font-family: var(--display);
  font-size: clamp(30px, 5.4vw, 62px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.section_title em {
  font-style: normal;
  color: var(--violet);
}

.section_lede {
  margin: 0 0 34px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--dim);
  max-width: 54ch;
}

.features_index {
  padding: 80px 0 30px;
}

.feature_row {
  display: grid;
  grid-template-columns: 110px 1fr 340px;
  gap: 26px;
  align-items: baseline;
  padding: 32px 44px 32px 6px;
  border-top: 1px solid var(--line);
  position: relative;
  transition:
    background 0.2s,
    padding-left 0.2s;
}

.feature_row:last-of-type {
  border-bottom: 1px solid var(--line);
}

.feature_row:hover {
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--feature_tint, var(--accent)) 7%, transparent),
    transparent 70%
  );
  padding-left: 14px;
}

.feature_number {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--feature_tint, var(--accent));
}

.feature_row h3 {
  font-family: var(--display);
  font-size: clamp(28px, 4.6vw, 52px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
  transition:
    color 0.2s,
    -webkit-text-stroke-color 0.2s;
}

.feature_row:hover h3 {
  color: var(--feature_tint, var(--accent));
}

.feature_row p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--dim);
}

.feature_row::after {
  content: "→";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translate(-10px, -50%);
  font-family: var(--mono);
  font-size: 22px;
  color: var(--feature_tint, var(--accent));
  opacity: 0;
  transition:
    opacity 0.2s,
    transform 0.2s;
}

.feature_row:hover::after {
  opacity: 1;
  transform: translate(0, -50%);
}

.feature_badge {
  position: absolute;
  top: 16px;
  right: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warn);
  border: 1px dashed color-mix(in srgb, var(--warn) 55%, transparent);
  padding: 4px 10px;
  border-radius: 3px;
}

.feature_row_future h3 {
  color: transparent;
  -webkit-text-stroke: 1.2px var(--faint);
}

.feature_row_future:hover h3 {
  -webkit-text-stroke-color: var(--warn);
}

.feature_row_future::after {
  color: var(--warn);
}

.action_section {
  padding: 84px 0 0;
}

.game_screen {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line2);
  border-radius: 4px;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 28% 62%, rgba(163, 190, 140, 0.09), transparent 42%),
    radial-gradient(circle at 72% 28%, rgba(136, 192, 208, 0.06), transparent 46%),
    radial-gradient(circle at 1px 1px, rgba(236, 239, 244, 0.04) 1px, transparent 0) 0 0 / 26px 26px,
    linear-gradient(180deg, #232830, #1b1f26);
}

.scan_line {
  position: absolute;
  left: 0;
  right: 0;
  top: -20%;
  height: 20%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(136, 192, 208, 0.06), transparent);
  animation: scan 7s linear infinite;
}

@keyframes scan {
  to {
    top: 100%;
  }
}

.screen_hud {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.hud_chip {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  border: 1px solid var(--line2);
  border-radius: 3px;
  padding: 5px 10px;
  background: rgba(36, 40, 48, 0.75);
}

.hud_chip_live {
  color: var(--res);
  border-color: color-mix(in srgb, var(--res) 45%, transparent);
}

.hud_chip_live::before {
  content: "●";
  margin-right: 7px;
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.detection_box {
  position: absolute;
  border: 1.5px solid var(--detection_color, var(--violet));
  border-radius: 2px;
  background: color-mix(in srgb, var(--detection_color, var(--violet)) 7%, transparent);
  font-style: normal;
}

.detection_box b {
  position: absolute;
  top: -21px;
  left: -1.5px;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--detection_color, var(--violet));
  padding: 3px 7px;
  border-radius: 2px;
}

.detection_box_loot {
  --detection_color: var(--res);
}

.detection_box_player {
  --detection_color: var(--accent);
  border-style: dashed;
}

.detection_legend {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.detection_legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
}

.legend_swatch {
  width: 11px;
  height: 11px;
  border-radius: 2px;
}

.plans_section {
  padding: 0 0 92px;
}

.plans_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.plan_card {
  background: var(--bg2);
  padding: 36px 30px 34px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background 0.2s;
}

.plan_card:hover {
  background: var(--panel);
}

.plan_card_highlight {
  background: color-mix(in srgb, var(--violet) 8%, var(--bg2));
}

.plan_card_highlight:hover {
  background: color-mix(in srgb, var(--violet) 12%, var(--bg2));
}

.plan_flag {
  position: absolute;
  top: 0;
  right: 0;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--violet);
  padding: 6px 12px;
}

.plan_name {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--plan_tint, var(--accent));
  margin-bottom: 14px;
}

.plan_price {
  font-family: var(--display);
  font-size: clamp(38px, 4.4vw, 54px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.plan_price small {
  font-size: 15px;
  font-weight: 600;
  color: var(--faint);
  letter-spacing: 0;
}

.plan_cadence {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 10px 0 22px;
}

.plan_perks {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  flex: 1;
}

.plan_perks li {
  padding: 7px 0 7px 22px;
  position: relative;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--dim);
  border-top: 1px solid var(--line);
}

.plan_perks li:first-child {
  border-top: 0;
}

.plan_perks li::before {
  content: "+";
  position: absolute;
  left: 2px;
  font-family: var(--mono);
  color: var(--plan_tint, var(--accent));
}

.plans_note {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--faint);
  margin-top: 14px;
}

.proof_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin: 74px 0;
}

.proof_item {
  background: var(--bg2);
  padding: 30px 26px;
  transition: background 0.2s;
}

.proof_item:hover {
  background: var(--panel);
}

.proof_item b {
  display: block;
  font-family: var(--display);
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--proof_tint, var(--accent));
  line-height: 1.05;
}

.proof_item span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
}

.final_call {
  border-top: 1px solid var(--line);
  padding: 94px 0 104px;
  position: relative;
  overflow: hidden;
}

.final_call .ghost_mark {
  right: -40px;
  top: 50%;
  width: 340px;
  opacity: 0.07;
  animation: drift 9s ease-in-out infinite;
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(-50%) rotate(8deg);
  }
  50% {
    transform: translateY(calc(-50% - 14px)) rotate(6deg);
  }
}

.final_call h2 {
  font-family: var(--display);
  font-size: clamp(38px, 7vw, 84px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 14px;
  text-transform: uppercase;
  max-width: 14ch;
}

.final_call h2 em {
  font-style: normal;
  color: var(--violet);
}

.final_call p {
  color: var(--dim);
  font-size: 16px;
  margin: 0 0 34px;
  max-width: 46ch;
}

.site_footer {
  border-top: 1px solid var(--line);
  background: var(--bg2);
}

.site_footer .content_wrap {
  padding: 24px 28px 38px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
}

.site_footer a {
  color: var(--dim);
  text-decoration: none;
}

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

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--reveal_delay, 0s);
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

@media (max-height: 1000px) {
  .manifesto {
    padding: 32px 0;
  }
  .manifesto_title {
    font-size: clamp(48px, 9.8vw, 100px);
  }
  .manifesto_footer {
    margin-top: 32px;
  }
}

@media (min-width: 2000px) {
  .ticker_rail {
    animation-duration: 48s;
  }
}

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

@media (max-width: 820px) {
  .feature_row {
    grid-template-columns: 44px 1fr;
    gap: 8px 14px;
    padding: 26px 6px;
  }
  .feature_row p {
    grid-column: 2;
  }
  .feature_row::after {
    display: none;
  }
  .feature_row:hover {
    padding-left: 6px;
  }
  .feature_badge {
    position: static;
    grid-column: 2;
    justify-self: start;
    margin-top: 2px;
  }
}

@media (max-width: 640px) {
  .content_wrap {
    padding: 0 20px;
  }
  .navbar {
    padding: 18px 0;
  }
  .navbar_links a:not(.button) {
    display: none;
  }
  .manifesto_title {
    font-size: clamp(44px, 12.4vw, 100px);
  }
  .line_outline {
    -webkit-text-stroke-width: 1px;
  }
  .manifesto_footer {
    gap: 22px;
    margin-top: 30px;
  }
  .manifesto_footer p {
    font-size: 15px;
  }
  .manifesto_footer .action_row {
    width: 100%;
  }
  .manifesto_footer .action_row .button {
    flex: 1 1 auto;
  }
  .button_big {
    padding: 15px 18px;
  }
  .ticker_set span {
    font-size: 11px;
    padding: 0 18px;
  }
  .detection_box b {
    font-size: 8px;
    top: -18px;
  }
  .game_screen {
    aspect-ratio: 4 / 3;
  }
  .game_screen .detection_box:nth-of-type(2) {
    display: none;
  }
  .hud_chip {
    font-size: 9px;
    padding: 4px 8px;
  }
  .proof_grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .manifesto_title span,
  .manifesto_footer {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .line_gradient {
    animation: none;
  }
  .ticker_rail {
    animation: none;
  }
  .scan_line {
    display: none;
  }
  .hud_chip_live::before {
    animation: none;
  }
  .final_call .ghost_mark {
    animation: none;
    transform: translateY(-50%) rotate(8deg);
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
