:root {
  --bg: #080045;
  --ink: #111827;
  --panel: rgba(64, 19, 180, 0.44);
  --panel-2: rgba(126, 31, 255, 0.28);
  --text: #f8fafc;
  --muted: #d7d0ff;
  --line: rgba(214, 178, 255, 0.34);
  --brand: #6d00ff;
  --brand-2: #b126ff;
  --green: #b7ff00;
  --yellow: #ffb800;
  --red: #ff2490;
  --white: #ffffff;
  --shadow: 0 30px 90px rgba(35, 0, 113, 0.45);
  --glow: 0 0 28px rgba(148, 54, 255, 0.78), inset 0 0 34px rgba(149, 47, 255, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 35% 0%, rgba(126, 31, 255, 0.56), transparent 38%),
    radial-gradient(circle at 70% 35%, rgba(77, 0, 255, 0.48), transparent 35%),
    linear-gradient(135deg, #120075 0%, #25008b 42%, #070044 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 28%, rgba(255, 255, 255, 0.08), transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 4px 4px, 56px 56px, 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  z-index: -1;
}

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

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

.shell {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--green);
  color: #07120c;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 0, 75, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}

.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(236, 215, 255, 0.46);
  border-radius: 999px;
  background: radial-gradient(circle at 45% 30%, rgba(181, 105, 255, 0.95), rgba(63, 0, 168, 0.72));
  box-shadow: 0 0 24px rgba(178, 71, 255, 0.72), 0 8px 26px rgba(6, 0, 40, 0.42);
}

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

.brand strong,
.brand small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand strong {
  font-family: Rajdhani, sans-serif;
  font-size: 24px;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.nav-links {
  display: flex;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a,
.nav-cta {
  padding: 10px 12px;
  border-radius: 8px;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.nav-cta {
  background: var(--green);
  color: #22005d;
  font-weight: 900;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 34px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 12% -12% auto auto;
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(177, 38, 255, 0.46), transparent 64%);
  z-index: -1;
}

.shape {
  position: absolute;
  display: block;
  border-radius: 999px;
  border: 34px solid rgba(125, 36, 255, 0.36);
  filter: blur(0.2px);
  pointer-events: none;
}

.shape-left {
  left: -86px;
  top: 52px;
  width: 260px;
  height: 96px;
  transform: rotate(-34deg);
}

.shape-top {
  left: 47%;
  top: -72px;
  width: 180px;
  height: 180px;
  border-width: 38px;
  border-right-color: transparent;
  transform: rotate(18deg);
}

.shape-right {
  right: -90px;
  top: 120px;
  width: 230px;
  height: 92px;
  transform: rotate(38deg);
}

.hero-cover-wall {
  position: absolute;
  inset: 92px -70px auto -70px;
  height: 500px;
  z-index: 0;
  opacity: 0.34;
  filter: blur(0.2px);
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  pointer-events: none;
  animation: cover-wall-float 12s ease-in-out infinite alternate;
}

.cover-marquee {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  transform: rotate(-6deg);
}

.cover-marquee-a {
  top: 0;
}

.cover-marquee-b {
  top: 170px;
  transform: rotate(5deg);
}

.cover-track,
.catalog-track {
  display: flex;
  width: max-content;
  gap: 16px;
  will-change: transform;
}

.cover-marquee-a .cover-track,
.catalog-row-left .catalog-track {
  animation: cover-scroll-left 28s linear infinite;
}

.cover-marquee-b .cover-track,
.catalog-row-right .catalog-track {
  animation: cover-scroll-right 34s linear infinite;
}

.mini-cover {
  width: 138px;
  height: 184px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 26px rgba(177, 38, 255, 0.34), inset 0 0 24px rgba(255, 255, 255, 0.09);
  object-fit: cover;
  overflow: hidden;
  opacity: 0.88;
}

.mini-cover b,
.game-cover strong {
  position: relative;
  z-index: 1;
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.mini-cover small {
  position: relative;
  z-index: 1;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(500px, 1.06fr);
  gap: 26px;
  align-items: start;
}

.eyebrow {
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Montserrat, Rajdhani, Inter, sans-serif;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(62px, 8.9vw, 122px);
  font-weight: 900;
  font-style: italic;
  text-shadow: 0 0 28px rgba(255, 255, 255, 0.22);
}

h1 span,
h1 strong {
  display: block;
}

h1 span {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(30px, 3.7vw, 54px);
  line-height: 0.95;
  letter-spacing: 0.08em;
}

h1 strong {
  color: #fff;
  font-size: 1em;
  line-height: 0.9;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 6vw, 68px);
}

.hero-text {
  max-width: 650px;
  color: #fff;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
}

.hero-actions,
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--green);
  color: #250062;
  box-shadow: 0 0 24px rgba(183, 255, 0, 0.46);
}

