/* =================================================================
   Opzaro marketing site — design tokens & shared components
   Theme: deep-space navy + mint/indigo, Lora + Poppins
   (palette & type pairing derived from evaluagent.com's production
   design tokens: WP theme.json presets + their AI landing page CSS)
   ================================================================= */

:root {
  /* --- surfaces --- */
  --oz-navy: #0A1628;      /* primary dark canvas */
  --oz-navy-2: #0E1B30;    /* secondary dark canvas, one step lighter */
  --oz-navy-3: #14213D;    /* raised panel on dark (mockframes, nodes) */
  --oz-navy-4: #1A2A4D;    /* highest raised panel on dark */

  /* --- brand accents --- */
  --oz-teal: #83EFDD;         /* mint — primary accent */
  --oz-teal-dim: #5DDEC8;     /* mint, hover/deeper */
  --oz-teal-deep: #0E9488;    /* mint dark enough for text on light bg */
  --oz-indigo: #6769F2;       /* secondary accent — reserved for AI content */
  --oz-indigo-light: #9B9DF5;
  --oz-indigo-deep: #4D43D9;

  /* --- ink & paper (light sections) --- */
  --oz-ink: #0B1220;
  --oz-paper: #F5F7FA;
  --oz-paper-2: #FFFFFF;
  --oz-slate: #5B6B85;
  --oz-line: #E2E8F0;

  /* --- status --- */
  --oz-amber: #F59E0B;
  --oz-red: #EF4444;
  --oz-green: #22C55E;

  --font-display: 'Lora', Georgia, serif;
  --font-body: 'Poppins', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--oz-ink);
  background: var(--oz-paper-2);
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

h1, h2, h3, h4, .oz-display {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  font-weight: 500;
}
h1 { font-weight: 400; }
.oz-section h2 {
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  line-height: 1.15;
}

p { line-height: 1.7; }

