:root {
  color-scheme: dark;
  --bg: #050714;
  --bg-soft: #0b1024;
  --surface: rgba(18, 25, 48, 0.82);
  --surface-strong: #121936;
  --text: #f6f8ff;
  --muted: #b8c0d9;
  --line: rgba(255, 255, 255, 0.14);
  --blue: #00a8ff;
  --blue-strong: #006dff;
  --green: #17d99f;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px clamp(18px, 5vw, 72px);
  background: linear-gradient(180deg, rgba(5, 7, 20, 0.94), rgba(5, 7, 20, 0.28));
  transition: background 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-solid {
  background: rgba(5, 7, 20, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(210px, 19vw, 300px);
  height: 96px;
  padding: 0;
  background: transparent;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: start;
  overflow: hidden;
  padding: 146px clamp(20px, 5vw, 92px) 116px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.98) 25%, rgba(3, 6, 17, 0.58) 54%, rgba(3, 6, 17, 0.08) 84%),
    linear-gradient(0deg, var(--bg) 0%, rgba(5, 7, 20, 0) 32%),
    linear-gradient(180deg, rgba(5, 7, 20, 0.22), rgba(5, 7, 20, 0.1));
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background: #040714;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 900ms ease, transform 5200ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(690px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 4px 18px rgba(255, 255, 255, 0.2), 0 10px 28px rgba(0, 0, 0, 0.55);
}

h1 span {
  color: #12a9ff;
  text-shadow: 0 0 28px rgba(18, 169, 255, 0.3);
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.hero-copy {
  width: min(610px, 100%);
  margin-bottom: 20px;
  color: #c9d0df;
  font-size: clamp(1.08rem, 1.75vw, 1.42rem);
  font-weight: 520;
  line-height: 1.42;
}

.hero-copy strong {
  color: #17abff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 16px;
}

.benefit-grid {
  display: grid;
  width: min(620px, 100%);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 20px;
}

.benefit-grid article {
  display: grid;
  min-height: 104px;
  place-items: center;
  align-content: center;
  gap: 9px;
  border: 1px solid rgba(0, 162, 255, 0.14);
  border-radius: 8px;
  background: rgba(3, 13, 31, 0.78);
  box-shadow: inset 0 0 30px rgba(0, 132, 255, 0.06), 0 16px 40px rgba(0, 0, 0, 0.24);
}

.benefit-grid svg {
  width: 37px;
  height: 37px;
  fill: none;
  stroke: #0ab4ff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
  filter: drop-shadow(0 0 12px rgba(10, 180, 255, 0.38));
}

.benefit-grid span {
  color: #fff;
  font-size: 0.82rem;
  line-height: 1.2;
  text-align: center;
}

.test-button {
  display: inline-flex;
  width: min(640px, 100%);
  min-height: 64px;
  margin: 0 0 18px;
  gap: 12px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(68, 178, 255, 0.55);
  border-radius: 8px;
  background: linear-gradient(180deg, #087cff 0%, #0066f5 100%);
  color: #fff;
  font-size: 1.08rem;
  font-weight: 850;
  text-transform: uppercase;
  box-shadow: 0 20px 48px rgba(0, 102, 245, 0.3);
}

.test-button svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.primary-button,
.secondary-button,
.plan-card a {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 0 26px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.primary-button,
.plan-card a {
  background: linear-gradient(90deg, var(--blue-strong), var(--blue));
  color: white;
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.microcopy,
.section-heading p,
.device-band p,
.plan-card p,
.footer span {
  color: var(--muted);
  line-height: 1.65;
}

.microcopy {
  max-width: 650px;
}

.microcopy a {
  display: block;
  width: fit-content;
  margin-top: 2px;
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 25px;
  margin: 0;
  padding: 0;
  color: #d9deea;
  font-size: 0.85rem;
  list-style: none;
}

.trust-row li {
  position: relative;
  padding-left: 21px;
}

.trust-row li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 10px;
  height: 6px;
  border-left: 1.8px solid #15a8ff;
  border-bottom: 1.8px solid #15a8ff;
  transform: rotate(-45deg);
}

.platform-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 22px;
  width: min(660px, 100%);
  margin-top: 30px;
}

.platform-row img {
  display: block;
  width: auto;
  max-width: 118px;
  height: 34px;
  object-fit: contain;
}

.platform-row .platform-bundle {
  width: min(600px, 100%);
  max-width: none;
  height: auto;
  max-height: 42px;
  object-fit: contain;
  object-position: left center;
  flex-basis: 100%;
}

.hero-progress {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 2;
  display: grid;
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: repeat(4, minmax(0, 1fr));
  transform: translateX(-50%);
}

.hero-progress button {
  position: relative;
  min-width: 0;
  cursor: pointer;
  border: 0;
  border-top: 2px solid rgba(255, 255, 255, 0.24);
  padding: 13px 10px 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  font: inherit;
  font-size: 0.78rem;
  text-align: center;
}

.hero-progress span {
  position: absolute;
  top: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
}

.hero-progress button.is-active {
  color: #fff;
}

.hero-progress button.is-active span {
  animation: slideProgress 5.8s linear forwards;
}

@keyframes slideProgress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  padding: 18px clamp(20px, 6vw, 88px) 38px;
}

.logo-strip span {
  display: grid;
  min-height: 72px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  color: #dfe6ff;
  font-weight: 850;
}

.section,
.device-band {
  padding: 82px clamp(20px, 6vw, 88px);
}

.section-heading {
  width: min(780px, 100%);
  margin-bottom: 32px;
}

#catalogo {
  overflow: hidden;
  padding-inline: 0;
  background: #030714;
}

