@charset "UTF-8";

:root {
  --bg: #02030a;
  --panel: rgba(7, 9, 22, .78);
  --panel-strong: rgba(9, 11, 28, .92);
  --line: rgba(133, 92, 255, .35);
  --line-blue: rgba(0, 195, 255, .32);
  --text: #f7f8ff;
  --soft: #c8d2ff;
  --muted: #8089b4;
  --purple: #8e42ff;
  --purple2: #c03cff;
  --blue: #00c6ff;
  --blue2: #2468ff;
  --red: #ff245f;
  --radius: 28px;
  --shadow-purple: 0 0 34px rgba(142, 66, 255, .42);
  --shadow-blue: 0 0 34px rgba(0, 198, 255, .28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  overflow-x: hidden;
}

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

button {
  font-family: inherit;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -10;
  background:
    radial-gradient(circle at 50% -8%, rgba(142, 66, 255, .22), transparent 34%),
    radial-gradient(circle at 82% 28%, rgba(0, 198, 255, .14), transparent 34%),
    linear-gradient(180deg, #02030a 0%, #050617 42%, #010207 100%);
}

.bg-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(44px);
  opacity: .4;
}

.bg-glow-a {
  top: 100px;
  right: -170px;
  background: var(--purple);
}

.bg-glow-b {
  bottom: 130px;
  left: -180px;
  background: var(--blue);
}

.scan-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,.026) 0,
    rgba(255,255,255,.026) 1px,
    transparent 1px,
    transparent 5px
  );
  opacity: .23;
}

.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 96px;
  z-index: 100;
  display: grid;
  grid-template-columns: 260px 1fr 430px;
  align-items: center;
  gap: 18px;
  padding: 0 max(32px, calc((100vw - 1500px) / 2));
  background: linear-gradient(180deg, rgba(2,3,10,.94), rgba(2,3,10,.7));
  border-bottom: 1px solid rgba(133,92,255,.2);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.brand img {
  width: 88px;
  height: 74px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(142,66,255,.7)) drop-shadow(0 0 12px rgba(0,198,255,.35));
}

.brand strong {
  display: block;
  font-size: 18px;
  letter-spacing: .12em;
  text-shadow: 0 0 14px rgba(255,255,255,.4);
}

.brand span {
  display: block;
  margin-top: 4px;
  color: var(--blue);
  font-size: 10px;
  letter-spacing: .2em;
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.3vw, 44px);
  color: #c7cdf0;
  font-size: 15px;
}

.nav a {
  position: relative;
  height: 100%;
  display: inline-flex;
  align-items: center;
  transition: color .2s ease, text-shadow .2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--blue), var(--purple));
  box-shadow: 0 0 14px var(--purple), 0 0 10px var(--blue);
  transition: width .2s ease;
}

.nav a:hover,
.nav a.active {
  color: #fff;
  text-shadow: 0 0 14px rgba(0,198,255,.5), 0 0 12px rgba(142,66,255,.5);
}

.nav a:hover::after,
.nav a.active::after {
  width: 58px;
}

.header-actions {
  justify-self: end;
  display: flex;
  gap: 14px;
}

.btn-mini {
  min-width: 118px;
  height: 44px;
  padding: 0 18px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  letter-spacing: .04em;
  transition: transform .2s ease, box-shadow .2s ease;
}

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

