/* =====================================================
   OPWORKS · DESIGN SYSTEM v2
   Drop this in place of (or alongside) styles.css
   ===================================================== */

:root {
  /* surface */
  --ink: #0A0E0C;
  --ink-2: #131815;
  --ink-3: #1B211D;
  --paper: #F5F2EC;
  --paper-2: #EBE7DF;
  --paper-line: #D9D3C7;

  /* lines on dark */
  --line: rgba(255,255,255,0.08);
  --line-2: rgba(255,255,255,0.14);
  --line-3: rgba(255,255,255,0.22);

  /* text */
  --text: #E9EBE6;
  --text-mute: #8A918A;
  --text-soft: #AAB1AA;

  /* accent (single) */
  --accent: #B6F24A;
  --accent-deep: #7FB02A;
  --accent-ink: #0A0E0C;

  /* type */
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, Menlo, monospace;

  --radius: 14px;
  --radius-sm: 10px;
  --radius-pill: 999px;

  --gap-section: clamp(96px, 12vw, 160px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: var(--ink); }
body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
  line-height: 1.55;
  font-size: 15.5px;
  overflow-x: hidden;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

/* ---------- TYPOGRAPHY PRIMITIVES ---------- */
.ow-display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 7.5vw, 116px);
  line-height: 0.94;
  letter-spacing: -0.025em;
  margin: 24px 0 28px;
  color: var(--text);
  text-wrap: balance;
}
.ow-display em { font-style: italic; color: var(--accent); }

.ow-h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.022em;
  margin: 12px 0 0;
  color: var(--text);
  text-wrap: balance;
}
.ow-h2 em { font-style: italic; color: var(--accent); }

.ow-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.ow-eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
}

.ow-eyebrow-live {
  color: var(--accent);
  border: 1px solid rgba(182,242,74,0.3);
  background: rgba(182,242,74,0.06);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}
.ow-eyebrow-live::before { display: none; }
.ow-live-dot {
  width: 6px; height: 6px; border-radius: 99px;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: ow-pulse 1.6s ease-in-out infinite;
}
@keyframes ow-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.ow-lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 52ch;
  margin: 0 0 32px;
  text-wrap: pretty;
}

/* ---------- SECTION SHELL ---------- */
.ow-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: var(--gap-section) 40px 0;
}
.ow-section:last-of-type { padding-bottom: var(--gap-section); }

.ow-section-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 56px;
}
.ow-section-aside {
  font-size: 15px;
  color: var(--text-soft);
  max-width: 38ch;
  margin: 0;
  text-wrap: pretty;
}

/* ---------- HEADER ---------- */
.ow-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,14,12,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.ow-header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.ow-mark {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}
.ow-mark-glyph {
  color: var(--text);
  flex-shrink: 0;
}
.ow-mark-word + .ow-mark-sub { margin-left: 6px; }
.ow-mark-word {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.ow-mark-sub {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--text-mute);
}

/* larger header lockup with stacked wordmark */
.ow-mark-lg { gap: 14px; }
.ow-mark-lg .ow-mark-glyph { width: 34px; height: 34px; }
.ow-mark-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1;
}
.ow-mark-lg .ow-mark-stack .ow-mark-word {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  color: var(--text);
  letter-spacing: -0.012em;
  line-height: 1;
}
.ow-mark-lg .ow-mark-stack .ow-mark-sub {
  margin-left: 0;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  color: var(--text-mute);
  line-height: 1;
}

.ow-header-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}
.ow-header-right .ow-nav { margin-left: 0; }

.ow-nav {
  display: flex;
  gap: 4px;
  margin-left: 28px;
}
.ow-nav a {
  text-decoration: none;
  color: var(--text-mute);
  font-size: 13.5px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color .15s, background .15s;
}
.ow-nav a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.ow-cta {
  margin-left: auto;
  display: flex;
  gap: 10px;
  align-items: center;
}

/* ---------- BUTTONS ---------- */
.ow-btn {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: -0.005em;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .12s cubic-bezier(.2,0,0,1), background .15s, color .15s, border-color .15s;
  white-space: nowrap;
}
.ow-btn:hover { transform: translateY(-1px); }
.ow-btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.ow-btn-primary:hover { background: #c4ff58; }
.ow-btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-2);
}
.ow-btn-ghost:hover { background: rgba(255,255,255,0.04); border-color: var(--line-3); }
.ow-btn-large { padding: 14px 22px; font-size: 14.5px; }

