/* =========================================================
   NotPeople one-pager — FLUID / RESPONSIVE
   Mobile → tablet → desktop. No hardcoded device sizes.
   Type and spacing scale with viewport via clamp().
   Desktop switches to a 2-column editorial layout.
   ========================================================= */

:root {
  --accent: #5C8BFF;
  --lav: #C0A6EC;

  /* Fluid ramp — min / ideal-vw / max.
     These scale from ~360px up through large desktops. */
  --fs-micro:   clamp(9px,   0.62vw + 6px,  12px);   /* eyebrows, mono labels */
  --fs-tiny:    clamp(10px,  0.7vw + 7px,   13px);   /* ticker, small meta */
  --fs-body:    clamp(12.5px, 0.7vw + 10px, 16px);   /* lead + body */
  --fs-row:     clamp(15px,  0.9vw + 11px,  22px);   /* stack row name */
  --fs-mid:     clamp(18px,  1.4vw + 12px,  30px);   /* stats, asks, contact h */
  --fs-big:     clamp(22px,  2.2vw + 14px,  46px);   /* coverage numbers */
  --fs-hook:    clamp(32px,  4.2vw + 14px,  84px);   /* hero headline */
  --fs-huge:    clamp(48px,  5.5vw + 20px,  120px);  /* $31.5K, $37B */

  /* Fluid spacing */
  --sp-1:  clamp(4px,  0.4vw + 2px,  8px);
  --sp-2:  clamp(8px,  0.6vw + 5px,  14px);
  --sp-3:  clamp(12px, 1vw   + 8px,  22px);
  --sp-4:  clamp(18px, 1.6vw + 10px, 34px);
  --sp-5:  clamp(22px, 2.2vw + 12px, 48px);

  --radius-card: clamp(10px, 0.8vw + 6px, 20px);
  --radius-row:  clamp(6px,  0.4vw + 4px, 12px);
}

html, body {
  margin: 0; padding: 0;
  background: #000;
  min-height: 100vh;
  font-family: 'Inter', 'Space Grotesk', system-ui, sans-serif;
  color: var(--ink-200);
  -webkit-font-smoothing: antialiased;
}