.button-secondary,
.button-package {
  background: linear-gradient(135deg, rgba(77, 0, 255, 0.44), rgba(177, 38, 255, 0.26));
  border-color: var(--line);
  color: var(--white);
  box-shadow: var(--glow);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-row span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  color: #fff;
  background: rgba(77, 0, 255, 0.32);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: start;
}

.hero-stage {
  position: relative;
  min-height: 460px;
  margin-top: 58px;
  margin-bottom: 96px;
  overflow: visible;
  border-radius: 34px;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: -3% -2% 0 1%;
  border-radius: 32px;
  background:
    radial-gradient(circle at 52% 45%, rgba(183, 255, 0, 0.13), transparent 28%),
    radial-gradient(circle at 50% 52%, rgba(177, 38, 255, 0.48), transparent 56%);
  filter: blur(12px);
}

.hero-characters,
.hero-controller,
.hero-broken {
  position: absolute;
  user-select: none;
  pointer-events: none;
}

.hero-characters {
  z-index: 3;
  top: -4px;
  left: -72px;
  width: min(1160px, 174%);
  filter: drop-shadow(0 0 22px rgba(177, 38, 255, 0.8));
}

.hero-controller {
  z-index: 2;
  left: 8px;
  bottom: -92px;
  width: min(280px, 40%);
  border-radius: 18px;
  filter: drop-shadow(0 0 28px rgba(177, 38, 255, 0.72));
  transform: rotate(-7deg);
  opacity: 0.9;
}

.hero-broken {
  z-index: 4;
  right: 48px;
  bottom: -116px;
  width: min(220px, 32%);
  filter: drop-shadow(0 0 20px rgba(183, 255, 0, 0.34)) drop-shadow(0 0 22px rgba(177, 38, 255, 0.78));
}

.metric-card {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 190px;
  border-radius: 8px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(79, 0, 255, 0.78), rgba(143, 19, 255, 0.72));
  color: #fff;
  box-shadow: var(--glow);
}

.metric-card strong {
  font-family: Rajdhani, sans-serif;
  font-size: 42px;
  line-height: 0.9;
}

.metric-card span {
  color: #eee8ff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.benefit-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px;
  padding-bottom: 28px;
}

.benefit-strip span {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(217, 178, 255, 0.34);
  border-radius: 10px;
  background: rgba(77, 0, 255, 0.22);
  box-shadow: inset 0 0 22px rgba(172, 84, 255, 0.18);
  padding: 14px 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.benefit-strip strong {
  min-width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 10px;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.15);
}

.metric-main {
  left: 0;
  bottom: 0;
  z-index: 6;
}

.metric-side {
  right: 0;
  bottom: 0;
  z-index: 6;
}

.section {
  padding: 92px 0;
}

.section-ink {
  background: rgba(5, 0, 54, 0.72);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.features-grid,
.packages-grid,
.testimonials-grid {
  display: grid;
  gap: 18px;
}

.features-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature,
.package,
.faq-list details,
.testimonials-grid article {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(104, 18, 255, 0.34), rgba(34, 0, 132, 0.3));
  box-shadow: inset 0 0 28px rgba(176, 71, 255, 0.18);
}

