:root {
  --o1-ink: #f5f6ef;
  --o1-bg: #0d0f0c;
  --o1-panel: #151914;
  --o1-panel-2: #1c221a;
  --o1-line: #3c4635;
  --o1-muted: #adb6a5;
  --o1-lime: #c8ff32;
  --o1-error: #ffb7ac;
  --o1-max: 86rem;
}

* { box-sizing: border-box; }
html { background: var(--o1-bg); color-scheme: dark; scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 7%, rgba(200,255,50,.11), transparent 28rem),
    var(--o1-bg);
  color: var(--o1-ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:is(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--o1-lime);
  outline-offset: 4px;
}
.o1-skip {
  position: fixed; left: 1rem; top: -6rem; z-index: 100;
  background: var(--o1-lime); color: #0d0f0c; padding: .85rem 1rem;
  border-radius: .35rem; font-weight: 700;
}
.o1-skip:focus { top: 1rem; }
.o1-nav {
  min-height: 5.4rem; max-width: var(--o1-max); margin: auto;
  padding: 1rem clamp(1.15rem,4vw,3rem); display: flex; align-items: center;
  justify-content: space-between; gap: 1.5rem; border-bottom: 1px solid var(--o1-line);
}
.o1-brand { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; font-weight: 750; letter-spacing: -.045em; font-size: 1.25rem; }
.o1-brand img { width: 2rem; height: 2rem; }
.o1-brand b { color: var(--o1-lime); }
.o1-nav nav { display: flex; gap: clamp(.8rem,2.5vw,2rem); align-items: center; font-size: .82rem; }
.o1-nav nav a { min-height: 44px; display: inline-flex; align-items: center; text-underline-offset: 4px; }
.o1-nav__cta { padding: .1rem 1rem; background: var(--o1-lime); border-radius: 3rem; color: #0d0f0c; font-weight: 700; text-decoration: none; }
.o1-main { overflow: clip; }
.o1-shell { width: min(var(--o1-max), calc(100% - clamp(2.3rem,8vw,6rem))); margin-inline: auto; }
.o1-hero { padding: clamp(4.5rem,9vw,9rem) 0 clamp(4rem,8vw,7rem); }
.o1-eyebrow { margin: 0 0 1.5rem; color: var(--o1-lime); font-size: .7rem; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.o1-hero h1 { margin: 0; max-width: 13ch; font-size: clamp(3.3rem,9vw,8.4rem); line-height: .9; letter-spacing: -.07em; text-wrap: balance; }
.o1-hero h1 em { color: var(--o1-lime); font-style: normal; }
.o1-hero__lead { max-width: 42rem; margin: clamp(2rem,5vw,4rem) 0 0 auto; color: #dce1d7; font-size: clamp(1.05rem,2vw,1.55rem); line-height: 1.55; text-wrap: pretty; }
.o1-hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin: 2rem 0 0 auto; max-width: 42rem; }
.o1-button {
  min-height: 3.2rem; display: inline-flex; align-items: center; justify-content: center; gap: .8rem;
  border: 1px solid var(--o1-lime); border-radius: 3rem; background: var(--o1-lime);
  color: #0d0f0c; padding: .75rem 1.25rem; cursor: pointer; text-decoration: none;
  font-size: .86rem; font-weight: 750;
}
.o1-button:hover { background: #ddff81; }
.o1-button--ghost { background: transparent; color: var(--o1-ink); border-color: #697361; }
.o1-button--ghost:hover { background: var(--o1-panel-2); border-color: var(--o1-lime); }
.o1-button[disabled] { cursor: wait; opacity: .62; }
.o1-section { padding: clamp(4rem,8vw,8rem) 0; border-top: 1px solid var(--o1-line); }
.o1-section--lime { background: var(--o1-lime); color: #10120f; border: 0; }
.o1-section__head { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(18rem,.8fr); gap: clamp(2rem,8vw,7rem); align-items: end; margin-bottom: clamp(2.5rem,6vw,5rem); }
.o1-section h2 { margin: 0; font-size: clamp(2.3rem,6vw,5.6rem); line-height: .95; letter-spacing: -.055em; text-wrap: balance; }
.o1-section__intro { margin: 0; color: var(--o1-muted); line-height: 1.7; font-size: 1rem; }
.o1-section--lime :is(.o1-eyebrow,.o1-section__intro) { color: #35421f; }
.o1-section--lime .o1-check { color: #263515; }
.o1-button--contrast { background: #10120f; color: #f5f6ef; border-color: #10120f; }
.o1-button--contrast:hover { background: #27301f; }
.o1-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1rem; }
.o1-card { border: 1px solid var(--o1-line); border-radius: 1.15rem; background: rgba(21,25,20,.82); padding: clamp(1.25rem,3vw,2rem); }
.o1-card h3 { margin: 0 0 .75rem; font-size: 1.2rem; letter-spacing: -.025em; }
.o1-card p { color: var(--o1-muted); font-size: .9rem; line-height: 1.65; margin: 0; }
.o1-card__number { display: block; color: var(--o1-lime); font-size: .68rem; letter-spacing: .12em; margin-bottom: 3.5rem; }
.o1-eye-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: .8rem; }
.o1-eye-choice { display: block; border: 1px solid var(--o1-line); border-radius: 1rem; background: var(--o1-panel); overflow: hidden; text-decoration: none; transition: transform .2s ease, border-color .2s ease; }
.o1-eye-choice:hover { transform: translateY(-4px); border-color: var(--o1-lime); }
.o1-eye-choice img { aspect-ratio: 1; width: 100%; object-fit: cover; background: #050605; }
.o1-eye-choice span { display: flex; align-items: center; justify-content: space-between; gap: .5rem; padding: 1rem; font-size: .8rem; }
.o1-label { display: inline-flex; border: 1px solid #6c765e; border-radius: 2rem; padding: .35rem .6rem; color: var(--o1-muted); font-size: .65rem; letter-spacing: .06em; text-transform: uppercase; }
.o1-art-note { margin: .9rem 0 0; color: var(--o1-muted); font-size: .75rem; line-height: 1.55; }
.o1-copybox { display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: end; padding: 1.2rem; border: 1px solid var(--o1-line); border-radius: .8rem; background: var(--o1-panel); }
.o1-copybox + .o1-copybox { margin-top: .8rem; }
.o1-copybox p { margin: 0; white-space: pre-line; line-height: 1.65; font-size: .92rem; }
.o1-assets { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem; }
.o1-asset { position: relative; overflow: hidden; border-radius: 1rem; border: 1px solid var(--o1-line); background: var(--o1-panel); }
.o1-asset img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.o1-asset--story img { aspect-ratio: 9/16; max-height: 38rem; object-position: top; }
.o1-asset__body { padding: 1.2rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.o1-asset__body h3 { margin: 0 0 .35rem; font-size: 1rem; }
.o1-asset__body p { margin: 0; color: var(--o1-muted); font-size: .75rem; line-height: 1.5; }
.o1-gallery { display: grid; grid-template-columns: repeat(12,1fr); gap: 1rem; }
.o1-gallery figure { grid-column: span 4; margin: 0; min-width: 0; border-radius: 1rem; overflow: hidden; border: 1px solid var(--o1-line); background: var(--o1-panel); }
.o1-gallery figure:nth-child(1), .o1-gallery figure:nth-child(5) { grid-column: span 8; }
.o1-gallery img { width: 100%; height: clamp(16rem,32vw,28rem); object-fit: cover; }
.o1-gallery figcaption { padding: .9rem 1rem; color: var(--o1-muted); font-size: .76rem; line-height: 1.5; }
.o1-table-wrap { overflow-x: auto; border: 1px solid var(--o1-line); border-radius: 1rem; background: var(--o1-panel); }
.o1-table { width: 100%; min-width: 44rem; border-collapse: collapse; }
.o1-table th, .o1-table td { padding: 1.25rem; text-align: left; border-bottom: 1px solid var(--o1-line); vertical-align: top; line-height: 1.55; font-size: .86rem; }
.o1-table th { color: var(--o1-lime); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.o1-table tbody th { color: var(--o1-ink); font-size: .86rem; letter-spacing: 0; text-transform: none; }
.o1-table tr:last-child :is(th,td) { border-bottom: 0; }
.o1-form { position: relative; display: grid; gap: 1rem; max-width: 48rem; }
.o1-form__row { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem; }
.o1-field { display: grid; gap: .45rem; }
.o1-field label, .o1-field legend { font-size: .78rem; font-weight: 700; }
.o1-field input, .o1-field select, .o1-field textarea {
  width: 100%; min-height: 3.2rem; border: 1px solid #626d58; border-radius: .55rem;
  background: #11140f; color: var(--o1-ink); padding: .8rem .9rem;
}
.o1-field textarea { min-height: 8rem; resize: vertical; }
.o1-field small { color: var(--o1-muted); font-size: .72rem; line-height: 1.5; }
.o1-check { display: flex; gap: .7rem; align-items: flex-start; color: var(--o1-muted); font-size: .78rem; line-height: 1.55; }
.o1-check input { accent-color: var(--o1-lime); flex: 0 0 auto; width: 1.1rem; height: 1.1rem; margin: .08rem 0 0; }
.o1-honeypot { position: absolute!important; left: -10000px!important; width: 1px!important; height: 1px!important; overflow: hidden!important; }
.o1-status { min-height: 1.5rem; margin: 0; font-size: .82rem; line-height: 1.5; }
.o1-status[data-state="success"] { color: var(--o1-lime); }
.o1-status[data-state="error"] { color: var(--o1-error); }
.o1-section--lime .o1-status[data-state="success"] { color: #1b3100; }
.o1-disclosure { border-left: 3px solid var(--o1-lime); padding: .3rem 0 .3rem 1rem; color: var(--o1-muted); font-size: .82rem; line-height: 1.65; }
.o1-steps { counter-reset: step; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1rem; }
.o1-step { counter-increment: step; border-top: 1px solid var(--o1-line); padding-top: 1rem; }
.o1-step::before { content: "0" counter(step); color: var(--o1-lime); font-size: .68rem; letter-spacing: .1em; }
.o1-step h3 { margin: 2.2rem 0 .7rem; font-size: 1.1rem; }
.o1-step p { margin: 0; color: var(--o1-muted); font-size: .85rem; line-height: 1.65; }
.o1-details { border-top: 1px solid var(--o1-line); }
.o1-details details { border-bottom: 1px solid var(--o1-line); }
.o1-details summary { cursor: pointer; min-height: 4.2rem; display: flex; align-items: center; font-weight: 700; }
.o1-details p { max-width: 52rem; color: var(--o1-muted); font-size: .86rem; line-height: 1.7; margin: 0 0 1.4rem; }
.o1-footer { max-width: var(--o1-max); margin: auto; padding: 2.5rem clamp(1.15rem,4vw,3rem); border-top: 1px solid var(--o1-line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.5rem; color: var(--o1-muted); font-size: .76rem; }
.o1-footer nav { display: flex; flex-wrap: wrap; gap: .6rem 1.2rem; }
.o1-footer a { min-height: 44px; display: inline-flex; align-items: center; }

/* Shared marketing launcher injected by /oneira-cinematic/js/o1-growth.js. */
[hidden] { display: none!important; }
.o1-growth-launcher {
  position: fixed; z-index: 80; right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom)); color: #f5f6ef;
  font-family: Arial, Helvetica, sans-serif; font-size: .82rem;
}
.o1-growth-launcher__toggle,
.o1-growth-launcher__close {
  border: 1px solid #c8ff32; background: #c8ff32; color: #10120f;
  cursor: pointer; font: inherit; font-weight: 750;
}
.o1-growth-launcher__toggle {
  min-height: 3.1rem; padding: .75rem 1.1rem; border-radius: 3rem;
  box-shadow: 0 1rem 3rem rgba(0,0,0,.42);
}
.o1-growth-launcher__panel {
  position: absolute; right: 0; bottom: calc(100% + .7rem); width: min(22rem, calc(100vw - 2rem));
  border: 1px solid #4f5a46; border-radius: .85rem; background: #121510;
  box-shadow: 0 1.4rem 4rem rgba(0,0,0,.55); padding: 1rem;
}
.o1-growth-launcher__close {
  float: right; width: 2.75rem; height: 2.75rem; border-radius: 50%;
  background: transparent; color: #f5f6ef; border-color: #59634f;
}
.o1-growth-launcher__actions { clear: both; display: grid; gap: .5rem; padding-top: .6rem; }
.o1-growth-launcher__actions a,
.o1-growth-launcher__actions button {
  min-height: 2.9rem; display: flex; align-items: center; justify-content: space-between;
  border: 1px solid #59634f; border-radius: .45rem; background: #1b2018; color: #f5f6ef;
  padding: .65rem .8rem; text-align: left; text-decoration: none; cursor: pointer; font: inherit;
}
.o1-growth-launcher__actions :is(a,button):hover { border-color: #c8ff32; }
.o1-growth-launcher__note { clear: both; color: #aeb7a5; font-size: .7rem; line-height: 1.5; margin: .8rem 0 0; }
.o1-growth-launcher :is(a,button):focus-visible { outline: 3px solid #c8ff32; outline-offset: 3px; }
.o1-waitlist__share {
  display: inline-flex; align-items: center; justify-content: center; min-height: 3rem;
  margin-top: .75rem; border: 1px solid #c8ff32; border-radius: 3rem; background: transparent;
  color: #c8ff32; padding: .7rem 1rem; cursor: pointer; font: inherit; font-size: .82rem;
  font-weight: 750; text-decoration: none;
}
.o1-waitlist__share:hover { background: #c8ff32; color: #10120f; }

@media (max-width: 820px) {
  .o1-section__head { grid-template-columns: 1fr; }
  .o1-grid, .o1-steps { grid-template-columns: 1fr; }
  .o1-eye-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .o1-gallery figure, .o1-gallery figure:nth-child(1), .o1-gallery figure:nth-child(5) { grid-column: span 6; }
}
@media (max-width: 620px) {
  .o1-nav nav a:not(.o1-nav__cta) { display: none; }
  .o1-nav { min-height: 4.6rem; }
  .o1-shell { width: min(100% - 2.2rem, var(--o1-max)); }
  .o1-hero h1 { font-size: clamp(3.25rem,17vw,5.7rem); }
  .o1-form__row, .o1-assets { grid-template-columns: 1fr; }
  .o1-copybox { grid-template-columns: 1fr; align-items: start; }
  .o1-copybox .o1-button { justify-self: start; }
  .o1-gallery { display: grid; grid-template-columns: 1fr; }
  .o1-gallery figure, .o1-gallery figure:nth-child(1), .o1-gallery figure:nth-child(5) { grid-column: auto; }
  .o1-gallery img { height: min(90vw,26rem); }
  .o1-growth-launcher { left: 1rem; right: 1rem; bottom: max(.75rem, env(safe-area-inset-bottom)); }
  .o1-growth-launcher__toggle { float: right; }
  .o1-growth-launcher__panel { left: 0; right: 0; width: auto; max-height: min(70vh,32rem); overflow-y: auto; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .o1-eye-choice { transition: none; }
}
.o1-consent{position:fixed;z-index:2147483646;left:50%;bottom:max(1rem,env(safe-area-inset-bottom));width:min(42rem,calc(100% - 2rem));transform:translateX(-50%);box-sizing:border-box;padding:1rem 1.1rem;border:1px solid rgba(255,255,255,.22);border-radius:1.25rem;background:rgba(13,15,12,.97);box-shadow:0 20px 70px rgba(0,0,0,.5);color:#f6f5ec;font:500 .85rem/1.5 Arial,sans-serif;backdrop-filter:blur(16px)}.o1-consent strong{display:block;font-size:1rem}.o1-consent p{margin:.35rem 0 .8rem;color:rgba(246,245,236,.72)}.o1-consent div{display:flex;flex-wrap:wrap;align-items:center;gap:.55rem}.o1-consent button,.o1-consent a{min-height:2.6rem;display:inline-flex;align-items:center;justify-content:center;box-sizing:border-box;padding:.65rem .9rem;border:1px solid rgba(255,255,255,.22);border-radius:999px;background:transparent;color:#f6f5ec;font:700 .78rem/1 Arial,sans-serif;text-decoration:none;cursor:pointer}.o1-consent button:first-child{border-color:#caff22;background:#caff22;color:#10120e}.o1-consent button:focus-visible,.o1-consent a:focus-visible{outline:3px solid #caff22;outline-offset:3px}@media(max-width:520px){.o1-consent div>*{flex:1}.o1-consent a{flex-basis:100%}}
