:root {
  --bg: #07111f;
  --bg-soft: #0d1a2b;
  --panel: rgba(13, 26, 43, 0.78);
  --panel-strong: rgba(9, 17, 31, 0.92);
  --line: rgba(104, 231, 255, 0.18);
  --text: #eff8ff;
  --muted: #98acc0;
  --cyan: #68e7ff;
  --blue: #2f7bff;
  --red: #ff5f6d;
  --lime: #b8ff8d;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: min(1180px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(47, 123, 255, 0.2), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(104, 231, 255, 0.16), transparent 24%),
    linear-gradient(180deg, #050b15 0%, #091321 42%, #07111f 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 95%);
  pointer-events: none;
  z-index: -2;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-shell {
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(5, 11, 21, 0.72);
  border-bottom: 1px solid rgba(104, 231, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  position: relative;
  background: linear-gradient(145deg, rgba(104, 231, 255, 0.24), rgba(47, 123, 255, 0.18));
  border: 1px solid rgba(104, 231, 255, 0.24);
  box-shadow: inset 0 0 22px rgba(104, 231, 255, 0.2), 0 0 28px rgba(47, 123, 255, 0.18);
}

.brand-mark::before,
.brand-mark::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 10px;
  border: 1px solid rgba(104, 231, 255, 0.45);
}

.brand-mark::after {
  inset: 13px;
  background: linear-gradient(180deg, rgba(104, 231, 255, 0.6), transparent);
}

.brand-copy strong {
  display: block;
  font-family: 'Orbitron', 'Space Grotesk', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-copy span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  color: var(--muted);
  font-size: 0.96rem;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.cta-group,
.hero-actions,
.cta-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button,
.button-ghost {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button {
  color: #041019;
  background: linear-gradient(135deg, var(--cyan), #9ff7ff);
  box-shadow: 0 16px 38px rgba(104, 231, 255, 0.25);
}

.button:hover,
.button:focus-visible,
.button-ghost:hover,
.button-ghost:focus-visible {
  transform: translateY(-2px);
}

.button-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(104, 231, 255, 0.14);
}

.button-ghost.is-active {
  background: rgba(104, 231, 255, 0.14);
  border-color: rgba(104, 231, 255, 0.32);
  color: var(--cyan);
}

.hero {
  padding: 72px 0 32px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(104, 231, 255, 0.08);
  border: 1px solid rgba(104, 231, 255, 0.14);
  color: var(--cyan);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 18px 0 14px;
  font-family: 'Orbitron', 'Space Grotesk', sans-serif;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero h1 span,
.headline-glow {
  color: var(--cyan);
  text-shadow: 0 0 18px rgba(104, 231, 255, 0.28);
}

.hero p,
.section-intro,
.page-hero p,
.article-lead {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.stat-card,
.glass-card,
.mission-card,
.benefit-card,
.testimonial,
.faq-item,
.blog-card,
.metric-card,
.comparison-card,
.contact-card,
.article-section,
.diagnostic-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.stat-card {
  padding: 18px;
}

.stat-card strong,
.metric-number,
.counter {
  display: block;
  font-family: 'Orbitron', 'Space Grotesk', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--cyan);
}

.visual-lab {
  position: relative;
  min-height: 560px;
}

.lab-screen,
.diagnostic-panel {
  position: relative;
  overflow: hidden;
}

.lab-screen {
  min-height: 560px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(8, 18, 34, 0.98), rgba(9, 23, 41, 0.92)),
    radial-gradient(circle at 20% 20%, rgba(104, 231, 255, 0.18), transparent 30%);
  border: 1px solid rgba(104, 231, 255, 0.18);
  border-radius: 30px;
  box-shadow: inset 0 0 40px rgba(104, 231, 255, 0.08), var(--shadow);
}

.scanline,
.lab-screen::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(104, 231, 255, 0.75), transparent);
  filter: blur(1px);
}

.scanline {
  top: 22%;
  animation: scan 4.5s linear infinite;
}

.lab-screen::after {
  bottom: 14%;
  animation: scan 5.6s linear infinite reverse;
}

.screen-frame {
  position: absolute;
  inset: 76px 60px 88px;
  border-radius: 24px;
  border: 1px solid rgba(104, 231, 255, 0.18);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(8, 16, 30, 0.95), rgba(9, 22, 42, 0.95)),
    repeating-linear-gradient(135deg, rgba(104, 231, 255, 0.06) 0 18px, transparent 18px 36px);
}

.screen-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(47, 123, 255, 0.22), transparent 45%),
    linear-gradient(180deg, transparent 0%, rgba(104, 231, 255, 0.08) 100%);
}

