/* ============================================================
   VSL — [NAME]
   ONLY 2 brand colors: Blue #0745DD and Green #D1FF00
   Type: Untyped (headings) / BoldPixels (body)
   ============================================================ */

@font-face {
  font-family: 'Untyped';
  src: url('fonts/Untyped.ttf') format('truetype');
  font-display: swap;
  font-weight: bold;
}

@font-face {
  font-family: 'BoldPixels';
  src: url('fonts/boldpixels.woff2') format('woff2');
  font-display: swap;
}

:root {
  --blue: #0745DD;
  --green: #D1FF00;
  --font-title: 'Untyped', 'Arial Black', sans-serif;
  --font-body: 'BoldPixels', 'Courier New', monospace;
}

/* ============ BASE ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

img {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-touch-callout: none;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  background: var(--blue);
  color: var(--green);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, iframe { display: block; max-width: 100%; }

.container {
  width: min(1080px, 90%);
  margin-inline: auto;
}

.narrow { max-width: 760px; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.05;
  color: inherit;
}

.accent {
  background: var(--green);
  color: var(--blue);
  padding: 0 .15em;
}
.section-green .accent, .site-footer .accent, .video-end .accent {
  background: var(--blue);
  color: var(--green);
}

/* ============ LOGO ============ */
.site-logo {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1200;
}
.site-logo img {
  display: block;
  height: 48px;
  width: auto;
}

/* ============ MENU POPOVER ============ */
.menu-pop {
  position: fixed;
  top: 76px;
  left: 14px;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px) scale(.96);
  transform-origin: top left;
  pointer-events: none;
  transition: opacity .5s cubic-bezier(.22, 1, .36, 1),
              transform .5s cubic-bezier(.22, 1, .36, 1),
              visibility .5s;
}
.menu-pop.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.menu-pop-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  background: var(--green);
  border: 2px solid var(--blue);
  box-shadow: 6px 6px 0 var(--blue);
  padding: 8px;
}
.menu-option {
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 13px;
  color: var(--blue);
  padding: 10px 14px;
  transition: background .3s ease, color .3s ease;
}
.menu-option:hover {
  background: var(--blue);
  color: var(--green);
}
.menu-close {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-left: auto;
  background: var(--blue);
  color: var(--green);
  border: none;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  font-family: var(--font-title);
  transition: transform .3s cubic-bezier(.22, 1, .36, 1);
}
.menu-close:hover { transform: rotate(90deg); }

/* ============ PROGRESS BAR ============ */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--blue);
  z-index: 1000;
}
.progress-bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--green);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: .05em;
  border: 2px solid;
  cursor: pointer;
  transition: transform .15s ease;
  text-align: center;
}
.btn:hover { transform: translate(-2px, -2px); }
.btn-sm { padding: 8px 16px; font-size: 12px; }
.btn-lg { padding: 18px 34px; font-size: 16px; }
.btn-xl { padding: 22px 44px; font-size: 18px; width: 100%; max-width: 460px; }

.btn-green {
  background: var(--green);
  border-color: var(--green);
  color: var(--blue);
}
.btn-blue {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--green);
}
.btn-ghost {
  background: transparent;
  border-color: var(--green);
  color: var(--green);
  padding: 16px 26px;
  font-size: 14px;
}

/* ============ SECTIONS ============ */
.section { padding: 96px 0; }

.section-blue {
  background: var(--blue);
  color: var(--green);
  border-top: 4px solid var(--green);
}
.section-green {
  background: var(--green);
  color: var(--blue);
  border-top: 4px solid var(--blue);
}

/* ============ HERO ============ */
.hero {
  padding: 72px 0 48px;
  text-align: center;
  background: var(--blue);
  color: var(--green);
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 16px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-title { font-size: clamp(44px, 9vw, 96px); margin-bottom: 20px; }
.hero-sub { max-width: 640px; margin: 0 auto 40px; }

/* video */
.video-shell { max-width: 860px; margin: 0 auto 32px; }
.video-aspect {
  position: relative;
  aspect-ratio: 16 / 9;
  border: 4px solid var(--green);
  background: var(--blue);
}
.video-aspect iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.video-error {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  text-align: center;
  background: var(--green);
  color: var(--blue);
  padding: 24px;
}
.video-error-title {
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 28px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}
.hero-banner {
  width: min(860px, 100%);
  margin: 0 auto 32px;
}

/* ============ WHAT I DO ============ */
#what-i-do, #about { text-align: center; }

.wid-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.wid-tab {
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 12px;
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  cursor: pointer;
  transition: background .3s ease, color .3s ease;
}
.wid-tab:hover { background: var(--blue); color: var(--green); }
.wid-tab.active { background: var(--blue); color: var(--green); }

.wid-timer {
  width: min(760px, 100%);
  height: 6px;
  background: var(--blue);
  margin: 0 auto 32px;
  border-radius: 3px;
  overflow: hidden;
}
.wid-timer span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--green);
}

