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

:root {
  --black:      #050508;
  --deep:       #0a0a12;
  --surface:    #0f0f1a;
  --border:     #1a1a2e;
  --border-hi:  #2a2a45;
  --blue:       #2563ff;
  --blue-hi:    #4d7fff;
  --blue-glow:  rgba(37,99,255,0.15);
  --blue-dim:   rgba(37,99,255,0.06);
  --cyan:       #00d4ff;
  --green:      #00ff94;
  --white:      #f0f4ff;
  --muted:      #5a6080;
  --muted-hi:   #8890b0;
  --mono:       'JetBrains Mono', monospace;
  --sans:       'Geist', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── GRID ── */
.grid-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

/* ── GLOWS ── */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.glow-orb-1 {
  width: 600px; height: 600px;
  top: -200px; left: -100px;
  background: radial-gradient(circle, rgba(37,99,255,0.12) 0%, transparent 70%);
}
.glow-orb-2 {
  width: 500px; height: 500px;
  bottom: 20%; right: -150px;
  background: radial-gradient(circle, rgba(0,212,255,0.07) 0%, transparent 70%);
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: rgba(5,5,8,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--mono);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  text-decoration: none;
}
.nav-logo .dot-dev { color: var(--blue-hi); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black) !important;
  background: var(--blue-hi);
  padding: 8px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: #6b93ff !important; transform: translateY(-1px); }

/* ── SECTIONS ── */
section, .section { position: relative; z-index: 1; }

/* ── HERO ── */
.hero {
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-tag {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-hi);
  border: 1px solid rgba(77,127,255,0.25);
  background: rgba(37,99,255,0.06);
  padding: 5px 14px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 36px;
  animation: fadeUp 0.6s ease both;
}

.hero h1 {
  font-family: var(--mono);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--white);
  animation: fadeUp 0.6s ease 0.1s both;
}
.hero h1 .accent { color: var(--blue-hi); }
.hero h1 .dim    { color: var(--muted); }

.cursor {
  display: inline-block;
  width: 0.55em;
  height: 0.85em;
  background: var(--blue-hi);
  margin-left: 4px;
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-tagline {
  font-family: var(--mono);
  font-size: clamp(0.9rem, 2.5vw, 1.15rem);
  color: var(--muted);
  margin-top: 14px;
  letter-spacing: -0.01em;
  animation: fadeUp 0.6s ease 0.15s both;
}

.hero-sub {
  font-family: var(--sans);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted-hi);
  font-weight: 400;
  max-width: 560px;
  margin-top: 28px;
  line-height: 1.7;
  animation: fadeUp 0.6s ease 0.2s both;
}
.hero-sub strong { color: var(--white); font-weight: 500; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 44px;
  animation: fadeUp 0.6s ease 0.3s both;
}

.btn-primary {
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--blue-hi);
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 0 0 rgba(77,127,255,0.4);
}
.btn-primary:hover {
  background: #6b93ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(77,127,255,0.3);
}

.btn-ghost {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--muted-hi);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--white); border-color: var(--white); }

/* ── VIDEO HERO ── */
.hero-bottom {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
  margin-top: 64px;
  animation: fadeUp 0.6s ease 0.4s both;
}

.hero-video {
  position: relative;
  min-width: 0;
}

.video-window {
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(37,99,255,0.1);
}

.video-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}
.code-dot { width: 10px; height: 10px; border-radius: 50%; }
.code-dot:nth-child(1) { background: #ff5f57; }
.code-dot:nth-child(2) { background: #ffbd2e; }
.code-dot:nth-child(3) { background: #28ca41; }
.code-filename {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--muted);
  margin-left: 8px;
  flex: 1;
}

.video-body {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--deep);
}
.video-body video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── HERO PITCH ── */
.hero-pitch {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pitch-lead {
  font-family: var(--mono);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.pitch-body {
  font-size: 0.9rem;
  color: var(--muted-hi);
  line-height: 1.75;
}

.pitch-list li {
  font-size: 0.85rem;
  color: var(--muted-hi);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

/* ── STATS BAR ── */
.stats-bar {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(10,10,18,0.6);
  padding: 32px 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stat-item {
  padding: 0 32px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child  { border-right: none; }
.stat-value {
  font-family: var(--mono);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--blue-hi);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-value.text {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 400;
}

/* ── SECTIONS SHARED ── */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 48px;
}

.section-tag {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-hi);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--mono);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1rem;
  color: var(--muted-hi);
  max-width: 520px;
  line-height: 1.75;
}

/* ── FOR WHO ── */
.for-who {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, transparent 0%, rgba(10,10,20,0.6) 50%, transparent 100%);
}

.pills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 52px;
}

.pill-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.pill-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-3px);
}

