:root {
  --bg: oklch(14% 0.008 264);
  --surface: oklch(18% 0.010 264);
  --surface-hover: oklch(20% 0.012 264);
  --fg: oklch(97% 0.004 264);
  --muted: oklch(66% 0.012 264);
  --muted-2: oklch(50% 0.012 264);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --accent: oklch(75% 0.165 46);
  --accent-ink: oklch(20% 0.04 50);
  --font-display: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', system-ui, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { color-scheme: dark; -webkit-text-size-adjust: 100%; }
body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--fg);
  font: 17px/1.6 var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--accent); color: var(--accent-ink); }

.wrap { width: 100%; max-width: 1296px; margin: 0 auto; padding-inline: 24px; }

.whats-new-main { padding: 88px 0 112px; }
.page-header { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.04em;
}
.updates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 400px));
  justify-content: center;
  gap: 24px;
}
.update-card {
  width: 100%;
  max-width: 400px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 0;
  border-radius: 24px;
  box-shadow: 0 0 0 1px var(--border), 0 16px 50px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.update-card:hover {
  transform: translateY(-4px);
  background: var(--surface-hover);
  box-shadow: 0 0 0 1px var(--border-strong), 0 20px 58px rgba(0, 0, 0, 0.24);
}
.update-image {
  width: 400px;
  height: 300px;
  object-fit: cover;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.update-content {
  min-height: 260px;
  padding: 26px;
  display: flex;
  flex-direction: column;
}
.update-kicker {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.update-card h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 630;
  line-height: 1.15;
  letter-spacing: -0.025em;
}
.update-description {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.55;
}
.page-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0 34px;
  color: var(--muted-2);
  font-size: 13px;
}
.page-footer-inner { display: flex; justify-content: space-between; gap: 20px; }
.page-footer a { color: var(--muted); }
.page-footer a:hover { color: var(--fg); }

@media (max-width: 860px) {
  .whats-new-main { padding-top: 68px; }
  .updates-grid { grid-template-columns: minmax(0, 400px); }
}

@media (max-width: 480px) {
  .wrap { padding-inline: 18px; }
  .whats-new-main { padding: 56px 0 80px; }
  .page-header { margin-bottom: 38px; text-align: left; }
  .updates-grid { grid-template-columns: minmax(0, 1fr); gap: 18px; }
  .update-card { max-width: none; border-radius: 20px; }
  .update-image { width: 100%; height: auto; aspect-ratio: 4 / 3; }
  .update-content { min-height: 248px; padding: 24px; }
  .page-footer-inner { flex-direction: column; gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
