:root {
  --bg: #050408;
  --panel: rgba(17, 14, 28, 0.88);
  --accent: #ff4fb7;
  --accent-soft: rgba(255, 79, 183, 0.25);
  --text: #fefcff;
  --muted: rgba(254, 252, 255, 0.68);
  font-family: "Inter", system-ui, sans-serif;
}

body {
  margin: 0;
  background: linear-gradient(160deg, #140a24, #050408 70%);
  color: var(--text);
}

.hero {
  padding: 5rem clamp(1.5rem, 5vw, 6rem) 3rem;
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  font-size: 0.75rem;
}

.hero h1 {
  margin-bottom: 0.75rem;
  font-size: clamp(2.6rem, 6vw, 4rem);
}

.hero p {
  margin: 0 auto 2rem;
  max-width: 65ch;
  color: var(--muted);
  line-height: 1.7;
}

.cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.4rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--accent), #7a5bff);
  color: #10051a;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(122, 91, 255, 0.35);
}

.button--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 79, 183, 0.5);
}

.section {
  padding: 4rem clamp(1.5rem, 5vw, 6rem);
}

.section--alt {
  background: var(--panel);
  border-radius: 2rem;
  margin: 0 clamp(1.5rem, 5vw, 6rem) 4rem;
  box-shadow: 0 40px 80px rgba(4, 3, 9, 0.7);
}

.kit,
.releases {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.download-card {
  background: rgba(12, 10, 22, 0.9);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid var(--accent-soft);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
  max-width: 720px;
}

.section li::before {
  content: '📰';
  margin-right: 0.75rem;
}

.muted {
  color: var(--muted);
}

.section__header {
  max-width: 820px;
  margin-bottom: 2rem;
}

.section__header p {
  color: var(--muted);
  margin-top: 0.5rem;
}

.media-rails {
  display: grid;
  gap: 2rem;
}

.media-rail {
  background: rgba(12, 10, 22, 0.72);
  border-radius: 1.8rem;
  padding: 2.4rem clamp(1.25rem, 4vw, 2.8rem);
  border: 1px solid rgba(255, 79, 183, 0.18);
  box-shadow: 0 32px 70px rgba(3, 2, 10, 0.65);
}

.media-rail h2 {
  margin-top: 0;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  color: var(--muted);
}

.media-rail__grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.media-card {
  background: rgba(9, 7, 17, 0.92);
  border: 1px solid rgba(122, 91, 255, 0.35);
  border-radius: 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.media-card__figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}

.media-card__figure img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.media-card__body {
  padding: 0 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.media-card__meta {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}

.media-card__excerpt {
  color: var(--muted);
  line-height: 1.7;
}

.inline-articles {
  display: grid;
  gap: 1.8rem;
}

.inline-article {
  background: rgba(12, 10, 22, 0.88);
  border-radius: 1.8rem;
  padding: 2.2rem clamp(1.2rem, 5vw, 2.8rem);
  border: 1px solid rgba(255, 79, 183, 0.18);
  position: relative;
  display: grid;
  gap: 1rem;
}

.inline-article__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}

.inline-article__header time {
  font-size: 0.85rem;
  color: var(--muted);
}

.inline-article__excerpt {
  margin: 0;
  color: var(--muted);
}

.inline-article__body {
  display: none;
  color: var(--text);
  line-height: 1.7;
}

.inline-article__body p {
  margin-top: 0;
}

.inline-article--expanded .inline-article__body {
  display: block;
}

.inline-article__toggle {
  align-self: flex-start;
}

.tag-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.tag-pills li {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(50, 209, 255, 0.15);
  color: var(--text);
}

.monetization-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.monetization-card {
  background: rgba(9, 7, 17, 0.92);
  border-radius: 1.5rem;
  padding: 1.8rem;
  border: 1px solid rgba(122, 91, 255, 0.2);
  display: grid;
  gap: 0.75rem;
}

.monetization-card h3 {
  margin: 0;
}

.monetization-card p {
  margin: 0;
  color: var(--muted);
}

.ld-footer {
  background: #0a0f1c;
}

.ld-footer__band {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: linear-gradient(100deg, #6a00f4 0%, #7a4bfd 28%, #37c6f2 64%, #28e2d0 100%);
  border-radius: 28px 28px 0 0;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25) inset;
}

.ld-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 22px 28px;
  display: grid;
  gap: 32px;
  grid-template-columns: 1.6fr repeat(5, 1fr);
}

.ld-footer__brand h3 {
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-transform: uppercase;
}

.ld-footer__logo {
  height: 28px;
  width: auto;
  margin-bottom: 12px;
}

.ld-footer__form {
  display: grid;
  gap: 0.75rem;
}

.ld-footer__form label {
  font-size: 0.95rem;
  color: #ffffff;
}

.ld-footer__inputwrap {
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #121a2b, #1b2741);
  border-radius: 999px;
  padding: 6px 6px 6px 14px;
}

.ld-footer__inputwrap input {
  flex: 1;
  border: 0;
  background: transparent;
  color: #dfe7ff;
  outline: none;
  font-size: 0.95rem;
}

.ld-footer__inputwrap button {
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(90deg, #0d0f2b, #2c3562);
  color: #cfe2ff;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.ld-col h4 {
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 14px;
  font-size: 0.95rem;
}

.ld-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ld-col a {
  display: block;
  padding: 6px 0;
  color: #e8f3ff;
  text-decoration: none;
}

.ld-col a:hover {
  text-decoration: underline;
}

.ld-col-empty {
  min-height: 1px;
}

.ld-footer__legal {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.ld-footer__legal-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 22px 24px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  color: #cfe0ff;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.ld-footer__legal a {
  color: #cfe0ff;
  text-decoration: none;
}

.ld-footer__legal a:hover {
  text-decoration: underline;
}

@media (max-width: 1100px) {
  .ld-footer__inner {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
  }

  .ld-col-empty {
    display: none;
  }
}

@media (max-width: 900px) {
  .media-card__figure img {
    height: 180px;
  }
}

@media (max-width: 700px) {
  .ld-footer__inner {
    grid-template-columns: 1fr;
  }

  .ld-footer__legal-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .inline-article__header {
    flex-direction: column;
    align-items: flex-start;
  }
}
