:root {
  --bg: #07111f;
  --bg-2: #0f172a;
  --surface: #111c2d;
  --surface-2: #0c1524;
  --card: #1e293b;
  --card-2: #172033;
  --text: #ffffff;
  --muted: #9ca3af;
  --muted-dark: #6b7280;
  --gold: #d4af37;
  --gold-soft: #f4df8f;
  --green: #10b981;
  --green-dark: #078f62;
  --border: rgba(212, 175, 55, 0.34);
  --shadow: rgba(0, 0, 0, 0.42);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: Inter, Montserrat, Arial, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.96) 0%, rgba(10, 18, 30, 0.98) 56%, #050b14 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 110px);
  overflow-x: hidden;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

.site-backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.site-backdrop::before {
  position: absolute;
  inset: auto 0 0;
  height: 42vh;
  content: "";
  background:
    linear-gradient(180deg, transparent 0%, rgba(244, 223, 143, 0.08) 72%, rgba(244, 223, 143, 0.16) 100%),
    repeating-linear-gradient(0deg, transparent 0 28px, rgba(244, 223, 143, 0.12) 29px 30px);
  opacity: 0.42;
}

.background-mark {
  position: absolute;
  top: 44px;
  left: 50%;
  width: 540px;
  max-width: 76vw;
  transform: translateX(-50%);
  opacity: 0.08;
  filter: saturate(1.05);
}

.landing-shell {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding: 0;
}

.vsl-stage {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.device-frame {
  position: relative;
  width: 100%;
  max-width: 390px;
  padding: 14px 12px 18px;
  background:
    linear-gradient(180deg, rgba(17, 28, 45, 0.98), rgba(10, 21, 36, 0.98)),
    var(--surface);
  border: 1px solid rgba(244, 223, 143, 0.18);
  border-right: 0;
  border-left: 0;
  box-shadow: none;
}

.device-notch {
  display: none;
}

.brand-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding-top: 2px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(244, 223, 143, 0.32);
}

.brand-lockup {
  display: grid;
  gap: 1px;
  text-align: left;
}

.brand-lockup span {
  display: block;
  font-family: Cinzel, "Playfair Display", Georgia, serif;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-lockup small {
  display: block;
  color: var(--gold-soft);
  font-size: 0.63rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-copy {
  text-align: center;
  padding: 7px 4px 0;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--gold-soft);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 330px;
  margin: 0 auto;
  font-family: Cinzel, "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  line-height: 1.12;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-copy strong {
  display: inline;
  color: var(--gold);
  font-weight: 900;
  text-shadow: 0 1px 18px rgba(212, 175, 55, 0.25);
}

.subheadline {
  max-width: 300px;
  margin: 10px auto 14px;
  color: var(--muted);
  font-size: 0.78rem;
}

.video-slot {
  position: relative;
  overflow: hidden;
  margin: 0 auto 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: #070d17;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 14px 30px rgba(0, 0, 0, 0.28);
}

.video-slot-vturb {
  aspect-ratio: 16 / 9;
}

.video-slot-vturb vturb-smartplayer {
  position: relative;
  z-index: 2;
  min-height: 100%;
}

.video-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(244, 223, 143, 0.12), transparent 46%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 26px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 32px),
    #0b1524;
}

.video-fallback::before {
  position: absolute;
  left: 8%;
  right: 35%;
  bottom: 20%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--muted-dark), var(--gold), var(--gold-soft));
  transform: skewY(-18deg);
  transform-origin: left center;
}

.video-fallback::after {
  position: absolute;
  right: 8%;
  bottom: 16%;
  width: 12%;
  height: 28%;
  content: "";
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  box-shadow:
    -28px 12px 0 -2px var(--gold),
    -56px 24px 0 -3px rgba(212, 175, 55, 0.92);
}

.video-art {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 168px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(244, 223, 143, 0.12), transparent 46%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 26px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 32px),
    #0b1524;
}

.video-grid {
  position: absolute;
  left: 18px;
  bottom: 30px;
  display: grid;
  gap: 13px;
  width: 42%;
}

.video-grid span {
  display: block;
  height: 1px;
  background: rgba(156, 163, 175, 0.45);
}

.chart-line {
  position: absolute;
  left: 22px;
  bottom: 43px;
  width: 43%;
  height: 55px;
  border-left: 2px solid rgba(244, 223, 143, 0.38);
  border-bottom: 2px solid rgba(244, 223, 143, 0.38);
}