.btn-purple {
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  background:
    linear-gradient(135deg, rgba(255,255,255,.18), transparent 32%),
    linear-gradient(135deg, #722cff, #ad34ff);
  box-shadow: 0 0 28px rgba(142,66,255,.45);
}

.btn-border {
  border: 1px solid rgba(0,198,255,.28);
  background: rgba(255,255,255,.035);
  color: #e9edff;
}

.btn-download {
  color: #fff;
  border: 1px solid rgba(0, 198, 255, .42);
  background:
    linear-gradient(135deg, rgba(255,255,255,.16), transparent 34%),
    linear-gradient(135deg, #004dff, #00c6ff 55%, #813cff);
  box-shadow: 0 0 28px rgba(0,198,255,.36), 0 0 20px rgba(142,66,255,.22);
}

.btn-download-big {
  background: linear-gradient(135deg, #004dff, #00c6ff 50%, #8e42ff);
  border: 1px solid rgba(142,220,255,.44);
  box-shadow: 0 0 30px rgba(0,198,255,.52), 0 0 24px rgba(142,66,255,.36), inset 0 0 22px rgba(255,255,255,.1);
}


.mobile-menu {
  display: none;
  width: 46px;
  height: 46px;
  justify-self: end;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  background: rgba(255,255,255,.06);
}

.mobile-menu i {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 5px;
  background: #fff;
}

.hero-slider {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #03040c;
}

.slides,
.slide {
  position: absolute;
  inset: 0;
}

.slide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .7s ease, visibility .7s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.slide-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 30%, rgba(142,66,255,.22), transparent 28%),
    linear-gradient(180deg, rgba(5,7,20,.1) 0%, rgba(2,3,10,.64) 62%, #02030a 100%);
}

.stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.9) 0 1px, transparent 1px),
    radial-gradient(circle, rgba(0,198,255,.8) 0 1px, transparent 1px);
  background-size: 120px 120px, 180px 180px;
  background-position: 13px 20px, 80px 92px;
  opacity: .25;
}

.city {
  position: absolute;
  left: 34%;
  right: -4%;
  bottom: 22%;
  height: 52%;
  opacity: .95;
  filter: drop-shadow(0 0 18px rgba(0,198,255,.34)) drop-shadow(0 0 28px rgba(142,66,255,.28));
}

.city::before,
.city::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 100%;
  background-repeat: repeat-x;
  background-size: 520px 100%;
}

.city-back {
  transform: translateX(-8%);
  opacity: .52;
  bottom: 27%;
  height: 44%;
  filter: blur(.4px) drop-shadow(0 0 12px rgba(142,66,255,.34));
}

.city-front::before {
  background-image:
    linear-gradient(to top, #070814 0 100%),
    linear-gradient(to top, #070814 0 100%);
  clip-path: polygon(
    0% 100%, 0% 56%, 4% 56%, 4% 45%, 8% 45%, 8% 100%,
    12% 100%, 12% 32%, 15% 32%, 15% 15%, 18% 32%, 21% 32%, 21% 100%,
    24% 100%, 24% 48%, 28% 48%, 28% 100%,
    32% 100%, 32% 22%, 35% 22%, 35% 5%, 38% 22%, 42% 22%, 42% 100%,
    46% 100%, 46% 38%, 51% 38%, 51% 100%,
    55% 100%, 55% 16%, 58% 16%, 58% 0%, 61% 16%, 65% 16%, 65% 100%,
    69% 100%, 69% 45%, 73% 45%, 73% 100%,
    76% 100%, 76% 28%, 80% 28%, 80% 100%,
    84% 100%, 84% 52%, 89% 52%, 89% 100%,
    93% 100%, 93% 42%, 97% 42%, 97% 100%, 100% 100%
  );
  box-shadow: inset 0 0 0 1px rgba(0,198,255,.22);
}

.city-front::after,
.city-back::after {
  background-image:
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(0,198,255,.72) 34px 38px, transparent 38px 58px),
    repeating-linear-gradient(0deg, transparent 0 28px, rgba(142,66,255,.72) 28px 31px, transparent 31px 58px);
  mix-blend-mode: screen;
  opacity: .92;
  clip-path: polygon(
    0% 100%, 0% 56%, 4% 56%, 4% 45%, 8% 45%, 8% 100%,
    12% 100%, 12% 32%, 15% 32%, 15% 15%, 18% 32%, 21% 32%, 21% 100%,
    24% 100%, 24% 48%, 28% 48%, 28% 100%,
    32% 100%, 32% 22%, 35% 22%, 35% 5%, 38% 22%, 42% 22%, 42% 100%,
    46% 100%, 46% 38%, 51% 38%, 51% 100%,
    55% 100%, 55% 16%, 58% 16%, 58% 0%, 61% 16%, 65% 16%, 65% 100%,
    69% 100%, 69% 45%, 73% 45%, 73% 100%,
    76% 100%, 76% 28%, 80% 28%, 80% 100%,
    84% 100%, 84% 52%, 89% 52%, 89% 100%,
    93% 100%, 93% 42%, 97% 42%, 97% 100%, 100% 100%
  );
}

.city-back::before {
  background: #050612;
  clip-path: polygon(
    0 100%, 0 60%, 7% 60%, 7% 42%, 15% 42%, 15% 100%, 21% 100%, 21% 30%, 28% 30%, 28% 100%,
    34% 100%, 34% 50%, 42% 50%, 42% 100%, 50% 100%, 50% 22%, 57% 22%, 57% 100%,
    64% 100%, 64% 40%, 72% 40%, 72% 100%, 78% 100%, 78% 28%, 86% 28%, 86% 100%,
    92% 100%, 92% 55%, 100% 55%, 100% 100%
  );
}

.ferris {
  position: absolute;
  right: 8%;
  bottom: 30%;
  width: 170px;
  aspect-ratio: 1;
  border: 3px solid rgba(170, 80, 255, .85);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(142,66,255,.8), inset 0 0 22px rgba(0,198,255,.38);
  opacity: .78;
}

.ferris::before,
.ferris::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 3px;
  height: 100%;
  background: rgba(0,198,255,.5);
  transform-origin: top center;
}