.feature {
  padding: 24px;
}

.feature-icon {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--green);
  font-family: Rajdhani, sans-serif;
  font-size: 24px;
  font-weight: 900;
}

.feature h3,
.package-head span {
  margin-bottom: 10px;
  font-size: 20px;
}

.feature p,
.package li,
.faq-list p,
.testimonials-grid p,
.models-copy p,
.footer p,
.footer span {
  color: var(--muted);
  line-height: 1.65;
}

.game-catalog-section {
  position: relative;
  padding: 34px 0 88px;
  background:
    radial-gradient(circle at 18% 32%, rgba(183, 255, 0, 0.1), transparent 24%),
    radial-gradient(circle at 76% 60%, rgba(177, 38, 255, 0.28), transparent 34%),
    rgba(8, 0, 69, 0.82);
  overflow: hidden;
}

.catalog-glass {
  border: 1px solid rgba(224, 183, 255, 0.34);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045));
  box-shadow: var(--glow), inset 0 0 40px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  padding: 30px 0;
  overflow: hidden;
}

.catalog-heading {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto 26px;
  text-align: center;
}

.catalog-heading h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.catalog-window {
  display: grid;
  gap: 18px;
  mask-image: linear-gradient(90deg, transparent, black 9%, black 91%, transparent);
}

.catalog-row {
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  touch-action: pan-y;
  user-select: none;
}

.catalog-row::-webkit-scrollbar,
.football-scroll::-webkit-scrollbar {
  display: none;
}

.catalog-row:hover .catalog-track,
.catalog-row.dragging .catalog-track {
  animation-play-state: paused;
}

.dragging {
  cursor: grabbing;
}

.game-cover {
  position: relative;
  width: 178px;
  height: 246px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 26px rgba(177, 38, 255, 0.3), inset 0 0 30px rgba(255, 255, 255, 0.08);
  padding: 0;
  overflow: hidden;
  color: #fff;
}

.game-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(8, 0, 69, 0.93), rgba(8, 0, 69, 0.18) 58%, rgba(255, 255, 255, 0.1)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 42%);
  z-index: 1;
}

.game-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: inherit;
  z-index: 3;
  pointer-events: none;
}

.game-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.15) contrast(1.05);
}