/* ---------- HERO ---------- */
.ow-hero {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 40px clamp(64px, 8vw, 120px);
  position: relative;
}
.ow-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 380px at 18% 30%, rgba(182,242,74,0.07), transparent 60%);
  pointer-events: none;
}
.ow-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.ow-actions {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
}
.ow-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.ow-stat-row > div { padding: 0; }
.ow-stat-row dt {
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 8px;
}
.ow-stat-row dd {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin: 0;
  line-height: 1.4;
}

/* hero workflow visual */
.ow-workflow {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}
.ow-workflow header {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 6px;
}
.ow-wf-title {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--text);
}
.ow-wf-ico {
  width: 14px; height: 14px;
  border-radius: 4px;
  background: var(--accent);
  display: inline-block;
}
.ow-wf-status {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ow-wf-status::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 99px;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}
.ow-flow {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ow-flow li {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 4px;
  position: relative;
}
.ow-flow li + li::before {
  content: "";
  position: absolute;
  left: 17px; top: -8px;
  width: 1px; height: 16px;
  background: var(--line);
}
.ow-flow li.is-done + li::before,
.ow-flow li.is-active + li::before {
  background: linear-gradient(180deg, var(--accent), var(--line));
}
.ow-flow .ix {
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  background: var(--ink-3);
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text);
}
.ow-flow li.is-done .ix {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.ow-flow li.is-active .ix {
  background: var(--ink-3);
  color: var(--accent);
  border-color: var(--accent);
}
.ow-flow .lbl { font-size: 13.5px; color: var(--text); }
.ow-flow .lbl em {
  font-style: normal;
  color: var(--text-mute);
  margin-left: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
}
.ow-flow .meta {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--text-mute);
  letter-spacing: 0.04em;
}

/* ---------- TRUST BAND (no clients yet) ---------- */
.ow-trust-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.015);
}
.ow-trust-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 32px 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
}
.ow-trust-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  white-space: nowrap;
}
.ow-trust-row {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.ow-trust-row li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 16px;
  border-left: 1px solid var(--line);
}
.ow-trust-pri {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--text);
  font-style: italic;
}
.ow-trust-sec {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--text-mute);
  line-height: 1.4;
}

/* ---------- PROBLEMS ----------
   Desktop ≥1280px: 5 cards across in one row.
   Tablet 768–1279px: 3 + 2 with the orphan row centered.
   Mobile <768px: single column. */
.ow-problem-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.ow-problem {
  background: var(--ink-2);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
}
.ow-problem-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-mute);
}
.ow-problem h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(18px, 1.5vw, 20px);
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--text);
  line-height: 1.18;
  text-wrap: balance;
}
.ow-problem p {
  margin: 0;
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.5;
  text-wrap: pretty;
}

/* Tablet: 3 + 2 with the orphan row centered.
   6-track grid where every card spans 2 cols; cards 4-5 are pinned to
   cols 2-3 and 4-5 so they sit in the middle. ::before/::after fill the
   empty cells (row 2 cols 1 & 6) with the card background so the
   orphan row doesn't show line-color gaps.
   FRAGILE: the filler background is hardcoded to var(--ink-2) — if the
   card background ever changes, update both spots. */
@media (min-width: 768px) and (max-width: 1279px) {
  .ow-problem-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .ow-problem { grid-column: span 2; }
  .ow-problem:nth-child(4) { grid-column: 2 / span 2; }
  .ow-problem:nth-child(5) { grid-column: 4 / span 2; }
  .ow-problem-grid::before,
  .ow-problem-grid::after {
    content: "";
    background: var(--ink-2);
    grid-row: 2;
  }
  .ow-problem-grid::before { grid-column: 1 / span 1; }
  .ow-problem-grid::after  { grid-column: 6 / span 1; }
}

/* Mobile: single column. */
@media (max-width: 767px) {
  .ow-problem-grid {
    grid-template-columns: 1fr;
  }
  .ow-problem:nth-child(4),
  .ow-problem:nth-child(5) { grid-column: auto; }
}