.ferris::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.ferris::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.helicopter {
  position: absolute;
  right: 4%;
  top: 15%;
  width: 180px;
  height: 50px;
  border-radius: 50% 42% 50% 42%;
  background: rgba(5,6,14,.9);
  box-shadow: 0 0 22px rgba(142,66,255,.5);
  transform: rotate(-6deg);
}

.helicopter::before {
  content: "";
  position: absolute;
  left: 20px;
  top: -14px;
  width: 130px;
  height: 3px;
  background: rgba(255,255,255,.62);
  box-shadow: 0 0 18px rgba(0,198,255,.8);
}

.helicopter::after {
  content: "";
  position: absolute;
  left: 26px;
  top: 44px;
  width: 105px;
  height: 210px;
  background: linear-gradient(to bottom, rgba(160,210,255,.25), transparent 74%);
  clip-path: polygon(38% 0, 62% 0, 100% 100%, 0 100%);
  transform: rotate(7deg);
  filter: blur(.5px);
}

.helicopter span {
  position: absolute;
  right: -55px;
  top: 19px;
  width: 80px;
  height: 4px;
  background: rgba(255,255,255,.5);
}

.helicopter i {
  position: absolute;
  left: 60px;
  bottom: -12px;
  width: 72px;
  height: 2px;
  background: rgba(255,255,255,.5);
}

