:root {
  --oc-bg: #071716;
  --oc-bg-soft: #0d2523;
  --oc-text: #11201f;
  --oc-muted: #5f6f6d;
  --oc-aqua: #2fd3c5;
  --oc-gold: #f6c95f;
  --oc-border: rgba(255,255,255,0.12);
  --oc-shadow: 0 18px 50px rgba(0,0,0,0.16);
  --oc-radius: 22px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--oc-text);
  background: #f6f8f7;
  line-height: 1.6;
}

a { color: inherit; }

.oc-container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.oc-header {
  background: rgba(7, 23, 22, 0.98);
  color: white;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--oc-border);
}

.oc-header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.oc-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.2rem;
}

.oc-logo-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--oc-aqua), var(--oc-gold));
  color: #071716;
  font-size: 1rem;
}

.oc-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.oc-nav a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
}

.oc-nav a:hover { color: white; }

.oc-nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--oc-aqua);
  color: #071716 !important;
  font-weight: 750;
}

.oc-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--oc-border);
  border-radius: 12px;
  background: transparent;
  padding: 9px;
  cursor: pointer;
}

.oc-menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: white;
  border-radius: 99px;
}

.oc-main { min-height: 60vh; }

.oc-page-hero {
  background:
    radial-gradient(circle at top left, rgba(47,211,197,0.26), transparent 36%),
    linear-gradient(135deg, #071716, #0d2523);
  color: white;
  padding: 72px 0 56px;
}

.oc-page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.oc-page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
}

.oc-page-section { padding: 42px 0 72px; }

.oc-content-card {
  background: white;
  border-radius: var(--oc-radius);
  box-shadow: var(--oc-shadow);
  padding: clamp(24px, 4vw, 46px);
}

.oc-content-card h2 {
  margin-top: 32px;
  margin-bottom: 10px;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.oc-content-card h2:first-child { margin-top: 0; }

.oc-content-card p {
  margin: 0 0 16px;
  color: #263331;
}

.oc-content-card ul {
  margin: 8px 0 20px;
  padding-left: 22px;
}

.oc-content-card li { margin: 7px 0; }

.oc-content-card a {
  color: #087a71;
  font-weight: 700;
}

.oc-note {
  border-left: 4px solid var(--oc-aqua);
  background: #effdfb;
  padding: 16px 18px;
  border-radius: 12px;
  margin: 24px 0;
}

.oc-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.oc-hub-card {
  display: block;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.08);
  text-decoration: none;
  background: #fbfdfc;
}

.oc-hub-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--oc-text);
}

.oc-hub-card span {
  color: var(--oc-muted);
  font-weight: 400;
}

.oc-footer {
  background: var(--oc-bg);
  color: white;
  padding: 46px 0 22px;
}

.oc-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
}

.oc-footer h3,
.oc-footer h4 { margin: 0 0 12px; }

.oc-footer p {
  margin: 0;
  color: rgba(255,255,255,0.68);
  max-width: 420px;
}

.oc-footer a {
  display: block;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  margin: 8px 0;
}

.oc-footer a:hover { color: white; }

.oc-footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--oc-border);
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
}

@media (max-width: 820px) {
  .oc-menu-toggle { display: block; }

  .oc-nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    background: #071716;
    border: 1px solid var(--oc-border);
    border-radius: 18px;
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--oc-shadow);
  }

  .oc-nav.is-open { display: flex; }

  .oc-nav a { padding: 10px 8px; }

  .oc-nav-cta { text-align: center; }

  .oc-footer-grid,
  .oc-hub-grid { grid-template-columns: 1fr; }
}
.info-brand{
    display:inline-flex;
    align-items:center;
    text-decoration:none;
    line-height:1;
    padding:0;
    margin:0;
}

.info-brand img{
    display:block;
    height:24px;
    width:auto;
    object-fit:contain;
}