/* Italic accent word, evaluagent's signature "em" treatment */
em.oz-accent, .oz-accent {
  font-style: italic;
  font-weight: 500;
  color: var(--oz-teal);
}
.oz-accent--grad {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(120deg, var(--oz-teal) 0%, var(--oz-indigo) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.oz-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .74rem;
  font-weight: 700;
  margin-bottom: .9rem;
}
.oz-eyebrow::before { content: ''; width: 20px; height: 2px; background: currentColor; flex-shrink: 0; display: inline-block; }
.oz-eyebrow--teal { color: var(--oz-teal-deep); }
.oz-eyebrow--on-dark { color: var(--oz-teal); }
.oz-eyebrow--indigo { color: var(--oz-indigo); }
.oz-section--dark .oz-eyebrow--indigo, .oz-section--navy2 .oz-eyebrow--indigo { color: var(--oz-indigo-light); }

a { color: var(--oz-teal-deep); text-decoration: none; }
a:hover { color: var(--oz-teal-dim); }

:focus-visible {
  outline: 2px solid var(--oz-teal);
  outline-offset: 2px;
}

/* ---------------- Layout helpers ---------------- */
.oz-section { padding: 6rem 0; }
.oz-section--tight { padding: 3.5rem 0; }
@media (max-width: 767px) {
  .oz-section { padding: 3.75rem 0; }
  .oz-section--tight { padding: 2.5rem 0; }
}
.oz-section--dark { background: var(--oz-navy); color: #EDF1F7; }
.oz-section--navy2 { background: var(--oz-navy-2); color: #EDF1F7; }
.oz-section--dark h2, .oz-section--navy2 h2,
.oz-section--dark h3, .oz-section--navy2 h3 { color: #FFFFFF; }
.oz-muted { color: var(--oz-slate); }
.oz-section--dark .oz-muted, .oz-section--navy2 .oz-muted { color: rgba(237,241,247,.68); }
.oz-max-prose { max-width: 720px; }

/* ---------------- Navbar ---------------- */
.oz-navbar {
  background: rgba(10, 22, 40, .88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding-top: .85rem;
  padding-bottom: .85rem;
}
.oz-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.28rem;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.oz-brand-badge {
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}
.oz-brand:hover { color: #FFFFFF; }
.oz-navbar .nav-link {
  color: rgba(237,241,247,.78);
  font-weight: 500;
  font-size: .94rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.oz-navbar .nav-link:hover,
.oz-navbar .nav-link.active { color: #FFFFFF; }

/* ---------------- Buttons ---------------- */
.oz-btn-primary {
  background: var(--oz-teal);
  border: 1px solid var(--oz-teal);
  color: var(--oz-navy);
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: 12px;
  padding: .75rem 1.5rem;
  transition: background .15s, transform .15s, box-shadow .15s, color .15s;
  display: inline-block;
}
.oz-btn-primary:hover {
  background: var(--oz-teal-dim);
  color: var(--oz-navy);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(131,239,221,.32);
}
.oz-btn-outline-light {
  border: 1px solid rgba(255,255,255,.28);
  color: #FFFFFF;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: 12px;
  padding: .75rem 1.5rem;
  background: transparent;
  transition: border-color .15s, background .15s;
  display: inline-block;
}
.oz-btn-outline-light:hover { border-color: #FFFFFF; background: rgba(255,255,255,.06); color: #FFFFFF; }
.oz-btn-outline-dark {
  border: 1px solid var(--oz-line);
  color: var(--oz-ink);
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: 12px;
  padding: .75rem 1.5rem;
  background: #FFFFFF;
  transition: border-color .15s, box-shadow .15s, color .15s;
  display: inline-block;
}
.oz-btn-outline-dark:hover { border-color: var(--oz-teal-deep); box-shadow: 0 6px 18px rgba(11,18,32,.08); color: var(--oz-ink); }

/* ---------------- Hero ---------------- */
.oz-hero {
  position: relative;
  background: var(--oz-navy);
  color: #FFFFFF;
  padding: 9.5rem 0 5.5rem;
  overflow: hidden;
}
.oz-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 900px 560px at 18% 0%, rgba(103,105,242,.16), transparent 60%),
    radial-gradient(ellipse 700px 500px at 85% 30%, rgba(131,239,221,.10), transparent 65%);
  pointer-events: none; z-index: 0;
}
.oz-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.07) 1px, transparent 0);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse 900px 620px at 30% 20%, #000 25%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 900px 620px at 30% 20%, #000 25%, transparent 75%);
  pointer-events: none; z-index: 0;
}
.oz-hero > .container { position: relative; z-index: 1; }
.oz-hero--compact { padding: 8.5rem 0 4.5rem; }
.oz-hero h1 { font-size: clamp(2.35rem, 4.6vw, 3.75rem); line-height: 1.08; letter-spacing: -0.025em; }
.oz-hero .lead { color: rgba(237,241,247,.78); font-size: 1.12rem; max-width: 560px; }

/* ---------------- Live queue widget (signature element) ---------------- */
.oz-queue-card {
  background: var(--oz-navy-3);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  box-shadow: 0 30px 90px -20px rgba(0,0,0,.6), 0 0 90px rgba(103,105,242,.08);
}
.oz-queue-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding-bottom: .85rem;
  margin-bottom: .85rem;
}
.oz-queue-label { font-family: var(--font-body); font-weight: 700; font-size: .68rem; letter-spacing: .18em; color: var(--oz-teal); text-transform: uppercase; }
.oz-queue-title { font-family: var(--font-display); font-weight: 500; font-size: 1.08rem; margin-top: .2rem; color: #fff; }
.oz-queue-clock { font-family: var(--font-mono); font-size: .85rem; color: rgba(237,241,247,.6); }
.oz-queue-rows { display: flex; flex-direction: column; gap: .5rem; }
.oz-row {
  display: grid;
  grid-template-columns: 18px 58px 1fr auto auto;
  align-items: center;
  gap: .7rem;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-sm);
  padding: .55rem .7rem;
  transition: opacity .35s ease;
}
.oz-sla-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--oz-green);
  box-shadow: 0 0 0 4px rgba(34,197,94,.18);
  transition: background .35s, box-shadow .35s;
}
.oz-row[data-sla="amber"] .oz-sla-dot { background: var(--oz-amber); box-shadow: 0 0 0 4px rgba(245,158,11,.2); }
.oz-row[data-sla="red"]   .oz-sla-dot { background: var(--oz-red);   box-shadow: 0 0 0 4px rgba(239,68,68,.2); }
.oz-ref { font-family: var(--font-mono); font-size: .76rem; color: rgba(237,241,247,.55); }
.oz-step { font-size: .92rem; font-weight: 500; color: #fff; }
.oz-assignee { font-size: .8rem; color: rgba(237,241,247,.55); white-space: nowrap; }
.oz-priority {
  font-family: var(--font-body);
  font-size: .64rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .22rem .55rem;
  border-radius: 999px;
  white-space: nowrap;
}
.oz-priority-urgent { background: rgba(239,68,68,.16); color: #FF9C9C; }
.oz-priority-high   { background: rgba(245,158,11,.16); color: #FBC873; }
.oz-priority-normal { background: rgba(255,255,255,.08); color: rgba(237,241,247,.8); }
.oz-queue-foot {
  display: flex; justify-content: space-between;
  font-family: var(--font-body); font-weight: 600; font-size: .66rem; letter-spacing: .08em;
  color: rgba(237,241,247,.4); margin-top: .9rem; text-transform: uppercase;
}
@media (max-width: 575px) {
  .oz-row { grid-template-columns: 14px 48px 1fr; }
  .oz-assignee, .oz-priority { display: none; }
}

/* ---------------- Hero quote shadow box ---------------- */
.oz-hero-quotebox {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(131,239,221,.18);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  margin-bottom: 3rem;
  box-shadow: 0 30px 70px -24px rgba(0,0,0,.55), 0 0 60px rgba(131,239,221,.06);
}
.oz-hero-quotebox i.bi-quote {
  font-size: 1.6rem;
  color: var(--oz-teal);
  flex-shrink: 0;
  line-height: 1;
  margin-top: .1rem;
}
.oz-hero-quotebox p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #FFFFFF;
  margin-bottom: .4rem;
}
.oz-hero-quotebox cite {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .02em;
  color: var(--oz-teal);
}
@media (max-width: 575px) {
  .oz-hero-quotebox { flex-direction: column; gap: .6rem; padding: 1.25rem; }
}

/* ---------------- Cards ---------------- */
.oz-card {
  background: var(--oz-paper-2);
  border: 1px solid var(--oz-line);
  border-radius: var(--radius);
  padding: 1.75rem;
  height: 100%;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.oz-card:hover { box-shadow: 0 20px 45px -26px rgba(11,18,32,.25); border-color: #CBD5E1; transform: translateY(-3px); }
.oz-icon-circle {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(14,148,136,.10);
  border: 1px solid rgba(14,148,136,.22);
  border-radius: 11px;
  color: var(--oz-teal-deep);
  font-size: 1.15rem;
  margin-bottom: .95rem;
}
.oz-section--dark .oz-card, .oz-section--navy2 .oz-card {
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.09);
  color: #EDF1F7;
}
.oz-section--dark .oz-card:hover, .oz-section--navy2 .oz-card:hover {
  background: rgba(131,239,221,.05);
  border-color: rgba(131,239,221,.28);
}
.oz-section--dark .oz-icon-circle, .oz-section--navy2 .oz-icon-circle {
  background: rgba(131,239,221,.10); border: 1px solid rgba(131,239,221,.24); color: var(--oz-teal);
}

/* ---------------- Pressure / pull items ---------------- */
.oz-pressure {
  border-left: 3px solid var(--oz-teal);
  padding-left: 1.15rem;
  height: 100%;
}
.oz-pressure .oz-pressure-label {
  display: block;
  font-family: var(--font-body); font-weight: 700; font-size: .68rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--oz-slate); margin-bottom: .5rem;
}

/* ---------------- Numbered steps ---------------- */
.oz-step-row { display: flex; gap: 1.1rem; }
.oz-step-num {
  font-family: var(--font-display); font-weight: 500; font-size: .95rem; color: var(--oz-teal-deep);
  background: rgba(14,148,136,.08); border: 1px solid rgba(14,148,136,.24); border-radius: 999px;
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: .15rem;
}
.oz-section--dark .oz-step-num, .oz-section--navy2 .oz-step-num {
  color: var(--oz-teal); background: rgba(131,239,221,.10); border-color: rgba(131,239,221,.28);
}

/* ---------------- Config tabs mockup ---------------- */
.oz-tabmock {
  display: flex; flex-wrap: wrap; gap: .5rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius);
  padding: 1rem;
}
.oz-tabmock span {
  font-family: var(--font-body); font-weight: 600; font-size: .74rem; letter-spacing: .02em;
  padding: .4rem .85rem; border-radius: 999px;
  background: rgba(255,255,255,.05); color: rgba(237,241,247,.78);
}
.oz-tabmock span.active {
  background: var(--oz-teal); color: var(--oz-navy); font-weight: 700;
}

/* ---------------- Comparison table ---------------- */
.oz-compare-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--oz-line); }
table.oz-compare { width: 100%; border-collapse: collapse; background: #FFFFFF; min-width: 820px; }
table.oz-compare th, table.oz-compare td {
  padding: 1rem 1.15rem; vertical-align: top; border-bottom: 1px solid var(--oz-line);
  font-size: .9rem; line-height: 1.55; color: var(--oz-ink);
}
table.oz-compare th {
  background: var(--oz-navy); color: #FFFFFF; font-family: var(--font-display);
  font-weight: 500; text-align: left; font-size: .92rem; position: sticky; top: 0;
}
table.oz-compare th:first-child, table.oz-compare td:first-child {
  width: 21%; font-weight: 600; background: var(--oz-paper);
}
table.oz-compare th.oz-col-opzaro { background: var(--oz-teal-deep); }
table.oz-compare td.oz-col-opzaro { background: rgba(131,239,221,.08); border-left: 2px solid var(--oz-teal); }
table.oz-compare tr:last-child td { border-bottom: none; }

/* ---------------- CTA band ---------------- */
.oz-cta-band {
  position: relative;
  background:
    radial-gradient(ellipse 700px 340px at 50% 0%, rgba(103,105,242,.22), transparent 65%),
    linear-gradient(180deg, #16224A 0%, #0E1730 100%);
  border: 1px solid rgba(255,255,255,.07);
  color: #FFFFFF; border-radius: var(--radius-xl); padding: 3.25rem;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.05);
  overflow: hidden;
}
.oz-cta-band h2 { color: #FFFFFF; }

/* ---------------- Badges / tags ---------------- */
.oz-badge-mono {
  font-family: var(--font-body); font-weight: 700; font-size: .7rem; letter-spacing: .07em; text-transform: uppercase;
  background: rgba(14,148,136,.08); color: var(--oz-teal-deep); border: 1px solid rgba(14,148,136,.22);
  padding: .32rem .75rem; border-radius: 999px;
  display: inline-block;
}
.oz-section--dark .oz-badge-mono, .oz-section--navy2 .oz-badge-mono {
  background: rgba(131,239,221,.10); color: var(--oz-teal); border-color: rgba(131,239,221,.26);
}
.oz-badge-indigo {
  font-family: var(--font-body); font-weight: 700; font-size: .7rem; letter-spacing: .07em; text-transform: uppercase;
  background: rgba(103,105,242,.10); color: var(--oz-indigo); border: 1px solid rgba(103,105,242,.28);
  padding: .32rem .75rem; border-radius: 999px;
  display: inline-block;
}
.oz-section--dark .oz-badge-indigo, .oz-section--navy2 .oz-badge-indigo {
  color: var(--oz-indigo-light);
}

/* ---------------- Compact list (e.g. "What to expect") ---------------- */
.oz-expect-item {
  display: flex; align-items: flex-start; gap: .9rem;
  padding: 1rem 0; border-bottom: 1px solid var(--oz-line);
}
.oz-expect-item:last-child { border-bottom: none; padding-bottom: 0; }
.oz-expect-item:first-child { padding-top: 0; }
.oz-expect-icon {
  flex: 0 0 auto; width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(14,148,136,.09); border: 1px solid rgba(14,148,136,.22); color: var(--oz-teal-deep); font-size: 1rem;
}
.oz-expect-item h3 { font-size: .95rem; margin-bottom: .25rem; }

/* ---------------- Forms ---------------- */
.oz-form .form-control, .oz-form .form-select {
  border-color: var(--oz-line);
  border-radius: var(--radius-sm);
  padding: .65rem .9rem;
}
.oz-form .form-control:focus, .oz-form .form-select:focus {
  border-color: var(--oz-teal-dim);
  box-shadow: 0 0 0 .2rem rgba(131,239,221,.22);
}
.oz-form label { font-weight: 500; font-size: .92rem; margin-bottom: .35rem; }

/* ---------------- Success box ---------------- */
.oz-success-box {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.1rem 1.25rem;
  height: auto;
  align-self: flex-start;
}
.oz-success-box .oz-expect-icon {
  background: rgba(34,197,94,.12); border-color: rgba(34,197,94,.3); color: var(--oz-green);
}
.oz-success-box h3 { font-size: 1rem; margin-bottom: .2rem; }

/* ---------------- Navbar dropdown (Solutions) ---------------- */
.oz-navbar .dropdown-menu {
  background: var(--oz-navy-3);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  padding: .5rem;
  margin-top: .35rem;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,.6);
}
.oz-navbar .dropdown-item {
  color: rgba(237,241,247,.8);
  font-size: .92rem;
  font-weight: 500;
  border-radius: 7px;
  padding: .55rem .8rem;
}
.oz-navbar .dropdown-item:hover, .oz-navbar .dropdown-item:focus {
  background: rgba(131,239,221,.10);
  color: #FFFFFF;
}
.oz-navbar .dropdown-item-note {
  display: block;
  font-size: .74rem;
  color: rgba(237,241,247,.45);
  font-weight: 400;
  margin-top: .1rem;
}
@media (min-width: 992px) {
  .oz-navbar .dropdown-menu { min-width: 260px; }
}

/* ---------------- Persona cross-link pills ---------------- */
.oz-persona-nav { display: flex; flex-wrap: wrap; gap: .6rem; }
.oz-persona-nav a {
  font-family: var(--font-body); font-weight: 600; font-size: .74rem; letter-spacing: .03em; text-transform: uppercase;
  padding: .5rem 1rem; border-radius: 999px; border: 1px solid rgba(255,255,255,.16);
  color: rgba(237,241,247,.78); background: rgba(255,255,255,.03); transition: border-color .15s, color .15s, background .15s;
}
.oz-persona-nav a:hover { border-color: var(--oz-teal); color: #FFFFFF; }
.oz-persona-nav a.active { border-color: var(--oz-teal); color: var(--oz-navy); background: var(--oz-teal); font-weight: 700; }

/* ---------------- Persona hub cards ---------------- */
.oz-persona-card {
  background: var(--oz-paper-2);
  border: 1px solid var(--oz-line);
  border-top: 3px solid var(--oz-teal-dim);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  transition: box-shadow .2s, transform .2s;
}
.oz-persona-card:hover { transform: translateY(-4px); box-shadow: 0 28px 60px -30px rgba(11,18,32,.3); }
.oz-persona-kicker {
  font-family: var(--font-body); font-weight: 700; font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--oz-teal-deep); display: block; margin-bottom: .6rem;
}
.oz-persona-card ul { list-style: none; padding: 0; margin: 0 0 1.4rem; display: flex; flex-direction: column; gap: .65rem; }
.oz-persona-card ul li { display: flex; gap: .7rem; font-size: .89rem; color: var(--oz-slate); line-height: 1.5; }
.oz-persona-card ul li i {
  color: var(--oz-teal-deep);
  background: rgba(14,148,136,.10); border: 1px solid rgba(14,148,136,.22);
  width: 20px; height: 20px; min-width: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .68rem; margin-top: .1rem; flex-shrink: 0;
}
.oz-persona-card--ops { border-top-color: var(--oz-amber); }
.oz-persona-card--ops .oz-persona-kicker { color: #B4740A; }
.oz-persona-card--ops ul li i { color: #B4740A; background: rgba(245,158,11,.1); border-color: rgba(245,158,11,.24); }
.oz-persona-card--technical { border-top-color: var(--oz-indigo); background: var(--oz-navy); }
.oz-persona-card--technical, .oz-persona-card--technical h3 { color: #EDF1F7; }
.oz-persona-card--technical .oz-persona-kicker { color: var(--oz-indigo-light); }
.oz-persona-card--technical ul li { color: rgba(237,241,247,.7); }
.oz-persona-card--technical ul li i { color: var(--oz-indigo-light); background: rgba(103,105,242,.12); border-color: rgba(103,105,242,.3); }
.oz-persona-card--technical p { color: rgba(237,241,247,.7); }

/* ---------------- Mock product frame ---------------- */
.oz-mockframe { border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,.10); overflow: hidden; background: var(--oz-navy-3); box-shadow: 0 24px 60px -24px rgba(0,0,0,.5); }
.oz-mockframe-bar { display: flex; align-items: center; gap: .35rem; padding: .65rem .9rem; background: rgba(255,255,255,.025); border-bottom: 1px solid rgba(255,255,255,.08); }
.oz-mockframe-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.15); }
.oz-mockframe-label { margin-left: .5rem; font-family: var(--font-body); font-weight: 600; font-size: .7rem; color: rgba(237,241,247,.45); letter-spacing: .03em; }
.oz-mockframe-body { padding: 1.5rem; }
.oz-section:not(.oz-section--dark):not(.oz-section--navy2) .oz-mockframe { background: var(--oz-navy-3); border-color: rgba(255,255,255,.10); }
.oz-section:not(.oz-section--dark):not(.oz-section--navy2) .oz-mockframe-bar { background: rgba(255,255,255,.025); border-color: rgba(255,255,255,.08); }
.oz-section:not(.oz-section--dark):not(.oz-section--navy2) .oz-mockframe-label { color: rgba(237,241,247,.45); }

/* ---------------- Document lifecycle strip ---------------- */
.oz-doc-lifecycle { display: flex; flex-wrap: wrap; gap: .5rem; }
.oz-doc-lifecycle span {
  font-family: var(--font-body); font-weight: 600; font-size: .72rem; letter-spacing: .01em;
  padding: .5rem .95rem; border-radius: 999px; background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12); color: rgba(237,241,247,.78); display: inline-flex; align-items: center; gap: .5rem;
}
.oz-doc-lifecycle span::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--oz-teal); flex-shrink: 0; }
.oz-doc-lifecycle span.is-done::before { background: var(--oz-green); }
.oz-doc-lifecycle span.is-declined::before { background: var(--oz-red); }