.road {
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: 0;
  height: 34%;
  background:
    linear-gradient(90deg, transparent 0 42%, rgba(142,66,255,.4) 49%, rgba(0,198,255,.5) 50%, rgba(142,66,255,.4) 51%, transparent 58%),
    radial-gradient(ellipse at 68% 32%, rgba(255,36,95,.32), transparent 34%),
    radial-gradient(ellipse at 44% 42%, rgba(0,198,255,.25), transparent 38%),
    linear-gradient(180deg, rgba(7,8,20,.25), #02030a 82%);
  transform: skewY(-1.5deg);
  box-shadow: inset 0 1px 0 rgba(0,198,255,.16);
}

.road::before {
  content: "";
  position: absolute;
  inset: 18% 0 0;
  background: repeating-linear-gradient(90deg, transparent 0 118px, rgba(255,255,255,.06) 118px 120px);
  opacity: .55;
}

.sports-car {
  position: absolute;
  right: 3%;
  bottom: 11%;
  width: clamp(360px, 42vw, 760px);
  height: clamp(140px, 17vw, 270px);
  transform: skewX(-10deg);
  filter: drop-shadow(0 0 26px rgba(142,66,255,.52)) drop-shadow(0 0 22px rgba(255,36,95,.25));
}

.sports-car::before {
  content: "";
  position: absolute;
  inset: 28% 0 16% 0;
  background:
    linear-gradient(160deg, #090914, #111326 52%, #04050b);
  clip-path: polygon(4% 66%, 13% 28%, 38% 12%, 66% 10%, 90% 25%, 100% 54%, 90% 78%, 15% 82%);
  border: 2px solid rgba(111,65,255,.6);
  box-shadow: inset 0 0 24px rgba(0,198,255,.12), 0 0 40px rgba(0,0,0,.7);
}

.sports-car::after {
  content: "";
  position: absolute;
  left: 30%;
  top: 12%;
  width: 34%;
  height: 38%;
  background: linear-gradient(135deg, rgba(0,198,255,.45), rgba(142,66,255,.18));
  clip-path: polygon(10% 100%, 30% 15%, 76% 15%, 100% 100%);
  border: 1px solid rgba(0,198,255,.35);
}

.sports-car .tail {
  position: absolute;
  right: 10%;
  top: 47%;
  width: 110px;
  height: 13px;
  background: #ff245f;
  box-shadow: 0 0 18px #ff245f, 0 0 28px rgba(255,36,95,.65);
  clip-path: polygon(0 0, 100% 0, 82% 100%, 16% 100%);
}

.sports-car .tail-b {
  right: 25%;
  width: 85px;
  top: 50%;
}

.sports-car .plate {
  position: absolute;
  right: 24%;
  top: 66%;
  display: block;
  padding: 4px 9px;
  border-radius: 4px;
  color: #65dfff;
  background: rgba(0,0,0,.65);
  border: 1px solid rgba(0,198,255,.42);
  font-size: 10px;
  letter-spacing: .08em;
  transform: skewX(10deg);
}

.police-car {
  position: absolute;
  left: 43%;
  bottom: 16%;
  width: 210px;
  height: 70px;
  opacity: .82;
  transform: skewX(-8deg);
  filter: drop-shadow(0 0 16px rgba(0,198,255,.42));
}

.police-car::before {
  content: "";
  position: absolute;
  inset: 16px 0 8px;
  background: linear-gradient(90deg, #070814, #f2f3ff 42%, #080916 44% 100%);
  clip-path: polygon(0 70%, 14% 26%, 44% 10%, 76% 22%, 100% 60%, 92% 85%, 8% 86%);
}

.police-car::after {
  content: "POLICE";
  position: absolute;
  left: 62px;
  top: 33px;
  color: #11142b;
  font-weight: 900;
  font-size: 14px;
}

.police-car b {
  position: absolute;
  top: 8px;
  width: 26px;
  height: 7px;
  border-radius: 10px;
  background: var(--blue);
  box-shadow: 0 0 14px var(--blue);
}

.police-car b:first-child {
  left: 96px;
}

.police-car b:last-child {
  left: 126px;
  background: var(--red);
  box-shadow: 0 0 14px var(--red);
}

.role-silhouette {
  position: absolute;
  bottom: 18%;
  width: 220px;
  height: 440px;
  background:
    radial-gradient(circle at 50% 9%, #111326 0 9%, transparent 9.5%),
    linear-gradient(#080914, #080914);
  clip-path: polygon(42% 0, 58% 0, 63% 18%, 72% 25%, 67% 58%, 80% 100%, 20% 100%, 33% 58%, 28% 25%, 37% 18%);
  opacity: .56;
  filter: drop-shadow(0 0 35px rgba(142,66,255,.6));
}

.role-left {
  right: 23%;
}

.role-right {
  right: 8%;
  transform: scale(.82);
  opacity: .38;
}

.neon-gate {
  position: absolute;
  right: 9%;
  bottom: 16%;
  width: 460px;
  height: 360px;
  border: 4px solid rgba(0,198,255,.55);
  border-bottom: 0;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 0 30px rgba(0,198,255,.35), inset 0 0 30px rgba(142,66,255,.32);
  opacity: .5;
}

.dmv-card,
.license-card {
  position: absolute;
  right: 10%;
  bottom: 21%;
  width: 420px;
  height: 245px;
  border-radius: 24px;
  border: 1px solid rgba(0,198,255,.42);
  background:
    linear-gradient(135deg, rgba(0,198,255,.22), transparent 44%),
    linear-gradient(160deg, rgba(142,66,255,.26), rgba(7,9,22,.8));
  box-shadow: 0 0 44px rgba(0,198,255,.22), 0 0 44px rgba(142,66,255,.25);
  transform: rotate(-7deg);
}

.dmv-card::before {
  content: "会A·88888";
  position: absolute;
  left: 42px;
  top: 72px;
  color: #fff;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: .08em;
  text-shadow: 0 0 18px rgba(0,198,255,.7);
}

.dmv-card::after {
  content: "REAL PLATE SYSTEM";
  position: absolute;
  left: 46px;
  bottom: 52px;
  color: var(--blue);
  font-size: 18px;
  letter-spacing: .18em;
}

.license-card {
  right: 29%;
  bottom: 28%;
  width: 320px;
  height: 196px;
  transform: rotate(8deg);
  opacity: .78;
}

.license-card::before {
  content: "行驶证 / 车辆保险";
  position: absolute;
  left: 32px;
  top: 54px;
  color: #fff;
  font-size: 30px;
  font-weight: 900;
}

.license-card::after {
  content: "HUIWAN CITY DMV";
  position: absolute;
  left: 34px;
  bottom: 42px;
  color: var(--purple2);
  letter-spacing: .14em;
}

.slide-content {
  position: relative;
  z-index: 3;
  width: min(760px, calc(100% - 48px));
  margin-left: max(42px, calc((100vw - 1500px) / 2));
  padding-top: 205px;
}

.pretitle {
  width: fit-content;
  color: #dbe8ff;
  font-size: clamp(14px, 1.3vw, 20px);
  letter-spacing: .18em;
  display: flex;
  align-items: center;
  gap: 16px;
  text-shadow: 0 0 16px rgba(0,198,255,.45);
}

.pretitle::before,
.pretitle::after {
  content: "";
  width: 128px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--purple));
  box-shadow: 0 0 12px rgba(0,198,255,.5);
}

.pretitle::after {
  background: linear-gradient(90deg, var(--purple), var(--blue), transparent);
}

.pretitle span {
  display: none;
}

.slide h1 {
  margin: 22px 0 0;
  font-size: clamp(62px, 7.7vw, 142px);
  line-height: .92;
  letter-spacing: -.08em;
  color: #fff;
  text-shadow:
    0 3px 0 #a5adff,
    0 8px 0 #3c235f,
    0 0 18px rgba(255,255,255,.45),
    0 0 28px rgba(142,66,255,.78),
    0 0 44px rgba(0,198,255,.42);
  -webkit-text-stroke: 1px rgba(255,255,255,.42);
}

.subtitle {
  position: relative;
  display: inline-block;
  margin: 24px 0 0;
  padding: 11px 86px 13px;
  color: #fff;
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 700;
  letter-spacing: .04em;
  text-shadow: 0 0 14px rgba(142,66,255,.6);
  background:
    linear-gradient(90deg, transparent, rgba(142,66,255,.32) 12%, rgba(0,198,255,.18) 50%, rgba(142,66,255,.32) 88%, transparent);
}

.subtitle::before,
.subtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 54px;
  height: 26px;
  border-top: 4px solid var(--purple2);
  border-bottom: 4px solid var(--purple2);
  transform: translateY(-50%) skewX(-28deg);
  filter: drop-shadow(0 0 9px var(--purple2));
}

.subtitle::before {
  left: 20px;
}

.subtitle::after {
  right: 20px;
}

.feature-strip {
  width: min(820px, 92vw);
  margin-top: 32px;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  border: 1px solid rgba(133,92,255,.36);
  border-radius: 3px;
  background: linear-gradient(180deg, rgba(12,14,34,.78), rgba(10,12,28,.55));
  box-shadow: inset 0 0 24px rgba(0,198,255,.08), 0 0 26px rgba(142,66,255,.16);
  backdrop-filter: blur(8px);
  clip-path: polygon(3% 0, 100% 0, 96% 100%, 0 100%);
}

.feature-strip div {
  min-width: 0;
  display: grid;
  grid-template-columns: 38px 1fr;
  column-gap: 10px;
  align-items: center;
}

.feature-strip b {
  grid-row: 1 / 3;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--purple2);
  font-size: 24px;
  text-shadow: 0 0 14px var(--purple2);
}

.feature-strip strong {
  display: block;
  color: #fff;
  font-size: 15px;
}

.feature-strip small {
  display: block;
  margin-top: 4px;
  color: var(--soft);
  font-size: 12px;
  white-space: nowrap;
}

.hero-buttons {
  display: flex;
  gap: 42px;
  flex-wrap: wrap;
  margin-top: 34px;
  padding-left: 40px;
}

.btn {
  min-width: 245px;
  height: 70px;
  padding: 0 34px;
  border: 0;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: .08em;
  position: relative;
  overflow: hidden;
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
  transition: transform .2s ease, filter .2s ease;
}

.btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.14);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.24), transparent 34%);
  pointer-events: none;
}

