:root {
  --bg: #05050a;
  --bg2: #151122;
  --panel: #1a1730;
  --panel2: #241f42;
  --text: #f6f1ff;
  --muted: #b9add3;
  --c1: #ff4ecb;
  --c2: #47ff9c;
  --c3: #ffd84f;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 16px 34px rgba(0, 0, 0, 0.46);
}

* { box-sizing: border-box; }

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 12% 10%, #37295e 0%, var(--bg) 40%, #040409 100%);
}

a { color: inherit; text-decoration: none; }
img { width: 100%; display: block; height: auto; }

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

.top {
  position: sticky;
  top: 0;
  z-index: 70;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 10, 0.85);
  backdrop-filter: blur(8px);
}

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

.logo {
  font-family: "Changa", sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--c2);
  letter-spacing: 0.7px;
}

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

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

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

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -110px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 216, 79, 0.24), transparent 70%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

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

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

h1 { font-size: clamp(2.15rem, 6vw, 4rem); margin: 14px 0 12px; }
h2 { font-size: clamp(1.55rem, 4.2vw, 2.8rem); margin-bottom: 10px; }
h3 { font-size: clamp(1.16rem, 2.8vw, 1.85rem); margin-bottom: 8px; }

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

.actions {
  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 {
  background: linear-gradient(90deg, var(--c2), #b4ffd8);
  color: #052113;
  box-shadow: 0 10px 24px rgba(71, 255, 156, 0.24);
}

.btn.alt {
  background: linear-gradient(90deg, var(--c3), #ffe8a1);
  color: #2f2200;
  box-shadow: 0 10px 24px rgba(255, 216, 79, 0.24);
}

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

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

.section { padding: 54px 0; }

.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(71, 255, 156, 0.12), rgba(255, 78, 203, 0.13));
}

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

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

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

.block.alt {
  background: linear-gradient(145deg, rgba(255, 78, 203, 0.15), rgba(71, 255, 156, 0.11));
}

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

.points div {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 4px solid var(--c3);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(15, 12, 26, 0.74);
  color: #fff6d9;
  font-weight: 600;
}

.timeline {
  display: grid;
  gap: 11px;
}

.entry {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  background: var(--panel2);
}

.entry strong {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--c2);
  font-weight: 800;
}

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

.footer p { margin: 0; }

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

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