.catalog-heading {
  padding: 0 clamp(20px, 6vw, 88px);
  text-align: center;
}

.catalog-heading h2 {
  margin-bottom: 42px;
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.catalog-rail {
  display: grid;
  grid-auto-columns: minmax(280px, 324px);
  grid-auto-flow: column;
  gap: 20px;
  overflow-x: auto;
  padding: 0 clamp(20px, 6vw, 88px) 18px;
  scroll-padding-inline: clamp(20px, 6vw, 88px);
  scrollbar-width: thin;
}

.catalog-rail::-webkit-scrollbar {
  height: 10px;
}

.catalog-rail::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
}

.catalog-rail::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.rank-card {
  position: relative;
  min-height: 516px;
  overflow: hidden;
  border-radius: 8px;
  background: #050812;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

.rank-card::before,
.rank-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.rank-card::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 34%, rgba(0, 0, 0, 0.64) 70%, #000 100%);
}

.rank-card::after {
  background: linear-gradient(135deg, rgba(0, 222, 255, 0.46) 0%, rgba(0, 222, 255, 0.22) 18%, rgba(0, 0, 0, 0) 42%);
  mix-blend-mode: screen;
}

.rank-card img {
  width: 100%;
  height: 100%;
  min-height: 516px;
  object-fit: cover;
  transition: transform 240ms ease;
}

.rank-card:hover img {
  transform: scale(1.04);
}

.rank-number {
  position: absolute;
  left: 18px;
  top: 10px;
  z-index: 2;
  color: #23e5ff;
  font-size: clamp(3.3rem, 5vw, 4.5rem);
  font-weight: 950;
  line-height: 1;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.42);
}

.rank-card-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 0 20px 18px;
}

.rank-card-info h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.15;
  text-align: center;
}