/* ---------- Stage ---------- */
.op-stage {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(0px, 2vw, 40px) clamp(0px, 2vw, 40px) clamp(20px, 3vw, 60px);
  background:
    radial-gradient(ellipse 60% 40% at 50% 15%, #1a1530 0%, #0A0812 55%, #000 90%),
    #000;
}
.op-stage-inner {
  width: 100%;
  max-width: 1400px;   /* cap on huge screens */
  position: relative;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  background: transparent;
}

/* tiny phones — edge-to-edge (already transparent, but keep for clarity) */
@media (max-width: 520px) {
  .op-stage { padding: 0; }
}

/* ---------- The sheet (mobile default: single column) ---------- */
.op-sheet {
  width: 100%;
  min-height: 100%;
  position: relative;
  padding: var(--sp-4) var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  background: transparent;
  color: var(--ink-200);
  overflow: hidden;
  z-index: 1;
}
.op-sheet > * {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  min-width: 0;
}

/* Eye behind hero */
.op-eye-wrap {
  position: absolute;
  top: clamp(0px, 1vw, 20px);
  left: 50%;
  transform: translateX(-50%);
  width: min(140%, 900px);
  aspect-ratio: 13 / 8;
  height: auto;
  max-height: 60vh;
  z-index: 2;
  pointer-events: none;
  opacity: 0.9;
  mask-image:
    linear-gradient(180deg, #000 0%, #000 45%, rgba(0,0,0,0.25) 78%, transparent 95%),
    radial-gradient(ellipse at center, #000 42%, rgba(0,0,0,0.3) 65%, transparent 82%);
  mask-composite: intersect;
  -webkit-mask-image:
    linear-gradient(180deg, #000 0%, #000 45%, rgba(0,0,0,0.25) 78%, transparent 95%),
    radial-gradient(ellipse at center, #000 42%, rgba(0,0,0,0.3) 65%, transparent 82%);
  -webkit-mask-composite: source-in;
}
/* LivingEye internals — let the svg fill the wrap fluidly */
.op-eye-wrap > *,
.op-eye-wrap svg,
.op-eye-wrap canvas {
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
}

/* Hero readability veil */
.op-hero::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--sp-3));
  right: calc(-1 * var(--sp-3));
  top: 30%;
  bottom: calc(-1 * var(--sp-2));
  background:
    linear-gradient(180deg, transparent 0%, rgba(10,8,18,0.65) 38%, rgba(10,8,18,0.92) 78%, #0A0812 100%);
  z-index: 1;
  pointer-events: none;
}
.op-hero > * { position: relative; z-index: 2; }

/* ---------- Typography ---------- */
.op-sheet .display {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.95;
}
.op-sheet .mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }
.op-italic-grad {
  background-image: linear-gradient(90deg, #C0A6EC 0%, #5C8BFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 400;
}
.op-blue { color: #5C8BFF; font-weight: 500; font-style: normal; }
em { font-style: italic; color: var(--white); font-weight: 400; }

.op-eyebrow {
  display: inline-flex; align-items: center; gap: var(--sp-1);
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-micro);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-300);
}
.op-dot {
  width: 0.5em; height: 0.5em; border-radius: 50%;
  background: var(--lav-300);
  box-shadow: 0 0 0.7em var(--lav-300);
}
.op-dot-blue { background: #5C8BFF; box-shadow: 0 0 0.7em #5C8BFF; }
.op-live-dot {
  width: 0.5em; height: 0.5em; border-radius: 50%;
  background: #5C8BFF;
  box-shadow: 0 0 0.7em #5C8BFF;
  animation: pulse-soft 1.5s infinite;
  display: inline-block;
  margin-right: 0.5em;
}
.op-pulse { animation: pulse-soft 1.5s infinite; }

/* ---------- TOP ---------- */
.op-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  flex-wrap: wrap;
}
.op-top-r {
  font-size: var(--fs-micro);
  letter-spacing: 0.22em;
  color: var(--ink-300);
  display: inline-flex;
  align-items: center;
}

/* ---------- HERO ---------- */
.op-hero {
  padding-top: var(--sp-3);
  min-height: clamp(280px, 38vw, 520px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.op-hook {
  font-size: var(--fs-hook);
  letter-spacing: -0.04em;
  line-height: 0.94;
  color: var(--white);
  margin: var(--sp-2) 0 0;
  text-wrap: balance;
}
.op-lead {
  margin: var(--sp-2) 0 0;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: var(--fs-body);
  line-height: 1.45;
  color: var(--ink-300);
  max-width: 48ch;
}

/* ---------- TICKER ---------- */
.op-ticker {
  padding: var(--sp-2) 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: var(--sp-2);
  overflow: hidden;
}
.op-ticker-lbl {
  font-size: var(--fs-micro);
  letter-spacing: 0.2em;
  color: #5C8BFF;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  white-space: nowrap;
}
.op-ticker-scroll {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.op-ticker-inner {
  display: flex;
  gap: var(--sp-2);
  white-space: nowrap;
  animation: ticker-h 38s linear infinite;
  will-change: transform;
}
@keyframes ticker-h {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.op-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--fs-tiny);
  color: var(--ink-200);
}
.op-ticker-pill {
  padding: 0.2em 0.5em;
  border: 1px solid;
  border-radius: 3px;
  font-size: 0.82em;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.op-ticker-sep { color: var(--ink-400); margin-left: 0.3em; }

/* ---------- COVERAGE ---------- */
.op-cov {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 0;
  padding: var(--sp-2) 0;
}
.op-cov-cell {
  padding: 0 var(--sp-1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4em;
  min-width: 0;
}
.op-cov-n {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  letter-spacing: -0.03em;
  font-size: var(--fs-big);
  line-height: 1;
  color: var(--white);
}
.op-cov-plus { color: #5C8BFF; }
.op-cov-l {
  font-size: var(--fs-micro);
  letter-spacing: 0.2em;
  color: var(--ink-400);
}
.op-cov-v {
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.12), transparent);
  width: 1px;
  height: 100%;
}

/* ---------- TRACTION ---------- */
.op-tr {
  padding: var(--sp-3);
  border-radius: var(--radius-card);
  border: 1px solid rgba(92,139,255,0.32);
  background: linear-gradient(135deg, rgba(92,139,255,0.1), rgba(192,166,236,0.03) 65%, rgba(10,8,18,0.2));
  position: relative;
}
.op-tr-hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-2);
  gap: var(--sp-2);
  flex-wrap: wrap;
}
.op-tr-tag {
  font-size: var(--fs-micro);
  letter-spacing: 0.18em;
  color: #5C8BFF;
}
.op-tr-big {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.88;
  font-size: var(--fs-huge);
  color: var(--white);
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 0.2em;
  flex-wrap: wrap;
}
.op-tr-curve {
  width: clamp(80px, 10vw, 180px);
  height: clamp(28px, 3.5vw, 58px);
  flex-shrink: 0;
  margin-bottom: 0.2em;
}
.op-tr-note {
  margin-top: var(--sp-2);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: var(--fs-body);
  line-height: 1.45;
  color: var(--ink-300);
}

/* ---------- STACK ---------- */
.op-stack { display: flex; flex-direction: column; gap: var(--sp-1); }
.op-stack-rows {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  margin-top: var(--sp-1);
}
.op-stack-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-1) var(--sp-2) var(--sp-1) calc(var(--sp-2) + 4px);
  border-radius: var(--radius-row);
  border: 1px solid color-mix(in srgb, var(--c) 32%, transparent);
  background: linear-gradient(90deg, color-mix(in srgb, var(--c) 10%, transparent), rgba(0,0,0,0.15));
  overflow: hidden;
}
.op-stack-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--c);
}
.op-stack-t {
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
  min-width: 0;
  flex-wrap: wrap;
}
.op-stack-name {
  font-size: var(--fs-row);
  color: var(--white);
  letter-spacing: -0.02em;
}
.op-stack-for {
  font-size: var(--fs-micro);
  letter-spacing: 0.2em;
  color: var(--ink-400);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.op-stack-tag {
  font-size: var(--fs-micro);
  letter-spacing: 0.16em;
  color: var(--c);
  padding: 0.25em 0.6em;
  border-radius: 4px;
  background: color-mix(in srgb, var(--c) 15%, transparent);
}

/* ---------- THESIS ---------- */
.op-thesis {
  padding: var(--sp-3) 0;
  border-top: 1px solid rgba(192,166,236,0.14);
  border-bottom: 1px solid rgba(92,139,255,0.14);
}
.op-thesis-q {
  font-size: var(--fs-row);
  line-height: 1.35;
  color: var(--ink-200);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* ---------- ASK ---------- */
.op-ask {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3);
  border-radius: var(--radius-card);
  border: 1px solid rgba(92,139,255,0.38);
  background: linear-gradient(135deg, rgba(92,139,255,0.14), rgba(192,166,236,0.04));
}
.op-ask-l { display: flex; flex-direction: column; gap: 0.2em; min-width: 0; }
.op-ask-lbl {
  font-size: var(--fs-micro);
  letter-spacing: 0.22em;
  color: var(--ink-400);
}
.op-ask-n {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  letter-spacing: -0.03em;
  font-size: var(--fs-mid);
  line-height: 0.95;
  color: var(--white);
}
.op-ask-accent { color: #5C8BFF; }
.op-ask-lav { color: #C0A6EC; }
.op-ask-stage { font-size: calc(var(--fs-mid) * 0.75); letter-spacing: 0; }
.op-ask-div {
  width: 1px;
  height: 2em;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.15), transparent);
  justify-self: center;
}

/* ---------- CONTACT ---------- */
.op-contact {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding-top: var(--sp-1);
}
.op-contact-name {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-2);
  flex-wrap: wrap;
}
.op-contact-cap {
  font-size: var(--fs-micro);
  letter-spacing: 0.22em;
  color: var(--ink-400);
}
.op-contact-h {
  font-size: var(--fs-mid);
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
}
.op-contact-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: var(--sp-1);
  align-content: start;
}
.op-contact-a {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2);
  border-radius: var(--radius-row);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  text-decoration: none;
  color: inherit;
  transition: border-color .2s ease, background .2s ease;
  min-width: 0;
}
.op-contact-a:hover {
  border-color: rgba(92,139,255,0.4);
  background: rgba(92,139,255,0.08);
}
.op-contact-k {
  font-size: var(--fs-micro);
  letter-spacing: 0.18em;
  color: #5C8BFF;
  font-weight: 600;
}
.op-contact-v {
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-tiny);
  font-weight: 400;
  color: var(--white);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