.chart-line::before {
  position: absolute;
  inset: 16px 0 auto 6px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--muted-dark), var(--gold), var(--gold-soft));
  transform: skewY(-19deg);
  transform-origin: left center;
  box-shadow: 34px -14px 0 rgba(212, 175, 55, 0.55), 70px -2px 0 rgba(244, 223, 143, 0.7);
}

.chart-bars {
  position: absolute;
  right: 22px;
  bottom: 35px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 72px;
}

.chart-bars span {
  width: 18px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
}

.chart-bars span:nth-child(1) {
  height: 34px;
}

.chart-bars span:nth-child(2) {
  height: 52px;
}

.chart-bars span:nth-child(3) {
  height: 70px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  padding: 0;
  border: 1px solid rgba(244, 223, 143, 0.42);
  border-radius: 50%;
  color: var(--text);
  background: rgba(0, 0, 0, 0.62);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, background 180ms ease;
}

.play-button:hover,
.play-button:focus-visible {
  background: rgba(16, 185, 129, 0.82);
  transform: translate(-50%, -50%) scale(1.04);
  outline: 2px solid rgba(244, 223, 143, 0.56);
  outline-offset: 3px;
}

.play-button span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--text);
}

.video-caption {
  position: absolute;
  right: 8px;
  top: 14px;
  padding: 5px 8px;
  border: 1px solid rgba(244, 223, 143, 0.24);
  border-radius: 999px;
  max-width: 52%;
  overflow: hidden;
  color: var(--gold-soft);
  background: rgba(7, 17, 31, 0.78);
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.video-controls {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) 14px 14px;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  background: rgba(5, 10, 18, 0.92);
}

.control-dot,
.control-icon {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
}

.control-icon {
  border-radius: 3px;
  background: rgba(244, 223, 143, 0.72);
}

.control-bar {
  position: relative;
  display: block;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.control-bar::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 34%;
  content: "";
  border-radius: inherit;
  background: var(--gold);
}

.primary-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 50px;
  margin: 0 auto;
  padding: 11px 10px;
  border-radius: var(--radius);
  color: #ffffff;
  background: linear-gradient(180deg, #14c98c, var(--green));
  box-shadow: 0 10px 28px rgba(16, 185, 129, 0.28);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1.24;
  white-space: normal;
  animation: pulse 2.2s ease-in-out infinite;
}

.primary-cta:hover,
.primary-cta:focus-visible {
  background: linear-gradient(180deg, #12b77f, var(--green-dark));
  outline: 2px solid rgba(244, 223, 143, 0.62);
  outline-offset: 3px;
}

.primary-cta .whatsapp-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: currentColor;
}

.support-copy {
  max-width: 330px;
  margin: 8px auto 12px;
  color: var(--muted-dark);
  font-size: 0.72rem;
  text-align: center;
}

.proof-section {
  margin: 0 -12px;
  padding: 12px 0 4px;
  overflow: hidden;
}

.proof-marquee {
  position: relative;
  overflow: hidden;
}

.proof-marquee::before,
.proof-marquee::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 36px;
  content: "";
  z-index: 2;
  pointer-events: none;
}

.proof-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--surface), transparent);
}

.proof-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--surface), transparent);
}

.proof-track {
  display: flex;
  gap: 10px;
  width: max-content;
  padding: 4px 10px 12px;
  animation: marquee 46s linear infinite;
}

.proof-marquee:hover .proof-track,
.proof-marquee:focus .proof-track,
.proof-marquee:focus-within .proof-track {
  animation-play-state: paused;
}

.proof-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 190px;
  min-height: 106px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.proof-card p {
  margin: 0;
  color: #e8edf5;
  font-size: 0.74rem;
  line-height: 1.32;
}

.proof-card span {
  display: block;
  margin-top: 8px;
  color: var(--gold-soft);
  font-size: 0.68rem;
  font-weight: 800;
}

.proof-card-accent {
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.96), rgba(7, 143, 98, 0.96));
}

.proof-card-accent span {
  color: #ffffff;
}

.page-footer {
  padding: 6px 4px 0;
  color: var(--muted);
  text-align: center;
}

.page-footer p {
  margin: 3px 0;
  font-size: 0.69rem;
}

.page-footer nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 8px;
}

.page-footer a {
  color: #d8e0ef;
  font-size: 0.68rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 780px);
  margin: 0 auto;
  padding: 28px 16px 48px;
}

.legal-panel {
  padding: 22px;
  border: 1px solid rgba(244, 223, 143, 0.18);
  border-radius: var(--radius);
  background: rgba(17, 28, 45, 0.94);
  box-shadow: 0 18px 54px var(--shadow);
}

.legal-panel h1,
.legal-panel h2 {
  margin: 0 0 14px;
  font-family: Cinzel, "Playfair Display", Georgia, serif;
}

