/* ═══════════════════════════════════════════════════════════
   /oracle page supplement — loads AFTER landing.css and reuses
   its tokens (:root vars) and section classes. Only page-specific
   pieces live here, prefixed op-.
   ═══════════════════════════════════════════════════════════ */

/* ── Hero video sizing (this page only) ──────────────────────
   60% of the landing-page size, centered in its column so it
   sits level with the hero copy instead of filling the frame.
   Overrides landing.css .lp-hero-media/.lp-hero-video (this
   sheet loads after it, so unqualified rules win at all widths). */
.lp-hero-media {
  aspect-ratio: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-hero-video {
  width: 60%;
  height: auto;
}

/* ── Placeholder frames ──────────────────────────────────────
   Stand-ins until the soak-week captures exist. Swapping in a
   real screenshot = replace .op-placeholder with an <img>; the
   surrounding frame (.lp-hero-media / .op-shot) stays as is. */
.op-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--surf-1);
  border: 1px dashed var(--gold-dim);
}

.op-placeholder--hero {
  border: 1px dashed var(--border-top);
  background:
    radial-gradient(ellipse 60% 45% at 50% 50%, var(--gold-faint) 0%, transparent 70%),
    var(--surf-1);
}

/* Closed-eye glyph: an almond outline drawn with border-radius */
.op-placeholder-eye {
  width: 44px;
  height: 24px;
  border: 2px solid var(--gold-dim);
  border-radius: 50%;
  position: relative;
  opacity: 0.8;
}
.op-placeholder-eye::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-dim);
}

.op-placeholder-label {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* Verdict screenshot frame — same bezel treatment as .lp-phone,
   panel-shaped instead of phone-shaped */
.op-shot {
  position: relative;
  width: min(300px, 82vw);
  aspect-ratio: 4/5;
  border-radius: 4px;
  box-shadow: 0 0 0 6px var(--surf-3), 0 0 0 7px var(--border-2), 0 24px 48px rgba(0,0,0,0.6);
  overflow: hidden;
  flex-shrink: 0;
}
.op-shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ── Verdict cards ───────────────────────────────────────────
   The three "What it looks like" examples, built in HTML rather
   than screenshots: challenge caption, character row, item-vs-item
   row, verdict beneath. Note text rotates between real Oracle
   outputs per load (oracle-verdicts.js). Rarity name colors match
   the app's item coloring. */
/* Inside the card the title demotes to an eyebrow: the challenge is the
   card's real headline (option B, 2026-08-23). */
.ov-card .lp-step-title {
  margin: 0;
  text-align: left;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--gold-dim);
}

.ov-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--surf-1);
  border: 1px solid var(--border-2);
  border-top: 1px solid var(--gold-dim);
  border-radius: 4px;
  padding: 18px 18px 20px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
  text-align: left;
}

/* The hook leads, in the same voice as the takeaway stamp: label face + gold
   (user direction 2026-08-23). Challenge opens the card, takeaway closes it. */
.ov-challenge {
  font-family: var(--font-label);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: var(--gold-bright);
}

.ov-char {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ov-portrait {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 3px;
  border: 1px solid var(--gold-dim);
  flex-shrink: 0;
}

.ov-char-id {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ov-char-name {
  font-family: var(--font-label);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-1);
}

.ov-char-sub {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-3);
}

.ov-items {
  display: flex;
  align-items: stretch;
  gap: 10px;
}

.ov-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--bg-base);
  border: 1px solid var(--border-2);
  border-radius: 3px;
  padding: 12px 8px 10px;
  text-align: center;
}

.ov-item img {
  height: 40px;
  width: auto;
  image-rendering: pixelated;
  margin-bottom: 4px;
}

.ov-item-label {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
}

.ov-item-name {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.3;
}