/* ---------------- Trigger chip grid ---------------- */
.oz-trigger-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(155px, 1fr)); gap: .85rem; }
.oz-trigger-chip {
  display: flex; flex-direction: column; align-items: flex-start; gap: .65rem;
  padding: 1.1rem 1.15rem; border-radius: var(--radius);
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
  transition: border-color .2s, background .2s, transform .2s;
}
.oz-trigger-chip:hover { border-color: rgba(131,239,221,.3); background: rgba(131,239,221,.05); transform: translateY(-2px); }
.oz-trigger-chip i { font-size: 1.2rem; color: var(--oz-teal); }
.oz-trigger-chip span { font-family: var(--font-body); font-weight: 500; font-size: .82rem; color: #EDF1F7; letter-spacing: .01em; line-height: 1.4; }

/* ---------------- Architecture / isolation diagram ---------------- */
.oz-arch-diagram { display: flex; flex-wrap: wrap; align-items: stretch; gap: 0; }
.oz-arch-box {
  flex: 1 1 150px; display: flex; flex-direction: column; justify-content: center;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm); padding: 1rem 1.1rem; text-align: center;
}
.oz-arch-box strong { display: block; font-family: var(--font-display); font-weight: 500; font-size: .95rem; color: #FFFFFF; margin-bottom: .3rem; }
.oz-arch-box span { font-family: var(--font-body); font-size: .7rem; color: rgba(237,241,247,.55); line-height: 1.4; }
.oz-arch-arrow { flex: 0 0 auto; width: 40px; display: flex; align-items: center; justify-content: center; color: var(--oz-teal); font-size: 1.2rem; }
@media (max-width: 767px) {
  .oz-arch-diagram { flex-direction: column; }
  .oz-arch-arrow { width: 100%; padding: .3rem 0; transform: rotate(90deg); }
}
.oz-arch-diagram--split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 575px) { .oz-arch-diagram--split { grid-template-columns: 1fr; } }
.oz-arch-tenant {
  border: 1px dashed rgba(255,255,255,.2); border-radius: var(--radius); padding: 1.1rem;
}
.oz-arch-tenant-label { font-family: var(--font-body); font-weight: 700; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--oz-teal); margin-bottom: .7rem; display: block; }
.oz-arch-tenant .oz-arch-box { margin-bottom: .6rem; }
.oz-arch-tenant .oz-arch-box:last-child { margin-bottom: 0; }