.btn-main {
  background: linear-gradient(135deg, #7f2cff, #c13dff 54%, #5630ff);
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 0 28px rgba(142,66,255,.65), inset 0 0 22px rgba(255,255,255,.1);
}

.btn-blue {
  background: linear-gradient(135deg, rgba(27,74,180,.96), rgba(0,163,255,.8), rgba(55,33,160,.96));
  border: 1px solid rgba(119,219,255,.35);
  box-shadow: 0 0 28px rgba(0,198,255,.45), inset 0 0 22px rgba(255,255,255,.08);
}

.reward-text {
  width: fit-content;
  margin: 22px 0 0 112px;
  color: rgba(234,238,255,.78);
  letter-spacing: .04em;
  text-shadow: 0 0 12px rgba(142,66,255,.42);
}

.reward-text::before,
.reward-text::after {
  content: "❧";
  margin: 0 14px;
  color: rgba(255,255,255,.45);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 20;
  width: 58px;
  height: 72px;
  border: 1px solid rgba(145,115,255,.44);
  background: rgba(9,10,26,.56);
  color: #fff;
  font-size: 56px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 0 18px rgba(142,66,255,.18);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.slider-arrow:hover {
  transform: translateY(-50%) scale(1.04);
  border-color: rgba(0,198,255,.7);
  box-shadow: 0 0 22px rgba(0,198,255,.3);
}

.slider-prev {
  left: 28px;
  transform: translateY(-50%);
}

.slider-next {
  right: 28px;
  transform: translateY(-50%);
}

.slider-dots {
  position: absolute;
  z-index: 22;
  left: 50%;
  bottom: 172px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.slider-dots button {
  width: 13px;
  height: 13px;
  border: 1px solid rgba(255,255,255,.54);
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0,198,255,.28);
}

.slider-dots button.active {
  background: #fff;
  border-color: var(--blue);
  box-shadow: 0 0 15px var(--blue), 0 0 22px var(--purple);
}

.thumb-track {
  position: absolute;
  z-index: 18;
  left: 50%;
  bottom: 42px;
  width: min(1060px, calc(100% - 180px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 18px 78px;
  background:
    linear-gradient(90deg, transparent, rgba(5,7,22,.88) 9%, rgba(5,7,22,.88) 91%, transparent);
  border-top: 1px solid rgba(77,88,255,.36);
  border-bottom: 1px solid rgba(0,198,255,.26);
  clip-path: polygon(5% 0, 95% 0, 100% 50%, 95% 100%, 5% 100%, 0 50%);
  box-shadow: 0 0 32px rgba(0,198,255,.12);
}

.thumb {
  min-height: 92px;
  padding: 18px 18px 18px 92px;
  position: relative;
  text-align: left;
  color: #fff;
  border: 1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(135deg, rgba(255,255,255,.07), transparent 46%),
    rgba(8,10,26,.75);
  cursor: pointer;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 40%, rgba(0,198,255,.18), transparent 42%),
    linear-gradient(90deg, transparent, rgba(142,66,255,.1));
  opacity: .6;
}

.thumb:hover,
.thumb.active {
  border-color: rgba(160,103,255,.9);
  box-shadow: 0 0 24px rgba(142,66,255,.42), inset 0 0 22px rgba(0,198,255,.08);
  transform: translateY(-2px);
}

.thumb.active {
  background:
    linear-gradient(135deg, rgba(142,66,255,.32), rgba(0,198,255,.14)),
    rgba(8,10,26,.85);
}

.thumb span {
  position: absolute;
  left: 18px;
  top: 21px;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.thumb strong {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 20px;
}

.thumb small {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 8px;
  color: #c9d2ff;
  font-size: 13px;
}

.count-panel,
.section,
.join,
.footer {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
}

.count-panel {
  margin-top: 72px;
  padding: 28px;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(0,198,255,.26);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0,198,255,.13), transparent 36%),
    linear-gradient(45deg, rgba(142,66,255,.16), transparent 60%),
    var(--panel);
  box-shadow: 0 25px 95px rgba(0,0,0,.28), 0 0 34px rgba(0,198,255,.08);
}

.count-panel span,
.section-head span,
.join-card span {
  color: var(--blue);
  font-size: 12px;
  letter-spacing: .24em;
  font-weight: 900;
}

.count-panel h2,
.section-head h2,
.join-card h2 {
  margin: 10px 0 0;
  font-size: clamp(30px, 4vw, 56px);
  letter-spacing: -.045em;
}

.count-panel p,
.section-head p,
.join-card p {
  margin: 14px 0 0;
  color: var(--soft);
  line-height: 1.8;
  font-size: 17px;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.countdown article {
  min-height: 118px;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px solid rgba(133,92,255,.28);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  box-shadow: inset 0 0 24px rgba(0,198,255,.05);
}

.countdown strong {
  display: block;
  color: #fff;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  text-shadow: 0 0 18px var(--blue), 0 0 18px var(--purple);
}

.countdown span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .12em;
}

.section {
  padding: 88px 0 0;
}

.section-head {
  max-width: 790px;
  margin-bottom: 34px;
}

.card-grid,
.life-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card-grid article,
.life-row article,
.news-list article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(133,92,255,.24);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(0,198,255,.09), transparent 40%),
    linear-gradient(40deg, rgba(142,66,255,.13), transparent 60%),
    var(--panel);
  box-shadow: 0 22px 80px rgba(0,0,0,.26);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.card-grid article:hover,
.life-row article:hover,
.news-list article:hover {
  transform: translateY(-4px);
  border-color: rgba(0,198,255,.48);
  box-shadow: 0 24px 88px rgba(0,0,0,.32), 0 0 26px rgba(0,198,255,.12);
}

.card-grid article {
  min-height: 286px;
  padding: 26px;
}

.card-grid i {
  display: block;
  color: rgba(255,255,255,.22);
  font-size: 54px;
  font-weight: 900;
  font-style: normal;
}

.card-grid h3,
.life-row h3,
.news-list h3 {
  margin: 22px 0 0;
  font-size: 24px;
}

.card-grid p,
.life-row p,
.news-list p {
  margin: 13px 0 0;
  color: var(--soft);
  line-height: 1.75;
}

.life-row article {
  min-height: 238px;
  padding: 26px;
}

.life-row b {
  font-size: 44px;
  filter: drop-shadow(0 0 18px rgba(0,198,255,.45));
}

.news-list {
  display: grid;
  gap: 16px;
}

.news-list article {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 22px;
  align-items: center;
  padding: 22px;
}

.news-list time {
  width: 78px;
  height: 78px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  box-shadow: var(--shadow-purple), var(--shadow-blue);
}

.news-list h3 {
  margin-top: 0;
}

.join {
  padding: 88px 0 42px;
}

.join-card {
  min-height: 230px;
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 34px;
  border-radius: 32px;
  border: 1px solid rgba(0,198,255,.32);
  background:
    linear-gradient(135deg, rgba(0,198,255,.14), transparent 38%),
    linear-gradient(40deg, rgba(142,66,255,.18), transparent 68%),
    var(--panel-strong);
  box-shadow: 0 28px 100px rgba(0,0,0,.34), 0 0 44px rgba(142,66,255,.12);
}

.join-card img {
  width: 150px;
  height: 130px;
  object-fit: contain;
  filter: drop-shadow(0 0 22px rgba(142,66,255,.7)) drop-shadow(0 0 16px rgba(0,198,255,.4));
}

.join-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer {
  padding: 24px 0 36px;
  color: rgba(210,218,255,.48);
  border-top: 1px solid rgba(133,92,255,.2);
  font-size: 13px;
  line-height: 1.7;
}

.footer p {
  margin: 0 0 5px;
}

@media (max-width: 1180px) {
  .header {
    grid-template-columns: 230px 1fr 54px;
  }

  .header-actions {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .nav {
    position: absolute;
    top: 96px;
    left: 18px;
    right: 18px;
    height: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(133,92,255,.28);
    border-radius: 20px;
    background: rgba(3,4,13,.96);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    height: auto;
    padding: 15px 16px;
    border-radius: 14px;
  }

  .nav a::after {
    display: none;
  }

  .slide-content {
    margin-left: 80px;
    padding-top: 180px;
  }

  .slide h1 {
    font-size: clamp(54px, 8vw, 100px);
  }

  .feature-strip,
  .card-grid,
  .life-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .thumb-track {
    width: calc(100% - 110px);
    padding-inline: 42px;
  }

  .join-card {
    grid-template-columns: 130px 1fr;
  }

  .join-actions {
    grid-column: 1 / -1;
    flex-direction: row;
  }
}

@media (max-width: 760px) {
  .header {
    height: 78px;
    padding: 0 16px;
    grid-template-columns: 1fr 48px;
  }

  .brand img {
    width: 66px;
    height: 58px;
  }

  .brand strong,
  .brand span {
    display: none;
  }

  .nav {
    top: 78px;
  }

  .hero-slider {
    min-height: 980px;
  }

  .slide-content {
    width: calc(100% - 28px);
    margin-left: 14px;
    padding-top: 116px;
  }

  .pretitle {
    font-size: 12px;
    letter-spacing: .1em;
  }

  .pretitle::before,
  .pretitle::after {
    width: 30px;
  }

  .slide h1 {
    font-size: 48px;
  }

  .subtitle {
    padding: 10px 20px;
    font-size: 19px;
  }

  .subtitle::before,
  .subtitle::after {
    display: none;
  }

  .feature-strip {
    width: 100%;
    grid-template-columns: 1fr;
    clip-path: none;
    border-radius: 16px;
  }

  .hero-buttons {
    padding-left: 0;
    gap: 14px;
  }

  .btn {
    width: 100%;
    min-width: 0;
    height: 58px;
    font-size: 17px;
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  }

  .reward-text {
    margin-left: 0;
    font-size: 13px;
  }

  .city {
    left: 6%;
    right: -30%;
    bottom: 27%;
    height: 36%;
  }

  .sports-car {
    width: 420px;
    right: -120px;
    bottom: 12%;
    opacity: .82;
  }

  .police-car,
  .helicopter,
  .ferris,
  .role-silhouette,
  .neon-gate,
  .dmv-card,
  .license-card {
    opacity: .35;
    transform: scale(.72);
    transform-origin: center;
  }

  .slider-arrow {
    width: 44px;
    height: 56px;
    font-size: 42px;
  }

  .slider-prev {
    left: 8px;
  }

  .slider-next {
    right: 8px;
  }

  .slider-dots {
    bottom: 202px;
  }

  .thumb-track {
    bottom: 24px;
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
    padding: 12px;
    clip-path: none;
    border-radius: 18px;
  }

  .thumb {
    min-height: 76px;
    padding: 14px 14px 14px 76px;
  }

  .thumb span {
    top: 14px;
    width: 44px;
    height: 44px;
  }

  .count-panel {
    margin-top: 46px;
    grid-template-columns: 1fr;
  }

  .countdown,
  .card-grid,
  .life-row {
    grid-template-columns: 1fr;
  }

  .news-list article {
    grid-template-columns: 1fr;
  }

  .join-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .join-card img {
    margin: 0 auto;
  }

  .join-actions {
    flex-direction: column;
  }
}