.wid-stage { position: relative; }
.wid-slide { display: none; }
.wid-slide.active {
  display: block;
  animation: widIn .65s cubic-bezier(.22, 1, .36, 1);
}
@keyframes widIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
.wid-slide-title { margin-bottom: 8px; }

.tag-title {
  display: inline-block;
  background: var(--blue);
  color: var(--green);
  padding: 16px 44px;
  border-radius: 14px;
  letter-spacing: .03em;
}
.wid-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
  margin: 24px auto 20px;
  max-width: 1080px;
}
.wid-list {
  background: var(--blue);
  color: var(--green);
  border-radius: 12px;
  padding: 30px 36px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wid-list ul { list-style: none; }
.wid-list li {
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 17px;
  padding: 12px 0;
  border-bottom: 2px solid var(--green);
}
.wid-list li:last-child { border-bottom: none; }
.wid-group + .wid-group { margin-top: 18px; }
.wid-group-title {
  display: block;
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 18px;
  color: #ffffff;
  padding-bottom: 10px;
  margin-bottom: 2px;
  border-bottom: 2px solid var(--green);
}
.wid-img {
  background: var(--blue);
  border-radius: 12px;
  padding: 12px;
}
.wid-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}
.what-text {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.55;
  max-width: 880px;
  margin: 26px auto 0;
  background: var(--blue);
  color: var(--green);
  border: 2px solid var(--green);
  border-radius: 12px;
  padding: 28px 36px;
}

.wid-nav {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.wid-toggle {
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 12px;
  background: var(--blue);
  color: var(--green);
  border: none;
  cursor: pointer;
  transition: background .3s ease, transform .3s cubic-bezier(.22, 1, .36, 1);
}
.wid-toggle:hover { transform: translateY(-2px); }
.wid-toggle.paused { background: var(--green); color: var(--blue); }

/* ============ TIMELINE ============ */
.timeline {
  position: relative;
  margin: 56px auto 56px;
  max-width: 1080px;
  text-align: left;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--blue);
  transform: translateX(-50%);
}
.timeline-item {
  position: relative;
  width: calc(50% - 28px);
  margin-bottom: 48px;
}
.timeline-item:nth-child(odd) { margin-right: auto; }
.timeline-item:nth-child(even) { margin-left: auto; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  top: 0;
  width: 16px;
  height: 16px;
  background: var(--blue);
}
.timeline-item:nth-child(odd)::before { right: -26px; }
.timeline-item:nth-child(even)::before { left: -26px; }

.timeline-card {
  background: var(--blue);
  color: var(--green);
}
.timeline-card img {
  width: 100%;
  height: auto;
  display: block;
}
.timeline-body { padding: 22px; }
.timeline-year {
  display: block;
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 12px;
}
.timeline-text { font-size: 16px; margin-bottom: 12px; }
.timeline-text:last-child { margin-bottom: 0; }

/* ============ SECTION HEADERS ============ */
.section-title { font-size: clamp(32px, 6vw, 56px); margin-bottom: 20px; }
.section-sub { max-width: 620px; margin-bottom: 48px; }

/* ============ INVERTED BOXES ============ */
/* Blue boxes on green sections get green text; green boxes on blue
   sections get blue text. Only the 2 brand colors are ever used. */
.card, .step, .garantia, .faq details {
  background: var(--blue);
  color: var(--green);
}
.offer, .demo-card, .thumb {
  background: var(--green);
  color: var(--blue);
}

