* {
  box-sizing: border-box;
}

:root {
  --bg: #030806;
  --panel: rgba(8, 24, 25, 0.82);
  --panel-hover: rgba(14, 37, 40, 0.94);
  --white: #f7f7f8;
  --muted: #cbd3d4;
  --matrix: #19ff73;
  --blue: #1597ed;
  --lilac: #a36bff;
  --netflix-red: #e50914;
  --red-bright: #ff2331;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--white);
  background: var(--bg);
  font-family: "Montserrat", Arial, sans-serif;
  overflow-x: hidden;
}

.matrix-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(0, 255, 105, 0.11), transparent 34%),
    linear-gradient(180deg, rgba(0, 15, 8, 0.62), rgba(0, 5, 4, 0.98));
}

.matrix-bg::before,
.matrix-bg::after {
  content: "01 10 01 11 001 101 010 110 011 001 101 010 011 100";
  position: absolute;
  inset: -20%;
  color: rgba(25, 255, 115, 0.22);
  font: 700 18px/2.2 monospace;
  letter-spacing: 12px;
  word-spacing: 18px;
  transform: rotate(0deg);
  white-space: pre-wrap;
  animation: rain 16s linear infinite;
}

.matrix-bg::after {
  color: rgba(25, 255, 115, 0.10);
  font-size: 12px;
  letter-spacing: 20px;
  animation-duration: 23s;
  animation-direction: reverse;
}

@keyframes rain {
  from { transform: translateY(-8%); }
  to { transform: translateY(28%); }
}

.scanlines {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.015) 50%, rgba(0,0,0,0.035) 50%);
  background-size: 100% 4px;
  mix-blend-mode: screen;
}

.page {
  width: min(760px, calc(100% - 28px));
  margin: 0 auto;
  padding: 34px 0 28px;
}

.hero {
  text-align: center;
  padding: 34px 18px 22px;
}

.logo-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 26px 34px 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(0,0,0,.28), rgba(0,0,0,.10));
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
}

.code-logo {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 78px;
  font-size: 78px;
  line-height: 1;
  font-weight: 800;
  background: linear-gradient(115deg, #fff 4%, var(--lilac) 43%, var(--netflix-red) 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.code-logo i {
  font-style: normal;
  font-weight: 700;
}

.brand-name {
  margin-top: 2px;
  font-size: clamp(42px, 8vw, 66px);
  line-height: .95;
  font-weight: 800;
  letter-spacing: -2.5px;
  background: linear-gradient(100deg, #fff 0%, #fff 18%, var(--lilac) 51%, var(--netflix-red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tagline {
  margin-top: 15px;
  font-size: clamp(15px, 3.3vw, 21px);
  font-weight: 600;
  letter-spacing: 5px;
  color: #e5e8ea;
}

.intro {
  margin: 30px auto 14px;
}

.intro h1,
.intro p {
  margin: 0;
  text-align: center;
}

.intro h1 {
  font-size: clamp(22px, 4.6vw, 32px);
  font-weight: 600;
}

.intro p {
  margin-top: 6px;
  font-size: clamp(20px, 4.5vw, 30px);
  font-weight: 500;
}

.intro strong {
  color: var(--netflix-red);
}

.intro-line {
  width: 105px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lilac), var(--netflix-red));
  box-shadow: 0 0 15px rgba(229,9,20,.45);
}

.services {
  display: grid;
  gap: 12px;
  margin: 20px auto 18px;
}

.service-card,
.whatsapp-card {
  position: relative;
  border: 1px solid rgba(175, 238, 255, 0.26);
  background:
    linear-gradient(90deg, rgba(229, 9, 20, .96) 0 8px, transparent 8px),
    linear-gradient(105deg, rgba(20, 45, 52, .92), rgba(4, 15, 17, .88));
  box-shadow: 0 12px 30px rgba(0,0,0,.30), inset 0 0 25px rgba(0, 180, 255, .025);
  backdrop-filter: blur(8px);
}