.pill-icon {
  font-size: 1.4rem;
  margin-bottom: 14px;
  display: block;
}
.pill-title {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.pill-text {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── MODULES ── */
.modules {
  position: relative;
  z-index: 1;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  margin-top: 52px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.module-card {
  background: var(--deep);
  padding: 32px 28px;
  transition: background 0.2s;
  position: relative;
}
.module-card:hover { background: var(--surface); }

.module-number {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--blue-hi);
  opacity: 0.6;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.module-title {
  font-family: var(--mono);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.module-list {
  list-style: none;
  margin-top: 16px;
}
.module-list li {
  font-size: 0.8rem;
  color: var(--muted);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.module-list li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--border-hi);
  flex-shrink: 0;
}
.module-badge {
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(0,255,148,0.2);
  background: rgba(0,255,148,0.06);
  padding: 3px 8px;
  border-radius: 2px;
}

.module-card-more {
  background: var(--deep);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}
.module-card-more:hover { background: var(--surface); }

/* ── CAROUSEL ── */
.carousel {
  margin-top: 52px;
  position: relative;
}

.carousel-overflow {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--border);
}

.carousel-track {
  display: flex;
  gap: 1px;
  will-change: transform;
}

.carousel-track .module-card {
  flex: 0 0 calc(33.333% - 1px);
  min-width: 0;
  transition: background 0.2s;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

.carousel-btn {
  background: var(--surface);
  border: 1px solid var(--border-hi);
  color: var(--muted-hi);
  font-size: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
  font-family: var(--mono);
}
.carousel-btn:hover { border-color: var(--blue-hi); color: var(--white); }
.carousel-btn:disabled { opacity: 0.3; cursor: default; }

.carousel-dots {
  display: flex;
  gap: 5px;
  align-items: center;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: #555;
  cursor: pointer;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s;
  flex-shrink: 0;
}
.carousel-dot.active {
  width: 24px;
  background: var(--blue-hi);
}

@media (max-width: 900px) {
  .carousel-track .module-card { flex: 0 0 100%; }
}

.module-more-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.module-more-dots {
  display: flex;
  align-items: center;
  gap: 12px;
}
.module-more-dots span {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--border-hi);
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 2px;
}

.module-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 14px;
}

.module-more-label {
  font-family: var(--mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.module-more-sub {
  font-size: 0.78rem;
  color: var(--border-hi);
  text-align: center;
}

.module-card-bonus {
  background: linear-gradient(135deg, var(--deep) 0%, rgba(37,99,255,0.06) 100%);
  border-color: rgba(37,99,255,0.2);
}
.module-card-bonus .module-number { opacity: 1; }
.module-card-bonus .module-title  { color: var(--blue-hi); }

/* ── MATERIAIS ── */
.materiais {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
}

.materiais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.material-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.material-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-3px);
}

.material-icon {
  color: var(--blue-hi);
  margin-bottom: 20px;
  display: block;
}

.material-title {
  font-family: var(--mono);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.material-text {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

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

/* ── COMUNIDADE ── */
.comunidade {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
}

.comunidade-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
}

.comunidade-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
.comunidade-list li {
  font-size: 0.85rem;
  color: var(--muted-hi);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.comunidade-card {
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.discord-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: #5865f2;
  color: #fff;
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.discord-stat {
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--border);
}
.discord-stat-value {
  font-family: var(--mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.discord-stat-label {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 4px;
}

.discord-channels {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.discord-channel {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--muted);
  padding: 6px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: background 0.15s, color 0.15s;
}
.discord-channel:hover,
.discord-channel.active {
  background: rgba(255,255,255,0.05);
  color: var(--white);
}
.discord-hash {
  color: var(--border-hi);
  font-size: 0.9rem;
  line-height: 1;
}

@media (max-width: 900px) {
  .comunidade-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ── DIFF ── */
.diff {
  position: relative;
  z-index: 1;
  background: rgba(5,5,8,0.8);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 52px;
  align-items: start;
}

.diff-col-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.diff-col-label.bad  { color: #ff4d4d; }
.diff-col-label.good { color: var(--green); }

.diff-list { list-style: none; }
.diff-list li {
  padding: 12px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  line-height: 1.5;
}
.diff-list li:last-child { border-bottom: none; }
.diff-list li span {
  flex-shrink: 0;
  font-family: var(--mono);
  font-size: 0.75rem;
  margin-top: 1px;
}
.diff-list.bad  li { color: var(--muted); }
.diff-list.bad  li span { color: #ff4d4d; }
.diff-list.good li { color: var(--muted-hi); }
.diff-list.good li span { color: var(--green); }

/* ── INSTRUTOR ── */
.instrutor {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
}

.instrutor-inner {
  max-width: 640px;
}

.instrutor-photo {
  width: 220px;
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-hi);
  background: var(--surface);
  flex-shrink: 0;
}
.instrutor-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.instrutor-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.instrutor-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.instrutor-badge {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border-hi);
  padding: 4px 10px;
  border-radius: 2px;
}

.instrutor-stats {
  display: flex;
  gap: 32px;
  margin: 4px 0;
}

.instrutor-stat-value {
  font-family: var(--mono);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blue-hi);
  letter-spacing: -0.03em;
  line-height: 1;
}

.instrutor-stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 4px;
}

.instrutor-link {
  color: var(--blue-hi);
  text-decoration: none;
  border-bottom: 1px solid rgba(77,127,255,0.3);
  transition: border-color 0.2s;
}
.instrutor-link:hover { border-color: var(--blue-hi); }

.instrutor-yt {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: #ff4444;
  text-decoration: none;
  margin-top: 4px;
  transition: opacity 0.2s;
}
.instrutor-yt:hover { opacity: 0.8; }

@media (max-width: 900px) {
  .instrutor-inner { grid-template-columns: 1fr; gap: 32px; }
  .instrutor-photo { width: 160px; height: 160px; }
}

/* ── PRICING ── */
.pricing {
  position: relative;
  z-index: 1;
}

.pricing-single {
  margin-top: 52px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.price-single-body {
  display: grid;
  grid-template-columns: auto 1px 1fr;
  gap: 48px;
  align-items: start;
}

.price-single-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  min-width: 220px;
}

.price-footer {
  border-top: 1px solid var(--border);
  margin-top: 28px;
  padding-top: 24px;
}

.price-label {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-hi);
  margin-bottom: 10px;
}

.price-desc {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: 0.02em;
}

.price-single-divider {
  background: var(--border);
  align-self: stretch;
}

.price-single-list {
  margin: 0;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 40px 36px;
  position: relative;
  transition: transform 0.2s;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.featured {
  border-color: var(--blue);
  background: linear-gradient(145deg, var(--surface) 0%, rgba(37,99,255,0.05) 100%);
  box-shadow: 0 0 0 1px rgba(37,99,255,0.15), 0 24px 48px rgba(37,99,255,0.1);
}

.price-card-tag {
  position: absolute;
  top: -13px; left: 28px;
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--blue-hi);
  padding: 4px 12px;
  border-radius: 2px;
}

.price-title {
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.price-value {
  font-family: var(--mono);
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.price-value sup {
  font-size: 1.2rem;
  vertical-align: top;
  margin-top: 10px;
  display: inline-block;
  color: var(--muted-hi);
  font-weight: 400;
}
.price-strike {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: line-through;
  margin-bottom: 28px;
}
.price-features {
  list-style: none;
  margin: 28px 0;
}
.price-features li {
  font-size: 0.85rem;
  color: var(--muted-hi);
  padding: 7px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}
.price-features li:last-child { border-bottom: none; }
.price-features li .check { color: var(--green); font-family: var(--mono); font-size: 0.75rem; }

.price-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px;
  border-radius: 4px;
  transition: background 0.2s, transform 0.15s;
  margin-top: 8px;
}
.price-btn.primary {
  background: var(--blue-hi);
  color: var(--black);
}
.price-btn.primary:hover { background: #6b93ff; transform: translateY(-1px); }
.price-btn.secondary {
  background: transparent;
  color: var(--muted-hi);
  border: 1px solid var(--border-hi);
}
.price-btn.secondary:hover { border-color: var(--white); color: var(--white); }

.vagas-warning {
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.vagas-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #ff9900;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform: scale(1); }
  50% { opacity:0.5; transform: scale(0.8); }
}

.price-guarantee {
  margin-top: 28px;
  padding: 20px;
  background: var(--blue-dim);
  border: 1px solid rgba(37,99,255,0.15);
  border-radius: 6px;
}
.price-guarantee-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--blue-hi);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.price-guarantee-text {
  font-size: 0.85rem;
  color: var(--muted-hi);
  line-height: 1.65;
}

.price-arrow { color: var(--blue-hi); }

/* ── FAQ ── */
.faq {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
}

.faq-list {
  max-width: 720px;
  margin-top: 52px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--blue-hi); }
.faq-icon {
  font-family: var(--mono);
  font-size: 1.2rem;
  color: var(--blue-hi);
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  font-size: 0.9rem;
  color: var(--muted-hi);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
  padding-bottom: 0;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 24px;
}

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
}

.footer-logo {
  font-family: var(--mono);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: -0.02em;
}
.footer-logo span { color: var(--blue-hi); }

.footer-copy {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border) 20%, var(--border) 80%, transparent 100%);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hero { padding: 60px 24px; }
  .hero h1 { font-size: clamp(2.8rem, 12vw, 5rem); }
  .stats-bar { grid-template-columns: 1fr; padding: 24px; gap: 0; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 24px; }
  .section-inner { padding: 72px 24px; }
  .hero-bottom { grid-template-columns: 1fr; gap: 32px; }
  .module-more-content { flex-direction: column; gap: 16px; text-align: center; }
  .module-more-dots { flex-wrap: wrap; justify-content: center; }
  .module-more-sub { white-space: normal; text-align: center; }
  .diff-grid { grid-template-columns: 1fr; gap: 40px; }
  .price-single-body { grid-template-columns: 1fr; }
  .price-single-divider { height: 1px; width: 100%; }
  footer { flex-direction: column; gap: 12px; padding: 32px 24px; text-align: center; }
}

