:root {
  color-scheme: light;
  --bg: #fefefe;
  --bg-pop: #fff0f5;
  --surface: #ffffff;
  --text: #111111;
  --muted: #636363;
  --styleke: #111111;
  --yo: #ff3366;
  --yo-soft: rgba(255, 51, 102, 0.14);
  --lime: #c6f135;
  --lime-soft: rgba(198, 241, 53, 0.35);
  --border: rgba(17, 17, 17, 0.08);
  --radius: 0;
  --font-display:
    "Arial Black",
    "Helvetica Neue",
    Helvetica,
    Arial,
    ui-sans-serif,
    system-ui,
    -apple-system,
    sans-serif;
  --font-body:
    "Helvetica Neue",
    Helvetica,
    Arial,
    ui-sans-serif,
    system-ui,
    -apple-system,
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, var(--bg-pop) 0%, transparent 50%),
    radial-gradient(circle at 95% 10%, var(--yo-soft), transparent 40%),
    radial-gradient(circle at 5% 90%, var(--lime-soft), transparent 35%),
    var(--bg);
}

.backdrop__tag {
  position: absolute;
  top: 8%;
  left: 6%;
  padding: 8px 14px;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--styleke);
  background: var(--lime);
  transform: rotate(-6deg);
  box-shadow: 4px 4px 0 var(--yo);
}

.page {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0 88px;
}

.hero {
  margin-bottom: 40px;
  padding-bottom: 36px;
  border-bottom: 4px solid var(--styleke);
}

.eyebrow {
  display: inline-block;
  margin: 0 0 20px;
  padding: 6px 12px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--surface);
  background: var(--yo);
}

.brand-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.9;
  text-transform: uppercase;
}

.brand-title .styleke {
  color: var(--styleke);
}

.brand-title .yo {
  display: inline-block;
  margin-left: 0.08em;
  padding: 0 0.12em;
  color: var(--surface);
  background: var(--yo);
  transform: rotate(2deg);
}

h1 {
  margin: 24px 0 0;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.lead {
  margin-top: 18px;
  max-width: 48ch;
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.75;
}

.updated {
  margin-top: 20px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--yo);
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
  border: 3px solid var(--styleke);
}

.highlights li {
  padding: 24px 20px;
  background: var(--surface);
  border-right: 3px solid var(--styleke);
}

.highlights li:last-child {
  border-right: none;
}

.highlights li:nth-child(2) {
  background: var(--bg-pop);
}

.highlights strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--styleke);
}

.highlights span {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
}

.card {
  padding: 0;
  background: transparent;
}

.card h2 {
  margin: 0 0 10px;
  display: inline-block;
  padding: 2px 8px;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--surface);
  background: var(--styleke);
}

.card p {
  margin: 0;
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.68;
}

.card p + p {
  margin-top: 10px;
}

.card--wide {
  grid-column: 1 / -1;
  padding: 28px 26px;
  background: var(--styleke);
  color: var(--surface);
}

.card--wide h2 {
  background: var(--yo);
  color: var(--surface);
}

.card--wide p {
  color: rgba(255, 255, 255, 0.75);
}

a {
  color: var(--yo);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px solid var(--lime);
}

a:hover {
  color: var(--styleke);
}

.footer {
  margin-top: 44px;
  padding: 20px 0;
  border-top: 3px solid var(--styleke);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--styleke);
}

.footer strong .yo {
  color: var(--yo);
}

@media (max-width: 760px) {
  .highlights {
    grid-template-columns: 1fr;
    border-right: none;
  }

  .highlights li {
    border-right: none;
    border-bottom: 3px solid var(--styleke);
  }

  .highlights li:last-child {
    border-bottom: none;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .card--wide {
    grid-column: auto;
    padding: 22px 20px;
  }

  .backdrop__tag {
    display: none;
  }
}

@media (max-width: 480px) {
  .page {
    padding: 40px 0 64px;
    width: min(100% - 24px, 920px);
  }
}
