:root {
  color-scheme: light;
  --bg: #f2f4f7;
  --surface: #ffffff;
  --surface-alt: #f8fafc;
  --text: #1f2937;
  --muted: #667085;
  --accent: #d53b3b;
  --accent-strong: #b62e2e;
  --border: #e3e8ef;
  --shadow: 0 26px 56px rgba(15, 23, 42, 0.12);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --header-offset: 96px;
  --font-title: "Sora", "Segoe UI", sans-serif;
  --font-body: "IBM Plex Sans", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: #ffffff;
  min-height: 100vh;
}

body::before,
body::after {
  content: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 64px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy h1 {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 3vw, 3.4rem);
  margin: 12px 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 520px;
}

.hero-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px rgba(213, 59, 59, 0.25);
}

.btn.primary:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

.btn.ghost {
  background: #fff;
  border: 1.5px solid #cbd5e1;
  color: var(--text);
}

.hero-panel {
  display: grid;
  gap: 12px;
}

.panel-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow);
}

.panel-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.catalog {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-head h2 {
  font-family: var(--font-title);
  font-size: 1.8rem;
  margin: 0 0 8px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: #d1d5db;
  box-shadow: 0 20px 36px rgba(15, 23, 42, 0.12);
}

.card h3 {
  font-family: var(--font-title);
  margin: 0;
  font-size: 1.2rem;
}

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

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--surface-alt);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-media {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
}

.card-media img {
  max-height: 140px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.card-cta {
  align-self: flex-start;
  margin-top: 6px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.card:hover .card-cta {
  color: var(--accent-strong);
}

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

  .hero-panel {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --header-offset: 72px;
  }
}

@media (max-width: 600px) {
  .page {
    padding: 24px 16px 48px;
  }
}