.legal-panel h1 {
  font-size: 1.65rem;
}

.legal-panel h2 {
  margin-top: 24px;
  color: var(--gold-soft);
  font-size: 1rem;
}

.legal-panel p,
.legal-panel li {
  color: #d9e0ea;
  font-size: 0.95rem;
}

.legal-panel a {
  color: var(--gold-soft);
}

.legal-back {
  display: inline-flex;
  margin-top: 20px;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

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

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 10px 28px rgba(16, 185, 129, 0.24);
  }

  50% {
    transform: scale(1.018);
    box-shadow: 0 14px 34px rgba(16, 185, 129, 0.42);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .proof-track {
    transform: none;
  }
}

@media (max-width: 430px) {
  .landing-shell {
    padding: 0;
  }

  .device-frame {
    max-width: none;
    min-height: 100vh;
    padding: 14px 12px 18px;
    border-right: 0;
    border-left: 0;
    box-shadow: none;
  }

  .brand-header {
    min-height: 54px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-lockup span {
    font-size: 0.86rem;
  }

  .brand-lockup small {
    font-size: 0.63rem;
  }

  .eyebrow {
    font-size: 0.68rem;
  }

  .hero-copy h1 {
    max-width: 330px;
    font-size: 1.2rem;
    line-height: 1.12;
  }

  .subheadline {
    max-width: 300px;
    font-size: 0.78rem;
  }

  .video-art {
    min-height: 168px;
  }

  .video-caption {
    right: 8px;
    max-width: 52%;
    overflow: hidden;
    font-size: 0.58rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .primary-cta {
    gap: 6px;
    min-height: 50px;
    padding: 11px 10px;
    font-size: 0.78rem;
    line-height: 1.24;
  }

  .proof-section {
    margin-right: -12px;
    margin-left: -12px;
  }

  .proof-card {
    width: 190px;
  }
}

@media (max-width: 360px) {
  .hero-copy h1 {
    max-width: 300px;
    font-size: 1.08rem;
  }

  .primary-cta {
    font-size: 0.72rem;
  }
}

@media (min-width: 760px) {
  .landing-shell {
    align-items: flex-start;
    padding: 34px 28px 56px;
  }

  .vsl-stage {
    justify-content: center;
  }

  .device-frame {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: min(100%, 1120px);
    max-width: 1120px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .device-frame::before {
    content: none;
  }

  .device-notch {
    display: none;
  }

  .brand-header {
    min-height: auto;
    padding-top: 0;
    margin-bottom: 22px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-lockup span {
    font-size: 0.93rem;
  }

  .brand-lockup small {
    font-size: 0.68rem;
  }

  .eyebrow {
    font-size: 0.72rem;
  }

  .hero-copy h1 {
    max-width: 780px;
    font-size: clamp(2rem, 3.35vw, 3.25rem);
    line-height: 1;
  }

  .subheadline {
    max-width: 680px;
    margin-top: 18px;
    margin-bottom: 28px;
    font-size: 1.05rem;
  }

  .video-slot {
    width: min(100%, 680px);
    margin-bottom: 18px;
    justify-self: center;
  }

  .video-art {
    min-height: 0;
  }

  .video-caption {
    right: 14px;
    max-width: none;
    font-size: 0.68rem;
  }

  .primary-cta {
    gap: 8px;
    width: min(100%, 560px);
    min-height: 48px;
    justify-self: center;
    padding: 13px 14px;
    font-size: 1rem;
    line-height: 1.2;
  }

  .support-copy {
    max-width: 560px;
    margin-bottom: 26px;
    font-size: 0.82rem;
  }

  .proof-section {
    width: min(100vw, 1120px);
    margin-right: 0;
    margin-left: 0;
    padding-top: 8px;
  }

  .proof-card {
    width: 270px;
    min-height: 126px;
    padding: 16px;
  }

  .proof-card p {
    font-size: 0.88rem;
  }

  .proof-card span {
    font-size: 0.78rem;
  }

  .page-footer {
    margin-top: 10px;
  }

  .page-footer p,
  .page-footer a {
    font-size: 0.78rem;
  }
}

@media (min-width: 1120px) {
  .landing-shell {
    padding-top: 42px;
  }

  .vsl-stage::before,
  .vsl-stage::after {
    position: absolute;
    top: 50%;
    width: 250px;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(244, 223, 143, 0.32), transparent);
  }

  .vsl-stage::before {
    left: calc(50% - 470px);
  }

  .vsl-stage::after {
    right: calc(50% - 470px);
  }
}