.game-cover span {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.34);
  color: var(--green);
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.game-cover strong {
  padding: 0 14px;
  font-size: 20px;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.game-cover small {
  position: relative;
  z-index: 2;
  color: #efeaff;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0 14px 14px;
}

.cover-red {
  background: linear-gradient(145deg, #250050, #c70d4f 58%, #2b0017);
}

.cover-gold {
  background: linear-gradient(145deg, #15004d, #9c5c00 62%, #ffbe1b);
}

.cover-blue {
  background: linear-gradient(145deg, #020433, #123fca 62%, #00a9ff);
}

.cover-green {
  background: linear-gradient(145deg, #06192a, #016c5d 58%, #b7ff00);
}

.cover-pink {
  background: linear-gradient(145deg, #21004b, #d818c8 62%, #ff7df2);
}

.cover-cyan {
  background: linear-gradient(145deg, #001b43, #008fac 62%, #83fff1);
}

.cover-violet {
  background: linear-gradient(145deg, #10003f, #7d23ff 64%, #2a005a);
}

.cover-lime {
  background: linear-gradient(145deg, #0f1b00, #4e7d00 60%, #b7ff00);
}

.cover-orange {
  background: linear-gradient(145deg, #210035, #f05b23 62%, #410018);
}

.cover-silver {
  background: linear-gradient(145deg, #1a1a2a, #7e83a2 62%, #ffffff);
}

.cover-indigo {
  background: linear-gradient(145deg, #070047, #3f28ce 58%, #a068ff);
}

.cover-ice {
  background: linear-gradient(145deg, #001e32, #00a3ff 58%, #e6fbff);
}

.football-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 0, 69, 0.94), rgba(22, 0, 92, 0.74)),
    url("assets/football-glass-bg.jpg") center / cover no-repeat,
    radial-gradient(circle at 18% 22%, rgba(183, 255, 0, 0.12), transparent 30%),
    radial-gradient(circle at 82% 40%, rgba(0, 220, 255, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(8, 0, 69, 0.9), rgba(16, 0, 82, 0.96));
}

.football-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 0, 69, 0.82), rgba(8, 0, 69, 0.22) 42%, rgba(8, 0, 69, 0.92)),
    radial-gradient(circle at 52% 52%, rgba(183, 255, 0, 0.18), transparent 24%),
    linear-gradient(90deg, rgba(177, 38, 255, 0.22), rgba(0, 220, 255, 0.12));
  backdrop-filter: blur(3px) saturate(1.12);
}

.football-section::after {
  content: none;
}

.football-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: center;
}

.football-copy p {
  max-width: 560px;
  margin: 22px 0 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.65;
}

.football-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.football-tags span {
  border: 1px solid rgba(224, 183, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: inset 0 0 18px rgba(176, 71, 255, 0.14);
}

.football-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.football-actions .button {
  min-width: 190px;
}

.football-showcase {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.football-visual {
  position: relative;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  backdrop-filter: none;
}

.football-visual::after {
  content: none;
}

.football-visual img {
  width: 100%;
  aspect-ratio: 1.86;
  border-radius: 0;
  object-fit: cover;
  filter: drop-shadow(0 0 34px rgba(177, 38, 255, 0.38));
  mask-image: linear-gradient(90deg, transparent, black 7%, black 93%, transparent);
}

.football-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 18px 4px 22px;
  cursor: grab;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  touch-action: pan-y;
  user-select: none;
}

.football-scroll.dragging {
  cursor: grabbing;
}

.football-card {
  flex: 0 0 224px;
  scroll-snap-align: center;
  border: 1px solid rgba(224, 183, 255, 0.38);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
  box-shadow: 0 18px 42px rgba(6, 0, 40, 0.42), 0 0 28px rgba(177, 38, 255, 0.34), inset 0 0 30px rgba(255, 255, 255, 0.08);
  padding: 11px;
  transform: translateZ(0);
}

.football-card img {
  width: 100%;
  aspect-ratio: 0.72;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

@keyframes cover-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 8px));
  }
}

@keyframes cover-scroll-right {
  from {
    transform: translateX(calc(-50% - 8px));
  }
  to {
    transform: translateX(0);
  }
}

@keyframes cover-wall-float {
  from {
    transform: translate3d(-18px, -8px, 0) scale(1.01);
  }
  to {
    transform: translate3d(18px, 10px, 0) scale(1.04);
  }
}

.models-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(177, 38, 255, 0.3), transparent 34%),
    radial-gradient(circle at 16% 78%, rgba(77, 0, 255, 0.34), transparent 34%),
    rgba(8, 0, 69, 0.9);
}

.models-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.models-copy p {
  max-width: 560px;
  margin: 22px 0 0;
  color: #fff;
  font-size: 18px;
}

.models-copy .button {
  margin-top: 30px;
}

.models-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.model-card {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(224, 183, 255, 0.36);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 42%, rgba(183, 255, 0, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(118, 25, 255, 0.72), rgba(34, 0, 134, 0.54));
  box-shadow: inset 0 0 38px rgba(176, 71, 255, 0.22), 0 0 22px rgba(117, 36, 255, 0.32);
  padding: 22px 12px 18px;
  text-align: center;
}

.model-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.16), transparent 42%);
  transform: translateX(-130%);
  transition: transform 0.5s ease;
}

.model-card:hover::before {
  transform: translateX(130%);
}

.model-label {
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.model-card h3 {
  margin: 4px 0 12px;
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.model-image {
  position: relative;
  flex: 1;
  width: 100%;
  min-height: 270px;
  display: grid;
  place-items: center;
}

.model-image::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 14px;
  width: 78%;
  height: 26px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.34);
  filter: blur(12px);
  transform: translateX(-50%);
}