.rank-card-info p {
  display: block;
  overflow: hidden;
  margin: 0;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rating {
  display: inline-grid;
  width: 17px;
  height: 17px;
  place-items: center;
  margin-right: 8px;
  border-radius: 2px;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 900;
}

.rating-l,
.rating-10 {
  background: #13b56b;
}

.rating-12 {
  background: #d8ad20;
}

.rating-14 {
  background: #f47c20;
}

.rating-16 {
  background: #d81920;
}

.device-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(620px, 1.28fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  overflow: hidden;
  min-height: 620px;
  background:
    radial-gradient(circle at 74% 45%, rgba(0, 123, 255, 0.34), transparent 34%),
    radial-gradient(circle at 0% 52%, rgba(0, 102, 255, 0.4), transparent 24%),
    linear-gradient(180deg, #030714, #040815 72%, #02040d);
}

.device-copy h2 {
  max-width: 660px;
  font-size: clamp(2.8rem, 5.2vw, 5rem);
  line-height: 1.1;
}

.device-copy h2 span {
  color: #168dff;
}

.device-copy p:last-child {
  max-width: 620px;
  color: #aeb9d3;
  font-size: clamp(1.05rem, 1.4vw, 1.38rem);
}

.device-stack {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.75fr;
  grid-template-rows: 300px 216px 84px;
  gap: 16px;
}

.device-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(121, 162, 217, 0.25);
  border-radius: 14px;
  background:
    radial-gradient(circle at 65% 78%, rgba(0, 112, 255, 0.26), transparent 35%),
    linear-gradient(145deg, rgba(6, 20, 43, 0.92), rgba(2, 8, 20, 0.92));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 24px 64px rgba(0, 0, 0, 0.32);
}

.smart-tv {
  grid-column: 1 / 3;
  grid-row: 1;
}

.phone {
  grid-column: 3;
  grid-row: 1 / 3;
}

.tvbox {
  grid-column: 1;
  grid-row: 2;
}

.notebook {
  grid-column: 2;
  grid-row: 2;
}

.tablet {
  grid-column: 3;
  grid-row: 3;
}

.device-label {
  position: absolute;
  left: 28px;
  top: 28px;
  z-index: 2;
  display: grid;
  gap: 14px;
}

.device-label svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: #058dff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.device-label strong {
  font-size: clamp(1.15rem, 1.8vw, 1.95rem);
}

.tv-mockup,
.phone-mockup,
.laptop-mockup,
.tablet-mockup,
.box-mockup {
  position: absolute;
  background: linear-gradient(145deg, #101b28, #030711);
  box-shadow: 0 16px 35px rgba(0, 112, 255, 0.22);
}

.tv-mockup {
  right: 9%;
  bottom: 36px;
  width: 55%;
  height: 228px;
  border: 4px solid #2d3037;
}

.tv-mockup::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -22px;
  width: 62%;
  height: 6px;
  border-radius: 999px;
  background: #111722;
  transform: translateX(-50%);
}

.phone-mockup {
  right: 23%;
  bottom: 54px;
  width: 124px;
  height: 250px;
  border: 8px solid #111827;
  border-radius: 24px;
}

.laptop-mockup {
  right: 9%;
  bottom: 34px;
  width: 52%;
  height: 130px;
  border: 5px solid #1e2734;
  border-radius: 8px;
  transform: perspective(520px) rotateX(6deg) rotateY(-8deg);
}

.laptop-mockup::after {
  content: "";
  position: absolute;
  left: -12%;
  right: -12%;
  bottom: -18px;
  height: 16px;
  border-radius: 0 0 16px 16px;
  background: linear-gradient(90deg, #111824, #2b3443);
}

.tablet-mockup {
  right: 9%;
  top: 13px;
  width: 45%;
  height: 58px;
  border: 4px solid #142033;
  border-radius: 8px;
  transform: perspective(300px) rotateX(14deg);
}

.box-mockup {
  right: 16%;
  bottom: 28px;
  width: 46%;
  height: 64px;
  border-radius: 14px;
}

.screen-ui {
  position: absolute;
  inset: 0;
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.8)),
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.13), transparent 20%),
    linear-gradient(135deg, #0e2138, #040810);
}

.screen-ui span {
  display: block;
  color: #fff;
  font-weight: 850;
}

.screen-ui b {
  display: inline-block;
  margin-top: 12px;
  border-radius: 3px;
  padding: 5px 14px;
  background: #057cff;
  color: #fff;
  font-size: 0.72rem;
}