/* ---------- SERVICES ---------- */
.ow-svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.ow-svc-grid-3 { grid-template-columns: repeat(3, 1fr) !important; }
@media (max-width: 1000px) {
  .ow-svc-grid-3 { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 720px) {
  .ow-svc-grid-3 { grid-template-columns: 1fr !important; }
}
.ow-svc {
  background: var(--ink-2);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 300px;
  position: relative;
  transition: background .2s;
  cursor: default;
}
.ow-svc:hover { background: #161B18; }
.ow-svc-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-mute);
}
.ow-svc h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  letter-spacing: -0.018em;
  line-height: 1.05;
  margin: 0;
  color: var(--text);
}
.ow-svc h3 em { font-style: italic; color: var(--accent); }
.ow-svc p {
  margin: 0;
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.55;
  max-width: 38ch;
}
.ow-tags {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ow-tags li {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-2);
  color: var(--text-mute);
}
.ow-svc:hover .ow-tags li { color: var(--text); border-color: var(--line-3); }
.ow-svc-arrow {
  position: absolute; top: 28px; right: 28px;
  width: 36px; height: 36px;
  border-radius: 99px;
  border: 1px solid var(--line-2);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-mute);
  transition: all .2s;
}
.ow-svc:hover .ow-svc-arrow {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
  transform: rotate(-45deg);
}

/* ---------- PROCESS ---------- */
.ow-process {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}
.ow-process li {
  background: var(--ink-2);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 240px;
  position: relative;
  border-right: 1px solid var(--line);
}
.ow-process li:last-child { border-right: 0; }
.ow-process-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  line-height: 1;
  color: var(--accent);
}
.ow-process h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--text);
}
.ow-process p {
  margin: 0;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.55;
  text-wrap: pretty;
}
.ow-process-meta {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

/* process output card */
.ow-process-output {
  margin-top: 28px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
}
.ow-process-output .ow-eyebrow {
  margin: 0;
  white-space: nowrap;
  padding-top: 4px;
}
.ow-process-output ul {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 24px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.5;
}
.ow-process-output ul li { padding-left: 14px; position: relative; }
.ow-process-output ul li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; border-radius: 99px; background: var(--accent);
}
.ow-process-output strong { color: var(--text); font-weight: 500; }
@media (max-width: 900px) {
  .ow-process-output { grid-template-columns: 1fr; gap: 16px; }
  .ow-process-output ul { grid-template-columns: 1fr; }
}

/* ---------- CASE STUDIES ---------- */
.ow-case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.ow-case {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ow-case-art {
  height: 240px;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.025) 0 8px, transparent 8px 16px),
    radial-gradient(120% 80% at 50% 0%, rgba(182,242,74,0.08), transparent 60%),
    var(--ink-3);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.ow-case-art img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.ow-case-stamp {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 4px 10px;
  border: 1px solid rgba(182,242,74,0.3);
  background: rgba(182,242,74,0.08);
  border-radius: var(--radius-pill);
}
.ow-case-glyph {
  width: 60%; max-width: 240px;
  fill: rgba(255,255,255,0.06);
  stroke: rgba(255,255,255,0.1);
}
.ow-case-glyph .accent {
  fill: rgba(182,242,74,0.18);
  stroke: rgba(182,242,74,0.4);
}
.ow-case-meta {
  padding: 26px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.ow-case-vertical {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.ow-case-meta h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0;
  color: var(--text);
  text-wrap: balance;
}
.ow-case-blurb {
  margin: 0;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.55;
}
.ow-case-stats {
  list-style: none;
  padding: 14px 0 0;
  margin: auto 0 0;
  display: flex;
  gap: 32px;
  border-top: 1px solid var(--line);
}
.ow-case-stats .num {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text);
  display: block;
  margin-bottom: 6px;
}
.ow-case-stats .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mute);
  line-height: 1.4;
}
.ow-case-link {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13.5px;
  color: var(--accent);
  text-decoration: none;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .15s;
}
.ow-case-link:hover { gap: 10px; }