.service-card {
  width: 100%;
  min-height: 104px;
  display: grid;
  grid-template-columns: 108px 1fr 54px;
  align-items: center;
  gap: 18px;
  padding: 12px 18px 12px 26px;
  border-radius: 20px;
  color: inherit;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-2px) scale(1.005);
  background:
    linear-gradient(90deg, rgba(229, 9, 20, 1) 0 8px, transparent 8px),
    linear-gradient(105deg, rgba(28, 61, 69, .98), rgba(7, 23, 26, .96));
  border-color: rgba(255,255,255,.45);
  outline: none;
}

.icon-box {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, #ff1b2d, #c80718);
  box-shadow: 0 7px 20px rgba(229,9,20,.22);
}

.service-icon {
  width: 66px;
  height: 66px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.service-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.service-text strong {
  font-size: 22px;
  font-weight: 700;
}

.service-text small {
  max-width: 470px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
  font-weight: 500;
}

.arrow {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #ff2331, var(--netflix-red));
  color: white;
  font-size: 39px;
  line-height: 1;
  font-weight: 400;
  box-shadow: 0 5px 18px rgba(229,9,20,.28);
}

.whatsapp-card {
  display: grid;
  grid-template-columns: 82px 1fr 54px;
  align-items: center;
  gap: 18px;
  min-height: 102px;
  padding: 14px 24px;
  border-radius: 22px;
  color: white;
  text-decoration: none;
  border-color: rgba(25, 255, 115, .55);
  background: linear-gradient(105deg, rgba(4, 24, 20, .94), rgba(3, 12, 12, .92));
  transition: transform .18s ease, border-color .18s ease;
}

.whatsapp-card:hover {
  transform: translateY(-2px);
  border-color: rgba(25,255,115,.9);
}

.whatsapp-symbol {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 4px solid #25d366;
  border-radius: 50%;
  color: #25d366;
  font-size: 48px;
  transform: rotate(-35deg);
}

.whatsapp-card small {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  color: #e5eeee;
}

.whatsapp-card strong {
  font-size: clamp(19px, 4vw, 26px);
  letter-spacing: .2px;
}

.footer {
  padding: 24px 5px 4px;
  text-align: center;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 16px;
  color: #e3e9ea;
  font-size: 12px;
  font-weight: 500;
}

.divider {
  width: 1px;
  height: 17px;
  background: rgba(255,255,255,.38);
}

.credit {
  margin-top: 18px;
  font-size: 13px;
  color: #d8dfe0;
}

.credit strong {
  color: var(--netflix-red);
  font-weight: 700;
}

@media (max-width: 620px) {
  .page {
    width: min(100% - 18px, 520px);
    padding-top: 12px;
  }

  .hero {
    padding: 18px 8px 14px;
  }

  .logo-wrap {
    padding: 22px 18px 20px;
  }

  .code-logo {
    height: 62px;
    font-size: 62px;
  }

  .brand-name {
    font-size: clamp(37px, 12vw, 54px);
  }

  .tagline {
    letter-spacing: 3px;
    font-size: 13px;
  }

  .service-card {
    grid-template-columns: 72px 1fr 42px;
    gap: 12px;
    min-height: 90px;
    padding: 10px 12px 10px 20px;
    border-radius: 17px;
  }

  .icon-box {
    width: 66px;
    height: 66px;
    border-radius: 13px;
  }

  .service-icon {
    width: 53px;
    height: 53px;
  }

  .service-text strong {
    font-size: 17px;
  }

  .service-text small {
    font-size: 11.5px;
  }

  .arrow {
    width: 38px;
    height: 38px;
    font-size: 31px;
  }

  .whatsapp-card {
    grid-template-columns: 58px 1fr 42px;
    gap: 12px;
    min-height: 86px;
    padding: 12px 15px;
  }

  .whatsapp-symbol {
    width: 54px;
    height: 54px;
    border-width: 3px;
    font-size: 37px;
  }

  .whatsapp-card small {
    font-size: 11px;
  }

  .whatsapp-card strong {
    font-size: 17px;
  }

  .footer-main {
    flex-direction: column;
    gap: 9px;
    font-size: 11px;
  }

  .divider {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