.model-image img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(177, 38, 255, 0.72));
}

.model-fat .model-image img {
  max-height: 316px;
}

.model-slim .model-image img {
  max-height: 288px;
}

.model-super .model-image img {
  max-width: 136%;
  max-height: 246px;
  transform: rotate(-4deg);
}

.model-card p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}

.model-card p::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 10px;
  border: 2px solid var(--green);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(183, 255, 0, 0.68);
}

.models-service-note {
  grid-column: 1 / -1;
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(224, 183, 255, 0.36);
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(77, 0, 255, 0.48), rgba(177, 38, 255, 0.28));
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: inset 0 0 22px rgba(176, 71, 255, 0.18);
}

.packages-section {
  background:
    radial-gradient(circle at 50% 5%, rgba(178, 38, 255, 0.32), transparent 34%),
    linear-gradient(180deg, rgba(15, 0, 90, 0.9), rgba(24, 0, 105, 0.96) 54%, rgba(6, 0, 57, 0.96)),
    var(--bg);
}

.packages-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.package {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
  overflow: visible;
}

.package-featured {
  background:
    linear-gradient(180deg, rgba(120, 32, 255, 0.86), rgba(38, 0, 142, 0.86)),
    var(--panel);
  color: #fff;
  transform: translateY(-14px);
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 38px rgba(177, 38, 255, 0.7), inset 0 0 44px rgba(255, 255, 255, 0.12);
}

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--yellow);
  color: #3d004e;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.package-head {
  display: grid;
  gap: 8px;
}

.package-head span {
  font-weight: 900;
  text-transform: uppercase;
  display: inline-flex;
  justify-content: center;
  border: 1px solid rgba(224, 183, 255, 0.36);
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(13, 0, 92, 0.82), rgba(170, 20, 255, 0.72));
  padding: 14px;
  font-family: Montserrat, sans-serif;
  font-style: italic;
  font-size: 30px;
  letter-spacing: 0;
}

.package-head strong {
  font-family: Montserrat, sans-serif;
  font-size: 66px;
  line-height: 0.86;
  margin-top: 28px;
  text-align: center;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.18);
}

.package-head small,
.systems {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-featured .package-head small,
.package-featured .systems,
.package-featured li {
  color: #eee8ff;
}

.price {
  margin: 26px 0 12px;
  color: var(--white);
  font-family: Montserrat, sans-serif;
  font-size: 58px;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0;
  text-shadow: 0 0 22px rgba(255, 255, 255, 0.16);
}

.price span {
  color: var(--green);
  font-size: 30px;
  margin-right: 8px;
}

.package ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 28px;
  list-style: none;
}

.package li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 12px rgba(183, 255, 0, 0.7);
}

.package .button {
  margin-top: auto;
  width: 100%;
}

.expert-section {
  background: rgba(5, 0, 54, 0.76);
}

.expert-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.expert-photo {
  position: relative;
}

.expert-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.expert-photo span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  border-radius: 8px;
  background: var(--green);
  color: #250062;
  padding: 12px 14px;
  font-weight: 900;
  text-transform: uppercase;
}

blockquote {
  margin: 26px 0;
  padding-left: 22px;
  border-left: 4px solid var(--green);
  color: #dbe2ff;
  font-size: 19px;
  line-height: 1.75;
}

.expert-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.expert-stats span,
.social-row a {
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  padding: 16px;
  color: var(--muted);
}

.expert-stats strong {
  display: block;
  color: var(--white);
  font-family: Rajdhani, sans-serif;
  font-size: 30px;
}

.social-row a {
  color: var(--white);
  font-weight: 900;
}

.faq-section {
  background: rgba(8, 0, 69, 0.86);
}

.faq-list {
  display: grid;
  max-width: 880px;
  gap: 12px;
  margin-inline: auto;
}

.faq-list details {
  padding: 22px 24px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--green);
  font-size: 24px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 14px 0 0;
}

.testimonials-section {
  background: rgba(5, 0, 54, 0.76);
}

