:root {
  --ods-bg: #0f172a;
  --ods-surface: #111827;
  --ods-card: rgba(255,255,255,.04);
  --ods-border: rgba(255,255,255,.10);
  --ods-text: #e5e7eb;
  --ods-muted: #9ca3af;
  --ods-accent: #3b82f6;
}
html, body { margin: 0; padding: 0; }
body.ods-showroom-page {
  background: linear-gradient(180deg, #0b1220 0%, #111827 100%);
  color: var(--ods-text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.ods-wrap { width: min(1200px, calc(100% - 32px)); margin: 0 auto; }
.ods-hero {
  padding: 72px 0 40px;
  border-bottom: 1px solid var(--ods-border);
  background: radial-gradient(circle at top, rgba(59,130,246,.18), transparent 38%), transparent;
}
.ods-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(59,130,246,.14);
  color: #bfdbfe;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.ods-hero h1 {
  margin: 18px 0 12px;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
}
.ods-hero p {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ods-muted);
}
.ods-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.ods-main { padding: 32px 0 72px; }
.ods-family-section + .ods-family-section { margin-top: 44px; }
.ods-family-head {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 20px;
}
.ods-family-kicker {
  color: #93c5fd;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.ods-family-head h2 {
  margin: 0;
  font-size: 28px;
}
.ods-family-head p {
  max-width: 520px;
  margin: 0;
  color: var(--ods-muted);
  line-height: 1.6;
}
.ods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.ods-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--ods-border);
  border-radius: 24px;
  overflow: hidden;
  background: var(--ods-card);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.ods-thumb {
  display: block;
  aspect-ratio: 16 / 10;
  background: rgba(255,255,255,.03);
}
.ods-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ods-card-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  flex: 1;
}
.ods-card-topline,
.ods-supports {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ods-chip,
.ods-supports span {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid var(--ods-border);
  background: rgba(255,255,255,.04);
}
.ods-chip-muted { color: var(--ods-muted); }
.ods-card h3 {
  margin: 0;
  font-size: 22px;
}
.ods-warning {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(245, 158, 11, .12);
  border: 1px solid rgba(245, 158, 11, .24);
  color: #fde68a;
  font-size: 14px;
}
.ods-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--ods-border);
  text-decoration: none;
  font-weight: 700;
}
.ods-btn-primary {
  background: var(--ods-accent);
  border-color: transparent;
  color: #ffffff;
}
.ods-btn-secondary {
  background: transparent;
  color: var(--ods-text);
}
.ods-empty {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--ods-border);
  background: var(--ods-card);
}
@media (max-width: 768px) {
  .ods-hero { padding-top: 48px; }
  .ods-family-head { flex-direction: column; align-items: start; }
  .ods-family-head p { max-width: none; }
}