.screen-damage,
.screen-repair,
.screen-ui {
  position: absolute;
  inset: 0;
}

.screen-damage {
  background:
    linear-gradient(120deg, transparent 16%, rgba(255, 95, 109, 0.9) 16.5%, transparent 17.5%),
    linear-gradient(40deg, transparent 54%, rgba(255, 95, 109, 0.72) 54.5%, transparent 55.5%),
    linear-gradient(160deg, transparent 72%, rgba(255, 95, 109, 0.85) 72.5%, transparent 73.5%);
  mix-blend-mode: screen;
  opacity: 0.72;
  animation: flicker 2.8s ease-in-out infinite;
}

.screen-repair {
  background: linear-gradient(180deg, rgba(104, 231, 255, 0.22), rgba(104, 231, 255, 0.02));
  transform: translateY(100%);
  animation: repairSweep 4.8s ease-in-out infinite;
}

.screen-ui {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ui-chip-row,
.blog-filters,
.category-list,
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ui-chip,
.category-pill,
.tag {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(104, 231, 255, 0.12);
}

.ui-matrix {
  display: grid;
  gap: 12px;
}

.ui-bar {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.ui-bar span,
.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  box-shadow: 0 0 22px rgba(104, 231, 255, 0.32);
}

.section {
  padding: 42px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.section h2,
.article-section h2,
.faq h2,
.blog-index h1 {
  margin: 0 0 10px;
  font-family: 'Orbitron', 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.04em;
}

.problem-grid,
.benefits-grid,
.testimonials,
.blog-grid,
.metrics-grid,
.contact-grid,
.article-grid,
.comparison-grid {
  display: grid;
  gap: 18px;
}

.problem-grid,
.benefits-grid,
.testimonials,
.blog-grid,
.metrics-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.problem-card,
.benefit-card,
.blog-card,
.testimonial,
.metric-card,
.comparison-card,
.contact-card,
.article-section {
  padding: 22px;
}

.article-section ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.article-section li + li {
  margin-top: 6px;
}

.problem-card::before,
.benefit-card::before,
.blog-card::before,
.comparison-card::before {
  content: attr(data-index);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  margin-bottom: 14px;
  font-family: 'Orbitron', 'Space Grotesk', sans-serif;
  color: var(--cyan);
  background: rgba(104, 231, 255, 0.08);
  border: 1px solid rgba(104, 231, 255, 0.15);
}

.mission {
  position: relative;
}

.mission-track {
  position: absolute;
  top: 64px;
  left: min(15%, 130px);
  right: min(15%, 130px);
  height: 2px;
  background: linear-gradient(90deg, rgba(104, 231, 255, 0.2), rgba(47, 123, 255, 0.5));
}

.mission-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.mission-card {
  padding: 24px;
}

.mission-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  margin-bottom: 16px;
  color: var(--cyan);
  border: 1px solid rgba(104, 231, 255, 0.22);
  background: rgba(104, 231, 255, 0.08);
  font-family: 'Orbitron', 'Space Grotesk', sans-serif;
}

.progress {
  height: 10px;
  margin-top: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.gamer-banner,
.final-cta,
.page-hero,
.article-hero,
.blog-search {
  padding: 28px;
  border-radius: 32px;
  border: 1px solid rgba(104, 231, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(9, 18, 33, 0.95), rgba(8, 14, 25, 0.85)),
    radial-gradient(circle at top right, rgba(47, 123, 255, 0.2), transparent 34%);
  box-shadow: var(--shadow);
}

.comparison-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.comparison-visual {
  min-height: 240px;
  border-radius: 18px;
  margin-top: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    radial-gradient(circle at 30% 20%, rgba(104, 231, 255, 0.15), transparent 28%),
    linear-gradient(45deg, rgba(255, 95, 109, 0.08), rgba(47, 123, 255, 0.08));
  border: 1px solid rgba(104, 231, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.comparison-visual::before,
.comparison-visual::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
}

.comparison-visual.before::before {
  inset: 30px auto auto 40px;
  width: 120px;
  height: 120px;
  background: rgba(255, 95, 109, 0.22);
}

.comparison-visual.after::before {
  inset: auto 30px 30px auto;
  width: 140px;
  height: 140px;
  background: rgba(104, 231, 255, 0.22);
}

.comparison-visual::after {
  left: 20px;
  right: 20px;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(104, 231, 255, 0.65), transparent);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item button {
  width: 100%;
  padding: 22px;
  border: 0;
  background: none;
  color: inherit;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.faq-item .answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
  color: var(--muted);
  padding: 0 22px;
}

.faq-item.is-open .answer {
  padding-bottom: 22px;
  max-height: 220px;
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.contact-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.contact-card form {
  display: grid;
  gap: 14px;
}

.field,
.search-input,
textarea,
input,
select {
  width: 100%;
  border: 1px solid rgba(104, 231, 255, 0.14);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  font: inherit;
}

textarea {
  min-height: 128px;
  resize: vertical;
}

.blog-search {
  display: grid;
  gap: 18px;
  margin-bottom: 26px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-card .thumb,
.article-cover {
  position: relative;
  min-height: 200px;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(47, 123, 255, 0.32), rgba(104, 231, 255, 0.16)),
    linear-gradient(0deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(104, 231, 255, 0.16);
}

.blog-card .thumb::before,
.article-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 10%, rgba(255, 255, 255, 0.08) 30%, transparent 50%),
    radial-gradient(circle at 20% 20%, rgba(104, 231, 255, 0.18), transparent 24%);
}

.thumb-copy,
.cover-copy {
  position: absolute;
  inset: auto 18px 18px 18px;
  z-index: 1;
}

.thumb-copy strong,
.cover-copy strong {
  display: block;
  font-family: 'Orbitron', 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

.article-aside {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.footer {
  padding: 40px 0 56px;
  color: var(--muted);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid rgba(104, 231, 255, 0.08);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  padding: 16px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3ee58f, #90ffc3);
  color: #032514;
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(62, 229, 143, 0.28);
}

.hide {
  display: none !important;
}

@keyframes scan {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(420px);
  }
}

@keyframes flicker {
  0%, 100% {
    opacity: 0.54;
  }

  50% {
    opacity: 0.85;
  }
}

@keyframes repairSweep {
  0% {
    transform: translateY(100%);
  }

  25% {
    transform: translateY(48%);
  }

  50% {
    transform: translateY(0%);
  }

  100% {
    transform: translateY(-100%);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .article-layout,
  .contact-grid,
  .final-cta,
  .mission-grid,
  .problem-grid,
  .benefits-grid,
  .testimonials,
  .blog-grid,
  .metrics-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .mission-track {
    display: none;
  }

  .article-aside {
    position: static;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 42px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .section,
  .footer {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .lab-screen {
    min-height: 430px;
  }

  .screen-frame {
    inset: 64px 24px 72px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .footer-grid {
    flex-direction: column;
    align-items: start;
  }

  .floating-whatsapp {
    right: 12px;
    left: 12px;
    bottom: 12px;
    text-align: center;
  }
}