/* ---------------- Secondary (lower-weight) comparison mention ---------------- */
.oz-compare-secondary {
  border-radius: var(--radius); border: 1px solid var(--oz-line); background: var(--oz-paper-2);
  padding: 1.75rem; height: 100%; color: var(--oz-ink);
}
.oz-compare-secondary h3 { font-size: 1.02rem; margin-bottom: .5rem; color: var(--oz-ink); }
.oz-compare-secondary p.oz-muted { font-size: .9rem; color: var(--oz-slate); }

/* ---------------- Provenance tag ---------------- */
.oz-provenance-tag {
  font-family: var(--font-body); font-weight: 600; font-size: .74rem; letter-spacing: .01em; color: var(--oz-teal);
  background: rgba(131,239,221,.08); border: 1px solid rgba(131,239,221,.26);
  padding: .5rem .9rem; border-radius: var(--radius-sm); display: inline-flex; align-items: center; gap: .55rem;
}

/* ---------------- Stat block (evaluagent "impact" pattern) ---------------- */
.oz-stat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
@media (max-width: 767px) { .oz-stat-grid { grid-template-columns: repeat(2, 1fr); gap: 2.25rem 1.25rem; } }
.oz-stat-num {
  font-family: var(--font-display); font-weight: 500; letter-spacing: -0.03em;
  font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: 1; color: #FFFFFF;
  display: flex; align-items: baseline; gap: .3rem;
}
.oz-stat-num .oz-stat-symbol { font-family: var(--font-body); font-weight: 400; font-size: .48em; color: var(--oz-teal); }
.oz-stat-label { font-size: .92rem; color: rgba(237,241,247,.68); margin-top: .75rem; line-height: 1.45; max-width: 220px; }

