.oz-logogrid-section {
  --oz-ink: #0F141E;
  --oz-ink-muted: #5A6070;
  --oz-cream: #F5F0EB;
  --oz-cream-warm: #EDE8E2;
  --oz-violet: #5F2DFF;
  --oz-line: rgba(15, 20, 30, 0.08);
  background: var(--oz-cream);
  padding: 80px 0;
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--oz-ink);
}
@media (min-width: 1024px) { .oz-logogrid-section { padding: 112px 0; } }
.oz-logogrid-section *, .oz-logogrid-section *::before, .oz-logogrid-section *::after { box-sizing: border-box; }
.oz-logogrid-wrap { max-width: 1300px; margin: 0 auto; padding: 0 24px; }

.oz-logogrid-header { text-align: center; margin-bottom: 48px; }
.oz-logogrid-eyebrow {
  font-family: 'Space Mono', ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--oz-violet); margin: 0 0 12px;
}
.oz-logogrid-title {
  font-weight: 500; font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1; letter-spacing: -0.03em;
  margin: 0 auto 16px; max-width: 32ch;
}
.oz-logogrid-sub {
  font-size: 16px; color: var(--oz-ink-muted);
  max-width: 48ch; margin: 0 auto; line-height: 1.55;
}

.oz-logogrid-grid {
  display: grid; gap: 1px;
  grid-template-columns: repeat(2, 1fr);
  background: var(--oz-line);
  border: 1px solid var(--oz-line);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 48px;
}
@media (min-width: 640px)  { .oz-logogrid-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px)  { .oz-logogrid-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1200px) { .oz-logogrid-grid { grid-template-columns: repeat(6, 1fr); } }

.oz-logogrid-cell {
  background: white;
  display: flex; align-items: center; justify-content: center;
  padding: 28px 20px; min-height: 96px;
  transition: background 0.2s ease;
}
.oz-logogrid-cell:hover { background: var(--oz-cream-warm); }

.oz-logogrid-name {
  font-weight: 600; font-size: 15px;
  color: var(--oz-ink); letter-spacing: -0.02em;
}

.oz-logogrid-cta-wrap { text-align: center; }
.oz-logogrid-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--oz-ink); color: var(--oz-cream);
  padding: 14px 24px; border-radius: 100px;
  font-weight: 700; font-size: 14px;
  text-decoration: none;
  transition: transform 0.15s ease;
}
.oz-logogrid-cta:hover { transform: translateY(-1px); }