.testimonials-grid {
  grid-template-columns: repeat(3, 1fr);
}

.testimonials-grid article {
  padding: 24px;
}

.testimonials-grid strong,
.testimonials-grid span {
  display: block;
}

.testimonials-grid strong {
  margin-top: 22px;
}

.testimonials-grid span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.final-cta {
  padding: 100px 0;
  text-align: center;
  background:
    radial-gradient(circle at 50% 10%, rgba(183, 255, 0, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(79, 0, 255, 0.88), rgba(169, 24, 255, 0.78)),
    #120075;
}

.final-cta h2 {
  margin-bottom: 16px;
}

.final-cta p {
  max-width: 680px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.65;
}

.footer {
  padding: 42px 0;
  background: #060033;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-grid > div {
  display: grid;
  gap: 8px;
}

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

.float-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  border-radius: 999px;
  background: var(--green);
  color: #06120b;
  padding: 16px 20px;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(32, 199, 104, 0.34);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero-grid,
  .expert-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 620px;
  }

  .hero-stage {
    min-height: 470px;
    margin-top: 0;
    margin-bottom: 130px;
  }

  .hero-cover-wall {
    height: 420px;
    opacity: 0.24;
  }

  .hero-characters {
    left: 50%;
    top: -12px;
    width: min(1180px, 184vw);
    transform: translateX(-50%);
  }

  .hero-controller {
    left: 4%;
    bottom: -78px;
    width: min(260px, 42vw);
  }

  .hero-broken {
    right: 2%;
    bottom: -96px;
    width: min(210px, 34vw);
  }

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

  .catalog-glass {
    width: min(100% - 24px, 1160px);
  }

  .game-cover {
    width: 148px;
    height: 210px;
  }

  .features-grid,
  .packages-grid,
  .testimonials-grid,
  .models-grid,
  .football-grid {
    grid-template-columns: 1fr;
  }

  .models-showcase {
    order: -1;
  }

  .package-featured {
    transform: none;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 28px, 1160px);
  }

  .nav {
    min-height: 68px;
  }

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

  .nav-cta {
    padding: 10px 11px;
    font-size: 13px;
  }

  .hero {
    padding: 44px 0 58px;
  }

  h1 {
    font-size: 64px;
  }

  h1 span {
    font-size: 27px;
    letter-spacing: 0.06em;
  }

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

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

  .hero-cover-wall {
    display: block;
    inset: 430px -40px auto -40px;
    height: 260px;
    opacity: 0.18;
  }

  .hero-panel {
    min-height: 500px;
  }

  .hero-stage {
    min-height: 320px;
    margin-bottom: 138px;
  }

  .hero-characters {
    top: 0;
    left: 50%;
    width: min(780px, 184vw);
    transform: translateX(-50%);
  }

  .hero-controller {
    left: -4px;
    bottom: -112px;
    width: min(210px, 46vw);
  }

  .hero-broken {
    right: -4px;
    bottom: -124px;
    width: min(184px, 38vw);
  }

  .metric-card {
    width: calc(50% - 6px);
    min-height: 86px;
    min-width: 0;
    padding: 14px;
  }

  .metric-card strong {
    font-size: 34px;
  }

  .metric-main {
    left: 0;
    bottom: 14px;
  }

  .metric-side {
    right: 0;
    bottom: 14px;
  }

  .catalog-glass {
    padding: 24px 0;
  }

  .catalog-heading {
    width: min(100% - 28px, 760px);
  }

  .game-cover {
    width: 132px;
    height: 190px;
  }

  .football-card {
    flex-basis: 174px;
  }

  .game-cover strong {
    font-size: 16px;
  }

  .models-showcase {
    grid-template-columns: 1fr;
  }

  .model-card {
    min-height: 380px;
  }

  .expert-stats,
  .footer-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .float-whatsapp {
    right: 14px;
    bottom: 14px;
    padding: 14px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-cover-wall,
  .cover-track,
  .catalog-track {
    animation: none !important;
    transform: none !important;
  }
}