/* ---------------- Integrations constellation ---------------- */
.oz-constellation { position: relative; width: 100%; max-width: 880px; aspect-ratio: 880/460; margin: 0 auto; }
.oz-constellation-svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.oz-flow-line {
  fill: none; stroke: var(--oz-teal); stroke-width: 1.5;
  stroke-dasharray: 4 6; stroke-linecap: round; opacity: .4;
  animation: ozFlow 3s linear infinite;
}
.oz-flow-line.indigo { stroke: var(--oz-indigo); }
.oz-flow-line.delay-1 { animation-delay: -.5s; }
.oz-flow-line.delay-2 { animation-delay: -1s; }
.oz-flow-line.delay-3 { animation-delay: -1.5s; }
.oz-flow-line.delay-4 { animation-delay: -2s; }
.oz-flow-line.delay-5 { animation-delay: -2.5s; }
@keyframes ozFlow { to { stroke-dashoffset: -100; } }
.oz-con-centre {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 5;
  width: 72px; height: 72px; border-radius: 20px;
  background: var(--oz-teal); color: var(--oz-navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 0 0 8px rgba(131,239,221,.12), 0 20px 45px rgba(0,0,0,.45);
}
.oz-con-node {
  position: absolute;
  width: 66px; height: 66px; border-radius: 16px;
  background: var(--oz-navy-3); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  z-index: 4; transition: all .3s;
  box-shadow: 0 10px 28px rgba(0,0,0,.32);
  font-size: 1.35rem; color: rgba(237,241,247,.85);
  animation: ozNodeFloat 6s ease-in-out infinite;
}
.oz-con-node:hover { transform: translateY(-3px) scale(1.06); border-color: rgba(131,239,221,.4); box-shadow: 0 14px 36px rgba(0,0,0,.4), 0 0 26px rgba(131,239,221,.16); color: var(--oz-teal); }
.oz-con-node .oz-con-label {
  position: absolute; bottom: -26px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-body); font-weight: 600; font-size: 10.5px; color: rgba(237,241,247,.55);
  white-space: nowrap; opacity: 0; transition: opacity .2s;
}
.oz-con-node:hover .oz-con-label { opacity: 1; color: #fff; }
.oz-con-node:nth-child(odd) { animation-delay: -2s; animation-duration: 7s; }
.oz-con-node:nth-child(3n) { animation-delay: -1s; animation-duration: 8s; }
@keyframes ozNodeFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.oz-con-nodes-mobile { display: none; }
@media (max-width: 767px) {
  .oz-constellation { height: auto; max-width: 100%; aspect-ratio: auto; }
  .oz-constellation-svg { display: none; }
  .oz-con-centre { position: static; transform: none; margin: 0 auto 2rem; }
  .oz-con-node {
    position: static !important; animation: none; width: auto; height: auto;
    padding: .55rem .85rem; border-radius: 999px; display: inline-flex; gap: .5rem; margin: .25rem;
    font-size: 1rem;
  }
  .oz-con-node .oz-con-label { position: static; opacity: 1; transform: none; color: rgba(237,241,247,.85); }
  .oz-con-nodes-desktop { display: none; }
  .oz-con-nodes-mobile { display: flex !important; flex-wrap: wrap; justify-content: center; margin-top: 1.25rem; }
}

/* ---------------- Pull quote ---------------- */
.oz-pullquote {
  position: relative;
  border-left: 3px solid var(--oz-teal);
  padding: .25rem 0 .25rem 1.75rem;
}
.oz-pullquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  line-height: 1.5;
  color: #FFFFFF;
  margin-bottom: 1rem;
}
.oz-pullquote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .85rem;
  color: var(--oz-teal);
}
.oz-section:not(.oz-section--dark):not(.oz-section--navy2) .oz-pullquote p { color: var(--oz-ink); }
.oz-section:not(.oz-section--dark):not(.oz-section--navy2) .oz-pullquote cite { color: var(--oz-teal-deep); }

