:root {
  --bg: #07070c;
  --panel: #11111c;
  --panel-2: #17172a;
  --text: #f8fbff;
  --muted: #b8c3d9;
  --line: rgba(255, 255, 255, 0.14);
  --yellow: #ffd32a;
  --cyan: #23c8ff;
  --magenta: #ff48d0;
  --red: #ff453a;
  --green: #5ee24d;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  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-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 72, 208, 0.2), transparent 26rem),
    radial-gradient(circle at 82% 18%, rgba(35, 200, 255, 0.18), transparent 24rem),
    linear-gradient(180deg, #050509 0%, #0b0b14 52%, #07070c 100%);
}

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

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

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 18px rgba(35, 200, 255, 0.42);
}

.brand span {
  font-size: 1.05rem;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-links a {
  padding: 8px 0;
}

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

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 211, 42, 0.7);
  border-radius: 8px;
  color: #120905;
  background: linear-gradient(135deg, var(--yellow), #ff8a20);
  font-weight: 850;
  box-shadow: 0 0 22px rgba(255, 211, 42, 0.25);
}

.ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
  box-shadow: none;
}

.hero {
  width: min(1120px, calc(100% - 32px));
  min-height: calc(100vh - 79px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 44px;
  align-items: center;
  padding: 54px 0 74px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow:
    0 0 18px rgba(35, 200, 255, 0.34),
    0 0 30px rgba(255, 72, 208, 0.22);
}

.hero-copy {
  color: var(--muted);
  font-size: 1.17rem;
  line-height: 1.7;
  max-width: 660px;
}

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

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.score-strip {
  position: absolute;
  left: -18px;
  right: 18px;
  bottom: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.score-strip div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: rgba(8, 8, 14, 0.82);
  backdrop-filter: blur(10px);
}

.score-strip strong {
  display: block;
  color: var(--yellow);
  font-size: 1.1rem;
}

.score-strip span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.section-header {
  max-width: 740px;
  margin-bottom: 30px;
}

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

.section p {
  color: var(--muted);
  line-height: 1.72;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.card {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.18);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.pixel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  color: #090910;
  background: var(--cyan);
  font-weight: 950;
  box-shadow: 5px 5px 0 rgba(255, 72, 208, 0.55);
}

.panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px;
  background: rgba(17, 17, 28, 0.82);
}

.feature-photo {
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
}

.list strong {
  color: var(--text);
}

.legal {
  max-width: 860px;
}

.legal h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
}

.legal h2 {
  margin-top: 34px;
  font-size: 1.45rem;
}

.legal p,
.legal li {
  color: var(--muted);
  line-height: 1.75;
}

.footer {
  border-top: 1px solid var(--line);
  margin-top: 40px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.h5-page {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 211, 42, 0.16), transparent 18rem),
    #07070c;
}

.h5-wrap {
  width: min(680px, calc(100% - 28px));
  margin: 0 auto;
  padding: 28px 0 42px;
}

.h5-logo {
  width: 82px;
  height: 82px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 22px;
}

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    gap: 14px;
    padding-bottom: 4px;
  }

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

  .hero {
    min-height: auto;
    padding-top: 38px;
  }

  h1 {
    font-size: clamp(2.6rem, 15vw, 4.8rem);
  }

  .score-strip {
    position: static;
    grid-template-columns: 1fr;
    margin-top: 12px;
  }

  .section {
    padding: 52px 0;
  }

  .footer-inner {
    flex-direction: column;
  }
}
