:root {
  --bg: #08060e;
  --bg-2: #121027;
  --card: #191733;
  --card-2: #222046;
  --text: #f3f0ff;
  --muted: #b8b0d6;
  --neon-1: #ff4d6d;
  --neon-2: #5bffb1;
  --neon-3: #52d3ff;
  --line: rgba(255, 255, 255, 0.15);
  --shadow: 0 18px 36px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at 12% 8%, #2a1f5c 0%, var(--bg) 40%, #06050c 100%);
  color: var(--text);
  font-family: "Noto Sans", sans-serif;
}

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

img {
  width: 100%;
  height: auto;
  display: block;
}

.wrap {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 6, 14, 0.84);
  backdrop-filter: blur(8px);
}

.header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
}

.brand {
  font-family: "Oxanium", sans-serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--neon-2);
  letter-spacing: 0.6px;
}

.nav {
  display: flex;
  gap: 16px;
  color: #ddd7f4;
  font-weight: 700;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--neon-1);
}

.hero {
  padding: 64px 0 36px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -130px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 255, 177, 0.22), transparent 70%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 22px;
  align-items: center;
}

.pill {
  display: inline-block;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--neon-3), #99e9ff);
  color: #04131a;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 900;
  padding: 7px 12px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Oxanium", sans-serif;
  line-height: 1;
}

h1 {
  font-size: clamp(2.1rem, 6vw, 4rem);
  margin: 14px 0 12px;
}

h2 {
  font-size: clamp(1.55rem, 4.2vw, 2.7rem);
  margin-bottom: 10px;
}

h3 {
  font-size: clamp(1.2rem, 2.8vw, 1.9rem);
  margin-bottom: 8px;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.cta {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 11px 16px;
  font-weight: 800;
}

.btn.primary {
  color: #1f0910;
  background: linear-gradient(90deg, var(--neon-1), #ff97aa);
  box-shadow: 0 10px 22px rgba(255, 77, 109, 0.28);
}

.btn.alt {
  color: #04150f;
  background: linear-gradient(90deg, var(--neon-2), #a8ffd6);
  box-shadow: 0 10px 22px rgba(91, 255, 177, 0.22);
}

.hero-media {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-media img {
  min-height: 360px;
  object-fit: cover;
}

.section {
  padding: 52px 0;
}

.ribbon {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(82, 211, 255, 0.11), rgba(255, 77, 109, 0.12));
}

.ribbon .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 0;
  color: #e7f6ff;
  font-weight: 700;
}

.grid2 {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 14px;
}

.box {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.box.alt {
  background: linear-gradient(145deg, rgba(82, 211, 255, 0.13), rgba(255, 77, 109, 0.12));
}

.items {
  display: grid;
  gap: 10px;
}

.items div {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 4px solid var(--neon-1);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(12, 10, 22, 0.74);
  color: #ffdce5;
  font-weight: 600;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 22px 0 34px;
  color: #d3caee;
}

.footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .hero-grid,
  .grid2 {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    min-height: 240px;
  }
}