/* ---------------- Case-study evidence strip ---------------- */
.oz-evidence-item {
  display: flex; align-items: flex-start; gap: .9rem;
  padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.oz-evidence-item:last-child { border-bottom: none; padding-bottom: 0; }
.oz-evidence-item:first-child { padding-top: 0; }
.oz-evidence-icon {
  flex: 0 0 auto; width: 34px; height: 34px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.26); color: #FF9C9C; font-size: .95rem;
}
.oz-evidence-item h3 { font-size: .95rem; margin-bottom: .2rem; color: #FFFFFF; }

/* ---------------- Footer ---------------- */
.oz-footer { background: var(--oz-navy); color: rgba(237,241,247,.55); padding: 4.5rem 0 2rem; }
.oz-footer a { color: rgba(237,241,247,.8); }
.oz-footer a:hover { color: var(--oz-teal); }
.oz-footer-heading {
  font-family: var(--font-body); font-weight: 700; font-size: .7rem; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(237,241,247,.4); margin-bottom: .9rem;
}
.oz-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .55rem; font-size: .92rem; }
.oz-footer-tag { font-size: .92rem; max-width: 320px; }
.oz-footer-bottom { font-size: .82rem; padding-top: 1.5rem; color: rgba(237,241,247,.4); }
.oz-footer hr { border-color: rgba(255,255,255,.08); margin-top: 2rem; }