/* ---------- FOOTER ---------- */
.op-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-2);
  margin-top: var(--sp-1);
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: var(--fs-micro);
  letter-spacing: 0.22em;
  color: var(--ink-400);
  gap: var(--sp-2);
  flex-wrap: wrap;
}
.op-foot-r { color: #5C8BFF; }

/* ---------- MARKET ---------- */
.op-mkt {
  padding: var(--sp-3);
  border-radius: var(--radius-card);
  border: 1px solid rgba(192,166,236,0.28);
  background:
    linear-gradient(135deg, rgba(192,166,236,0.12), rgba(92,139,255,0.04) 60%, rgba(10,8,18,0.25));
  position: relative;
}
.op-mkt-hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-2);
  gap: var(--sp-2);
  flex-wrap: wrap;
}
.op-mkt-tag {
  font-size: var(--fs-micro);
  letter-spacing: 0.18em;
  color: #C0A6EC;
}
.op-mkt-big {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: var(--fs-huge);
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--white);
  display: flex;
  align-items: flex-end;
  gap: 0.3em;
  flex-wrap: wrap;
}
.op-mkt-b { color: #C0A6EC; }
.op-mkt-lbl {
  font-size: var(--fs-micro);
  letter-spacing: 0.22em;
  color: var(--ink-400);
  padding-bottom: 0.7em;
  font-weight: 500;
}
.op-mkt-desc {
  margin-top: var(--sp-2);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: var(--fs-body);
  line-height: 1.45;
  color: var(--ink-300);
}
.op-mkt-breakdown {
  margin-top: var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  padding-top: var(--sp-2);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.op-mkt-row {
  display: grid;
  grid-template-columns: auto minmax(0, auto) 1fr;
  align-items: center;
  gap: var(--sp-2);
}
.op-mkt-k {
  font-size: var(--fs-micro);
  letter-spacing: 0.22em;
  color: #C0A6EC;
  font-weight: 600;
}
.op-mkt-v {
  font-family: 'Space Grotesk', sans-serif;
  font-size: var(--fs-row);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
}
.op-mkt-n {
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-tiny);
  font-weight: 300;
  color: var(--ink-300);
  line-height: 1.3;
}

/* =========================================================
   TABLET — more air, same single-column flow
   ========================================================= */
@media (min-width: 720px) {
  .op-sheet {
    padding: var(--sp-5) var(--sp-4);
    gap: var(--sp-4);
  }
}

/* =========================================================
   DESKTOP — editorial 12-col grid
   Hero + eye on left, coverage card on right — same row.
   All side-by-side blocks have matching heights (stretch).
   ========================================================= */
@media (min-width: 900px) {
  .op-sheet {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--sp-4);
    padding: var(--sp-5);
    align-items: stretch;
    /* Push content down so the eye (positioned behind hero) isn't
       clipped by the sheet's top edge */
    padding-top: clamp(60px, 6vw, 120px);
  }
  .op-sheet > * { grid-column: span 12; }

  /* Header full-width at top */
  .op-top {
    grid-column: 1 / -1;
    position: absolute;
    top: var(--sp-4);
    left: var(--sp-5);
    right: var(--sp-5);
  }

  /* Hero spans the full width — the eye takes center stage.
     Text rides up close to the eye on desktop (not overlapping). */
  .op-hero {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: clamp(360px, 34vw, 560px);
    padding-top: var(--sp-4);
    align-self: stretch;
    justify-content: flex-end;
  }
  .op-hook  { max-width: 18ch; }
  .op-lead  { max-width: 52ch; }

  /* Eye — center behind the full-width hero, constrained so the
     lower half of the eye doesn't run into the hero text */
  .op-eye-wrap {
    width: min(62%, 820px);
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    top: clamp(30px, 3vw, 60px);
    max-height: 44vh;
  }

  /* Ticker full width, row 2 */
  .op-ticker { grid-column: 1 / -1; grid-row: 2; }

  /* Coverage full width on row 3 — 3 stats in a horizontal row */
  .op-cov {
    grid-column: 1 / -1;
    grid-row: 3;
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
    gap: 0;
    padding: var(--sp-3) 0;
    border: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: transparent;
    border-radius: 0;
  }
  .op-cov-cell {
    padding: 0 var(--sp-3);
    border-top: none;
    align-items: flex-start;
  }
  .op-cov-cell:first-child { padding-top: 0; }
  .op-cov-v { display: block; }
  .op-cov-n { font-size: clamp(36px, 3.6vw, 72px); }
  .op-cov-l { font-size: var(--fs-micro); }

  /* Traction + Market side by side on row 4 */
  .op-tr  {
    grid-column: 1 / span 6;
    grid-row: 4;
    align-self: stretch;
    display: flex;
    flex-direction: column;
  }
  .op-mkt {
    grid-column: 7 / span 6;
    grid-row: 4;
    align-self: stretch;
    display: flex;
    flex-direction: column;
  }
  .op-tr-note { margin-top: auto; padding-top: var(--sp-2); }

  /* Stack full width on row 5 — three cards in a row */
  .op-stack { grid-column: 1 / -1; grid-row: 5; }
  .op-stack-rows {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-2);
    margin-top: var(--sp-2);
  }
  .op-stack-row { padding: var(--sp-3); }
  .op-stack-t   { flex-direction: column; align-items: flex-start; gap: 0.3em; }

  /* Thesis — centered statement, row 6 */
  .op-thesis {
    grid-column: 1 / -1;
    grid-row: 6;
    padding: var(--sp-4) 0;
    text-align: center;
  }
  .op-thesis-q {
    font-size: clamp(20px, 1.6vw + 8px, 34px);
    max-width: 60ch;
    margin: 0 auto;
  }

  /* Ask full width, three equal, row 7 */
  .op-ask { grid-column: 1 / -1; grid-row: 7; padding: var(--sp-4); }
  .op-ask-n { font-size: clamp(28px, 2.4vw + 8px, 56px); }

  /* Contact: heading left, link grid right, row 8 */
  .op-contact {
    grid-column: 1 / -1;
    grid-row: 8;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--sp-4);
    align-items: start;
  }
  .op-contact-name { flex-direction: column; align-items: flex-start; gap: var(--sp-1); }
  .op-contact-h    { font-size: clamp(32px, 2.8vw + 8px, 64px); }
  .op-contact-list { grid-template-columns: repeat(2, 1fr); }

  /* Footer full width, row 9 */
  .op-foot { grid-column: 1 / -1; grid-row: 9; }

  /* Hero veil shouldn't eat the coverage card */
  .op-hero::before {
    left: 0;
    right: 0;
  }
}

/* =========================================================
   LARGE DESKTOP — cap scaling, center
   ========================================================= */
@media (min-width: 1600px) {
  .op-stage-inner { max-width: 1400px; }
}

/* =========================================================
   Tweaks hooks
   ========================================================= */
.op-no-grain .grain::after,
.op-no-grain .noise-dark { display: none !important; }
.op-no-eye .op-eye-wrap { display: none !important; }