.screen-ui.compact {
  padding: 14px;
  font-size: 0.58rem;
}

.poster-mini-row {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  gap: 7px;
}

.poster-mini-row i {
  height: 48px;
  border-radius: 4px;
  background: linear-gradient(135deg, #ff7a18, #7928ca 55%, #00b4ff);
}

.compact .poster-mini-row {
  left: 10px;
  right: 10px;
  bottom: 10px;
  gap: 5px;
}

.compact .poster-mini-row i {
  height: 34px;
}

.plans {
  background: linear-gradient(180deg, var(--bg), #080d20);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.plan-card {
  position: relative;
  display: flex;
  min-height: 470px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
}

.plan-card.featured {
  border-color: rgba(0, 168, 255, 0.8);
  background: linear-gradient(180deg, rgba(0, 109, 255, 0.2), rgba(255, 255, 255, 0.06));
  box-shadow: 0 18px 70px rgba(0, 109, 255, 0.22);
}

.badge {
  width: fit-content;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(23, 217, 159, 0.18);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
}

.price {
  margin-bottom: 14px;
  color: var(--text);
  font-size: 2.3rem;
  font-weight: 900;
}

.plan-card ul {
  display: grid;
  gap: 13px;
  margin: 18px 0 28px;
  padding-left: 20px;
  color: #d7def3;
}

.plan-card a {
  margin-top: auto;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 30px clamp(20px, 6vw, 88px);
  background: #040611;
}

.footer a {
  color: var(--green);
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: #11c94f;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.36);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(17, 201, 79, 0.28);
}

.whatsapp-float svg {
  width: 38px;
  height: 38px;
  fill: #fff;
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: 760px;
    padding-top: 150px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(5, 7, 20, 0.35), var(--bg) 82%),
      linear-gradient(90deg, rgba(5, 7, 20, 0.95), rgba(5, 7, 20, 0.5));
  }

  .hero-slide {
    object-position: 62% center;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-grid article {
    min-height: 88px;
  }

  .platform-row {
    margin-top: 24px;
  }

  .hero-progress {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 14px;
  }

  .logo-strip,
  .plans-grid,
  .device-band {
    grid-template-columns: 1fr;
  }

  .logo-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog-rail {
    grid-auto-columns: minmax(232px, 280px);
  }

  .rank-card,
  .rank-card img {
    min-height: 430px;
  }

  .device-stack {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .smart-tv,
  .phone,
  .tvbox,
  .notebook,
  .tablet {
    grid-column: auto;
    grid-row: auto;
    min-height: 220px;
  }

  .phone {
    min-height: 360px;
  }
}

@media (max-width: 540px) {
  .site-header {
    padding: 8px 16px;
  }

  .brand {
    width: 172px;
    height: 66px;
  }

  .hero-actions a {
    width: 100%;
  }

  .test-button {
    width: 100%;
    border-radius: 6px;
    padding-inline: 16px;
    text-align: center;
  }

  .hero {
    min-height: 860px;
    padding-top: 252px;
    padding-bottom: 130px;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .benefit-grid article {
    min-height: 82px;
  }

  .benefit-grid article:last-child {
    grid-column: 1 / -1;
  }

  .trust-row {
    gap: 10px 16px;
    font-size: 0.78rem;
  }

  .platform-row {
    gap: 12px 14px;
  }

  .platform-row img {
    max-width: 92px;
    height: 28px;
  }

  .platform-row .platform-bundle {
    max-height: 34px;
  }

  .hero-progress {
    bottom: 22px;
    width: calc(100% - 32px);
  }

  .hero-progress button {
    padding-inline: 4px;
    font-size: 0.7rem;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-float svg {
    width: 34px;
    height: 34px;
  }

  .logo-strip {
    grid-template-columns: 1fr;
  }

  .section,
  .device-band {
    padding-block: 60px;
  }

  .plan-card {
    min-height: auto;
  }
}