/* ============ GRID CARDS ============ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.card { padding: 28px 24px; }
.card h3 { font-size: 22px; margin-bottom: 10px; }
.card p { font-size: 16px; }

/* ============ STATS ============ */
.stat { text-align: left; }
.stat-num {
  display: block;
  font-family: var(--font-title);
  font-size: clamp(48px, 7vw, 84px);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label { font-size: 16px; display: block; }
.section-note { margin-top: 48px; font-size: 16px; text-align: center; }

/* ============ STEPS ============ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: left; }
.step {
  border-top: 4px solid var(--green);
  padding: 28px 24px;
}
.step-num {
  font-family: var(--font-title);
  font-size: 40px;
  display: block;
  margin-bottom: 14px;
}
.step h3 { font-size: 26px; margin-bottom: 8px; }
.step p { font-size: 16px; }

/* ============ DEMO ============ */
.demo-titles, .demo-thumbs { display: flex; gap: 20px; align-items: stretch; justify-content: center; }
.demo-titles, .demo-thumbs { flex-wrap: wrap; margin-bottom: 48px; }
.demo-card { flex: 1; max-width: 430px; padding: 22px; }
.demo-flag {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 12px;
  letter-spacing: .1em;
  padding: 4px 10px;
  background: var(--blue);
  color: var(--green);
}
.demo-title-bad { font-size: 18px; margin-top: 14px; text-decoration: line-through; }
.demo-title-good { font-size: 18px; margin-top: 14px; }

.thumb-card { width: min(430px, 100%); }
.thumb-card .demo-flag { margin-bottom: 10px; }
.thumb {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}
.thumb-bad { background: var(--green); }
.thumb-good { background: var(--green); }
.thumb-text {
  font-family: var(--font-title);
  font-size: clamp(24px, 4vw, 40px);
  text-transform: uppercase;
}

/* ============ STORY ============ */
.story-text { font-size: 18px; margin-bottom: 20px; }

/* ============ OFFER ============ */
.offer {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}
.offer-list { list-style: none; }
.offer-list li { padding: 10px 0; font-size: 16px; border-bottom: 1px solid var(--blue); }
.offer-price { text-align: center; }
.price {
  display: block;
  font-family: var(--font-title);
  font-size: clamp(48px, 9vw, 80px);
  line-height: 1;
}
.price-note { font-size: 14px; text-transform: uppercase; letter-spacing: .1em; }
.offer .btn { align-self: center; background: var(--blue); border-color: var(--blue); color: var(--green); }

/* ============ GUARANTEE ============ */
.garantia {
  padding: 40px 28px;
  text-align: center;
}
.garantia-icon {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 14px;
  letter-spacing: .12em;
  background: var(--green);
  color: var(--blue);
  padding: 10px 16px;
  margin-bottom: 20px;
}
.garantia-text { font-size: 17px; }

/* ============ FINAL CTA ============ */
.cta-final {
  padding: 120px 0;
  text-align: center;
  background: var(--blue);
  color: var(--green);
}
.cta-title { font-size: clamp(34px, 7vw, 64px); }
.cta-sub { font-size: 16px; margin: 16px 0 12px; }
.countdown {
  font-size: 24px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

/* ============ FAQ ============ */
#faq .section-title { color: var(--green); }
.faq {
  text-align: left;
  max-width: 880px;
  margin: 0 auto;
}
.faq-col {
  display: flex;
  flex-direction: column;
}
.faq details {
  background: var(--green);
  color: var(--blue);
  margin-bottom: 14px;
  border-radius: 12px;
  overflow: hidden;
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-size: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq-plus { font-family: var(--font-title); font-size: 22px; color: var(--blue); transition: transform .3s cubic-bezier(.22, 1, .36, 1); }
.faq details[open] .faq-plus { transform: rotate(45deg); }
.faq details p {
  padding: 0 22px 20px;
  font-size: 16px;
  border-top: 2px solid var(--blue);
  padding-top: 14px;
}

/* ============ FOOTER ============ */
.site-footer {
  padding: 28px 0;
  border-top: 2px solid var(--blue);
  background: var(--green);
  color: var(--blue);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  flex-wrap: wrap;
}

/* ============ VIDEO END BANNER ============ */
.video-end {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: var(--green);
  color: var(--blue);
  padding: 14px 24px;
  font-size: 15px;
  border-top: 4px solid var(--blue);
}
.video-end p { flex: 1; min-width: 200px; }

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 860px) {
  .grid-3, .steps { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .offer { padding: 28px 20px; }
  .hero { padding: 56px 0 40px; }
  .tag-title { padding: 12px 26px; }
  .wid-grid { grid-template-columns: 1fr; }
  .site-logo { display: none; }

  .timeline::before { left: 10px; }
  .timeline-item,
  .timeline-item:nth-child(even),
  .timeline-item:nth-child(odd) {
    width: auto;
    margin: 0 0 40px;
    padding-left: 44px;
  }
  .timeline-item::before,
  .timeline-item:nth-child(even)::before,
  .timeline-item:nth-child(odd)::before {
    left: 5px;
    right: auto;
  }
}