.ov-unique  { color: #c2a35c; }
.ov-rare    { color: #e8d77a; }
.ov-crafted { color: #d98a4a; }

.ov-vs {
  align-self: center;
  font-family: var(--font-fell);
  font-style: italic;
  font-size: 13px;
  color: var(--text-3);
  flex-shrink: 0;
}

/* Hover/focus stat tooltip on comparison tiles (V02): the stats the verdict
   turns on. Dotted underline on the name is the affordance; tabindex on the
   tile makes it reachable by tap and keyboard. */
.ov-item--tip {
  position: relative;
  cursor: help;
}
.ov-tip {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 190px;
  padding: 10px 12px;
  background: var(--bg-base);
  border: 1px solid var(--gold-dim);
  border-radius: 3px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 5;
}
.ov-item--tip:hover .ov-tip,
.ov-item--tip:focus-visible .ov-tip,
.ov-item--tip:focus .ov-tip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.ov-tip-line {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.4;
  color: var(--text-1);
  white-space: nowrap;
  text-align: center;
}
@media (prefers-reduced-motion: reduce) {
  .ov-tip { transition: none; }
}

.ov-verdict {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--bg-base);
  border: 1px solid var(--border-2);
  border-left: 2px solid var(--gold-dim);
  border-radius: 3px;
  padding: 14px 14px 16px;
}

.ov-verdict-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ov-eyebrow {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.ov-chip {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  border: 1px solid currentColor;
}
.ov-chip--keep  { color: #6fbf7f; }
.ov-chip--trade { color: #d9b95c; }
.ov-chip--trash { color: #c96a5a; }

.ov-target {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-2);
}
.ov-target strong {
  color: var(--gold-bright);
  font-weight: 600;
}

.ov-note {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-1);
}

/* Collapsed state is applied by oracle-verdicts.js at init, so no-JS visitors
   (and crawlers) always get the full un-clamped note. Visual fold only — the
   complete verbatim text stays in the DOM. */
.ov-note--clamped {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ov-note-toggle {
  align-self: flex-start;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.ov-note-toggle:hover,
.ov-note-toggle:focus-visible {
  color: var(--gold-bright);
}

/* The takeaway is a punchline stamp (option D): label face + gold, a different
   kind of object than the note above it, not a bigger italic. */
.ov-takeaway {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: var(--gold-bright);
}

/* ── Post-verdicts CTA ───────────────────────────────────────
   The conversion moment: right after the three proofs. Bigger
   than the standard lp-btn on purpose. */
.ov-cta {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.ov-cta-btn {
  font-size: 15px;
  height: 60px;
  padding: 0 44px;
  box-shadow: 0 0 24px var(--gold-faint), 0 12px 30px rgba(0,0,0,0.45);
}

.ov-cta-note {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 15px;
  color: var(--text-3);
}

/* ── Hero offer line ───────────────────────────────────────── */
.op-hero-note {
  font-family: var(--font-body);
  font-size: 15px;
  font-style: italic;
  color: var(--text-3);
  margin-top: -8px;
}

/* ── WHAT PACKMASTER IS ────────────────────────────────────── */
/* Quiet block between the hero and the verdict row — not a full
   section: no label, tighter padding, centered prose. */
.op-what {
  background: var(--bg-base);
  padding: 8px 24px 64px;
}

.op-what-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.op-what-inner p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-2);
}

.op-what-inner .op-what-key {
  font-family: var(--font-fell);
  font-style: italic;
  font-size: 19px;
  color: var(--text-1);
}

/* ── WHAT IT READS ─────────────────────────────────────────── */
.op-reads {
  background: var(--surf-1);
  padding: var(--section-pad);
}

.op-reads .lp-inner {
  max-width: 640px;
}

.op-reads-list {
  margin-top: 32px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.op-reads-list li {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-1);
  padding-left: 26px;
  position: relative;
}

.op-reads-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 11px;
  color: var(--gold-dim);
}

.op-reads-foot {
  margin-top: 28px;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-2);
}

/* ── FREE AND PRO ──────────────────────────────────────────── */
/* Anchor target: keep the heading clear of the fixed nav */
.op-pro {
  scroll-margin-top: calc(var(--nav-h) + 16px);
}

.op-pro-row td {
  background: var(--gold-faint);
  color: var(--text-1);
}
.op-pro-row td strong {
  color: var(--gold-bright);
  font-weight: 600;
}

.op-pro-cta {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.op-pro-fine {
  max-width: 520px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-3);
}

/* ── SHORT ANSWERS ─────────────────────────────────────────── */
.op-faq {
  background: var(--bg-status);
  padding: var(--section-pad);
  position: relative;
}
.op-faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold-line);
}

.op-faq .lp-inner {
  max-width: 640px;
}

.op-faq-list {
  margin-top: 32px;
}

.op-faq-list dt {
  font-family: var(--font-label);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-1);
  margin-top: 28px;
}
.op-faq-list dt:first-child {
  margin-top: 0;
}

.op-faq-list dd {
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-2);
}
