* {
  box-sizing: border-box;
}

html {
  background: #07070b;
  color: #f5f3ff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 12%, rgba(145, 71, 255, 0.22), transparent 32rem),
    linear-gradient(180deg, #101018 0%, #07070b 62%, #050508 100%);
}

a {
  color: inherit;
}

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

.topbar,
.hero,
.section,
.footer {
  width: 100%;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 56px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 8px;
  background: #9147ff;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 42px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: #b8a8ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 740px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.95;
  letter-spacing: 0;
}

.lead {
  margin: 22px 0 0;
  max-width: 680px;
  color: #c9c4dc;
  font-size: 19px;
  line-height: 1.6;
}

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

.button--secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.preview {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: #09090f;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.preview__bar {
  display: flex;
  gap: 7px;
  padding: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.preview__bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3b3948;
}

.preview__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  grid-template-rows: 150px 118px;
  gap: 10px;
  padding: 14px;
}

.tile {
  position: relative;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(145, 71, 255, 0.35), rgba(15, 15, 23, 0.85));
}

.tile:first-child {
  grid-row: 1 / -1;
}

.tile--kick {
  background: linear-gradient(135deg, rgba(83, 252, 24, 0.28), rgba(15, 15, 23, 0.85));
}

.tile--youtube {
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.28), rgba(15, 15, 23, 0.85));
}

.tile span {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 5px 8px;
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.44);
  font-size: 12px;
  font-weight: 800;
}

.section {
  margin-top: 58px;
}

.section h2 {
  margin: 0 0 18px;
  font-size: 28px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.card p,
.footer {
  color: #bdb7d2;
  line-height: 1.55;
}

.footer {
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

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

  .topbar {
    margin-bottom: 38px;
  }

  .preview__grid {
    grid-template-columns: 1fr;
    grid-template-rows: 150px 110px 110px;
  }

  .tile:first-child {
    grid-row: auto;
  }
}