/* ── GATE OVERLAY ── */
@keyframes gateLineIn {
  from { opacity: 0; transform: translateX(-10px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes gateOkIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes gatePanelTop {
  from { transform: translateY(0); }
  to   { transform: translateY(-100%); }
}
@keyframes gatePanelBottom {
  from { transform: translateY(0); }
  to   { transform: translateY(100%); }
}
@keyframes gateUiOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

#gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.gate-half {
  position: absolute;
  left: 0;
  right: 0;
  height: 50%;
  background-color: var(--black);
  background-image:
    linear-gradient(rgba(37,99,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.gate-top {
  top: 0;
  border-bottom: 1px solid rgba(37,99,255,0.5);
  box-shadow: 0 1px 40px rgba(37,99,255,0.2);
  animation: gatePanelTop 0.85s cubic-bezier(0.76, 0, 0.24, 1) 3.7s both;
}

.gate-bottom {
  bottom: 0;
  border-top: 1px solid rgba(37,99,255,0.5);
  box-shadow: 0 -1px 40px rgba(37,99,255,0.2);
  animation: gatePanelBottom 0.85s cubic-bezier(0.76, 0, 0.24, 1) 3.7s both;
}

.gate-ui {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
  font-family: var(--mono);
  pointer-events: none;
  width: 90vw;
  max-width: 520px;
  animation: gateUiOut 0.4s ease 3.6s both;
}

.gate-logo {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.gate-logo span { color: var(--blue-hi); }

.gate-warning {
  font-size: clamp(2.8rem, 10vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ff4444;
  line-height: 1;
  margin-bottom: 48px;
  text-shadow: 0 0 60px rgba(255,68,68,0.25);
  animation: fadeUp 0.5s ease 0.1s both;
}

.gate-lines {
  text-align: left;
  display: inline-block;
  margin-bottom: 32px;
}

.gate-line {
  font-size: clamp(0.65rem, 2vw, 0.82rem);
  color: var(--muted);
  padding: 5px 0;
  letter-spacing: 0.03em;
  white-space: nowrap;
  opacity: 0;
}

#gl1 { animation: gateLineIn 0.4s ease 0.8s both; }
#gl2 { animation: gateLineIn 0.4s ease 1.4s both; }
#gl3 { animation: gateLineIn 0.4s ease 2.0s both; }

.gate-ok {
  color: var(--green);
  font-weight: 600;
  opacity: 0;
  margin-left: 6px;
}

#gl1 .gate-ok { animation: gateOkIn 0.3s ease 1.1s  both; }
#gl2 .gate-ok { animation: gateOkIn 0.3s ease 1.8s  both; }
#gl3 .gate-ok { animation: gateOkIn 0.3s ease 2.3s  both; }

.gate-permitted {
  font-size: clamp(1.1rem, 3.5vw, 1.6rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--green);
  text-shadow: 0 0 40px rgba(0,255,148,0.4);
  text-transform: uppercase;
  opacity: 0;
  animation: gateLineIn 0.5s ease 2.8s both;
}

/* ── HERO EARLY ACCESS NOTE ── */
.hero-early-note {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 16px;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: fadeUp 0.6s ease 0.35s both;
}

.hero-vagas-note {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: #f0a500;
  margin-top: 8px;
  letter-spacing: 0.02em;
  animation: fadeUp 0.6s ease 0.45s both;
}

.hero-early-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

/* ── PRICING EARLY ACCESS ── */
.price-original {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: -10px;
  letter-spacing: 0.02em;
}
.price-original span {
  text-decoration: line-through;
}

.price-vagas {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: #f0a500;
  margin-top: 6px;
  margin-bottom: 2px;
}

.price-early {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(0,255,148,0.25);
  background: rgba(0,255,148,0.06);
  padding: 4px 12px;
  border-radius: 2px;
  display: inline-block;
  margin-top: -4px;
}

.price-early-warning {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.7;
}
.price-early-warning .vagas-dot {
  margin-top: 5px;
  flex-shrink: 0;
}

/* ── AVALIAÇÕES ── */
.avaliacoes-inner {
  text-align: center;
  padding-bottom: 48px !important;
}

.avaliacoes-source {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: #949ba4;
  background: rgba(88,101,242,0.08);
  border: 1px solid rgba(88,101,242,0.22);
  border-radius: 99px;
  padding: 5px 14px;
  margin-top: 8px;
  letter-spacing: 0.02em;
}

.discord-icon-badge { color: #5865F2; flex-shrink: 0; }

.avaliacoes-wrap {
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
}

.avaliacoes-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 160px;
  pointer-events: none;
  z-index: 2;
}
.avaliacoes-fade-l { left: 0; background: linear-gradient(to right, var(--black) 0%, transparent 100%); }
.avaliacoes-fade-r { right: 0; background: linear-gradient(to left, var(--black) 0%, transparent 100%); }

.avaliacoes-row {
  overflow: hidden;
  margin-bottom: 12px;
}

.avaliacoes-track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.avaliacoes-row:hover .avaliacoes-track { animation-play-state: paused; }

.track-left  { animation: marquee-left  45s linear infinite; }
.track-right { animation: marquee-right 38s linear infinite; }

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

.avaliacao-card {
  width: 320px;
  flex-shrink: 0;
  background: #1e1f22;
  border: 1px solid #2b2d31;
  border-radius: 8px;
  padding: 16px;
  margin-right: 12px;
  transition: border-color 0.2s;
}
.avaliacao-card:hover { border-color: #404249; }

.avaliacao-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.avaliacao-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #2b2d31;
}

.avaliacao-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.avaliacao-name {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: #e3e5e8;
  line-height: 1.2;
}

.avaliacao-date {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: #72767d;
}

.avaliacao-text {
  font-size: 0.83rem;
  line-height: 1.6;
  color: #b9bbbe;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