/* empty-state CTA case */
.ow-case-cta {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.ow-case-cta-inner {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}
.ow-case-cta .ow-eyebrow {
  color: rgba(10,14,12,0.6);
}
.ow-case-cta h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin: 0;
  color: var(--accent-ink);
  text-wrap: balance;
}
.ow-case-cta p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(10,14,12,0.78);
  max-width: 36ch;
}
.ow-case-cta .ow-btn-primary {
  margin-top: auto;
  background: var(--ink);
  color: var(--accent);
  border-color: var(--ink);
}
.ow-case-cta .ow-btn-primary:hover { background: #1a1f1c; }

/* ---------- ABOUT / FOUNDERS ---------- */
.ow-about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: start;
}
.ow-about-copy p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-soft);
  max-width: 52ch;
  margin: 0 0 18px;
}
.ow-about-copy .ow-h2 { margin-top: 12px; margin-bottom: 28px; }
.ow-pull {
  margin: 32px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--text);
  letter-spacing: -0.005em;
  max-width: 50ch;
}
.ow-pull cite {
  display: block;
  font-family: var(--mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 14px;
}
.ow-founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ow-founder {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.ow-portrait {
  aspect-ratio: 4/5;
  background: var(--ink-3);
  overflow: hidden;
}
.ow-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.05);
}
.ow-founder-meta {
  padding: 18px 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ow-founder-meta .role {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.ow-founder-meta .name {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--text);
}
.ow-founder-meta .name a {
  color: inherit;
  text-decoration: none;
  transition: text-decoration-color .15s;
}
.ow-founder-meta .name a:hover {
  text-decoration: underline;
  text-decoration-color: rgba(233,235,230,0.5);
  text-underline-offset: 3px;
}

/* ---------- CTA CARD ---------- */
.ow-cta-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
  position: relative;
  overflow: hidden;
}
.ow-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 320px at 80% 100%, rgba(182,242,74,0.08), transparent 60%);
  pointer-events: none;
}
.ow-cta-copy { position: relative; }
.ow-cta-copy .ow-h2 { margin: 12px 0 24px; }
.ow-cta-lede {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 52ch;
  margin: 0 0 24px;
}
.ow-cta-fine {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-mute);
  max-width: 52ch;
  margin: -8px 0 24px;
}
.ow-cta-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ow-cta-points li {
  font-size: 14.5px;
  color: var(--text);
  padding-left: 22px;
  position: relative;
}
.ow-cta-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 10px; height: 1px;
  background: var(--accent);
}
.ow-cta-aside {
  position: relative;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.ow-cta-aside p {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--text);
}
.ow-cta-aside .ow-btn { width: 100%; justify-content: center; }

/* ---------- FOOTER ---------- */
.ow-footer {
  margin-top: var(--gap-section);
  border-top: 1px solid var(--line);
  background: var(--ink);
}
.ow-footer-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 40px 56px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid var(--line);
}
.ow-footer-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text);
  display: block;
  margin-bottom: 14px;
}
.ow-footer-brand p {
  font-family: var(--sans);
  font-size: 13.5px;
  color: var(--text-mute);
  margin: 0;
  line-height: 1.55;
}
.ow-footer-grid h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin: 0 0 18px;
  font-weight: 500;
}
.ow-footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ow-footer-grid a {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 14px;
  transition: color .15s;
}
.ow-footer-grid a:hover { color: var(--text); }
.ow-footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-mute);
  text-transform: uppercase;
}

/* ---------- LOGO ROW (use this once you have clients) ----------
   Replace .ow-trust-band markup with:

   <section class="ow-section ow-clients">
     <p class="ow-eyebrow">Trusted by operators at</p>
     <ul class="ow-logo-row">
       <li><img src="./assets/img/clients/[client]-logo.svg" alt="[Client]" /></li>
       ...
     </ul>
   </section>
*/
.ow-clients { padding-top: 64px; }
.ow-logo-row {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  align-items: center;
}
.ow-logo-row img {
  max-height: 28px;
  width: auto;
  opacity: 0.7;
  filter: grayscale(1) brightness(2);
  transition: opacity .15s;
}
.ow-logo-row img:hover { opacity: 1; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .ow-hero-grid,
  .ow-about-grid,
  .ow-cta-card { grid-template-columns: 1fr; gap: 40px; }
  .ow-section-head { grid-template-columns: 1fr; gap: 18px; }
  .ow-svc-grid { grid-template-columns: 1fr; }
  .ow-process { grid-template-columns: repeat(2, 1fr); }
  .ow-process li { border-right: 0; border-bottom: 1px solid var(--line); }
  .ow-trust-inner { grid-template-columns: 1fr; gap: 20px; }
  .ow-trust-row { grid-template-columns: repeat(2, 1fr); }
  .ow-case-grid { grid-template-columns: 1fr; }
  .ow-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .ow-header-inner { padding: 14px 20px; gap: 14px; }
  .ow-nav { display: none; }
  .ow-hero { padding-left: 20px; padding-right: 20px; }
  .ow-section { padding-left: 20px; padding-right: 20px; }
  .ow-stat-row { grid-template-columns: 1fr; gap: 16px; }
  .ow-process { grid-template-columns: 1fr; }
  .ow-trust-row { grid-template-columns: 1fr; }
  .ow-cta-card { padding: 28px; }
  .ow-footer-grid { grid-template-columns: 1fr; padding: 56px 20px; }
  .ow-footer-bottom { flex-direction: column; gap: 8px; padding: 20px; text-align: center; }
}
