/*
Theme Name: OmenCreator
Theme URI: https://omencreator.com
Description: Private-test WordPress chrome for the OmenCreator author workspace.
Version: 0.1.0
Author: Dr. Mohamed Karim
License: Proprietary
Text Domain: omencreator
*/

:root {
  --ink: #161616;
  --muted: #66615a;
  --paper: #faf8f3;
  --panel: #ffffff;
  --line: #ded8cc;
  --accent: #315c54;
  --accent-2: #9b5a3c;
  --soft: #eef4f1;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.oc-shell {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.oc-header,
.oc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
}

.oc-footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.oc-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
}

.oc-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0;
}

.oc-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.oc-nav a,
.oc-button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 14px;
  background: var(--panel);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.oc-button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.oc-main {
  display: grid;
  align-content: center;
  gap: 28px;
  padding: clamp(36px, 6vw, 78px) clamp(20px, 4vw, 56px);
}

.oc-hero {
  display: grid;
  max-width: 980px;
  gap: 22px;
}

.oc-kicker {
  width: fit-content;
  border: 1px solid #bdd0ca;
  border-radius: 8px;
  padding: 7px 10px;
  background: var(--soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.oc-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(42px, 8vw, 88px);
  line-height: 0.98;
  letter-spacing: 0;
}

.oc-hero p {
  margin: 0;
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.oc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.oc-status {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 980px;
  gap: 12px;
}

.oc-status div {
  min-height: 94px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: var(--panel);
}

.oc-status span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.oc-status strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
}

@media (max-width: 760px) {
  .oc-header,
  .oc-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .oc-nav {
    justify-content: stretch;
  }

  .oc-nav a,
  .oc-button {
    flex: 1 1 150px;
  }

  .oc-status {
    grid-template-columns: 1fr;
  }
}
